streamlit-nightly 1.36.1.dev20240709__py2.py3-none-any.whl → 1.36.1.dev20240711__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 (27) hide show
  1. streamlit/__init__.py +1 -0
  2. streamlit/delta_generator.py +2 -0
  3. streamlit/elements/lib/options_selector_utils.py +76 -0
  4. streamlit/elements/widgets/button.py +9 -1
  5. streamlit/elements/widgets/button_group.py +411 -0
  6. streamlit/elements/widgets/multiselect.py +88 -115
  7. streamlit/file_util.py +3 -4
  8. streamlit/proto/ButtonGroup_pb2.py +33 -0
  9. streamlit/proto/ButtonGroup_pb2.pyi +122 -0
  10. streamlit/proto/Element_pb2.py +4 -3
  11. streamlit/proto/Element_pb2.pyi +9 -4
  12. streamlit/runtime/state/common.py +2 -0
  13. streamlit/runtime/state/widgets.py +1 -0
  14. streamlit/static/asset-manifest.json +3 -2
  15. streamlit/static/index.html +1 -1
  16. streamlit/static/static/js/1116.841caf48.chunk.js +1 -0
  17. streamlit/static/static/js/main.917a5920.js +2 -0
  18. streamlit/testing/v1/app_test.py +5 -0
  19. streamlit/testing/v1/element_tree.py +92 -0
  20. {streamlit_nightly-1.36.1.dev20240709.dist-info → streamlit_nightly-1.36.1.dev20240711.dist-info}/METADATA +1 -1
  21. {streamlit_nightly-1.36.1.dev20240709.dist-info → streamlit_nightly-1.36.1.dev20240711.dist-info}/RECORD +26 -21
  22. streamlit/static/static/js/main.2bfed63a.js +0 -2
  23. /streamlit/static/static/js/{main.2bfed63a.js.LICENSE.txt → main.917a5920.js.LICENSE.txt} +0 -0
  24. {streamlit_nightly-1.36.1.dev20240709.data → streamlit_nightly-1.36.1.dev20240711.data}/scripts/streamlit.cmd +0 -0
  25. {streamlit_nightly-1.36.1.dev20240709.dist-info → streamlit_nightly-1.36.1.dev20240711.dist-info}/WHEEL +0 -0
  26. {streamlit_nightly-1.36.1.dev20240709.dist-info → streamlit_nightly-1.36.1.dev20240711.dist-info}/entry_points.txt +0 -0
  27. {streamlit_nightly-1.36.1.dev20240709.dist-info → streamlit_nightly-1.36.1.dev20240711.dist-info}/top_level.txt +0 -0
