Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Mar 5, 2024
1 parent f7e3953 commit 06e72ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
st.write(switched)

st.subheader("Tags")
tags = sy.taginput(data=["A", "B", "C"], default=["B"], allow_new=True, open_on_focus=True, type="is-info", aria_close_label="Remove", placeholder="Choose letter")
tags = sy.taginput(data=["Apples", "Bananas", "Coconuts"], default=["Bananas"], allow_new=True, open_on_focus=True, type="is-info", aria_close_label="Remove", placeholder="Choose letter")
st.write(tags)

st.subheader("Message")
Expand Down
2 changes: 1 addition & 1 deletion examples/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
streamfy==0.3.3
streamfy==0.3.4
streamlit==1.15.2

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="streamfy",
version="0.3.3",
version="0.3.4",
author="Javier Luraschi",
author_email="[email protected]",
description="Modern frontend web components based on Buefy for Streamlit.",
Expand Down
2 changes: 1 addition & 1 deletion streamfy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def table(**kwargs):
st.write(switched)

st.subheader("Tags")
tags = taginput(class_name="is-orange", data=["Apples", "Bannanas", "Coconuts"], default=["Bannanas"], allow_new=True, open_on_focus=True, type="is-info", aria_close_label="Remove", placeholder="Choose letter")
tags = taginput(class_name="is-orange", data=["Apples", "Bananas", "Coconuts"], default=["Bananas"], allow_new=True, open_on_focus=True, type="is-info", aria_close_label="Remove", placeholder="Choose letter")
st.write(tags)

st.subheader("Message")
Expand Down

0 comments on commit 06e72ad

Please sign in to comment.