Streamlit-shadcn-ui

Latest version: v0.1.18

Safety actively analyzes 627423 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 3

0.1.18

Update
+ date time range picker

Now you can select date range.
py
import streamlit as st
import streamlit_shadcn_ui as UI

pick single date
dt = ui.date_picker(key="date_picker", mode="single", label="Date Picker")
st.write("Date Value:", dt)

pick date range
dt2 = ui.date_picker(key="date_picker2", mode="range", label="Date Picker")
st.write("Date Range:", dt2)



**Full Changelog**: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.17...0.1.18

0.1.17

+ hot fix for component default value

**Full Changelog**: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.13...0.1.17

0.1.13

fix init_state bug
**Full Changelog**: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.12...0.1.13

0.1.12

updates
+ fix: button state reset (issues occurs when there is more than two ui.button)
+ element: more clean and simple API (without using add_child in with statement)

0.1.11

update
+ The powerful `ui.element` for renderer any combination of components like your are writing react.

py
with ui.element("card", key="base_ele") as card:
with ui.element("card", key="base_ele2") as card2:
card2.add_child(ui.element("input", key="nst2_input"))
card2.add_child(ui.element("button", key="nst2_btn", text="Nest Submmit", variant="outline"))
card.add_child(card2)
card.add_child(ui.element("button", key="nst_btn", text="Hello World"))


**Full Changelog**: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.10...0.1.1

0.1.10

**Full Changelog**: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.9...0.1.10

Page 1 of 3

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.