streamlit-nightly 1.38.1.dev20240923__py2.py3-none-any.whl → 1.38.1.dev20240925__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.
Files changed (48) hide show
  1. streamlit/__init__.py +1 -1
  2. streamlit/config_option.py +2 -0
  3. streamlit/delta_generator.py +2 -0
  4. streamlit/elements/deck_gl_json_chart.py +260 -36
  5. streamlit/elements/widgets/audio_input.py +248 -0
  6. streamlit/elements/widgets/button_group.py +1 -1
  7. streamlit/proto/AudioInput_pb2.py +28 -0
  8. streamlit/proto/AudioInput_pb2.pyi +58 -0
  9. streamlit/proto/DeckGlJsonChart_pb2.py +4 -2
  10. streamlit/proto/DeckGlJsonChart_pb2.pyi +40 -2
  11. streamlit/proto/Element_pb2.py +4 -3
  12. streamlit/proto/Element_pb2.pyi +9 -4
  13. streamlit/runtime/state/common.py +4 -0
  14. streamlit/runtime/state/widgets.py +3 -1
  15. streamlit/static/asset-manifest.json +15 -13
  16. streamlit/static/index.html +1 -1
  17. streamlit/static/static/js/195.8e0d331c.chunk.js +2 -0
  18. streamlit/static/static/js/238.8d3a7d25.chunk.js +1 -0
  19. streamlit/static/static/js/245.f99079b1.chunk.js +1 -0
  20. streamlit/static/static/js/266.e595f506.chunk.js +1 -0
  21. streamlit/static/static/js/3710.d73e609f.chunk.js +1 -0
  22. streamlit/static/static/js/5281.02b3ddc4.chunk.js +1 -0
  23. streamlit/static/static/js/{5625.fe6c22ad.chunk.js → 5625.d9509933.chunk.js} +1 -1
  24. streamlit/static/static/js/{6088.c137d543.chunk.js → 6088.1164e19b.chunk.js} +1 -1
  25. streamlit/static/static/js/708.a5252e2f.chunk.js +1 -0
  26. streamlit/static/static/js/8642.58110d15.chunk.js +2 -0
  27. streamlit/static/static/js/{8815.0284d089.chunk.js → 8815.9d336691.chunk.js} +1 -1
  28. streamlit/static/static/js/9943.6af344bb.chunk.js +1 -0
  29. streamlit/static/static/js/main.e9d8ce9e.js +28 -0
  30. streamlit/web/cli.py +2 -0
  31. {streamlit_nightly-1.38.1.dev20240923.dist-info → streamlit_nightly-1.38.1.dev20240925.dist-info}/METADATA +1 -1
  32. {streamlit_nightly-1.38.1.dev20240923.dist-info → streamlit_nightly-1.38.1.dev20240925.dist-info}/RECORD +40 -35
  33. streamlit/static/static/js/2055.bca43613.chunk.js +0 -1
  34. streamlit/static/static/js/245.68a062da.chunk.js +0 -1
  35. streamlit/static/static/js/5180.e826dd46.chunk.js +0 -1
  36. streamlit/static/static/js/6789.f8dde736.chunk.js +0 -2
  37. streamlit/static/static/js/8485.81bdf474.chunk.js +0 -1
  38. streamlit/static/static/js/8642.dfef7dcb.chunk.js +0 -2
  39. streamlit/static/static/js/9943.d18fdff1.chunk.js +0 -1
  40. streamlit/static/static/js/main.829dd23b.js +0 -28
  41. /streamlit/static/static/css/{6789.81b3d18f.chunk.css → 195.81b3d18f.chunk.css} +0 -0
  42. /streamlit/static/static/js/{6789.f8dde736.chunk.js.LICENSE.txt → 195.8e0d331c.chunk.js.LICENSE.txt} +0 -0
  43. /streamlit/static/static/js/{8642.dfef7dcb.chunk.js.LICENSE.txt → 8642.58110d15.chunk.js.LICENSE.txt} +0 -0
  44. /streamlit/static/static/js/{main.829dd23b.js.LICENSE.txt → main.e9d8ce9e.js.LICENSE.txt} +0 -0
  45. {streamlit_nightly-1.38.1.dev20240923.data → streamlit_nightly-1.38.1.dev20240925.data}/scripts/streamlit.cmd +0 -0
  46. {streamlit_nightly-1.38.1.dev20240923.dist-info → streamlit_nightly-1.38.1.dev20240925.dist-info}/WHEEL +0 -0
  47. {streamlit_nightly-1.38.1.dev20240923.dist-info → streamlit_nightly-1.38.1.dev20240925.dist-info}/entry_points.txt +0 -0
  48. {streamlit_nightly-1.38.1.dev20240923.dist-info → streamlit_nightly-1.38.1.dev20240925.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,58 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ *!
5
+ Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2024)
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License");
8
+ you may not use this file except in compliance with the License.
9
+ You may obtain a copy of the License at
10
+
11
+ http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software
14
+ distributed under the License is distributed on an "AS IS" BASIS,
15
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ See the License for the specific language governing permissions and
17
+ limitations under the License.
18
+ """
19
+
20
+ import builtins
21
+ import google.protobuf.descriptor
22
+ import google.protobuf.message
23
+ import streamlit.proto.LabelVisibilityMessage_pb2
24
+ import typing
25
+
26
+ DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
27
+
28
+ @typing.final
29
+ class AudioInput(google.protobuf.message.Message):
30
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
31
+
32
+ ID_FIELD_NUMBER: builtins.int
33
+ LABEL_FIELD_NUMBER: builtins.int
34
+ HELP_FIELD_NUMBER: builtins.int
35
+ FORM_ID_FIELD_NUMBER: builtins.int
36
+ DISABLED_FIELD_NUMBER: builtins.int
37
+ LABEL_VISIBILITY_FIELD_NUMBER: builtins.int
38
+ id: builtins.str
39
+ label: builtins.str
40
+ help: builtins.str
41
+ form_id: builtins.str
42
+ disabled: builtins.bool
43
+ @property
44
+ def label_visibility(self) -> streamlit.proto.LabelVisibilityMessage_pb2.LabelVisibilityMessage: ...
45
+ def __init__(
46
+ self,
47
+ *,
48
+ id: builtins.str = ...,
49
+ label: builtins.str = ...,
50
+ help: builtins.str = ...,
51
+ form_id: builtins.str = ...,
52
+ disabled: builtins.bool = ...,
53
+ label_visibility: streamlit.proto.LabelVisibilityMessage_pb2.LabelVisibilityMessage | None = ...,
54
+ ) -> None: ...
55
+ def HasField(self, field_name: typing.Literal["label_visibility", b"label_visibility"]) -> builtins.bool: ...
56
+ def ClearField(self, field_name: typing.Literal["disabled", b"disabled", "form_id", b"form_id", "help", b"help", "id", b"id", "label", b"label", "label_visibility", b"label_visibility"]) -> None: ...
57
+
58
+ global___AudioInput = AudioInput
@@ -14,7 +14,7 @@ _sym_db = _symbol_database.Default()
14
14
 
15
15
 
16
16
 
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%streamlit/proto/DeckGlJsonChart.proto\"\x8e\x01\n\x0f\x44\x65\x63kGlJsonChart\x12\x0c\n\x04json\x18\x01 \x01(\t\x12\x0f\n\x07tooltip\x18\x02 \x01(\t\x12\x1b\n\x13use_container_width\x18\x04 \x01(\x08\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0cmapbox_token\x18\x06 \x01(\t\x12\r\n\x05width\x18\x07 \x01(\r\x12\x0e\n\x06height\x18\x08 \x01(\rB4\n\x1c\x63om.snowflake.apps.streamlitB\x14\x44\x65\x63kGlJsonChartProtob\x06proto3')
17
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%streamlit/proto/DeckGlJsonChart.proto\"\x8d\x02\n\x0f\x44\x65\x63kGlJsonChart\x12\x0c\n\x04json\x18\x01 \x01(\t\x12\x0f\n\x07tooltip\x18\x02 \x01(\t\x12\x1b\n\x13use_container_width\x18\x04 \x01(\x08\x12\n\n\x02id\x18\x05 \x01(\t\x12\x14\n\x0cmapbox_token\x18\x06 \x01(\t\x12\r\n\x05width\x18\x07 \x01(\r\x12\x0e\n\x06height\x18\x08 \x01(\r\x12\x36\n\x0eselection_mode\x18\t \x03(\x0e\x32\x1e.DeckGlJsonChart.SelectionMode\x12\x0f\n\x07\x66orm_id\x18\n \x01(\t\"4\n\rSelectionMode\x12\x11\n\rSINGLE_OBJECT\x10\x00\x12\x10\n\x0cMULTI_OBJECT\x10\x01\x42\x34\n\x1c\x63om.snowflake.apps.streamlitB\x14\x44\x65\x63kGlJsonChartProtob\x06proto3')
18
18
 
19
19
  _globals = globals()
20
20
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -23,5 +23,7 @@ if not _descriptor._USE_C_DESCRIPTORS:
23
23
  _globals['DESCRIPTOR']._loaded_options = None
24
24
  _globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\024DeckGlJsonChartProto'
25
25
  _globals['_DECKGLJSONCHART']._serialized_start=42
26
- _globals['_DECKGLJSONCHART']._serialized_end=184
26
+ _globals['_DECKGLJSONCHART']._serialized_end=311
27
+ _globals['_DECKGLJSONCHART_SELECTIONMODE']._serialized_start=259
28
+ _globals['_DECKGLJSONCHART_SELECTIONMODE']._serialized_end=311
27
29
  # @@protoc_insertion_point(module_scope)
@@ -18,16 +18,44 @@ limitations under the License.
18
18
  """
