streamlit-nightly 1.24.2.dev20230710__py2.py3-none-any.whl → 1.24.2.dev20230711__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamlit/__init__.py +4 -0
- streamlit/delta_generator.py +2 -0
- streamlit/elements/alert.py +1 -12
- streamlit/elements/toast.py +91 -0
- streamlit/proto/Element_pb2.py +4 -3
- streamlit/proto/RootContainer_pb2.py +2 -2
- streamlit/proto/Toast_pb2.py +25 -0
- streamlit/static/asset-manifest.json +144 -143
- streamlit/static/index.html +1 -1
- streamlit/static/static/css/main.f4a8738f.css +1 -0
- streamlit/static/static/js/6988.5f0eaf34.chunk.js +2 -0
- streamlit/static/static/js/{7062.e01f6119.chunk.js → 7062.48d77221.chunk.js} +1 -1
- streamlit/static/static/js/{7898.e4d0df9c.chunk.js → 7898.adfec040.chunk.js} +2 -2
- streamlit/static/static/js/{7929.b579f9db.chunk.js → 7929.85c9e1e0.chunk.js} +2 -2
- streamlit/static/static/js/8427.7142ba70.chunk.js +1 -0
- streamlit/static/static/js/main.22abd129.js +2 -0
- streamlit/string_util.py +13 -1
- streamlit/web/server/routes.py +7 -1
- {streamlit_nightly-1.24.2.dev20230710.dist-info → streamlit_nightly-1.24.2.dev20230711.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.24.2.dev20230710.dist-info → streamlit_nightly-1.24.2.dev20230711.dist-info}/RECORD +28 -25
- streamlit/static/static/css/main.3de794e6.css +0 -1
- streamlit/static/static/js/6988.a9b1927f.chunk.js +0 -2
- streamlit/static/static/js/main.0c1c68b8.js +0 -2
- /streamlit/static/static/js/{6988.a9b1927f.chunk.js.LICENSE.txt → 6988.5f0eaf34.chunk.js.LICENSE.txt} +0 -0
- /streamlit/static/static/js/{7898.e4d0df9c.chunk.js.LICENSE.txt → 7898.adfec040.chunk.js.LICENSE.txt} +0 -0
- /streamlit/static/static/js/{7929.b579f9db.chunk.js.LICENSE.txt → 7929.85c9e1e0.chunk.js.LICENSE.txt} +0 -0
- /streamlit/static/static/js/{main.0c1c68b8.js.LICENSE.txt → main.22abd129.js.LICENSE.txt} +0 -0
- {streamlit_nightly-1.24.2.dev20230710.data → streamlit_nightly-1.24.2.dev20230711.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.24.2.dev20230710.dist-info → streamlit_nightly-1.24.2.dev20230711.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.24.2.dev20230710.dist-info → streamlit_nightly-1.24.2.dev20230711.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.24.2.dev20230710.dist-info → streamlit_nightly-1.24.2.dev20230711.dist-info}/top_level.txt +0 -0
streamlit/__init__.py
CHANGED
@@ -104,6 +104,7 @@ _config.on_config_parsed(_update_logger, True)
|
|
104
104
|
|
105
105
|
_main = _DeltaGenerator(root_container=_RootContainer.MAIN)
|
106
106
|
sidebar = _DeltaGenerator(root_container=_RootContainer.SIDEBAR, parent=_main)
|
107
|
+
event = _DeltaGenerator(root_container=_RootContainer.EVENT, parent=_main)
|
107
108
|
|
108
109
|
secrets = _secrets_singleton
|
109
110
|
|
@@ -173,6 +174,9 @@ warning = _main.warning
|
|
173
174
|
write = _main.write
|
174
175
|
color_picker = _main.color_picker
|
175
176
|
|
177
|
+
# Events - Note: these methods cannot be called directly on sidebar (ex: st.sidebar.toast)
|
178
|
+
toast = event.toast
|
179
|
+
|
176
180
|
# Legacy
|
177
181
|
_legacy_dataframe = _main._legacy_dataframe
|
178
182
|
_legacy_table = _main._legacy_table
|
streamlit/delta_generator.py
CHANGED
@@ -84,6 +84,7 @@ from streamlit.elements.snow import SnowMixin
|
|
84
84
|
from streamlit.elements.text import TextMixin
|
85
85
|
from streamlit.elements.text_widgets import TextWidgetsMixin
|
86
86
|
from streamlit.elements.time_widgets import TimeWidgetsMixin
|
87
|
+
from streamlit.elements.toast import ToastMixin
|
87
88
|
from streamlit.elements.write import WriteMixin
|
88
89
|
from streamlit.errors import NoSessionContext, StreamlitAPIException
|
89
90
|
from streamlit.logger import get_logger
|
@@ -190,6 +191,7 @@ class DeltaGenerator(
|
|
190
191
|
TextMixin,
|
191
192
|
TextWidgetsMixin,
|
192
193
|
TimeWidgetsMixin,
|
194
|
+
ToastMixin,
|
193
195
|
WriteMixin,
|
194
196
|
ArrowMixin,
|
195
197
|
ArrowAltairMixin,
|
streamlit/elements/alert.py
CHANGED
@@ -17,24 +17,13 @@ from typing import TYPE_CHECKING, Optional, cast
|
|
17
17
|
from streamlit.errors import StreamlitAPIException
|
18
18
|
from streamlit.proto.Alert_pb2 import Alert as AlertProto
|
19
19
|
from streamlit.runtime.metrics_util import gather_metrics
|
20
|
-
from streamlit.string_util import clean_text,
|
20
|
+
from streamlit.string_util import clean_text, validate_emoji
|
21
21
|
|
22
22
|
if TYPE_CHECKING:
|
23
23
|
from streamlit.delta_generator import DeltaGenerator
|
24
24
|
from streamlit.type_util import SupportsStr
|
25
25
|
|
26
26
|
|
27
|
-
def validate_emoji(maybe_emoji: Optional[str]) -> str:
|
28
|
-
if maybe_emoji is None:
|
29
|
-
return ""
|
30
|
-
elif is_emoji(maybe_emoji):
|
31
|
-
return maybe_emoji
|
32
|
-
else:
|
33
|
-
raise StreamlitAPIException(
|
34
|
-
f'The value "{maybe_emoji}" is not a valid emoji. Shortcodes are not allowed, please use a single character instead.'
|
35
|
-
)
|
36
|
-
|
37
|
-
|
38
27
|
class AlertMixin:
|
39
28
|
@gather_metrics("error")
|
40
29
|
def error(
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022)
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
#
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
#
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
# See the License for the specific language governing permissions and
|
13
|
+
# limitations under the License.
|
14
|
+
|
15
|
+
from typing import TYPE_CHECKING, Optional, cast
|
16
|
+
|
17
|
+
from streamlit.errors import StreamlitAPIException
|
18
|
+
from streamlit.proto.Toast_pb2 import Toast as ToastProto
|
19
|
+
from streamlit.runtime.metrics_util import gather_metrics
|
20
|
+
from streamlit.string_util import clean_text, validate_emoji
|
21
|
+
from streamlit.type_util import SupportsStr
|
22
|
+
|
23
|
+
if TYPE_CHECKING:
|
24
|
+
from streamlit.delta_generator import DeltaGenerator
|
25
|
+
|
26
|
+
|
27
|
+
def validate_text(toast_text: SupportsStr) -> SupportsStr:
|
28
|
+
if str(toast_text) == "":
|
29
|
+
raise StreamlitAPIException(
|
30
|
+
f"Toast body cannot be blank - please provide a message."
|
31
|
+
)
|
32
|
+
else:
|
33
|
+
return toast_text
|
34
|
+
|
35
|
+
|
36
|
+
class ToastMixin:
|
37
|
+
@gather_metrics("toast")
|
38
|
+
def toast(
|
39
|
+
self,
|
40
|
+
body: SupportsStr,
|
41
|
+
*, # keyword-only args:
|
42
|
+
icon: Optional[str] = None,
|
43
|
+
) -> "DeltaGenerator":
|
44
|
+
"""Display a short message, known as a notification "toast".
|
45
|
+
The toast appears in the app's bottom-right corner and disappears after four seconds.
|
46
|
+
|
47
|
+
Parameters
|
48
|
+
----------
|
49
|
+
body : str
|
50
|
+
Short message for the toast. The message can optionally contain
|
51
|
+
Markdown and supports the following elements: Bold, Italics,
|
52
|
+
Strikethroughs, Inline Code, Emojis, and Links.
|
53
|
+
|
54
|
+
This also supports:
|
55
|
+
|
56
|
+
* Emoji shortcodes, such as ``:+1:`` and ``:sunglasses:``.
|
57
|
+
For a list of all supported codes,
|
58
|
+
see https://share.streamlit.io/streamlit/emoji-shortcodes.
|
59
|
+
|
60
|
+
* LaTeX expressions, by wrapping them in "$" or "$$" (the "$$"
|
61
|
+
must be on their own lines). Supported LaTeX functions are listed
|
62
|
+
at https://katex.org/docs/supported.html.
|
63
|
+
|
64
|
+
* Colored text, using the syntax ``:color[text to be colored]``,
|
65
|
+
where ``color`` needs to be replaced with any of the following
|
66
|
+
supported colors: blue, green, orange, red, violet.
|
67
|
+
|
68
|
+
Unsupported elements are unwrapped so only their children (text
|
69
|
+
contents) render. Display unsupported elements as literal characters
|
70
|
+
by backslash-escaping them. E.g. 1\. Not an ordered list.
|
71
|
+
icon : str or None
|
72
|
+
An optional, keyword-only argument that specifies an emoji to use as
|
73
|
+
the icon for the toast. Shortcodes are not allowed, please use a
|
74
|
+
single character instead. E.g. "🚨", "🔥", "🤖", etc.
|
75
|
+
Defaults to None, which means no icon is displayed.
|
76
|
+
|
77
|
+
Example
|
78
|
+
-------
|
79
|
+
>>> import streamlit as st
|
80
|
+
>>>
|
81
|
+
>>> st.toast('Your edited image was saved!', icon='😍')
|
82
|
+
"""
|
83
|
+
toast_proto = ToastProto()
|
84
|
+
toast_proto.body = clean_text(validate_text(body))
|
85
|
+
toast_proto.icon = validate_emoji(icon)
|
86
|
+
return self.dg._enqueue("toast", toast_proto)
|
87
|
+
|
88
|
+
@property
|
89
|
+
def dg(self) -> "DeltaGenerator":
|
90
|
+
"""Get our DeltaGenerator."""
|
91
|
+
return cast("DeltaGenerator", self)
|
streamlit/proto/Element_pb2.py
CHANGED
@@ -52,18 +52,19 @@ from streamlit.proto import Text_pb2 as streamlit_dot_proto_dot_Text__pb2
|
|
52
52
|
from streamlit.proto import TextArea_pb2 as streamlit_dot_proto_dot_TextArea__pb2
|
53
53
|
from streamlit.proto import TextInput_pb2 as streamlit_dot_proto_dot_TextInput__pb2
|
54
54
|
from streamlit.proto import TimeInput_pb2 as streamlit_dot_proto_dot_TimeInput__pb2
|
55
|
+
from streamlit.proto import Toast_pb2 as streamlit_dot_proto_dot_Toast__pb2
|
55
56
|
from streamlit.proto import VegaLiteChart_pb2 as streamlit_dot_proto_dot_VegaLiteChart__pb2
|
56
57
|
from streamlit.proto import Video_pb2 as streamlit_dot_proto_dot_Video__pb2
|
57
58
|
from streamlit.proto import Heading_pb2 as streamlit_dot_proto_dot_Heading__pb2
|
58
59
|
|
59
60
|
|
60
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dstreamlit/proto/Element.proto\x1a\x1bstreamlit/proto/Alert.proto\x1a\x1bstreamlit/proto/Arrow.proto\x1a\x1bstreamlit/proto/Audio.proto\x1a\x1estreamlit/proto/Balloons.proto\x1a(streamlit/proto/ArrowVegaLiteChart.proto\x1a streamlit/proto/BokehChart.proto\x1a\x1cstreamlit/proto/Button.proto\x1a$streamlit/proto/DownloadButton.proto\x1a!streamlit/proto/CameraInput.proto\x1a\x1fstreamlit/proto/ChatInput.proto\x1a\x1estreamlit/proto/Checkbox.proto\x1a\x1astreamlit/proto/Code.proto\x1a!streamlit/proto/ColorPicker.proto\x1a\x1fstreamlit/proto/DataFrame.proto\x1a\x1fstreamlit/proto/DateInput.proto\x1a%streamlit/proto/DeckGlJsonChart.proto\x1a\x1fstreamlit/proto/DocString.proto\x1a\x1bstreamlit/proto/Empty.proto\x1a\x1fstreamlit/proto/Exception.proto\x1a\x1dstreamlit/proto/Favicon.proto\x1a\"streamlit/proto/FileUploader.proto\x1a#streamlit/proto/GraphVizChart.proto\x1a\x1cstreamlit/proto/IFrame.proto\x1a\x1bstreamlit/proto/Image.proto\x1a\x1astreamlit/proto/Json.proto\x1a!streamlit/proto/NumberInput.proto\x1a\x1estreamlit/proto/Markdown.proto\x1a\x1cstreamlit/proto/Metric.proto\x1a!streamlit/proto/MultiSelect.proto\x1a!streamlit/proto/PlotlyChart.proto\x1a streamlit/proto/Components.proto\x1a\x1estreamlit/proto/Progress.proto\x1a\x1astreamlit/proto/Snow.proto\x1a\x1dstreamlit/proto/Spinner.proto\x1a\x1bstreamlit/proto/Radio.proto\x1a\x1fstreamlit/proto/Selectbox.proto\x1a\x1cstreamlit/proto/Slider.proto\x1a\x1astreamlit/proto/Text.proto\x1a\x1estreamlit/proto/TextArea.proto\x1a\x1fstreamlit/proto/TextInput.proto\x1a\x1fstreamlit/proto/TimeInput.proto\x1a#streamlit/proto/VegaLiteChart.proto\x1a\x1bstreamlit/proto/Video.proto\x1a\x1dstreamlit/proto/Heading.proto\"\
|
61
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dstreamlit/proto/Element.proto\x1a\x1bstreamlit/proto/Alert.proto\x1a\x1bstreamlit/proto/Arrow.proto\x1a\x1bstreamlit/proto/Audio.proto\x1a\x1estreamlit/proto/Balloons.proto\x1a(streamlit/proto/ArrowVegaLiteChart.proto\x1a streamlit/proto/BokehChart.proto\x1a\x1cstreamlit/proto/Button.proto\x1a$streamlit/proto/DownloadButton.proto\x1a!streamlit/proto/CameraInput.proto\x1a\x1fstreamlit/proto/ChatInput.proto\x1a\x1estreamlit/proto/Checkbox.proto\x1a\x1astreamlit/proto/Code.proto\x1a!streamlit/proto/ColorPicker.proto\x1a\x1fstreamlit/proto/DataFrame.proto\x1a\x1fstreamlit/proto/DateInput.proto\x1a%streamlit/proto/DeckGlJsonChart.proto\x1a\x1fstreamlit/proto/DocString.proto\x1a\x1bstreamlit/proto/Empty.proto\x1a\x1fstreamlit/proto/Exception.proto\x1a\x1dstreamlit/proto/Favicon.proto\x1a\"streamlit/proto/FileUploader.proto\x1a#streamlit/proto/GraphVizChart.proto\x1a\x1cstreamlit/proto/IFrame.proto\x1a\x1bstreamlit/proto/Image.proto\x1a\x1astreamlit/proto/Json.proto\x1a!streamlit/proto/NumberInput.proto\x1a\x1estreamlit/proto/Markdown.proto\x1a\x1cstreamlit/proto/Metric.proto\x1a!streamlit/proto/MultiSelect.proto\x1a!streamlit/proto/PlotlyChart.proto\x1a streamlit/proto/Components.proto\x1a\x1estreamlit/proto/Progress.proto\x1a\x1astreamlit/proto/Snow.proto\x1a\x1dstreamlit/proto/Spinner.proto\x1a\x1bstreamlit/proto/Radio.proto\x1a\x1fstreamlit/proto/Selectbox.proto\x1a\x1cstreamlit/proto/Slider.proto\x1a\x1astreamlit/proto/Text.proto\x1a\x1estreamlit/proto/TextArea.proto\x1a\x1fstreamlit/proto/TextInput.proto\x1a\x1fstreamlit/proto/TimeInput.proto\x1a\x1bstreamlit/proto/Toast.proto\x1a#streamlit/proto/VegaLiteChart.proto\x1a\x1bstreamlit/proto/Video.proto\x1a\x1dstreamlit/proto/Heading.proto\"\x94\x0c\n\x07\x45lement\x12\x17\n\x05\x61lert\x18\x1e \x01(\x0b\x32\x06.AlertH\x00\x12\"\n\x10\x61rrow_data_frame\x18( \x01(\x0b\x32\x06.ArrowH\x00\x12\x1d\n\x0b\x61rrow_table\x18\' \x01(\x0b\x32\x06.ArrowH\x00\x12\x34\n\x15\x61rrow_vega_lite_chart\x18) \x01(\x0b\x32\x13.ArrowVegaLiteChartH\x00\x12\x17\n\x05\x61udio\x18\r \x01(\x0b\x32\x06.AudioH\x00\x12\x1d\n\x08\x62\x61lloons\x18\x0c \x01(\x0b\x32\t.BalloonsH\x00\x12\"\n\x0b\x62okeh_chart\x18\x11 \x01(\x0b\x32\x0b.BokehChartH\x00\x12\x19\n\x06\x62utton\x18\x13 \x01(\x0b\x32\x07.ButtonH\x00\x12*\n\x0f\x64ownload_button\x18+ \x01(\x0b\x32\x0f.DownloadButtonH\x00\x12$\n\x0c\x63\x61mera_input\x18- \x01(\x0b\x32\x0c.CameraInputH\x00\x12 \n\nchat_input\x18\x31 \x01(\x0b\x32\n.ChatInputH\x00\x12\x1d\n\x08\x63heckbox\x18\x14 \x01(\x0b\x32\t.CheckboxH\x00\x12$\n\x0c\x63olor_picker\x18# \x01(\x0b\x32\x0c.ColorPickerH\x00\x12\x30\n\x12\x63omponent_instance\x18% \x01(\x0b\x32\x12.ComponentInstanceH\x00\x12 \n\ndata_frame\x18\x03 \x01(\x0b\x32\n.DataFrameH\x00\x12\x1b\n\x05table\x18\x0b \x01(\x0b\x32\n.DataFrameH\x00\x12 \n\ndate_input\x18\x1b \x01(\x0b\x32\n.DateInputH\x00\x12.\n\x12\x64\x65\x63k_gl_json_chart\x18\" \x01(\x0b\x32\x10.DeckGlJsonChartH\x00\x12 \n\ndoc_string\x18\x07 \x01(\x0b\x32\n.DocStringH\x00\x12\x17\n\x05\x65mpty\x18\x02 \x01(\x0b\x32\x06.EmptyH\x00\x12\x1f\n\texception\x18\x08 \x01(\x0b\x32\n.ExceptionH\x00\x12\x1b\n\x07\x66\x61vicon\x18$ \x01(\x0b\x32\x08.FaviconH\x00\x12&\n\rfile_uploader\x18! \x01(\x0b\x32\r.FileUploaderH\x00\x12(\n\x0egraphviz_chart\x18\x12 \x01(\x0b\x32\x0e.GraphVizChartH\x00\x12\x19\n\x06iframe\x18& \x01(\x0b\x32\x07.IFrameH\x00\x12\x1a\n\x04imgs\x18\x06 \x01(\x0b\x32\n.ImageListH\x00\x12\x15\n\x04json\x18\x1f \x01(\x0b\x32\x05.JsonH\x00\x12\x1d\n\x08markdown\x18\x1d \x01(\x0b\x32\t.MarkdownH\x00\x12\x19\n\x06metric\x18* \x01(\x0b\x32\x07.MetricH\x00\x12#\n\x0bmultiselect\x18\x1c \x01(\x0b\x32\x0c.MultiSelectH\x00\x12$\n\x0cnumber_input\x18 \x01(\x0b\x32\x0c.NumberInputH\x00\x12$\n\x0cplotly_chart\x18\x10 \x01(\x0b\x32\x0c.PlotlyChartH\x00\x12\x1d\n\x08progress\x18\x05 \x01(\x0b\x32\t.ProgressH\x00\x12\x17\n\x05radio\x18\x17 \x01(\x0b\x32\x06.RadioH\x00\x12\x1f\n\tselectbox\x18\x19 \x01(\x0b\x32\n.SelectboxH\x00\x12\x19\n\x06slider\x18\x15 \x01(\x0b\x32\x07.SliderH\x00\x12\x15\n\x04snow\x18. \x01(\x0b\x32\x05.SnowH\x00\x12\x1b\n\x07spinner\x18, \x01(\x0b\x32\x08.SpinnerH\x00\x12\x15\n\x04text\x18\x01 \x01(\x0b\x32\x05.TextH\x00\x12\x1e\n\ttext_area\x18\x16 \x01(\x0b\x32\t.TextAreaH\x00\x12 \n\ntext_input\x18\x18 \x01(\x0b\x32\n.TextInputH\x00\x12 \n\ntime_input\x18\x1a \x01(\x0b\x32\n.TimeInputH\x00\x12\x17\n\x05toast\x18\x32 \x01(\x0b\x32\x06.ToastH\x00\x12)\n\x0fvega_lite_chart\x18\n \x01(\x0b\x32\x0e.VegaLiteChartH\x00\x12\x17\n\x05video\x18\x0e \x01(\x0b\x32\x06.VideoH\x00\x12\x1b\n\x07heading\x18/ \x01(\x0b\x32\x08.HeadingH\x00\x12\x15\n\x04\x63ode\x18\x30 \x01(\x0b\x32\x05.CodeH\x00\x42\x06\n\x04typeJ\x04\x08\t\x10\nb\x06proto3')
|
61
62
|
|
62
63
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
63
64
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Element_pb2', globals())
|
64
65
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
65
66
|
|
66
67
|
DESCRIPTOR._options = None
|
67
|
-
_ELEMENT._serialized_start=
|
68
|
-
_ELEMENT._serialized_end=
|
68
|
+
_ELEMENT._serialized_start=1487
|
69
|
+
_ELEMENT._serialized_end=3043
|
69
70
|
# @@protoc_insertion_point(module_scope)
|
@@ -13,7 +13,7 @@ _sym_db = _symbol_database.Default()
|
|
13
13
|
|
14
14
|
|
15
15
|
|
16
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#streamlit/proto/RootContainer.proto
|
16
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#streamlit/proto/RootContainer.proto*1\n\rRootContainer\x12\x08\n\x04MAIN\x10\x00\x12\x0b\n\x07SIDEBAR\x10\x01\x12\t\n\x05\x45VENT\x10\x02\x62\x06proto3')
|
17
17
|
|
18
18
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
19
19
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.RootContainer_pb2', globals())
|
@@ -21,5 +21,5 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
21
21
|
|
22
22
|
DESCRIPTOR._options = None
|
23
23
|
_ROOTCONTAINER._serialized_start=39
|
24
|
-
_ROOTCONTAINER._serialized_end=
|
24
|
+
_ROOTCONTAINER._serialized_end=88
|
25
25
|
# @@protoc_insertion_point(module_scope)
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# source: streamlit/proto/Toast.proto
|
4
|
+
"""Generated protocol buffer code."""
|
5
|
+
from google.protobuf.internal import builder as _builder
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
9
|
+
# @@protoc_insertion_point(imports)
|
10
|
+
|
11
|
+
_sym_db = _symbol_database.Default()
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bstreamlit/proto/Toast.proto\"#\n\x05Toast\x12\x0c\n\x04\x62ody\x18\x01 \x01(\t\x12\x0c\n\x04icon\x18\x02 \x01(\tb\x06proto3')
|
17
|
+
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Toast_pb2', globals())
|
20
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
21
|
+
|
22
|
+
DESCRIPTOR._options = None
|
23
|
+
_TOAST._serialized_start=31
|
24
|
+
_TOAST._serialized_end=66
|
25
|
+
# @@protoc_insertion_point(module_scope)
|
@@ -1,149 +1,150 @@
|
|
1
1
|
{
|
2
2
|
"files": {
|
3
|
-
"main.css": "
|
4
|
-
"main.js": "
|
5
|
-
"static/js/9336.7efa8bb1.chunk.js": "
|
6
|
-
"static/js/9330.7033aa48.chunk.js": "
|
7
|
-
"static/js/2736.04439a1b.chunk.js": "
|
8
|
-
"static/js/3301.3e641e63.chunk.js": "
|
9
|
-
"static/css/6402.87b0b3fe.chunk.css": "
|
10
|
-
"static/js/6402.c7bafcbd.chunk.js": "
|
11
|
-
"static/js/1480.5e852c4b.chunk.js": "
|
12
|
-
"static/js/
|
13
|
-
"static/js/
|
14
|
-
"static/js/
|
15
|
-
"static/js/
|
16
|
-
"static/js/
|
17
|
-
"static/js/
|
18
|
-
"static/js/
|
19
|
-
"static/js/
|
20
|
-
"static/js/
|
21
|
-
"static/js/
|
22
|
-
"static/js/
|
23
|
-
"static/js/
|
24
|
-
"static/js/
|
25
|
-
"static/js/
|
26
|
-
"static/js/
|
27
|
-
"static/js/
|
28
|
-
"static/js/
|
29
|
-
"static/js/
|
30
|
-
"static/js/
|
31
|
-
"static/js/
|
32
|
-
"static/js/
|
33
|
-
"static/js/
|
34
|
-
"static/js/
|
35
|
-
"static/js/
|
36
|
-
"static/js/
|
37
|
-
"static/js/
|
38
|
-
"static/js/
|
39
|
-
"static/js/
|
40
|
-
"static/js/
|
41
|
-
"static/js/
|
42
|
-
"static/js/
|
43
|
-
"static/js/
|
44
|
-
"static/js/
|
45
|
-
"static/js/
|
46
|
-
"static/
|
47
|
-
"static/
|
48
|
-
"static/js/
|
49
|
-
"static/js/
|
50
|
-
"static/js/
|
51
|
-
"static/js/
|
52
|
-
"static/js/
|
53
|
-
"static/js/
|
54
|
-
"static/js/
|
55
|
-
"static/js/
|
56
|
-
"static/js/
|
57
|
-
"static/
|
58
|
-
"static/media/SourceSansPro-
|
59
|
-
"static/media/SourceSansPro-
|
60
|
-
"static/media/
|
61
|
-
"static/media/SourceSerifPro-
|
62
|
-
"static/media/SourceSerifPro-
|
63
|
-
"static/media/
|
64
|
-
"static/media/SourceCodePro-
|
65
|
-
"static/media/SourceCodePro-
|
66
|
-
"static/media/
|
67
|
-
"static/media/SourceSerifPro-
|
68
|
-
"static/media/SourceSerifPro-
|
69
|
-
"static/media/
|
70
|
-
"static/media/SourceCodePro-
|
71
|
-
"static/media/SourceCodePro-
|
72
|
-
"static/media/
|
73
|
-
"static/media/
|
74
|
-
"static/media/
|
75
|
-
"static/media/SourceSansPro-
|
76
|
-
"static/media/SourceSansPro-
|
77
|
-
"static/media/
|
78
|
-
"static/media/flake-
|
79
|
-
"static/media/flake-
|
80
|
-
"static/media/
|
81
|
-
"static/media/
|
82
|
-
"static/media/KaTeX_Main-
|
83
|
-
"static/media/
|
84
|
-
"static/media/
|
85
|
-
"static/media/
|
86
|
-
"static/media/
|
87
|
-
"static/media/
|
88
|
-
"static/media/KaTeX_Math-
|
89
|
-
"static/media/
|
90
|
-
"static/media/KaTeX_Main-
|
91
|
-
"static/media/
|
92
|
-
"static/media/
|
93
|
-
"static/media/
|
94
|
-
"static/media/KaTeX_Main-
|
95
|
-
"static/media/
|
96
|
-
"static/media/KaTeX_SansSerif-
|
97
|
-
"static/media/
|
98
|
-
"static/media/
|
99
|
-
"static/media/KaTeX_Fraktur-
|
100
|
-
"static/media/
|
101
|
-
"static/media/
|
102
|
-
"static/media/
|
103
|
-
"static/media/KaTeX_Math-
|
104
|
-
"static/media/
|
105
|
-
"static/media/KaTeX_Main-
|
106
|
-
"static/media/
|
107
|
-
"static/media/
|
108
|
-
"static/media/KaTeX_Math-
|
109
|
-
"static/media/
|
110
|
-
"static/media/
|
111
|
-
"static/media/KaTeX_SansSerif-
|
112
|
-
"static/media/
|
113
|
-
"static/media/
|
114
|
-
"static/media/KaTeX_Fraktur-
|
115
|
-
"static/media/
|
116
|
-
"static/media/KaTeX_Caligraphic-
|
117
|
-
"static/media/
|
118
|
-
"static/media/
|
119
|
-
"static/media/
|
120
|
-
"static/media/KaTeX_SansSerif-
|
121
|
-
"static/media/
|
122
|
-
"static/media/
|
123
|
-
"static/media/KaTeX_Fraktur-
|
124
|
-
"static/media/
|
125
|
-
"static/media/
|
126
|
-
"static/media/
|
127
|
-
"static/media/
|
128
|
-
"static/media/
|
129
|
-
"static/media/KaTeX_Caligraphic-
|
130
|
-
"static/media/
|
131
|
-
"static/media/
|
132
|
-
"static/media/KaTeX_Caligraphic-
|
133
|
-
"static/media/
|
134
|
-
"static/media/
|
135
|
-
"static/media/
|
136
|
-
"static/media/
|
137
|
-
"static/media/
|
138
|
-
"static/media/
|
139
|
-
"static/media/
|
140
|
-
"static/media/KaTeX_Size3-Regular.
|
141
|
-
"static/media/
|
142
|
-
"
|
143
|
-
"
|
3
|
+
"main.css": "./static/css/main.f4a8738f.css",
|
4
|
+
"main.js": "./static/js/main.22abd129.js",
|
5
|
+
"static/js/9336.7efa8bb1.chunk.js": "./static/js/9336.7efa8bb1.chunk.js",
|
6
|
+
"static/js/9330.7033aa48.chunk.js": "./static/js/9330.7033aa48.chunk.js",
|
7
|
+
"static/js/2736.04439a1b.chunk.js": "./static/js/2736.04439a1b.chunk.js",
|
8
|
+
"static/js/3301.3e641e63.chunk.js": "./static/js/3301.3e641e63.chunk.js",
|
9
|
+
"static/css/6402.87b0b3fe.chunk.css": "./static/css/6402.87b0b3fe.chunk.css",
|
10
|
+
"static/js/6402.c7bafcbd.chunk.js": "./static/js/6402.c7bafcbd.chunk.js",
|
11
|
+
"static/js/1480.5e852c4b.chunk.js": "./static/js/1480.5e852c4b.chunk.js",
|
12
|
+
"static/js/8427.7142ba70.chunk.js": "./static/js/8427.7142ba70.chunk.js",
|
13
|
+
"static/js/6737.20dd8dd6.chunk.js": "./static/js/6737.20dd8dd6.chunk.js",
|
14
|
+
"static/js/4483.ba79abcc.chunk.js": "./static/js/4483.ba79abcc.chunk.js",
|
15
|
+
"static/js/7062.48d77221.chunk.js": "./static/js/7062.48d77221.chunk.js",
|
16
|
+
"static/js/7805.976d112b.chunk.js": "./static/js/7805.976d112b.chunk.js",
|
17
|
+
"static/js/4500.69d3e003.chunk.js": "./static/js/4500.69d3e003.chunk.js",
|
18
|
+
"static/js/3956.ddbbcede.chunk.js": "./static/js/3956.ddbbcede.chunk.js",
|
19
|
+
"static/js/1168.39ebb497.chunk.js": "./static/js/1168.39ebb497.chunk.js",
|
20
|
+
"static/js/6385.65053b95.chunk.js": "./static/js/6385.65053b95.chunk.js",
|
21
|
+
"static/js/178.3665833c.chunk.js": "./static/js/178.3665833c.chunk.js",
|
22
|
+
"static/js/1792.93995aa0.chunk.js": "./static/js/1792.93995aa0.chunk.js",
|
23
|
+
"static/js/3513.2fca8c1a.chunk.js": "./static/js/3513.2fca8c1a.chunk.js",
|
24
|
+
"static/js/7602.9aa4595f.chunk.js": "./static/js/7602.9aa4595f.chunk.js",
|
25
|
+
"static/js/6013.69e0f4c9.chunk.js": "./static/js/6013.69e0f4c9.chunk.js",
|
26
|
+
"static/js/8492.9ccf34a2.chunk.js": "./static/js/8492.9ccf34a2.chunk.js",
|
27
|
+
"static/js/4177.4a240aed.chunk.js": "./static/js/4177.4a240aed.chunk.js",
|
28
|
+
"static/js/1451.4d9edfda.chunk.js": "./static/js/1451.4d9edfda.chunk.js",
|
29
|
+
"static/js/1074.27e2b6be.chunk.js": "./static/js/1074.27e2b6be.chunk.js",
|
30
|
+
"static/js/8477.d8369fad.chunk.js": "./static/js/8477.d8369fad.chunk.js",
|
31
|
+
"static/js/6853.a92ae425.chunk.js": "./static/js/6853.a92ae425.chunk.js",
|
32
|
+
"static/js/4477.979c4dbd.chunk.js": "./static/js/4477.979c4dbd.chunk.js",
|
33
|
+
"static/js/4319.85127b80.chunk.js": "./static/js/4319.85127b80.chunk.js",
|
34
|
+
"static/js/5106.b4dfcf80.chunk.js": "./static/js/5106.b4dfcf80.chunk.js",
|
35
|
+
"static/js/4666.edb75797.chunk.js": "./static/js/4666.edb75797.chunk.js",
|
36
|
+
"static/js/5379.2ed40e77.chunk.js": "./static/js/5379.2ed40e77.chunk.js",
|
37
|
+
"static/js/8691.100ca168.chunk.js": "./static/js/8691.100ca168.chunk.js",
|
38
|
+
"static/js/3535.12ee6039.chunk.js": "./static/js/3535.12ee6039.chunk.js",
|
39
|
+
"static/js/7175.b1049344.chunk.js": "./static/js/7175.b1049344.chunk.js",
|
40
|
+
"static/js/292.c5580281.chunk.js": "./static/js/292.c5580281.chunk.js",
|
41
|
+
"static/js/5733.b3b2020b.chunk.js": "./static/js/5733.b3b2020b.chunk.js",
|
42
|
+
"static/js/9656.acfed299.chunk.js": "./static/js/9656.acfed299.chunk.js",
|
43
|
+
"static/js/8570.2972819f.chunk.js": "./static/js/8570.2972819f.chunk.js",
|
44
|
+
"static/js/3998.1869240c.chunk.js": "./static/js/3998.1869240c.chunk.js",
|
45
|
+
"static/js/6988.5f0eaf34.chunk.js": "./static/js/6988.5f0eaf34.chunk.js",
|
46
|
+
"static/js/7142.ad6129d4.chunk.js": "./static/js/7142.ad6129d4.chunk.js",
|
47
|
+
"static/css/7898.4bdc00a1.chunk.css": "./static/css/7898.4bdc00a1.chunk.css",
|
48
|
+
"static/js/7898.adfec040.chunk.js": "./static/js/7898.adfec040.chunk.js",
|
49
|
+
"static/js/6150.ce1b4a62.chunk.js": "./static/js/6150.ce1b4a62.chunk.js",
|
50
|
+
"static/js/7929.85c9e1e0.chunk.js": "./static/js/7929.85c9e1e0.chunk.js",
|
51
|
+
"static/js/3868.e86a14af.chunk.js": "./static/js/3868.e86a14af.chunk.js",
|
52
|
+
"static/js/5791.ef1d0f71.chunk.js": "./static/js/5791.ef1d0f71.chunk.js",
|
53
|
+
"static/js/5117.a242f22e.chunk.js": "./static/js/5117.a242f22e.chunk.js",
|
54
|
+
"static/js/2187.796add2e.chunk.js": "./static/js/2187.796add2e.chunk.js",
|
55
|
+
"static/js/7956.67c910c9.chunk.js": "./static/js/7956.67c910c9.chunk.js",
|
56
|
+
"static/js/4132.8fb3b851.chunk.js": "./static/js/4132.8fb3b851.chunk.js",
|
57
|
+
"static/js/7386.c965002c.chunk.js": "./static/js/7386.c965002c.chunk.js",
|
58
|
+
"static/media/SourceSansPro-Regular.ttf": "./static/media/SourceSansPro-Regular.efa76f8326aa5cee3bdd.ttf",
|
59
|
+
"static/media/SourceSansPro-SemiBold.ttf": "./static/media/SourceSansPro-SemiBold.43cc81b496222dc9ce3c.ttf",
|
60
|
+
"static/media/SourceSansPro-Bold.ttf": "./static/media/SourceSansPro-Bold.12e6acd2589d00c9d0aa.ttf",
|
61
|
+
"static/media/SourceSerifPro-Bold.ttf": "./static/media/SourceSerifPro-Bold.bada4fe17051c992f22f.ttf",
|
62
|
+
"static/media/SourceSerifPro-SemiBold.ttf": "./static/media/SourceSerifPro-SemiBold.b27cb117978bab2c80a3.ttf",
|
63
|
+
"static/media/SourceSerifPro-Regular.ttf": "./static/media/SourceSerifPro-Regular.6f22301c30206f4bad62.ttf",
|
64
|
+
"static/media/SourceCodePro-Regular.ttf": "./static/media/SourceCodePro-Regular.70cc7ff27245e82ad414.ttf",
|
65
|
+
"static/media/SourceCodePro-SemiBold.ttf": "./static/media/SourceCodePro-SemiBold.4d4c53c06b5bebed1cf3.ttf",
|
66
|
+
"static/media/SourceCodePro-Bold.ttf": "./static/media/SourceCodePro-Bold.52ac8f3034507f1d9e53.ttf",
|
67
|
+
"static/media/SourceSerifPro-SemiBoldItalic.ttf": "./static/media/SourceSerifPro-SemiBoldItalic.1266f2c17835efdcff7b.ttf",
|
68
|
+
"static/media/SourceSerifPro-BoldItalic.ttf": "./static/media/SourceSerifPro-BoldItalic.9f9b1eb2d82e26bb2f4a.ttf",
|
69
|
+
"static/media/SourceSerifPro-Italic.ttf": "./static/media/SourceSerifPro-Italic.90931d6ad253cd8de8e4.ttf",
|
70
|
+
"static/media/SourceCodePro-Italic.ttf": "./static/media/SourceCodePro-Italic.454577c22304619db035.ttf",
|
71
|
+
"static/media/SourceCodePro-SemiBoldItalic.ttf": "./static/media/SourceCodePro-SemiBoldItalic.2f5470bc8b2cd27a5c4b.ttf",
|
72
|
+
"static/media/SourceCodePro-BoldItalic.ttf": "./static/media/SourceCodePro-BoldItalic.05b618077343fbbd92b7.ttf",
|
73
|
+
"static/media/index.cjs": "./static/media/index.b599194a631d76b49328.cjs",
|
74
|
+
"static/media/fireworks.gif": "./static/media/fireworks.0906f02ea43f1018a6d2.gif",
|
75
|
+
"static/media/SourceSansPro-Italic.ttf": "./static/media/SourceSansPro-Italic.3c01996d38a55834ddcb.ttf",
|
76
|
+
"static/media/SourceSansPro-SemiBoldItalic.ttf": "./static/media/SourceSansPro-SemiBoldItalic.c30987e28fc21daba1ae.ttf",
|
77
|
+
"static/media/SourceSansPro-BoldItalic.ttf": "./static/media/SourceSansPro-BoldItalic.7c4f9b00300acb82f0f6.ttf",
|
78
|
+
"static/media/flake-2.png": "./static/media/flake-2.e3f07d06933dd0e84c24.png",
|
79
|
+
"static/media/flake-1.png": "./static/media/flake-1.8077dc154e0bf900aa73.png",
|
80
|
+
"static/media/flake-0.png": "./static/media/flake-0.beded754e8024c73d9d2.png",
|
81
|
+
"static/media/KaTeX_AMS-Regular.ttf": "./static/media/KaTeX_AMS-Regular.853be92419a6c3766b9a.ttf",
|
82
|
+
"static/media/KaTeX_Main-Regular.ttf": "./static/media/KaTeX_Main-Regular.9eba1d77abcf2aa6e94e.ttf",
|
83
|
+
"static/media/KaTeX_Main-Bold.ttf": "./static/media/KaTeX_Main-Bold.8169508bf58f8bd92ad8.ttf",
|
84
|
+
"static/media/rocket.svg": "./static/media/rocket.b75b17d2b0a063c6cea230d1a9d77f1e.svg",
|
85
|
+
"static/media/KaTeX_Main-Italic.ttf": "./static/media/KaTeX_Main-Italic.fa675e5e4bec9eb250b6.ttf",
|
86
|
+
"static/media/KaTeX_AMS-Regular.woff": "./static/media/KaTeX_AMS-Regular.d562e886c52f12660a41.woff",
|
87
|
+
"static/media/KaTeX_Main-BoldItalic.ttf": "./static/media/KaTeX_Main-BoldItalic.828abcb200061cffbaae.ttf",
|
88
|
+
"static/media/KaTeX_Math-Italic.ttf": "./static/media/KaTeX_Math-Italic.8a5f936332e8028c7278.ttf",
|
89
|
+
"static/media/KaTeX_Math-BoldItalic.ttf": "./static/media/KaTeX_Math-BoldItalic.bf2d440b3a42ea78a998.ttf",
|
90
|
+
"static/media/KaTeX_Main-Regular.woff": "./static/media/KaTeX_Main-Regular.4f35fbcc9ee8614c2bcc.woff",
|
91
|
+
"static/media/KaTeX_Main-Bold.woff": "./static/media/KaTeX_Main-Bold.0c3b8929d377c0e9b2f3.woff",
|
92
|
+
"static/media/KaTeX_AMS-Regular.woff2": "./static/media/KaTeX_AMS-Regular.73ea273a72f4aca30ca5.woff2",
|
93
|
+
"static/media/KaTeX_Typewriter-Regular.ttf": "./static/media/KaTeX_Typewriter-Regular.c5c02d763c89380dcb4e.ttf",
|
94
|
+
"static/media/KaTeX_Main-Regular.woff2": "./static/media/KaTeX_Main-Regular.f650f111a3b890d116f1.woff2",
|
95
|
+
"static/media/KaTeX_Main-Bold.woff2": "./static/media/KaTeX_Main-Bold.39890742bc957b368704.woff2",
|
96
|
+
"static/media/KaTeX_SansSerif-Bold.ttf": "./static/media/KaTeX_SansSerif-Bold.5b49f4993ae22d7975b4.ttf",
|
97
|
+
"static/media/KaTeX_SansSerif-Italic.ttf": "./static/media/KaTeX_SansSerif-Italic.b257a18c016f37ee4543.ttf",
|
98
|
+
"static/media/KaTeX_Main-Italic.woff": "./static/media/KaTeX_Main-Italic.fd947498bc16392e76c2.woff",
|
99
|
+
"static/media/KaTeX_Fraktur-Bold.ttf": "./static/media/KaTeX_Fraktur-Bold.4c761b3711973ab04edf.ttf",
|
100
|
+
"static/media/KaTeX_Fraktur-Regular.ttf": "./static/media/KaTeX_Fraktur-Regular.ed305b5434865e06ffde.ttf",
|
101
|
+
"static/media/KaTeX_SansSerif-Regular.ttf": "./static/media/KaTeX_SansSerif-Regular.2f7bc363fc5424ebda59.ttf",
|
102
|
+
"static/media/KaTeX_Main-BoldItalic.woff": "./static/media/KaTeX_Main-BoldItalic.428978dc7837d46de091.woff",
|
103
|
+
"static/media/KaTeX_Math-Italic.woff": "./static/media/KaTeX_Math-Italic.96759856b4e70f3a8338.woff",
|
104
|
+
"static/media/KaTeX_Math-BoldItalic.woff": "./static/media/KaTeX_Math-BoldItalic.3f07ed67f06c720120ce.woff",
|
105
|
+
"static/media/KaTeX_Main-Italic.woff2": "./static/media/KaTeX_Main-Italic.fe2176f79edaa716e621.woff2",
|
106
|
+
"static/media/KaTeX_Main-BoldItalic.woff2": "./static/media/KaTeX_Main-BoldItalic.20f389c4120be058d80a.woff2",
|
107
|
+
"static/media/KaTeX_Script-Regular.ttf": "./static/media/KaTeX_Script-Regular.fc9ba5249878cd8f8d88.ttf",
|
108
|
+
"static/media/KaTeX_Math-Italic.woff2": "./static/media/KaTeX_Math-Italic.6d3d25f4820d0da8f01f.woff2",
|
109
|
+
"static/media/KaTeX_Math-BoldItalic.woff2": "./static/media/KaTeX_Math-BoldItalic.dcbcbd93bac0470b462d.woff2",
|
110
|
+
"static/media/KaTeX_Typewriter-Regular.woff": "./static/media/KaTeX_Typewriter-Regular.4c6b94fd1d07f8beff7c.woff",
|
111
|
+
"static/media/KaTeX_SansSerif-Bold.woff": "./static/media/KaTeX_SansSerif-Bold.b9cd458ac6d5889ff9c3.woff",
|
112
|
+
"static/media/KaTeX_SansSerif-Italic.woff": "./static/media/KaTeX_SansSerif-Italic.8d593cfaa96238d5e2f8.woff",
|
113
|
+
"static/media/KaTeX_Typewriter-Regular.woff2": "./static/media/KaTeX_Typewriter-Regular.c295e7f71970f03c0549.woff2",
|
114
|
+
"static/media/KaTeX_Fraktur-Bold.woff": "./static/media/KaTeX_Fraktur-Bold.354501bac435c3264834.woff",
|
115
|
+
"static/media/KaTeX_Fraktur-Regular.woff": "./static/media/KaTeX_Fraktur-Regular.6fdf0ac577be0ba82a4c.woff",
|
116
|
+
"static/media/KaTeX_Caligraphic-Bold.ttf": "./static/media/KaTeX_Caligraphic-Bold.7489a2fbfb9bfe704420.ttf",
|
117
|
+
"static/media/KaTeX_Caligraphic-Regular.ttf": "./static/media/KaTeX_Caligraphic-Regular.7e873d3833eb108a0758.ttf",
|
118
|
+
"static/media/KaTeX_SansSerif-Regular.woff": "./static/media/KaTeX_SansSerif-Regular.02271ec5cb9f5b4588ac.woff",
|
119
|
+
"static/media/KaTeX_Size1-Regular.ttf": "./static/media/KaTeX_Size1-Regular.6de7d4b539221a49e9e2.ttf",
|
120
|
+
"static/media/KaTeX_SansSerif-Bold.woff2": "./static/media/KaTeX_SansSerif-Bold.95591a929f0d32aa282a.woff2",
|
121
|
+
"static/media/KaTeX_SansSerif-Italic.woff2": "./static/media/KaTeX_SansSerif-Italic.7d393d382f3e7fb1c637.woff2",
|
122
|
+
"static/media/KaTeX_Size2-Regular.ttf": "./static/media/KaTeX_Size2-Regular.57f5c1837853986ea1db.ttf",
|
123
|
+
"static/media/KaTeX_Fraktur-Bold.woff2": "./static/media/KaTeX_Fraktur-Bold.931d67ea207ab37ee693.woff2",
|
124
|
+
"static/media/KaTeX_Fraktur-Regular.woff2": "./static/media/KaTeX_Fraktur-Regular.172d3529b26f8cedef6b.woff2",
|
125
|
+
"static/media/KaTeX_Script-Regular.woff": "./static/media/KaTeX_Script-Regular.073b3402d036714b4370.woff",
|
126
|
+
"static/media/KaTeX_Size4-Regular.ttf": "./static/media/KaTeX_Size4-Regular.4ad7c7e8bb8d10a34bb7.ttf",
|
127
|
+
"static/media/KaTeX_SansSerif-Regular.woff2": "./static/media/KaTeX_SansSerif-Regular.cd5e231e0cc53b2cb2c0.woff2",
|
128
|
+
"static/media/KaTeX_Script-Regular.woff2": "./static/media/KaTeX_Script-Regular.c81d1b2a4b75d3eded60.woff2",
|
129
|
+
"static/media/KaTeX_Caligraphic-Bold.woff": "./static/media/KaTeX_Caligraphic-Bold.d757c535a2e5902f1325.woff",
|
130
|
+
"static/media/KaTeX_Caligraphic-Regular.woff": "./static/media/KaTeX_Caligraphic-Regular.db074fa22cf224af93d7.woff",
|
131
|
+
"static/media/KaTeX_Size3-Regular.ttf": "./static/media/KaTeX_Size3-Regular.8d6b6822586eea3d3b20.ttf",
|
132
|
+
"static/media/KaTeX_Caligraphic-Bold.woff2": "./static/media/KaTeX_Caligraphic-Bold.a1abf90dfd72792a577a.woff2",
|
133
|
+
"static/media/KaTeX_Caligraphic-Regular.woff2": "./static/media/KaTeX_Caligraphic-Regular.d6484fce1ef428d5bd94.woff2",
|
134
|
+
"static/media/KaTeX_Size1-Regular.woff": "./static/media/KaTeX_Size1-Regular.0108e89c9003e8c14ea3.woff",
|
135
|
+
"static/media/KaTeX_Size2-Regular.woff": "./static/media/KaTeX_Size2-Regular.3a99e70aee4076660d38.woff",
|
136
|
+
"static/media/KaTeX_Size4-Regular.woff": "./static/media/KaTeX_Size4-Regular.aeffd8025cba3647f1a6.woff",
|
137
|
+
"static/media/KaTeX_Size1-Regular.woff2": "./static/media/KaTeX_Size1-Regular.6eec866c69313624be60.woff2",
|
138
|
+
"static/media/KaTeX_Size2-Regular.woff2": "./static/media/KaTeX_Size2-Regular.2960900c4f271311eb36.woff2",
|
139
|
+
"static/media/KaTeX_Size4-Regular.woff2": "./static/media/KaTeX_Size4-Regular.e418bf257af1052628d8.woff2",
|
140
|
+
"static/media/KaTeX_Size3-Regular.woff": "./static/media/KaTeX_Size3-Regular.7947224e8a9914fa332b.woff",
|
141
|
+
"static/media/KaTeX_Size3-Regular.woff2": "./static/media/KaTeX_Size3-Regular.e1951519f6f0596f7356.woff2",
|
142
|
+
"static/media/logo.svg": "./static/media/logo.83ae4f2fb87e38be7cbb8a5d2beb64d2.svg",
|
143
|
+
"index.html": "./index.html",
|
144
|
+
"static/media/checkmark.svg": "./static/media/checkmark.29851c8e9e6ef0c3d6c1e4efe3c1bb9e.svg"
|
144
145
|
},
|
145
146
|
"entrypoints": [
|
146
|
-
"static/css/main.
|
147
|
-
"static/js/main.
|
147
|
+
"static/css/main.f4a8738f.css",
|
148
|
+
"static/js/main.22abd129.js"
|
148
149
|
]
|
149
150
|
}
|
streamlit/static/index.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><link rel="shortcut icon" href="
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"/><link rel="shortcut icon" href="./favicon.png"/><title>Streamlit</title><script>window.prerenderReady=!1</script><script defer="defer" src="./static/js/main.22abd129.js"></script><link href="./static/css/main.f4a8738f.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|