/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
e2e_playwright/st_heading.py
122 строки
4 KB
Ken McGrady
Update copyright header to 2026 (#13491)
02 янв 2026, 16:21
Не верифицирован
02 янв 2026, 16:21
374540a
Код
Авторство
О чём код?
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import streamlit as st st.title(":material/info: This title is awesome!") st.title("This title is awesome too!", help="Some help tooltip", anchor="awesome-title") st.title("`Code` - Title with hidden Anchor", anchor=False) st.title("a [link](#test)") # Foreign language titles and anchors st.title("日本語タイトル") st.title("その他の邦題", anchor="アンカー") st.header(":material/info: This header is awesome!") st.header("This header is awesome too!", anchor="awesome-header") st.header("This header with hidden anchor is awesome tooooo!", anchor=False) st.header("header with help", help="Some help tooltip") st.header( "header with help and hidden anchor", help="Some help tooltip", anchor=False, ) st.subheader(":material/info: This subheader is awesome!") st.subheader("This subheader is awesome too!", anchor="awesome-subheader") st.subheader("`Code` - Subheader without Anchor") st.subheader( """`Code` - Subheader with Anchor [test_link](href)""", anchor="subheader", ) st.subheader("Subheader with hidden Anchor", anchor=False) st.subheader("Subheader with help", help="Some help tooltip") st.subheader( "Subheader with help and hidden anchor", help="Some help tooltip", anchor=False ) # Test dividers colors = [ "blue", "gray", "green", "grey", "orange", "rainbow", "red", "violet", "yellow", ] lorem_ipsum_text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit" # Headers with specified color for color in colors: st.header(f"{color.capitalize()} Header Divider:", divider=color) st.write(lorem_ipsum_text) # Subheaders with specified color for color in colors: st.subheader(f"{color.capitalize()} Subheader Divider:", divider=color) st.write(lorem_ipsum_text) # Empty subheader to test correct anchor behavior: st.subheader("") # Width examples st.title("Title with 400px width", width=400) st.title("Title with stretch width", width="stretch") st.title("Title with content width", width="content") st.header("Header with 400px width", width=400, divider="blue") st.header("Header with stretch width", width="stretch") st.header("Header with content width", width="content") st.subheader("Subheader with 300px width", width=300, divider="blue") st.subheader("Subheader with stretch width", width="stretch") st.subheader("Subheader with content width", width="content") st.title( "Centered Title", text_alignment="center", help="This is a help tooltip!", ) st.title( "Right Aligned Title", text_alignment="right", help="This is a help tooltip!", ) st.header( "Centered Header with longer text to demonstrate how text wraps and aligns when centered", text_alignment="center", divider="blue", help="This is a help tooltip!", ) st.header( "Right Aligned Header with longer text to demonstrate how text wraps and " "aligns when right-aligned and has a help tooltip", text_alignment="right", help="This is a help tooltip!", ) st.subheader( "Centered Subheader", text_alignment="center", help="This is a help tooltip!", divider="blue", ) st.subheader( "Justified Subheader with longer text to demonstrate justification. This text " "should wrap across multiple lines to show how justification distributes spacing " "evenly across the line width.", text_alignment="justify", help="This is a help tooltip!", )