Skip to content

Releases: ObservedObserver/streamlit-shadcn-ui

0.1.18

12 Dec 04:20
Compare
Choose a tag to compare

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: 0.1.17...0.1.18

0.1.17

30 Nov 18:46
Compare
Choose a tag to compare
  • hot fix for component default value

Full Changelog: 0.1.13...0.1.17

0.1.13

28 Nov 09:27
Compare
Choose a tag to compare

fix init_state bug
Full Changelog: 0.1.12...0.1.13

0.1.12

28 Nov 08:44
Compare
Choose a tag to compare

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

26 Nov 23:14
Compare
Choose a tag to compare

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

0.1.10

24 Nov 11:03
Compare
Choose a tag to compare

Full Changelog: 0.1.9...0.1.10

0.1.9

24 Nov 07:06
1b7e407
Compare
Choose a tag to compare

What's Changed

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

Full Changelog: 0.1.8...0.1.9

0.1.8

24 Nov 06:04
49cc1fa
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.1.7...0.1.8

0.1.7

23 Nov 22:43
262a761
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.1.6...0.1.7

0.1.6

23 Nov 22:32
39509ad
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.1.5...0.1.6