19
19
 
20
20
  import builtins
21
+ import collections.abc
21
22
  import google.protobuf.descriptor
23
+ import google.protobuf.internal.containers
24
+ import google.protobuf.internal.enum_type_wrapper
22
25
  import google.protobuf.message
26
+ import sys
23
27
  import typing
24
28
 
29
+ if sys.version_info >= (3, 10):
30
+ import typing as typing_extensions
31
+ else:
32
+ import typing_extensions
33
+
25
34
  DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
26
35
 
27
36
  @typing.final
28
37
  class DeckGlJsonChart(google.protobuf.message.Message):
29
38
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
30
39
 
40
+ class _SelectionMode:
41
+ ValueType = typing.NewType("ValueType", builtins.int)
42
+ V: typing_extensions.TypeAlias = ValueType
43
+
44
+ class _SelectionModeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[DeckGlJsonChart._SelectionMode.ValueType], builtins.type):
45
+ DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
46
+ SINGLE_OBJECT: DeckGlJsonChart._SelectionMode.ValueType # 0
47
+ """Only one object can be selected at a time."""
48
+ MULTI_OBJECT: DeckGlJsonChart._SelectionMode.ValueType # 1
49
+ """Multiple objects can be selected at a time."""
50
+
51
+ class SelectionMode(_SelectionMode, metaclass=_SelectionModeEnumTypeWrapper):
52
+ """Available selection modes:"""
53
+
54
+ SINGLE_OBJECT: DeckGlJsonChart.SelectionMode.ValueType # 0
55
+ """Only one object can be selected at a time."""
56
+ MULTI_OBJECT: DeckGlJsonChart.SelectionMode.ValueType # 1
57
+ """Multiple objects can be selected at a time."""
58
+
31
59
  JSON_FIELD_NUMBER: builtins.int
