Skip to content

Commit b2b47ef

Browse files
1.56 follow-up: release notes st.iframe link and cheat sheet (#1458)
* Fix st.iframe doc link in 1.56.0 release notes (text API path) Made-with: Cursor * Update API cheat sheet for 1.56 (st.iframe, st.menu_button) - Add st.iframe and st.menu_button examples. - Remove the PyPI version summary line under the title. Made-with: Cursor --------- Co-authored-by: Johannes Rieke <johannes.rieke@gmail.com>
1 parent 2f60326 commit b2b47ef

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

content/develop/quick-references/api-cheat-sheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ keywords: API cheat sheet, Streamlit API, widgets, layout, data display, utility
77

88
# Streamlit API cheat sheet
99

10-
This is a summary of the docs for the latest version of Streamlit, [v1.55.0](https://pypi.org/project/streamlit/1.55.0/).
11-
1210
<Masonry>
1311

1412
<CodeTile featured>
@@ -94,6 +92,7 @@ st.subheader("My sub")
9492
st.code("for i in range(8): foo()")
9593
st.badge("New")
9694
st.html("<p>Hi!</p>")
95+
st.iframe("https://docs.streamlit.io", height=600)
9796
```
9897

9998
</CodeTile>
@@ -291,6 +290,7 @@ fragment_function()
291290
st.button("Click me")
292291
st.download_button("Download file", data)
293292
st.link_button("Go to gallery", url)
293+
st.menu_button("Export", options=["CSV", "JSON", "PDF"])
294294
st.page_link("app.py", label="Home")
295295
st.data_editor("Edit data", data)
296296
st.checkbox("I agree")

content/develop/quick-references/release-notes/2026.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _Release date: March 31, 2026_
1616
**Highlights**
1717

1818
- 🍿 Introducing [`st.menu_button`](/develop/api-reference/widgets/st.menu_button) — a new widget that renders a dropdown button with a customizable popover container for building menus, toolbars, and action lists ([#13981](https://github.com/streamlit/streamlit/pull/13981), [#11409](https://github.com/streamlit/streamlit/issues/11409)).
19-
- 🎁 Introducing [`st.iframe`](/develop/api-reference/media/st.iframe) — embed external URLs or raw HTML content directly in your app using an iframe ([#14433](https://github.com/streamlit/streamlit/pull/14433), [#12977](https://github.com/streamlit/streamlit/issues/12977)).
19+
- 🎁 Introducing [`st.iframe`](/develop/api-reference/text/st.iframe) — embed external URLs or raw HTML content directly in your app using an iframe ([#14433](https://github.com/streamlit/streamlit/pull/14433), [#12977](https://github.com/streamlit/streamlit/issues/12977)).
2020
- 🔍 [`st.selectbox`](/develop/api-reference/widgets/st.selectbox) and [`st.multiselect`](/develop/api-reference/widgets/st.multiselect) now support a `filter_mode` parameter that lets users search and filter options by typing ([#14537](https://github.com/streamlit/streamlit/pull/14537), [#6160](https://github.com/streamlit/streamlit/issues/6160), [#7238](https://github.com/streamlit/streamlit/issues/7238)).
2121

2222
**Notable Changes**

content/develop/quick-references/release-notes/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ _Release date: March 31, 2026_
2828
**Highlights**
2929

3030
- 🍿 Introducing [`st.menu_button`](/develop/api-reference/widgets/st.menu_button) — a new widget that renders a dropdown button with a customizable popover container for building menus, toolbars, and action lists ([#13981](https://github.com/streamlit/streamlit/pull/13981), [#11409](https://github.com/streamlit/streamlit/issues/11409)).
31-
- 🎁 Introducing [`st.iframe`](/develop/api-reference/media/st.iframe) — embed external URLs or raw HTML content directly in your app using an iframe ([#14433](https://github.com/streamlit/streamlit/pull/14433), [#12977](https://github.com/streamlit/streamlit/issues/12977)).
31+
- 🎁 Introducing [`st.iframe`](/develop/api-reference/text/st.iframe) — embed external URLs or raw HTML content directly in your app using an iframe ([#14433](https://github.com/streamlit/streamlit/pull/14433), [#12977](https://github.com/streamlit/streamlit/issues/12977)).
3232
- 🔍 [`st.selectbox`](/develop/api-reference/widgets/st.selectbox) and [`st.multiselect`](/develop/api-reference/widgets/st.multiselect) now support a `filter_mode` parameter that lets users search and filter options by typing ([#14537](https://github.com/streamlit/streamlit/pull/14537), [#6160](https://github.com/streamlit/streamlit/issues/6160), [#7238](https://github.com/streamlit/streamlit/issues/7238)).
3333

3434
**Notable Changes**

0 commit comments

Comments
 (0)