Tim Child
Tim Child
@CNFeffery, sure! I should have included one in the first place, sorry about that. ``` import dash_mantine_components as dmc import dash app = dash.Dash(__name__) app.layout = dmc.MantineProvider( children=dmc.Stack( [ dmc.Textarea(value="This...
@CNFeffery Thanks. Your component does have the desired behaviour I was looking for there. @snehilvj , Any chance this is an easy thing to fix in `dash-mantine-components`? Or am I...
I was able to wrap the `react-select` component without too much trouble, although it's not perfect. Here's a minimal example ``` import reflex as rx from typing import Any from...
To address making the component standalone, I think the `rx.state.ComponentState` is probably relevant, at least for holding the selected options. I'm still not sure about how to build in the...
@masenf, have I used the `rx.ComponentState` correctly here? Specifically, the handling of the `on_change` event such that the component behaves correctly without having to use an external state, but also...
Thanks for the pointers! When I get a chance to come back to it I'll see if I can get it themed properly and try out publishing to pypi too.
Yea, I think that probably is a good solution, at least in the short term. I'm not sure if the `State` attribute on the `rx.Component` is exclusively for the `rx.ComponentStatate`s,...
@benedikt-bartscher Awesome! I thought there was a chance that it would be quick if you knew exactly what to look for, but it didn't stand out to me. Nice work!
@benedikt-bartscher Well, while it is fresh in your mind... I do have a question/issue that is fairly related to this. Obviously, don't feel obliged to spend significant time on this,...
@picklelo, Well that appears to be exactly what I was looking for/suggesting ... And I see that it is right there in the docs, in a page that I had...