32
60
  TOOLTIP_FIELD_NUMBER: builtins.int
33
61
  USE_CONTAINER_WIDTH_FIELD_NUMBER: builtins.int
@@ -35,19 +63,27 @@ class DeckGlJsonChart(google.protobuf.message.Message):
35
63
  MAPBOX_TOKEN_FIELD_NUMBER: builtins.int
36
64
  WIDTH_FIELD_NUMBER: builtins.int
37
65
  HEIGHT_FIELD_NUMBER: builtins.int
66
+ SELECTION_MODE_FIELD_NUMBER: builtins.int
67
+ FORM_ID_FIELD_NUMBER: builtins.int
38
68
  json: builtins.str
39
69
  """The json of the pydeck object (https://deckgl.readthedocs.io/en/latest/deck.html)"""
40
70
  tooltip: builtins.str
41
71
  use_container_width: builtins.bool
42
72
  """If True, will overwrite the chart width spec to fit to container."""
43
73
  id: builtins.str
44
- """ID"""
74
+ """ID, required for selection events."""
45
75
  mapbox_token: builtins.str
46
76
  """The user-configured Mapbox token. If empty, the token id fetched from https://data.streamlit.io/tokens.json"""
47
77
  width: builtins.int
48
78
  """Width in pixels"""
49
79
  height: builtins.int
50
80
  """Height in pixels"""
