streamlit-nightly 1.39.1.dev20241031__py2.py3-none-any.whl → 1.39.1.dev20241101__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/commands/logo.py +3 -3
- streamlit/commands/navigation.py +48 -3
- streamlit/commands/page_config.py +3 -3
- streamlit/elements/image.py +26 -441
- streamlit/elements/layouts.py +12 -7
- streamlit/elements/lib/image_utils.py +433 -0
- streamlit/elements/markdown.py +6 -0
- streamlit/elements/metric.py +8 -5
- streamlit/elements/progress.py +2 -1
- streamlit/elements/pyplot.py +3 -5
- streamlit/elements/text.py +1 -1
- streamlit/elements/widgets/audio_input.py +12 -11
- streamlit/elements/widgets/button.py +20 -16
- streamlit/elements/widgets/button_group.py +146 -121
- streamlit/elements/widgets/camera_input.py +13 -11
- streamlit/elements/widgets/chat.py +2 -2
- streamlit/elements/widgets/checkbox.py +30 -24
- streamlit/elements/widgets/color_picker.py +15 -13
- streamlit/elements/widgets/file_uploader.py +12 -12
- streamlit/elements/widgets/multiselect.py +33 -31
- streamlit/elements/widgets/number_input.py +15 -12
- streamlit/elements/widgets/radio.py +15 -12
- streamlit/elements/widgets/select_slider.py +15 -12
- streamlit/elements/widgets/selectbox.py +19 -14
- streamlit/elements/widgets/slider.py +15 -12
- streamlit/elements/widgets/text_widgets.py +33 -27
- streamlit/elements/widgets/time_widgets.py +33 -25
- streamlit/hello/{Animation_Demo.py → animation_demo.py} +9 -10
- streamlit/hello/{Dataframe_Demo.py → dataframe_demo.py} +9 -15
- streamlit/hello/{Hello.py → hello.py} +7 -12
- streamlit/hello/{Mapping_Demo.py → mapping_demo.py} +10 -13
- streamlit/hello/{Plotting_Demo.py → plotting_demo.py} +9 -10
- streamlit/hello/streamlit_app.py +24 -6
- streamlit/proto/Image_pb2.pyi +1 -1
- {streamlit_nightly-1.39.1.dev20241031.dist-info → streamlit_nightly-1.39.1.dev20241101.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.39.1.dev20241031.dist-info → streamlit_nightly-1.39.1.dev20241101.dist-info}/RECORD +40 -39
- {streamlit_nightly-1.39.1.dev20241031.data → streamlit_nightly-1.39.1.dev20241101.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.39.1.dev20241031.dist-info → streamlit_nightly-1.39.1.dev20241101.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.39.1.dev20241031.dist-info → streamlit_nightly-1.39.1.dev20241101.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.39.1.dev20241031.dist-info → streamlit_nightly-1.39.1.dev20241101.dist-info}/top_level.txt +0 -0
@@ -35,9 +35,9 @@ streamlit/commands/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQg
|
|
35
35
|
streamlit/commands/echo.py,sha256=s0tT_IXxh7BLHOapRS8syE5Tnm4Djm3-oKO0J0MY1wI,4077
|
36
36
|
streamlit/commands/execution_control.py,sha256=W8w5SXkQExtEBNeKRbMdPdOX0g8JirjDn2FK9w-PxDU,8269
|
37
37
|
streamlit/commands/experimental_query_params.py,sha256=1_rZ03BeY2mqh6mZr-bPJBaeIB2HyOvXMgdZ98FIU6A,5728
|
38
|
-
streamlit/commands/logo.py,sha256=
|
39
|
-
streamlit/commands/navigation.py,sha256=
|
40
|
-
streamlit/commands/page_config.py,sha256=
|
38
|
+
streamlit/commands/logo.py,sha256=cJeTRa4MJxt_EDMQHJKkecFlYOjcdur43i78NMIpVQk,6801
|
39
|
+
streamlit/commands/navigation.py,sha256=X_Lhu6COq1NKVhzF6IHqnPJAWqfF04nVG0PLtpYD4ww,11555
|
40
|
+
streamlit/commands/page_config.py,sha256=i1tyJpVl63MQV-hZBPIzSjj0WZ0mjuPQCyak6Uhlhas,12955
|
41
41
|
streamlit/components/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
42
42
|
streamlit/components/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
43
43
|
streamlit/components/lib/local_component_registry.py,sha256=xm2pD0lcUzWyQnLaJAl6KQmoU2OSvGilgheMXDoLBeM,3016
|
@@ -71,19 +71,19 @@ streamlit/elements/graphviz_chart.py,sha256=x2CwyP1lqDmIGObs3-Auk-6izCsdctuznKmd
|
|
71
71
|
streamlit/elements/heading.py,sha256=xzsf5QFUhlNW1VXjxmsyUHsHDCDzvo4Q6bgVoEBkMec,9893
|
72
72
|
streamlit/elements/html.py,sha256=PN9iw2jaRObDlqGzH2RwuzQr8rr3EInKnI4RelXVYfg,2717
|
73
73
|
streamlit/elements/iframe.py,sha256=Qfw6VN7dKyr4MLq5T4UbsBpoCaWkzPVZQ_-12Ruul9Y,5782
|
74
|
-
streamlit/elements/image.py,sha256=
|
74
|
+
streamlit/elements/image.py,sha256=YsYlV2ndaC0LrNKC23KHvuR3GmyMIXGASVsZGSClSOM,7461
|
75
75
|
streamlit/elements/json.py,sha256=md4nazmLeRbPxe6lV0ZDacMUw-bsVLxmjaL5bWKOkBM,4526
|
76
|
-
streamlit/elements/layouts.py,sha256=
|
76
|
+
streamlit/elements/layouts.py,sha256=ekTbyiieYwbQos8IwCSBleoC3xQmQWMlDsWkzbmoAZI,31245
|
77
77
|
streamlit/elements/map.py,sha256=sytnuSEUu8YLSY4glc-vGjkOpudaFXX3bUHPxmCj4gQ,17249
|
78
|
-
streamlit/elements/markdown.py,sha256=
|
78
|
+
streamlit/elements/markdown.py,sha256=GYPCc_JMjP46GKz590u-i3-d-YkWuvrCbka-Musje9I,10530
|
79
79
|
streamlit/elements/media.py,sha256=-_wpM3O3Mt69vm2OoPu4zxxS5wAzU9DUD5IP1l0QWHM,30289
|
80
|
-
streamlit/elements/metric.py,sha256=
|
80
|
+
streamlit/elements/metric.py,sha256=6jmAz164X2kRGgNytGEV_2AH__LQDg29dbMCkGEfLRM,9796
|
81
81
|
streamlit/elements/plotly_chart.py,sha256=Q79P74kfswgud51yRGEumVaNccVArDmyk8ybULTnFpk,19465
|
82
|
-
streamlit/elements/progress.py,sha256=
|
83
|
-
streamlit/elements/pyplot.py,sha256=
|
82
|
+
streamlit/elements/progress.py,sha256=yIS2pUk2BWNrgIqJ1HU4BJaTOeoq7vGakopuT-vJOzk,5323
|
83
|
+
streamlit/elements/pyplot.py,sha256=dQrIBggicAlMUe02RVkwwsA0jscn0lRG8LEgotAVo3o,6386
|
84
84
|
streamlit/elements/snow.py,sha256=WHqk8zmfOr5iD0R-wLlAdlIkDDbiaayguTVmA4e7V_Q,1439
|
85
85
|
streamlit/elements/spinner.py,sha256=qhA0DZo3ZEYQswFYuNdaXltenvmJR_18mqDQA64bK_Q,2934
|
86
|
-
streamlit/elements/text.py,sha256=
|
86
|
+
streamlit/elements/text.py,sha256=W-F2LgQ-Z9T0ACQCSJKD7ugQJX1PMsgaHL7jz5xbE4c,2164
|
87
87
|
streamlit/elements/toast.py,sha256=UFh4Is6a9-aWG43SZadknKOEC16_KIvg6AR9QR1tnxk,3711
|
88
88
|
streamlit/elements/vega_charts.py,sha256=bFAFnFXy9jOW8K73-K-JLbK4zrFTHmOzIg-CqqB_Hhg,77336
|
89
89
|
streamlit/elements/write.py,sha256=sVbxT5ihOaL-u5jY1gmwNhWfdGz4Mni_CT09jUp2QyM,21703
|
@@ -96,6 +96,7 @@ streamlit/elements/lib/dialog.py,sha256=UUhE1wOHvhV-AYR9lH1tW0mrGwkNvVINAFDyEwBy
|
|
96
96
|
streamlit/elements/lib/dicttools.py,sha256=9zXu6Z5Ky4ul74RBGB8Roi5LDoB_GTo_0vd2GNSnohQ,3827
|
97
97
|
streamlit/elements/lib/event_utils.py,sha256=wJaZxBH-x9icnWmDuO9ukIQhHek9T2rcxlrD7UVzmvk,1496
|
98
98
|
streamlit/elements/lib/form_utils.py,sha256=JlkvvSOBrolFYOVa3JqcVHzYC73-1D5eVxaN5gnGw-M,2587
|
99
|
+
streamlit/elements/lib/image_utils.py,sha256=RcbB4---jlfuaj3C9v7HJEGCZPX-vX7HUJRZWv_hV-I,15526
|
99
100
|
streamlit/elements/lib/js_number.py,sha256=21VdJozG82xyZauYrdR819tb8mNNBxu-YzTXRBmLFgo,3524
|
100
101
|
streamlit/elements/lib/mutable_status_container.py,sha256=qUacv7MzabfioZ-bnF4nR6AV-68sa_gVowyWuV4P1sM,6781
|
101
102
|
streamlit/elements/lib/options_selector_utils.py,sha256=ME6H_3uvCKLOSk6-N0sYtLPOgO61PY3QIMq_WHu6-Hk,8916
|
@@ -105,33 +106,33 @@ streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3e
|
|
105
106
|
streamlit/elements/lib/subtitle_utils.py,sha256=ciPgQ6Yi3NS7OdFgDH6lGFwDZpv022flEyQKY5lHNiE,6245
|
106
107
|
streamlit/elements/lib/utils.py,sha256=8VVty4Jd99ynSxjKKqVnEaVsFydBX2m2s24fIdkGgZI,7670
|
107
108
|
streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
108
|
-
streamlit/elements/widgets/audio_input.py,sha256
|
109
|
-
streamlit/elements/widgets/button.py,sha256=
|
110
|
-
streamlit/elements/widgets/button_group.py,sha256=
|
111
|
-
streamlit/elements/widgets/camera_input.py,sha256=
|
112
|
-
streamlit/elements/widgets/chat.py,sha256=
|
113
|
-
streamlit/elements/widgets/checkbox.py,sha256
|
114
|
-
streamlit/elements/widgets/color_picker.py,sha256=
|
109
|
+
streamlit/elements/widgets/audio_input.py,sha256=-XwHUMeNPDEErd3yWHCuMbptA7Fpcn7PfFYXrWIjCqk,9898
|
110
|
+
streamlit/elements/widgets/button.py,sha256=bQvjf-ggPOZy4PoxCtbvcjIoxDsDjmQ_YwhVAdcRq9A,36366
|
111
|
+
streamlit/elements/widgets/button_group.py,sha256=esN83uxjCFCAt14-ZPDnh1JywT-er89Wtrq9OS9-lCI,36532
|
112
|
+
streamlit/elements/widgets/camera_input.py,sha256=CFQqG12e9Y4nfVbzRzPKbPJp11jkrU2IbsUL7M1V1AA,8735
|
113
|
+
streamlit/elements/widgets/chat.py,sha256=HFK9rkKbWTK_DX-MxDXb7ehyPuBpfHAo8Y-LMhoexTs,14334
|
114
|
+
streamlit/elements/widgets/checkbox.py,sha256=-jYKnA2B0rpvooSQ1IwGmDh8f6V4TxifCzshW-Rt2nc,11708
|
115
|
+
streamlit/elements/widgets/color_picker.py,sha256=0jt5ZFsE_XXGDU5XFIohHyGw4H4BQhkEeAa97_nl1bg,8606
|
115
116
|
streamlit/elements/widgets/data_editor.py,sha256=HIxllEtuhbRDc7tDzBJagX3Rr8c_vgdZycOl3xq-h1Y,36163
|
116
|
-
streamlit/elements/widgets/file_uploader.py,sha256=
|
117
|
-
streamlit/elements/widgets/multiselect.py,sha256=
|
118
|
-
streamlit/elements/widgets/number_input.py,sha256=
|
119
|
-
streamlit/elements/widgets/radio.py,sha256=
|
120
|
-
streamlit/elements/widgets/select_slider.py,sha256=
|
121
|
-
streamlit/elements/widgets/selectbox.py,sha256=
|
122
|
-
streamlit/elements/widgets/slider.py,sha256=
|
123
|
-
streamlit/elements/widgets/text_widgets.py,sha256=
|
124
|
-
streamlit/elements/widgets/time_widgets.py,sha256=
|
117
|
+
streamlit/elements/widgets/file_uploader.py,sha256=nmFF8fDIgfdgUsPmQ9dUsRojNPIzMSGAlyYx1P7Iisc,17002
|
118
|
+
streamlit/elements/widgets/multiselect.py,sha256=qIWpVo5jfuZ2syzTq2DNiUXuG6S7DcMHa22duI2sTH4,11446
|
119
|
+
streamlit/elements/widgets/number_input.py,sha256=_cZZJXfqWsfaUgnkD4C6hlFXMRRr9eI0vIAuVVcXimQ,20248
|
120
|
+
streamlit/elements/widgets/radio.py,sha256=SIZZ-_PzUjzlVmc1bV-5WR35RxRjdlUG2GwDh9rCQtA,13788
|
121
|
+
streamlit/elements/widgets/select_slider.py,sha256=a4XkUebkfvHTE1j-AfBxxKeIySQoot0EQMWT3wN2RqA,15082
|
122
|
+
streamlit/elements/widgets/selectbox.py,sha256=LuH9vqDsNGRoryJbdxmYkCKKAwo99x66wqRjFLFaVBw,12568
|
123
|
+
streamlit/elements/widgets/slider.py,sha256=ABxku8h5Zy2IsKYk5l-jfzkpooNlzXnX9pLw5AxBGGk,32733
|
124
|
+
streamlit/elements/widgets/text_widgets.py,sha256=yjNhi_ucW1a6BhUQcN66ZB7HmKQoXkGxx5pilHWhPPw,21839
|
125
|
+
streamlit/elements/widgets/time_widgets.py,sha256=5PIpUgNcDItAS4jnt--Iu1fUn9d2B4uLzMQZR2CqiXg,29141
|
125
126
|
streamlit/external/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
126
127
|
streamlit/external/langchain/__init__.py,sha256=sAzaNf4Cje3cJikPBVvF7pj1sEdEvUfKIEY_Z6Zk8cA,814
|
127
128
|
streamlit/external/langchain/streamlit_callback_handler.py,sha256=vB_J45E1aLEiH6KCCUl5WvQLb8FtMTIg3pv5l2S7Vsw,15427
|
128
|
-
streamlit/hello/Animation_Demo.py,sha256=iWkDHrhHhKITjkDv4qGcyR_aIpLyYmnZD8CzcuEyyb8,2971
|
129
|
-
streamlit/hello/Dataframe_Demo.py,sha256=zJdbGwhovc2SOXNRXSGRQfem9h5J5KCK136Be18TB4c,2539
|
130
|
-
streamlit/hello/Hello.py,sha256=Oya8ISBTpaykP7gAtGy_bGTCboW0E-5CAO31MLRlN74,1546
|
131
|
-
streamlit/hello/Mapping_Demo.py,sha256=iVTT5d2YYxCizbheSOjflsNY0ffvYLfV7cr_pXcmQec,3839
|
132
|
-
streamlit/hello/Plotting_Demo.py,sha256=w8Bgw5C4fjg0pTCRNLBNQ7wGBud2DAyBozE7HB-3B1E,1760
|
133
129
|
streamlit/hello/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
134
|
-
streamlit/hello/
|
130
|
+
streamlit/hello/animation_demo.py,sha256=Cw0ukP2CDvy7ZRw3c7EFMqrbeYjkP996dmk5w9bdqD8,2948
|
131
|
+
streamlit/hello/dataframe_demo.py,sha256=4BIMclzg3jqmrilKk_EV2HB-c_uWf9xQjy-LS5RgY3o,2460
|
132
|
+
streamlit/hello/hello.py,sha256=zuPidffCSQIL5Yz0_SdryzGwVxWsafrviUsK7wCcdfY,1490
|
133
|
+
streamlit/hello/mapping_demo.py,sha256=rAOWom4Szj8QDNbhYD6RfhwQOhlgSfVln91pdKkg8sE,3731
|
134
|
+
streamlit/hello/plotting_demo.py,sha256=VNTbJtjujCEW5_fz2LoElwmz7vGaOKTjlOF_E94PWAY,1732
|
135
|
+
streamlit/hello/streamlit_app.py,sha256=CeLTbfeel07VDxckb4CYVi2U3C1bS-Q8sRU9VycobQA,1683
|
135
136
|
streamlit/hello/utils.py,sha256=IZMM6MZ4tcrLuSN9RWmMEYlzTbbzA3trpq6Pa82NeRw,992
|
136
137
|
streamlit/navigation/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
137
138
|
streamlit/navigation/page.py,sha256=DZpmyZvxVDQqWHb-O1-wukb3P8n6CLu_Ll6BH-CpGEM,11739
|
@@ -214,7 +215,7 @@ streamlit/proto/Html_pb2.pyi,sha256=OwxnWbDzgPkiJ3iybW7masLy5UHhCH0Ryz3uL9alQc8,
|
|
214
215
|
streamlit/proto/IFrame_pb2.py,sha256=d3dicmQmqOCHHy1DtY97S_mNI8fxuTNe4ODGhIBm4m4,1425
|
215
216
|
streamlit/proto/IFrame_pb2.pyi,sha256=eeyBsbSny9QEuy7vNGyu-cfvBqAaZwPCC3RlsqNdc3s,2143
|
216
217
|
streamlit/proto/Image_pb2.py,sha256=pTds5it74OUCQG9feQmmfI6r-yLgDVoZAz_HwyXu6Zc,1509
|
217
|
-
streamlit/proto/Image_pb2.pyi,sha256=
|
218
|
+
streamlit/proto/Image_pb2.pyi,sha256=cfhcuwkxsV61bq_BbgoSES_UkcqpVUt_OVB4nd1gZx4,2771
|
218
219
|
streamlit/proto/Json_pb2.py,sha256=sEplgNXC96GqwcTL8f_HJz4fAhtA_AkAKEGH6GhKxX0,1335
|
219
220
|
streamlit/proto/Json_pb2.pyi,sha256=euL64DucUfBS21WYdWKLfORsBX1K8oj9RDCUNMCmOhw,2063
|
220
221
|
streamlit/proto/LabelVisibilityMessage_pb2.py,sha256=6l8ZHl-ii8Bu9UoPythcP1FiHkj7iCiDLagwtILky1Q,1676
|
@@ -546,9 +547,9 @@ streamlit/web/server/server_util.py,sha256=ioIHkXNlA_ujj2Q3isziM8r5glKxgK2JZRoCD
|
|
546
547
|
streamlit/web/server/stats_request_handler.py,sha256=e144zIhzLTB1PN4CwTCxElCoWMuo9IsBEPex2exHCQ0,3641
|
547
548
|
streamlit/web/server/upload_file_request_handler.py,sha256=ftyKpARrUjOpRcFETIXuoTyOG_mo-ToOw5NI0y_W4lE,5003
|
548
549
|
streamlit/web/server/websocket_headers.py,sha256=uUxypj04ondEC4ocBiYCndX_N06Zwe1Mt690Vupe08Y,2232
|
549
|
-
streamlit_nightly-1.39.1.
|
550
|
-
streamlit_nightly-1.39.1.
|
551
|
-
streamlit_nightly-1.39.1.
|
552
|
-
streamlit_nightly-1.39.1.
|
553
|
-
streamlit_nightly-1.39.1.
|
554
|
-
streamlit_nightly-1.39.1.
|
550
|
+
streamlit_nightly-1.39.1.dev20241101.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
|
551
|
+
streamlit_nightly-1.39.1.dev20241101.dist-info/METADATA,sha256=NCSKC1-v0zdFmZRVZRAKkYq0TGsssTFHRz9py8E4YGY,8512
|
552
|
+
streamlit_nightly-1.39.1.dev20241101.dist-info/WHEEL,sha256=OpXWERl2xLPRHTvd2ZXo_iluPEQd8uSbYkJ53NAER_Y,109
|
553
|
+
streamlit_nightly-1.39.1.dev20241101.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
554
|
+
streamlit_nightly-1.39.1.dev20241101.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
555
|
+
streamlit_nightly-1.39.1.dev20241101.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|