@@ -38,6 +38,7 @@ from streamlit.runtime.state.session_state import SessionState
38
38
  from streamlit.testing.v1.element_tree import (
39
39
  Block,
40
40
  Button,
41
+ ButtonGroup,
41
42
  Caption,
42
43
  ChatInput,
43
44
  ChatMessage,
@@ -456,6 +457,10 @@ class AppTest:
456
457
  """
457
458
  return self._tree.button
458
459
 
460
+ @property
461
+ def button_group(self) -> WidgetList[ButtonGroup[Any]]:
462
+ return self._tree.button_group
463
+
459
464
  @property
460
465
  def caption(self) -> ElementList[Caption]:
461
466
  """Sequence of all ``st.caption`` elements.
@@ -60,6 +60,7 @@ if TYPE_CHECKING:
60
60
  from streamlit.proto.Arrow_pb2 import Arrow as ArrowProto
61
61
  from streamlit.proto.Block_pb2 import Block as BlockProto
62
62
  from streamlit.proto.Button_pb2 import Button as ButtonProto
63
+ from streamlit.proto.ButtonGroup_pb2 import ButtonGroup as ButtonGroupProto
63
64
  from streamlit.proto.ChatInput_pb2 import ChatInput as ChatInputProto
64
65
  from streamlit.proto.Code_pb2 import Code as CodeProto
65
66
  from streamlit.proto.ColorPicker_pb2 import ColorPicker as ColorPickerProto
@@ -694,6 +695,91 @@ class Metric(Element):
694
695
  return self.proto.body
695
696
 
696
697
 
698
+ @dataclass(repr=False)
699
+ class ButtonGroup(Widget, Generic[T]):
700
+ """A representation of button_group that is used by ``st.feedback``."""
701
+
702
+ _value: list[T] | None
703
+
704
+ proto: ButtonGroupProto = field(repr=False)
705
+ options: list[ButtonGroupProto.Option]
706
+ form_id: str
707
+
708
+ def __init__(self, proto: ButtonGroupProto, root: ElementTree):
709
+ super().__init__(proto, root)
710
+ self.type = "button_group"
711
+ self.options = list(proto.options)
712
+
713
+ @property
714
+ def _widget_state(self) -> WidgetState:
715
+ """Protobuf message representing the state of the widget, including
716
+ any interactions that have happened.
717
+ Should be the same as the frontend would produce for those interactions.
718
+ """
719
+ ws = WidgetState()
720
+ ws.id = self.id
721
+ ws.int_array_value.data[:] = self.indices
722
+ return ws
723
+
724
+ @property
725
+ def value(self) -> list[T]:
726
+ """The currently selected values from the options. (list)"""
727
+ if self._value is not None:
728
+ return self._value
729
+ else:
730
+ state = self.root.session_state
731
+ assert state
732
+ return cast(List[T], state[self.id])
733
+
734
+ @property
735
+ def indices(self) -> Sequence[int]:
736
+ """The indices of the currently selected values from the options. (list)"""
737
+ return [self.options.index(self.format_func(v)) for v in self.value]
738
+
739
+ @property
740
+ def format_func(self) -> Callable[[Any], Any]:
741
+ """The widget's formatting function for displaying options. (callable)"""
742
+ ss = self.root.session_state
743
+ return cast(Callable[[Any], Any], ss[TESTING_KEY][self.id])
744
+
745
+ def set_value(self, v: list[T]) -> ButtonGroup[T]:
746
+ """Set the value of the multiselect widget. (list)"""
747
+
748
+ self._value = v
749
+ return self
750
+
751
+ def select(self, v: T) -> ButtonGroup[T]:
752
+ """
753
+ Add a selection to the widget. Do nothing if the value is already selected.\
754
+ If testing a multiselect widget with repeated options, use ``set_value``\
755
+ instead.
756
+ """
757
+ current = self.value
758
+ if v in current:
759
+ return self
760
+ else:
761
+ new = current.copy()
762
+ new.append(v)
763
+ self.set_value(new)
764
+ return self
765
+
766
+ def unselect(self, v: T) -> ButtonGroup[T]:
767
+ """
768
+ Remove a selection from the widget. Do nothing if the value is not\
769
+ already selected. If a value is selected multiple times, the first\
770
+ instance is removed.
771
+ """
772
+ current = self.value
773
+ if v not in current:
774
+ return self
775
+ else:
776
+ new = current.copy()
777
+ while v in new:
778
+ new.remove(v)
779
+ self.set_value(new)
780
+ return self
781
+
782
+
697
783
  @dataclass(repr=False)
698
784
  class Multiselect(Widget, Generic[T]):
699
785
  """A representation of ``st.multiselect``."""
@@ -1406,6 +1492,10 @@ class Block:
1406
1492
  def button(self) -> WidgetList[Button]:
1407
1493
  return WidgetList(self.get("button")) # type: ignore
1408
1494
 
1495
+ @property
1496
+ def button_group(self) -> WidgetList[ButtonGroup[Any]]:
1497
+ return WidgetList(self.get("button_group")) # type: ignore
1498
+
1409
1499
  @property
1410
1500
  def caption(self) -> ElementList[Caption]:
1411
1501
  return ElementList(self.get("caption")) # type: ignore
@@ -1882,6 +1972,8 @@ def parse_tree_from_messages(messages: list[ForwardMsg]) -> ElementTree:
1882
1972
  new_node = Table(elt.arrow_table, root=root)
1883
1973
  elif ty == "button":
1884
1974
  new_node = Button(elt.button, root=root)
1975
+ elif ty == "button_group":
1976
+ new_node = ButtonGroup(elt.button_group, root=root)
1885
1977
  elif ty == "chat_input":
1886
1978
  new_node = ChatInput(elt.chat_input, root=root)
1887
1979
  elif ty == "checkbox":
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: streamlit-nightly
3
- Version: 1.36.1.dev20240709
3
+ Version: 1.36.1.dev20240711
4
4
  Summary: A faster way to build and share data apps
5
5
  Home-page: https://streamlit.io
6
6
  Author: Snowflake Inc
@@ -1,4 +1,4 @@
1
- streamlit/__init__.py,sha256=pzog6Xe85B94gECMOS1U4Z97fYjtpgQJ7Ba4VVG2b24,8328
1
+ streamlit/__init__.py,sha256=4Qf4bjv3DC2Kkts_X1q3BgpDa9-Zal__TKexTB168v0,8354
2
2
  streamlit/__main__.py,sha256=8vHowjccJfFMwrA22IEe3ynE9F670mkspbo9rYdM0ks,868
3
3
  streamlit/case_converters.py,sha256=SprbXtdNr0syzbUPeClp7KE5dSKOiAo-5FWENCW08Do,2468
4
4
  streamlit/cli_util.py,sha256=P7A6R9D8whD9mytXHAfIax18hrxweUk5Ma8Klb99SeY,1420
@@ -11,7 +11,7 @@ streamlit/config_util.py,sha256=-MGb5eBrsZvNmqywmiBmo27ll1F9OmCDX4toGWglv2c,6015
11
11
  streamlit/constants.py,sha256=KhNjCeooky2bbW7QMX3ijOA5enHIOgj6Xo4TBhtTJNE,798
12
12
  streamlit/cursor.py,sha256=LUDB6o7xyGb1it_8rl5QU_N3MRhFCdtnd9tuTx78abU,6001
13
13
  streamlit/dataframe_util.py,sha256=OOYUEOO9xPpjOa3-04eWKEgO8GryCAHzpDvidfS8H-E,30932
14
- streamlit/delta_generator.py,sha256=RuPMSWq0kkS2L-16Be5Q3VZSnNGVbvWq2cX1kdzkjoo,28401
14
+ streamlit/delta_generator.py,sha256=SGh6pTYYN5zjrlXxkTAlN0Rbwdx4K_fZ6B9bvUj0BDo,28492
15
15
  streamlit/deprecation_util.py,sha256=3JxWWS424v1kQ-qOq-9sQNYPQ8_UERH3QpYtkWxLP74,6516
16
16
  streamlit/development.py,sha256=iO-KQc62Do9uSwoa5vV2tfImqz3QPhJ1Md6DETcnHkc,813
17
17
  streamlit/echo.py,sha256=s0tT_IXxh7BLHOapRS8syE5Tnm4Djm3-oKO0J0MY1wI,4077
@@ -19,7 +19,7 @@ streamlit/emojis.py,sha256=G1ZHg5TQYCorAZR7ZAlyiapaxYAY6NeY2OdP6F0yVMM,81235
19
19
  streamlit/env_util.py,sha256=fqea8xmj4ifsuqmLv3Pvlq4t5y6WVTBua4qRpVTbs5Y,1791
20
20
  streamlit/error_util.py,sha256=Xx19JaBKF-MKHleuPY6TX3Xo_1fSd3ZqZuhvSz-B3LM,3598
21
21
  streamlit/errors.py,sha256=ks4wM1303LNLvviFL6fk5ziGjEsDWPsEc5tQFwIp-ms,3213
22
- streamlit/file_util.py,sha256=jwAlXtGNEwy335Ct9l14YHqxMuCWGSwgePesj7vNyLg,7216
22
+ streamlit/file_util.py,sha256=WbYWuARKjNi8QWcaRtfSto0j6HWKL1xi1dcFaF_M3M8,7144
23
23
  streamlit/folder_black_list.py,sha256=Ji9UZ4PtrilLxmvb8W57SIEK7AkeLGEqqtqr4y2oscI,2342
24
24
  streamlit/git_util.py,sha256=tVRinRwVqJDtJAJOr9d_PuFNbGJKPpo34xpxJTUnfZ0,5261
25
25
  streamlit/js_number.py,sha256=21VdJozG82xyZauYrdR819tb8mNNBxu-YzTXRBmLFgo,3524
@@ -100,20 +100,22 @@ streamlit/elements/lib/dialog.py,sha256=qaQjJNeaXanqCBtJ-rDv1vY2oCLRSiigdi7qKtYa
100
100
  streamlit/elements/lib/dicttools.py,sha256=9zXu6Z5Ky4ul74RBGB8Roi5LDoB_GTo_0vd2GNSnohQ,3827
101
101
  streamlit/elements/lib/event_utils.py,sha256=wJaZxBH-x9icnWmDuO9ukIQhHek9T2rcxlrD7UVzmvk,1496
102
102
  streamlit/elements/lib/mutable_status_container.py,sha256=TKWzUcn7JJ26L4ZVGSS-Pdp-V3TKiSndzMYq_UCqnRU,6716
103
+ streamlit/elements/lib/options_selector_utils.py,sha256=Ma1OF7k_jra4N8a2qrhw1E6gype-4pf9UIAhNeSzHvQ,2772
103
104
  streamlit/elements/lib/pandas_styler_utils.py,sha256=VMo1RnsnU5KpiA73heGHCN1qYlRP8IE7a3pqSvvKthk,8121
104
105
  streamlit/elements/lib/policies.py,sha256=t60jZr4SAEfjudzxMB6S_BTc17zs-V98eexlkPjFcag,7086
105
106
  streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3ey5z727582wDD_u3UaPU,8307
106
107
  streamlit/elements/lib/subtitle_utils.py,sha256=ciPgQ6Yi3NS7OdFgDH6lGFwDZpv022flEyQKY5lHNiE,6245
107
108
  streamlit/elements/lib/utils.py,sha256=ko1uhpuIX21vSCZfDf7cqtcI6_6_3eKk_aro5X0WVvY,7976
108
109
  streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
109
- streamlit/elements/widgets/button.py,sha256=dU062jo21bw-B6T7AvfB6zgGuygGAzMhRuVFkU1ONDs,34145
110
+ streamlit/elements/widgets/button.py,sha256=0aFDKQW6hFMAOQm3iE_OD5102JNjKPflvUUPfevKavQ,34178
111
+ streamlit/elements/widgets/button_group.py,sha256=pNOihaGKQV7WnxSdU2SYGYzWDYJ0isMA4qhZzy0SZOI,15018
110
112
  streamlit/elements/widgets/camera_input.py,sha256=LZp8sqM9TlmLC654M2wpvOLCM9TnEIK3X-UfXMjl444,9119
111
113
  streamlit/elements/widgets/chat.py,sha256=vzuqbVJVBiwxdL6ZogMPgHsmiJGaH_iRE9VUqkenhEI,14225
112
114
  streamlit/elements/widgets/checkbox.py,sha256=5ev_uRBIvoWgIpj9jjGjvIweem1oIXYr_VOk6IUGJn0,12517
113
115
  streamlit/elements/widgets/color_picker.py,sha256=IUN_YnQvR9Xd3CdhgReKISMBa2TJVzGx02XPfr9wECU,9130
114
116
  streamlit/elements/widgets/data_editor.py,sha256=BCbmXKUaNdMYeZdU0Kg4qdqZKpQy4HOftMJ2yjFlfEA,35109
115
117
  streamlit/elements/widgets/file_uploader.py,sha256=0b9Ovd2ZERKDEzQSieCtotN9zdBDMguRqRYCEVyer4A,17614
116
- streamlit/elements/widgets/multiselect.py,sha256=ozc2ORWZm5t8qyI3U3DaV_QnZmuT_Bu9kxWz2OWWJOQ,13791
118
+ streamlit/elements/widgets/multiselect.py,sha256=xLWB64sppLSKNZj-smKU0gowjqNkWJUlQyH9bY_CeKw,12594
117
119
  streamlit/elements/widgets/number_input.py,sha256=lErQObUL7--ijimAvyHCpElL2HcDm-BVp2LsVMMuGu8,18074
118
120
  streamlit/elements/widgets/radio.py,sha256=pwKub6hD2L396n3rgdW7FRtG32VaMtCncK-IZZkU764,12948
119
121
  streamlit/elements/widgets/select_slider.py,sha256=X2CrwW-2hCcx5OjFCnLXlzWEgUKCo5LngrC1doDE-oA,13814
@@ -156,6 +158,8 @@ streamlit/proto/Block_pb2.py,sha256=UuGYocgG3JgZsSG5gAFs972yca67VsqOTi4V1-CMnwU,
156
158
  streamlit/proto/Block_pb2.pyi,sha256=vBKU78uCGSqdNg4O-hrrebAYCdoNIoRlCpOyHcOku20,13148
157
159
  streamlit/proto/BokehChart_pb2.py,sha256=5bYTs9OyXijfSgXLm42vYBVah0qcpp6dwtHlQO9sAp0,1337
158
160
  streamlit/proto/BokehChart_pb2.pyi,sha256=JPTaxvhwu5nnDXjF5UV0vwPOpZln9gUzHumAwCQMG_c,1731
161
+ streamlit/proto/ButtonGroup_pb2.py,sha256=m-prjb9Tnzen5evwQyAnneNpTV4x9jkTTceJfMRAtzg,2356
162
+ streamlit/proto/ButtonGroup_pb2.pyi,sha256=RU_rvRokoCgJsREsLmJDctyZJK25fKK78ztb-WiAWNI,5262
159
163
  streamlit/proto/Button_pb2.py,sha256=8RSlN8PvBDOgvLn2bxWjnXoIboEekZi2vtnbBSqyv1E,1558
160
164
  streamlit/proto/Button_pb2.pyi,sha256=t4qq6R90w8JRuUcLES2OMiZeKHmYAWB1MziyntAT_wc,2453
161
165
  streamlit/proto/CameraInput_pb2.py,sha256=_WyewIqwj2k_XO6_hrZWh6FUIN2tF9-7mVcrKO1QNSo,1653
@@ -186,8 +190,8 @@ streamlit/proto/DocString_pb2.py,sha256=8fEx1J2VxqPTdcio8IXt9wIPIie8O5c7EZ9urt4K
186
190
  streamlit/proto/DocString_pb2.pyi,sha256=DRFkduH1siTMV03j4qu9QqHu39pKgWMErD60nF_0tLo,3386
187
191
  streamlit/proto/DownloadButton_pb2.py,sha256=GdTy9DVEuy7zCx6oow41bxrQo1bYu27A7g3TGZ39WCw,1600
188
192
  streamlit/proto/DownloadButton_pb2.pyi,sha256=M6HJB11lDhk4gJEJsFh7Tec7fwVwonFKfsnI2AZJTA4,2229
189
- streamlit/proto/Element_pb2.py,sha256=DanCZVTnfKgzFrdjLy0L5tX6AuopKuPPMT-uFb5qx4k,10248
190
- streamlit/proto/Element_pb2.pyi,sha256=6_Q2OGe3DOi50aoPKIj5lTHyLmr0_faI8rGi0OKNqWE,16844
193
+ streamlit/proto/Element_pb2.py,sha256=kenqRd73mmTPNznhEve-KUl8Y90t_8zY___6IG4KBNw,10443
194
+ streamlit/proto/Element_pb2.pyi,sha256=xiuLRB0cz0eftmtedsWAZYk-Sl0C2hQJi_NPCf-x5DA,17182
191
195
  streamlit/proto/Empty_pb2.py,sha256=oDn0uIKO3tkG5QBuMfCeycUM8D8wES-sW_NsT7EyY60,1172
192
196
  streamlit/proto/Empty_pb2.pyi,sha256=rJedytkoIXbdmCusBuUTgQAgcZSPzkr2OOcO2njMu7Y,1025
193
197
  streamlit/proto/Exception_pb2.py,sha256=CDrrWNqRYueU2d9nSZHuluPlIdharnvtH-Jvtmbpj4U,1410
@@ -333,21 +337,22 @@ streamlit/runtime/scriptrunner/script_requests.py,sha256=2QSboPtHbwm5erUiU-cjJ4D
333
337
  streamlit/runtime/scriptrunner/script_run_context.py,sha256=joIcYJilC5MSV6GKy_2mpQMk-3VG0amtxOYf5af54Dc,9313
334
338
  streamlit/runtime/scriptrunner/script_runner.py,sha256=uzd4-rZAbhHkjRHD1MSceqmV1EPJ8hcTWYX7701beVo,26910
335
339
  streamlit/runtime/state/__init__.py,sha256=UpfNfPrWJ6rVdD-qc0IP_bwZ4MrcNUjyU9wEKDK-eWM,1528
336
- streamlit/runtime/state/common.py,sha256=YOzBzlLEqyLdnqPsUnF0uYWE0ckfoaD_puBMf6331G4,9890
340
+ streamlit/runtime/state/common.py,sha256=1JvRTK7O-QRcsyRztyHaCZjix0WAi4wz0KlpXaldeEE,9963
337
341
  streamlit/runtime/state/query_params.py,sha256=cESFE1Jq4oN6YpgocUsX0f1sSHMyGRoupbxm9X6v3NM,7477
338
342
  streamlit/runtime/state/query_params_proxy.py,sha256=gxaCF6-jmoM8HWXwQOdC6XgVjVdIYtqiicG3I2hQsLk,7152
339
343
  streamlit/runtime/state/safe_session_state.py,sha256=WLFFyMtP4F19TWWBarKtSP942IepI2eeSBhifwbuFgY,5222
340
344
  streamlit/runtime/state/session_state.py,sha256=BCZdr2Cv8HPU9L4JOPmMWY5rJShXzdPi0EnmXZamNXQ,27380
341
345
  streamlit/runtime/state/session_state_proxy.py,sha256=7_GtKF6niHIxzynZyUtYgBg4FG-pDyasixu--1vP1Y0,5482
342
- streamlit/runtime/state/widgets.py,sha256=VgpQqxS2AFTzFuS1MkBcbBlVCKv3O-T2qocmKtn8AMg,11414
343
- streamlit/static/asset-manifest.json,sha256=NY24rvLgWZ6RBNc9TQ4WOt4T0IVzrLG80B8nbeSlax0,14351
346
+ streamlit/runtime/state/widgets.py,sha256=F_uEjGT-zpaCh8TGrhN5fT1J0LM8j54OUl1FCRXRoRQ,11461
347
+ streamlit/static/asset-manifest.json,sha256=yUYOF0VFywwHftzjYL6AlHyTgVD8j63QEsz7jN6FMC4,14429
344
348
  streamlit/static/favicon.png,sha256=if5cVgw7azxKOvV5FpGixga7JLn23rfnHcy1CdWI1-E,1019
345
- streamlit/static/index.html,sha256=GfGc-tNDSqFRS7Id4KIDVQJqsuIC5NVwjtQCXdPvnH4,891
349
+ streamlit/static/index.html,sha256=v365Goc4UyU8d-PsZIT1u60z5QQ5F3mf4illeS5Wl1U,891
346
350
  streamlit/static/static/css/3466.8b8f33d6.chunk.css,sha256=4m2lbj1eVFXSaGCRBHZNhqyRz-4Ce9KogjJPxIq6On8,33275
347
351
  streamlit/static/static/css/5441.e3b876c5.chunk.css,sha256=XExLUUHInaWJp_m8TtBWhQ88SUuxZl6Jnnw5NA6rwI4,2633
348
352
  streamlit/static/static/css/8148.49dfd2ce.chunk.css,sha256=LjBHDWjz8Hi0dr3DH9ujdlw4E2llc0xdDQHR64H4NQ8,12090
349
353
  streamlit/static/static/css/main.29bca1b5.css,sha256=S5OjTntvZYhBvZrEd10zSAtVjkPFNQAQRzs3j2fWX7A,29244
350
354
  streamlit/static/static/js/1074.a92bc15f.chunk.js,sha256=fExx2hsAo3xUKVRe-VdPTbewwjmXky8dXQZqAN-ALB8,5518
355
+ streamlit/static/static/js/1116.841caf48.chunk.js,sha256=63RJkZBNg9LAMon6Wb0eI4bs6XV-kuCbyhYShBzw2Kk,9055
351
356
  streamlit/static/static/js/1168.14f7c6ff.chunk.js,sha256=3p-FxlAt2zio7ld-yxQNzOgRNwC_YFB-UH7aay6Dt9w,15023
352
357
  streamlit/static/static/js/1307.36b77087.chunk.js,sha256=-ubx82_V69dDqkPWdQ56nJpAGrUPZpeEa6ISIcaZ-jY,5864
353
358
  streamlit/static/static/js/1451.229b62c4.chunk.js,sha256=XS0baRYZ4yLzcL5MfenbAblYfKMOwVj9Vux7-8pfPF8,5116
@@ -410,8 +415,8 @@ streamlit/static/static/js/9656.8c935274.chunk.js,sha256=3VB6NT0EQErJUX2SYLQpmNA
410
415
  streamlit/static/static/js/9865.fd93213d.chunk.js,sha256=Ul2N951ZrAXpJOWo4SV4AKlymjMMNPJxpea3uRt8B_Y,4011
411
416
  streamlit/static/static/js/9945.47d54f35.chunk.js,sha256=hhr3CT-A7_nboARJ6yPmoB69w1mljn8GzMnsyu-moZg,398776
412
417
  streamlit/static/static/js/9945.47d54f35.chunk.js.LICENSE.txt,sha256=6s4mSSf8NHGJqUCFAj3VgMXZuNYyAzshKRhvxYZTQoU,281
413
- streamlit/static/static/js/main.2bfed63a.js,sha256=jDAQdqP0xA6zwVuHh8daY1v-kobhBJX_YCSsrDONoBA,4426370
414
- streamlit/static/static/js/main.2bfed63a.js.LICENSE.txt,sha256=YTeqT7R6idssTgnyi3gf0tRiq18-LiPeDOpsWcnbi34,3184
418
+ streamlit/static/static/js/main.917a5920.js,sha256=GUerP85xaBvqG5RGbIooAMECLTszZuqH6UEftUv53aU,4436731
419
+ streamlit/static/static/js/main.917a5920.js.LICENSE.txt,sha256=YTeqT7R6idssTgnyi3gf0tRiq18-LiPeDOpsWcnbi34,3184
415
420
  streamlit/static/static/media/KaTeX_AMS-Regular.73ea273a72f4aca30ca5.woff2,sha256=DN04fJWQoan5eUVgAi27WWVKfYbxh6oMgUla1C06cwg,28076
416
421
  streamlit/static/static/media/KaTeX_AMS-Regular.853be92419a6c3766b9a.ttf,sha256=aFNIQLz90r_7bw6N60hoTdAefwTqKBMmdXevuQbeHRM,63632
417
422
  streamlit/static/static/media/KaTeX_AMS-Regular.d562e886c52f12660a41.woff,sha256=MNqR6EyJP4deJSaJ-uvcWQsocRReitx_mp1NvYzgslE,33516
@@ -500,8 +505,8 @@ streamlit/static/static/media/logo.83ae4f2fb87e38be7cbb8a5d2beb64d2.svg,sha256=_
500
505
  streamlit/static/static/media/rocket.b75b17d2b0a063c6cea230d1a9d77f1e.svg,sha256=6ZIRbOQuBNsdJnpfrNMq-6mYpYDN8qJGVsxkZIn8bP8,39315
501
506
  streamlit/testing/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
502
507
  streamlit/testing/v1/__init__.py,sha256=XGxNOq4VfmwlVj9K6vXB8dAH1YbI_8AIsvw_vbzQoNA,690
503
- streamlit/testing/v1/app_test.py,sha256=cRRGOX53EZKCZgl22OOzrCmEbgGsLDJ4tnIzhNXNL3A,36879
504
- streamlit/testing/v1/element_tree.py,sha256=jWTk7AlcUAEWLl6yCSEfqp_uI2jH9eS6oIpi4sMJTX8,60047
508
+ streamlit/testing/v1/app_test.py,sha256=CkbAmqv3SsnjCZ3yfavDismQXdztiWTcJSJLF5kMyUs,37010
509
+ streamlit/testing/v1/element_tree.py,sha256=8IyuX8fk7nfupOdLWs0GwAfjc01VSNwNxXmuAou8Tms,63137
505
510
  streamlit/testing/v1/local_script_runner.py,sha256=OSbOJJooiy70lkjYMqAytWm7X_12Ry7G1JZHaLl3-cI,6595
506
511
  streamlit/testing/v1/util.py,sha256=zDKYdj0J0Dpc6tacvf2CWXL-buh3JnlOkwV0lBFjbsw,1791
507
512
  streamlit/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -530,9 +535,9 @@ streamlit/web/server/server_util.py,sha256=C3M971XFoEXTMufQLwHbZdtZOE30nWx-2WiXm
530
535
  streamlit/web/server/stats_request_handler.py,sha256=47nQHe4ETsO9QS9FAEUF8rZigU_k5eACJZw4-jc8U6c,3684
531
536
  streamlit/web/server/upload_file_request_handler.py,sha256=ftyKpARrUjOpRcFETIXuoTyOG_mo-ToOw5NI0y_W4lE,5003
532
537
  streamlit/web/server/websocket_headers.py,sha256=07SkWLcOxbyldl7UcBzrMKY9ZojypCQACiKoh5FcH7Y,1870
533
- streamlit_nightly-1.36.1.dev20240709.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
534
- streamlit_nightly-1.36.1.dev20240709.dist-info/METADATA,sha256=bxCg9po-1MPGZLH8WSYRKhDiW7-jbWqJHYPcmzBnBNI,8531
535
- streamlit_nightly-1.36.1.dev20240709.dist-info/WHEEL,sha256=pWvVuNuBTVmNV7Lp2jMAgt1NplTICeFdl1SW8U3MWN4,109
536
- streamlit_nightly-1.36.1.dev20240709.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
537
- streamlit_nightly-1.36.1.dev20240709.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
538
- streamlit_nightly-1.36.1.dev20240709.dist-info/RECORD,,
538
+ streamlit_nightly-1.36.1.dev20240711.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
539
+ streamlit_nightly-1.36.1.dev20240711.dist-info/METADATA,sha256=ITL56lh2M1eKZ0OJ3KsNAKEjoY6GVYZErt1hivx9Ljw,8531
540
+ streamlit_nightly-1.36.1.dev20240711.dist-info/WHEEL,sha256=pWvVuNuBTVmNV7Lp2jMAgt1NplTICeFdl1SW8U3MWN4,109
541
+ streamlit_nightly-1.36.1.dev20240711.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
542
+ streamlit_nightly-1.36.1.dev20240711.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
543
+ streamlit_nightly-1.36.1.dev20240711.dist-info/RECORD,,