81
+ form_id: builtins.str
82
+ """The form ID of the widget, this is required if the chart has selection events"""
83
+ @property
84
+ def selection_mode(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[global___DeckGlJsonChart.SelectionMode.ValueType]:
85
+ """If non-empty, treat this instance as a Widget"""
86
+
51
87
  def __init__(
52
88
  self,
53
89
  *,
@@ -58,7 +94,9 @@ class DeckGlJsonChart(google.protobuf.message.Message):
58
94
  mapbox_token: builtins.str = ...,
59
95
  width: builtins.int = ...,
60
96
  height: builtins.int = ...,
97
+ selection_mode: collections.abc.Iterable[global___DeckGlJsonChart.SelectionMode.ValueType] | None = ...,
98
+ form_id: builtins.str = ...,
61
99
  ) -> None: ...
62
- def ClearField(self, field_name: typing.Literal["height", b"height", "id", b"id", "json", b"json", "mapbox_token", b"mapbox_token", "tooltip", b"tooltip", "use_container_width", b"use_container_width", "width", b"width"]) -> None: ...
100
+ def ClearField(self, field_name: typing.Literal["form_id", b"form_id", "height", b"height", "id", b"id", "json", b"json", "mapbox_token", b"mapbox_token", "selection_mode", b"selection_mode", "tooltip", b"tooltip", "use_container_width", b"use_container_width", "width", b"width"]) -> None: ...
63
101
 
64
102
  global___DeckGlJsonChart = DeckGlJsonChart
@@ -15,6 +15,7 @@ _sym_db = _symbol_database.Default()
15
15
  from streamlit.proto import Alert_pb2 as streamlit_dot_proto_dot_Alert__pb2
16
16
  from streamlit.proto import Arrow_pb2 as streamlit_dot_proto_dot_Arrow__pb2
17
17
  from streamlit.proto import Audio_pb2 as streamlit_dot_proto_dot_Audio__pb2
18
+ from streamlit.proto import AudioInput_pb2 as streamlit_dot_proto_dot_AudioInput__pb2
18
19
  from streamlit.proto import Balloons_pb2 as streamlit_dot_proto_dot_Balloons__pb2
19
20
  from streamlit.proto import ArrowVegaLiteChart_pb2 as streamlit_dot_proto_dot_ArrowVegaLiteChart__pb2
20
21
  from streamlit.proto import BokehChart_pb2 as streamlit_dot_proto_dot_BokehChart__pb2
@@ -64,7 +65,7 @@ from streamlit.proto import Video_pb2 as streamlit_dot_proto_dot_Video__pb2
64
65
  from streamlit.proto import Heading_pb2 as streamlit_dot_proto_dot_Heading__pb2
65
66
 
66
67
 
67
- 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/ButtonGroup.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\x1astreamlit/proto/Html.proto\x1a\x1cstreamlit/proto/IFrame.proto\x1a\x1bstreamlit/proto/Image.proto\x1a\x1astreamlit/proto/Json.proto\x1a streamlit/proto/LinkButton.proto\x1a!streamlit/proto/NumberInput.proto\x1a\x1estreamlit/proto/Markdown.proto\x1a\x1cstreamlit/proto/Metric.proto\x1a!streamlit/proto/MultiSelect.proto\x1a\x1estreamlit/proto/PageLink.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\x1estreamlit/proto/Skeleton.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\"\xb4\r\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\x0c\x62utton_group\x18\x37 \x01(\x0b\x32\x0c.ButtonGroupH\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\x15\n\x04html\x18\x36 \x01(\x0b\x32\x05.HtmlH\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\"\n\x0blink_button\x18\x33 \x01(\x0b\x32\x0b.LinkButtonH\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\x1e\n\tpage_link\x18\x35 \x01(\x0b\x32\t.PageLinkH\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\x1d\n\x08skeleton\x18\x34 \x01(\x0b\x32\t.SkeletonH\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,\n\x1c\x63om.snowflake.apps.streamlitB\x0c\x45lementProtob\x06proto3')
68
+ 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 streamlit/proto/AudioInput.proto\x1a\x1estreamlit/proto/Balloons.proto\x1a(streamlit/proto/ArrowVegaLiteChart.proto\x1a streamlit/proto/BokehChart.proto\x1a\x1cstreamlit/proto/Button.proto\x1a!streamlit/proto/ButtonGroup.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\x1astreamlit/proto/Html.proto\x1a\x1cstreamlit/proto/IFrame.proto\x1a\x1bstreamlit/proto/Image.proto\x1a\x1astreamlit/proto/Json.proto\x1a streamlit/proto/LinkButton.proto\x1a!streamlit/proto/NumberInput.proto\x1a\x1estreamlit/proto/Markdown.proto\x1a\x1cstreamlit/proto/Metric.proto\x1a!streamlit/proto/MultiSelect.proto\x1a\x1estreamlit/proto/PageLink.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\x1estreamlit/proto/Skeleton.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\"\xd8\r\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\"\n\x0b\x61udio_input\x18\x38 \x01(\x0b\x32\x0b.AudioInputH\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\x0c\x62utton_group\x18\x37 \x01(\x0b\x32\x0c.ButtonGroupH\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\x15\n\x04html\x18\x36 \x01(\x0b\x32\x05.HtmlH\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\"\n\x0blink_button\x18\x33 \x01(\x0b\x32\x0b.LinkButtonH\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\x1e\n\tpage_link\x18\x35 \x01(\x0b\x32\t.PageLinkH\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\x1d\n\x08skeleton\x18\x34 \x01(\x0b\x32\t.SkeletonH\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,\n\x1c\x63om.snowflake.apps.streamlitB\x0c\x45lementProtob\x06proto3')
68
69
 
69
70
  _globals = globals()
70
71
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
@@ -72,6 +73,6 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Element_pb2
72
73
  if not _descriptor._USE_C_DESCRIPTORS:
73
74
  _globals['DESCRIPTOR']._loaded_options = None
74
75
  _globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\014ElementProto'
75
- _globals['_ELEMENT']._serialized_start=1648
76
- _globals['_ELEMENT']._serialized_end=3364
76
+ _globals['_ELEMENT']._serialized_start=1682
77
+ _globals['_ELEMENT']._serialized_end=3434
77
78
  # @@protoc_insertion_point(module_scope)
@@ -23,6 +23,7 @@ import google.protobuf.message
23
23
  import streamlit.proto.Alert_pb2
24
24
  import streamlit.proto.ArrowVegaLiteChart_pb2
25
25
  import streamlit.proto.Arrow_pb2
26
+ import streamlit.proto.AudioInput_pb2
26
27
  import streamlit.proto.Audio_pb2
27
28
  import streamlit.proto.Balloons_pb2
28
29
  import streamlit.proto.BokehChart_pb2
@@ -85,6 +86,7 @@ class Element(google.protobuf.message.Message):
85
86
  ARROW_TABLE_FIELD_NUMBER: builtins.int
86
87
  ARROW_VEGA_LITE_CHART_FIELD_NUMBER: builtins.int
87
88
  AUDIO_FIELD_NUMBER: builtins.int
89
+ AUDIO_INPUT_FIELD_NUMBER: builtins.int
88
90
  BALLOONS_FIELD_NUMBER: builtins.int
89
91
  BOKEH_CHART_FIELD_NUMBER: builtins.int
90
92
  BUTTON_FIELD_NUMBER: builtins.int
@@ -143,6 +145,8 @@ class Element(google.protobuf.message.Message):
143
145
  @property
144
146
  def audio(self) -> streamlit.proto.Audio_pb2.Audio: ...
145
147
  @property
148
+ def audio_input(self) -> streamlit.proto.AudioInput_pb2.AudioInput: ...
149
+ @property
146
150
  def balloons(self) -> streamlit.proto.Balloons_pb2.Balloons: ...
147
151
  @property
148
152
  def bokeh_chart(self) -> streamlit.proto.BokehChart_pb2.BokehChart: ...
@@ -242,7 +246,7 @@ class Element(google.protobuf.message.Message):
242
246
  def heading(self) -> streamlit.proto.Heading_pb2.Heading: ...
243
247
  @property
244
248
  def code(self) -> streamlit.proto.Code_pb2.Code:
245
- """Next ID: 56"""
249
+ """Next ID: 57"""
246
250
 
247
251
  def __init__(
248
252
  self,
@@ -252,6 +256,7 @@ class Element(google.protobuf.message.Message):
252
256
  arrow_table: streamlit.proto.Arrow_pb2.Arrow | None = ...,
253
257
  arrow_vega_lite_chart: streamlit.proto.ArrowVegaLiteChart_pb2.ArrowVegaLiteChart | None = ...,
254
258
  audio: streamlit.proto.Audio_pb2.Audio | None = ...,
259
+ audio_input: streamlit.proto.AudioInput_pb2.AudioInput | None = ...,
255
260
  balloons: streamlit.proto.Balloons_pb2.Balloons | None = ...,
256
261
  bokeh_chart: streamlit.proto.BokehChart_pb2.BokehChart | None = ...,
257
262
  button: streamlit.proto.Button_pb2.Button | None = ...,
@@ -300,8 +305,8 @@ class Element(google.protobuf.message.Message):
300
305
  heading: streamlit.proto.Heading_pb2.Heading | None = ...,
301
306
  code: streamlit.proto.Code_pb2.Code | None = ...,
302
307
  ) -> None: ...
303
- def HasField(self, field_name: typing.Literal["alert", b"alert", "arrow_data_frame", b"arrow_data_frame", "arrow_table", b"arrow_table", "arrow_vega_lite_chart", b"arrow_vega_lite_chart", "audio", b"audio", "balloons", b"balloons", "bokeh_chart", b"bokeh_chart", "button", b"button", "button_group", b"button_group", "camera_input", b"camera_input", "chat_input", b"chat_input", "checkbox", b"checkbox", "code", b"code", "color_picker", b"color_picker", "component_instance", b"component_instance", "data_frame", b"data_frame", "date_input", b"date_input", "deck_gl_json_chart", b"deck_gl_json_chart", "doc_string", b"doc_string", "download_button", b"download_button", "empty", b"empty", "exception", b"exception", "favicon", b"favicon", "file_uploader", b"file_uploader", "graphviz_chart", b"graphviz_chart", "heading", b"heading", "html", b"html", "iframe", b"iframe", "imgs", b"imgs", "json", b"json", "link_button", b"link_button", "markdown", b"markdown", "metric", b"metric", "multiselect", b"multiselect", "number_input", b"number_input", "page_link", b"page_link", "plotly_chart", b"plotly_chart", "progress", b"progress", "radio", b"radio", "selectbox", b"selectbox", "skeleton", b"skeleton", "slider", b"slider", "snow", b"snow", "spinner", b"spinner", "table", b"table", "text", b"text", "text_area", b"text_area", "text_input", b"text_input", "time_input", b"time_input", "toast", b"toast", "type", b"type", "vega_lite_chart", b"vega_lite_chart", "video", b"video"]) -> builtins.bool: ...
304
- def ClearField(self, field_name: typing.Literal["alert", b"alert", "arrow_data_frame", b"arrow_data_frame", "arrow_table", b"arrow_table", "arrow_vega_lite_chart", b"arrow_vega_lite_chart", "audio", b"audio", "balloons", b"balloons", "bokeh_chart", b"bokeh_chart", "button", b"button", "button_group", b"button_group", "camera_input", b"camera_input", "chat_input", b"chat_input", "checkbox", b"checkbox", "code", b"code", "color_picker", b"color_picker", "component_instance", b"component_instance", "data_frame", b"data_frame", "date_input", b"date_input", "deck_gl_json_chart", b"deck_gl_json_chart", "doc_string", b"doc_string", "download_button", b"download_button", "empty", b"empty", "exception", b"exception", "favicon", b"favicon", "file_uploader", b"file_uploader", "graphviz_chart", b"graphviz_chart", "heading", b"heading", "html", b"html", "iframe", b"iframe", "imgs", b"imgs", "json", b"json", "link_button", b"link_button", "markdown", b"markdown", "metric", b"metric", "multiselect", b"multiselect", "number_input", b"number_input", "page_link", b"page_link", "plotly_chart", b"plotly_chart", "progress", b"progress", "radio", b"radio", "selectbox", b"selectbox", "skeleton", b"skeleton", "slider", b"slider", "snow", b"snow", "spinner", b"spinner", "table", b"table", "text", b"text", "text_area", b"text_area", "text_input", b"text_input", "time_input", b"time_input", "toast", b"toast", "type", b"type", "vega_lite_chart", b"vega_lite_chart", "video", b"video"]) -> None: ...
305
- def WhichOneof(self, oneof_group: typing.Literal["type", b"type"]) -> typing.Literal["alert", "arrow_data_frame", "arrow_table", "arrow_vega_lite_chart", "audio", "balloons", "bokeh_chart", "button", "button_group", "download_button", "camera_input", "chat_input", "checkbox", "color_picker", "component_instance", "data_frame", "table", "date_input", "deck_gl_json_chart", "doc_string", "empty", "exception", "favicon", "file_uploader", "graphviz_chart", "html", "iframe", "imgs", "json", "link_button", "markdown", "metric", "multiselect", "number_input", "page_link", "plotly_chart", "progress", "radio", "selectbox", "skeleton", "slider", "snow", "spinner", "text", "text_area", "text_input", "time_input", "toast", "vega_lite_chart", "video", "heading", "code"] | None: ...
308
+ def HasField(self, field_name: typing.Literal["alert", b"alert", "arrow_data_frame", b"arrow_data_frame", "arrow_table", b"arrow_table", "arrow_vega_lite_chart", b"arrow_vega_lite_chart", "audio", b"audio", "audio_input", b"audio_input", "balloons", b"balloons", "bokeh_chart", b"bokeh_chart", "button", b"button", "button_group", b"button_group", "camera_input", b"camera_input", "chat_input", b"chat_input", "checkbox", b"checkbox", "code", b"code", "color_picker", b"color_picker", "component_instance", b"component_instance", "data_frame", b"data_frame", "date_input", b"date_input", "deck_gl_json_chart", b"deck_gl_json_chart", "doc_string", b"doc_string", "download_button", b"download_button", "empty", b"empty", "exception", b"exception", "favicon", b"favicon", "file_uploader", b"file_uploader", "graphviz_chart", b"graphviz_chart", "heading", b"heading", "html", b"html", "iframe", b"iframe", "imgs", b"imgs", "json", b"json", "link_button", b"link_button", "markdown", b"markdown", "metric", b"metric", "multiselect", b"multiselect", "number_input", b"number_input", "page_link", b"page_link", "plotly_chart", b"plotly_chart", "progress", b"progress", "radio", b"radio", "selectbox", b"selectbox", "skeleton", b"skeleton", "slider", b"slider", "snow", b"snow", "spinner", b"spinner", "table", b"table", "text", b"text", "text_area", b"text_area", "text_input", b"text_input", "time_input", b"time_input", "toast", b"toast", "type", b"type", "vega_lite_chart", b"vega_lite_chart", "video", b"video"]) -> builtins.bool: ...
309
+ def ClearField(self, field_name: typing.Literal["alert", b"alert", "arrow_data_frame", b"arrow_data_frame", "arrow_table", b"arrow_table", "arrow_vega_lite_chart", b"arrow_vega_lite_chart", "audio", b"audio", "audio_input", b"audio_input", "balloons", b"balloons", "bokeh_chart", b"bokeh_chart", "button", b"button", "button_group", b"button_group", "camera_input", b"camera_input", "chat_input", b"chat_input", "checkbox", b"checkbox", "code", b"code", "color_picker", b"color_picker", "component_instance", b"component_instance", "data_frame", b"data_frame", "date_input", b"date_input", "deck_gl_json_chart", b"deck_gl_json_chart", "doc_string", b"doc_string", "download_button", b"download_button", "empty", b"empty", "exception", b"exception", "favicon", b"favicon", "file_uploader", b"file_uploader", "graphviz_chart", b"graphviz_chart", "heading", b"heading", "html", b"html", "iframe", b"iframe", "imgs", b"imgs", "json", b"json", "link_button", b"link_button", "markdown", b"markdown", "metric", b"metric", "multiselect", b"multiselect", "number_input", b"number_input", "page_link", b"page_link", "plotly_chart", b"plotly_chart", "progress", b"progress", "radio", b"radio", "selectbox", b"selectbox", "skeleton", b"skeleton", "slider", b"slider", "snow", b"snow", "spinner", b"spinner", "table", b"table", "text", b"text", "text_area", b"text_area", "text_input", b"text_input", "time_input", b"time_input", "toast", b"toast", "type", b"type", "vega_lite_chart", b"vega_lite_chart", "video", b"video"]) -> None: ...
310
+ def WhichOneof(self, oneof_group: typing.Literal["type", b"type"]) -> typing.Literal["alert", "arrow_data_frame", "arrow_table", "arrow_vega_lite_chart", "audio", "audio_input", "balloons", "bokeh_chart", "button", "button_group", "download_button", "camera_input", "chat_input", "checkbox", "color_picker", "component_instance", "data_frame", "table", "date_input", "deck_gl_json_chart", "doc_string", "empty", "exception", "favicon", "file_uploader", "graphviz_chart", "html", "iframe", "imgs", "json", "link_button", "markdown", "metric", "multiselect", "number_input", "page_link", "plotly_chart", "progress", "radio", "selectbox", "skeleton", "slider", "snow", "spinner", "text", "text_area", "text_input", "time_input", "toast", "vega_lite_chart", "video", "heading", "code"] | None: ...
306
311
 
307
312
  global___Element = Element
@@ -39,6 +39,7 @@ from streamlit.errors import (
39
39
  )
40
40
  from streamlit.proto.Arrow_pb2 import Arrow
41
41
  from streamlit.proto.ArrowVegaLiteChart_pb2 import ArrowVegaLiteChart
42
+ from streamlit.proto.AudioInput_pb2 import AudioInput
42
43
  from streamlit.proto.Button_pb2 import Button
43
44
  from streamlit.proto.ButtonGroup_pb2 import ButtonGroup
44
45
  from streamlit.proto.CameraInput_pb2 import CameraInput
@@ -47,6 +48,7 @@ from streamlit.proto.Checkbox_pb2 import Checkbox
47
48
  from streamlit.proto.ColorPicker_pb2 import ColorPicker
48
49
  from streamlit.proto.Components_pb2 import ComponentInstance
49
50
  from streamlit.proto.DateInput_pb2 import DateInput
51
+ from streamlit.proto.DeckGlJsonChart_pb2 import DeckGlJsonChart
50
52
  from streamlit.proto.DownloadButton_pb2 import DownloadButton
51
53
  from streamlit.proto.FileUploader_pb2 import FileUploader
52
54
  from streamlit.proto.MultiSelect_pb2 import MultiSelect
@@ -63,6 +65,7 @@ from streamlit.proto.TimeInput_pb2 import TimeInput
63
65
  WidgetProto: TypeAlias = Union[
64
66
  Arrow,
65
67
  ArrowVegaLiteChart,
68
+ AudioInput,
66
69
  Button,
67
70
  ButtonGroup,
68
71
  CameraInput,
@@ -71,6 +74,7 @@ WidgetProto: TypeAlias = Union[
71
74
  ColorPicker,
72
75
  ComponentInstance,
73
76
  DateInput,
77
+ DeckGlJsonChart,
74
78
  DownloadButton,
75
79
  FileUploader,
76
80
  MultiSelect,
@@ -48,16 +48,18 @@ ElementType: TypeAlias = str
48
48
  ELEMENT_TYPE_TO_VALUE_TYPE: Final[Mapping[ElementType, ValueFieldName]] = (
49
49
  MappingProxyType(
50
50
  {
51
+ "audio_input": "file_uploader_state_value",
51
52
  "button": "trigger_value",
52
53
  "button_group": "int_array_value",
53
54
  "camera_input": "file_uploader_state_value",
54
- "checkbox": "bool_value",
55
55
  "chat_input": "string_trigger_value",
56
+ "checkbox": "bool_value",
56
57
  "color_picker": "string_value",
57
58
  "component_instance": "json_value",
58
59
  "data_editor": "string_value",
59
60
  "dataframe": "string_value",
60
61
  "date_input": "string_array_value",
62
+ "deck_gl_json_chart": "string_value",
61
63
  "download_button": "trigger_value",
62
64
  "file_uploader": "file_uploader_state_value",
63
65
  "multiselect": "int_array_value",
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "files": {
3
3
  "main.css": "./static/css/main.5513bd04.css",
4
- "main.js": "./static/js/main.829dd23b.js",
4
+ "main.js": "./static/js/main.e9d8ce9e.js",
5
5
  "static/js/6679.265ca09c.chunk.js": "./static/js/6679.265ca09c.chunk.js",
6
6
  "static/js/9464.7e9a3c0a.chunk.js": "./static/js/9464.7e9a3c0a.chunk.js",
7
7
  "static/js/9077.e0a8db2a.chunk.js": "./static/js/9077.e0a8db2a.chunk.js",
8
8
  "static/js/3391.663b9d47.chunk.js": "./static/js/3391.663b9d47.chunk.js",
9
9
  "static/css/9943.93909c7e.chunk.css": "./static/css/9943.93909c7e.chunk.css",
10
- "static/js/9943.d18fdff1.chunk.js": "./static/js/9943.d18fdff1.chunk.js",
10
+ "static/js/9943.6af344bb.chunk.js": "./static/js/9943.6af344bb.chunk.js",
11
11
  "static/css/5711.c24b25fa.chunk.css": "./static/css/5711.c24b25fa.chunk.css",
12
12
  "static/js/5711.229cb7d0.chunk.js": "./static/js/5711.229cb7d0.chunk.js",
13
13
  "static/js/3861.0dedcd19.chunk.js": "./static/js/3861.0dedcd19.chunk.js",
14
- "static/js/8642.dfef7dcb.chunk.js": "./static/js/8642.dfef7dcb.chunk.js",
15
- "static/js/8485.81bdf474.chunk.js": "./static/js/8485.81bdf474.chunk.js",
14
+ "static/js/8642.58110d15.chunk.js": "./static/js/8642.58110d15.chunk.js",
15
+ "static/js/3710.d73e609f.chunk.js": "./static/js/3710.d73e609f.chunk.js",
16
16
  "static/js/8148.f51df66c.chunk.js": "./static/js/8148.f51df66c.chunk.js",
17
17
  "static/js/84.414fa87b.chunk.js": "./static/js/84.414fa87b.chunk.js",
18
18
  "static/js/9923.7061d124.chunk.js": "./static/js/9923.7061d124.chunk.js",
@@ -20,22 +20,23 @@
20
20
  "static/js/4827.f9cb5fa3.chunk.js": "./static/js/4827.f9cb5fa3.chunk.js",
21
21
  "static/js/8237.210a5ac4.chunk.js": "./static/js/8237.210a5ac4.chunk.js",
22
22
  "static/js/5828.f8572ba4.chunk.js": "./static/js/5828.f8572ba4.chunk.js",
23
+ "static/js/266.e595f506.chunk.js": "./static/js/266.e595f506.chunk.js",
23
24
  "static/js/9060.1ec8dc2b.chunk.js": "./static/js/9060.1ec8dc2b.chunk.js",
24
- "static/js/5625.fe6c22ad.chunk.js": "./static/js/5625.fe6c22ad.chunk.js",
25
+ "static/js/5625.d9509933.chunk.js": "./static/js/5625.d9509933.chunk.js",
25
26
  "static/js/6141.43a8fda3.chunk.js": "./static/js/6141.43a8fda3.chunk.js",
26
27
  "static/js/4103.d863052a.chunk.js": "./static/js/4103.d863052a.chunk.js",
27
28
  "static/js/1086.464de8f9.chunk.js": "./static/js/1086.464de8f9.chunk.js",
28
- "static/js/245.68a062da.chunk.js": "./static/js/245.68a062da.chunk.js",
29
+ "static/js/245.f99079b1.chunk.js": "./static/js/245.f99079b1.chunk.js",
29
30
  "static/js/7193.2594a18c.chunk.js": "./static/js/7193.2594a18c.chunk.js",
30
31
  "static/js/6360.6d7cfa35.chunk.js": "./static/js/6360.6d7cfa35.chunk.js",
31
32
  "static/js/8790.0b98f286.chunk.js": "./static/js/8790.0b98f286.chunk.js",
32
- "static/js/8815.0284d089.chunk.js": "./static/js/8815.0284d089.chunk.js",
33
+ "static/js/8815.9d336691.chunk.js": "./static/js/8815.9d336691.chunk.js",
33
34
  "static/js/9528.746f7a0e.chunk.js": "./static/js/9528.746f7a0e.chunk.js",
34
35
  "static/js/7809.063e3004.chunk.js": "./static/js/7809.063e3004.chunk.js",
35
- "static/js/6088.c137d543.chunk.js": "./static/js/6088.c137d543.chunk.js",
36
+ "static/js/6088.1164e19b.chunk.js": "./static/js/6088.1164e19b.chunk.js",
36
37
  "static/js/8166.11abccb8.chunk.js": "./static/js/8166.11abccb8.chunk.js",
37
38
  "static/js/9114.1ee3d4dd.chunk.js": "./static/js/9114.1ee3d4dd.chunk.js",
38
- "static/js/5180.e826dd46.chunk.js": "./static/js/5180.e826dd46.chunk.js",
39
+ "static/js/5281.02b3ddc4.chunk.js": "./static/js/5281.02b3ddc4.chunk.js",
39
40
  "static/js/5618.0a42d599.chunk.js": "./static/js/5618.0a42d599.chunk.js",
40
41
  "static/js/1260.e6289cc2.chunk.js": "./static/js/1260.e6289cc2.chunk.js",
41
42
  "static/js/3560.ce031236.chunk.js": "./static/js/3560.ce031236.chunk.js",
@@ -51,19 +52,20 @@
51
52
  "static/js/766.e3700e32.chunk.js": "./static/js/766.e3700e32.chunk.js",
52
53
  "static/js/783.788bb3ab.chunk.js": "./static/js/783.788bb3ab.chunk.js",
53
54
  "static/js/5544.2769497c.chunk.js": "./static/js/5544.2769497c.chunk.js",
54
- "static/css/6789.81b3d18f.chunk.css": "./static/css/6789.81b3d18f.chunk.css",
55
- "static/js/6789.f8dde736.chunk.js": "./static/js/6789.f8dde736.chunk.js",
55
+ "static/css/195.81b3d18f.chunk.css": "./static/css/195.81b3d18f.chunk.css",
56
+ "static/js/195.8e0d331c.chunk.js": "./static/js/195.8e0d331c.chunk.js",
56
57
  "static/js/7612.39e7938b.chunk.js": "./static/js/7612.39e7938b.chunk.js",
57
58
  "static/js/3389.71902a75.chunk.js": "./static/js/3389.71902a75.chunk.js",
58
59
  "static/js/4297.3afbdd03.chunk.js": "./static/js/4297.3afbdd03.chunk.js",
59
60
  "static/js/4942.e4db7877.chunk.js": "./static/js/4942.e4db7877.chunk.js",
60
61
  "static/js/2627.2462a014.chunk.js": "./static/js/2627.2462a014.chunk.js",
62
+ "static/js/708.a5252e2f.chunk.js": "./static/js/708.a5252e2f.chunk.js",
61
63
  "static/js/5764.5a55e5be.chunk.js": "./static/js/5764.5a55e5be.chunk.js",
62
64
  "static/js/797.36f1bf7d.chunk.js": "./static/js/797.36f1bf7d.chunk.js",
63
65
  "static/js/6198.956025ac.chunk.js": "./static/js/6198.956025ac.chunk.js",
64
66
  "static/js/1674.86aea8e0.chunk.js": "./static/js/1674.86aea8e0.chunk.js",
65
67
  "static/js/7591.b3928443.chunk.js": "./static/js/7591.b3928443.chunk.js",
66
- "static/js/2055.bca43613.chunk.js": "./static/js/2055.bca43613.chunk.js",
68
+ "static/js/238.8d3a7d25.chunk.js": "./static/js/238.8d3a7d25.chunk.js",
67
69
  "static/media/MaterialSymbols-Rounded.woff2": "./static/media/MaterialSymbols-Rounded.ec07649f7a20048d5730.woff2",
68
70
  "static/media/fireworks.gif": "./static/media/fireworks.0906f02ea43f1018a6d2.gif",
69
71
  "static/media/flake-2.png": "./static/media/flake-2.e3f07d06933dd0e84c24.png",
@@ -154,6 +156,6 @@
154
156
  },
155
157
  "entrypoints": [
156
158
  "static/css/main.5513bd04.css",
157
- "static/js/main.829dd23b.js"
159
+ "static/js/main.e9d8ce9e.js"
158
160
  ]
159
161
  }
@@ -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="./favicon.png"/><link rel="preload" href="./static/media/SourceSansPro-Regular.0d69e5ff5e92ac64a0c9.woff2" as="font" type="font/woff2" crossorigin><link rel="preload" href="./static/media/SourceSansPro-SemiBold.abed79cd0df1827e18cf.woff2" as="font" type="font/woff2" crossorigin><link rel="preload" href="./static/media/SourceSansPro-Bold.118dea98980e20a81ced.woff2" as="font" type="font/woff2" crossorigin><title>Streamlit</title><script>window.prerenderReady=!1</script><script defer="defer" src="./static/js/main.829dd23b.js"></script><link href="./static/css/main.5513bd04.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
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"/><link rel="preload" href="./static/media/SourceSansPro-Regular.0d69e5ff5e92ac64a0c9.woff2" as="font" type="font/woff2" crossorigin><link rel="preload" href="./static/media/SourceSansPro-SemiBold.abed79cd0df1827e18cf.woff2" as="font" type="font/woff2" crossorigin><link rel="preload" href="./static/media/SourceSansPro-Bold.118dea98980e20a81ced.woff2" as="font" type="font/woff2" crossorigin><title>Streamlit</title><script>window.prerenderReady=!1</script><script defer="defer" src="./static/js/main.e9d8ce9e.js"></script><link href="./static/css/main.5513bd04.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>