streamlit-shadcn-ui

Using shadcn-ui components in streamlit

MIT License

Downloads
8.3K
Stars
746
Committers
2
streamlit-shadcn-ui - 0.1.18 Latest Release

Published by ObservedObserver 11 months ago

Update

  • date time range picker

Now you can select date range.

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

streamlit-shadcn-ui - 0.1.17

Published by ObservedObserver 11 months ago

  • hot fix for component default value

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

streamlit-shadcn-ui - 0.1.13

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.12

Published by ObservedObserver 11 months ago

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)
streamlit-shadcn-ui - 0.1.11

Published by ObservedObserver 11 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: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.10...0.1.1

streamlit-shadcn-ui - 0.1.10

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.9

Published by ObservedObserver 11 months ago

What's Changed

  • refactor: hover card folder position(fix)
  • fix: react-refresh export default for app.tsx

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

streamlit-shadcn-ui - 0.1.8

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.7

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.6

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.5

Published by ObservedObserver 11 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/ObservedObserver/streamlit-shadcn-ui/compare/0.1.4...0.1.5

streamlit-shadcn-ui - 0.1.4

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.3

Published by ObservedObserver 11 months ago

streamlit-shadcn-ui - 0.1.2

Published by ObservedObserver 11 months ago