pypi streamlit-shadcn-ui 0.1.11

latest releases: 0.1.18, 0.1.17, 0.1.16...
10 months ago

update

  • The powerful ui.element for renderer any combination of components like your are writing react.
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: 0.1.10...0.1.1

Don't miss a new streamlit-shadcn-ui release

NewReleases is sending notifications on new releases.