streamlit-elements
streamlit-elements copied to clipboard
Create a draggable and resizable dashboard in Streamlit, featuring Material UI widgets, Monaco editor (Visual Studio Code), Nivo charts, and more!
Really appreciate this component, I am having to rely on it as native streamlit does not allow for nesting of columns for a particular app feature I am building. After...
From here: https://docs.python.org/3/reference/datamodel.html?highlight=__getattr__#object.__getattr object.__getattr__(self, name) This method should either return the (computed) attribute value or raise an AttributeError Right now the function throws a KeyError when it gets a wrong...
__getattr__ should raise a AttributeError when value is not found, not KeyError, which is raised when __getitem__ fails. New function should look like class ElementsCallbackData(dict): __slots__ = () def __getattr__(self,...
how to use mui.CardMedia for local images?
I see in documentation that Nivo Sunburst supports custom layers via it's `layers` property. However, I do not understand what can be provided as a custom layer. I see that...
mui.Tabs
Is it possible to create mui.Tabs? I noticed that the option is available, but TabPanel is missing… Is there a way to create tabs with mui in streamlit? Thank you...
When I use image component like html.Img( src = "/static/xxx.jpg"), the root location is the module's path "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/streamlit_elements/frontend/build/". So I can't load images in my own folders. Same issus happens...
python: python 3.10 OS: Win10 Related pip packages: ``` streamlit-elements 0.1.0 streamlit 1.9.0 ```
Thank you for creating such an amazing component, it is exactly what I had been hoping for. I have been playing around with it a bit and having difficulty accessing...
onChange event is not working after Streamlit 1.34 release.