streamlit 1.49.1__tar.gz → 1.50.0__tar.gz

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 (585) hide show
  1. {streamlit-1.49.1 → streamlit-1.50.0}/PKG-INFO +1 -1
  2. {streamlit-1.49.1 → streamlit-1.50.0}/setup.py +1 -1
  3. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/column_config.py +2 -0
  4. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/navigation.py +3 -1
  5. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/v1/custom_component.py +17 -42
  6. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/config.py +306 -0
  7. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/connections/base_connection.py +4 -2
  8. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/dataframe_util.py +3 -2
  9. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/delta_generator.py +2 -3
  10. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/arrow.py +63 -43
  11. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/deck_gl_json_chart.py +1 -0
  12. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/form.py +6 -6
  13. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/graphviz_chart.py +23 -6
  14. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/iframe.py +0 -2
  15. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/image.py +10 -9
  16. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/layouts.py +58 -11
  17. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/built_in_chart_utils.py +95 -29
  18. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/column_config_utils.py +5 -0
  19. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/column_types.py +563 -144
  20. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/dialog.py +1 -0
  21. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/pandas_styler_utils.py +30 -14
  22. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/utils.py +17 -5
  23. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/map.py +1 -3
  24. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/media.py +2 -0
  25. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/metric.py +10 -32
  26. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/plotly_chart.py +17 -9
  27. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/pyplot.py +6 -6
  28. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/vega_charts.py +110 -44
  29. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/audio_input.py +48 -0
  30. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/button.py +27 -25
  31. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/button_group.py +1 -0
  32. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/camera_input.py +1 -0
  33. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/chat.py +1 -0
  34. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/checkbox.py +1 -0
  35. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/color_picker.py +1 -0
  36. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/data_editor.py +6 -5
  37. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/file_uploader.py +1 -0
  38. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/multiselect.py +10 -0
  39. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/number_input.py +3 -0
  40. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/radio.py +1 -0
  41. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/select_slider.py +1 -0
  42. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/selectbox.py +4 -0
  43. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/slider.py +1 -0
  44. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/text_widgets.py +6 -0
  45. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/time_widgets.py +9 -0
  46. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/write.py +1 -17
  47. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/git_util.py +65 -43
  48. streamlit-1.50.0/streamlit/material_icon_names.py +25 -0
  49. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Arrow_pb2.py +10 -8
  50. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Arrow_pb2.pyi +31 -2
  51. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AudioInput_pb2.py +2 -2
  52. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AudioInput_pb2.pyi +6 -2
  53. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Block_pb2.py +11 -11
  54. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Block_pb2.pyi +5 -0
  55. streamlit-1.50.0/streamlit/proto/NewSession_pb2.py +55 -0
  56. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/NewSession_pb2.pyi +135 -2
  57. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/app_session.py +18 -5
  58. streamlit-1.50.0/streamlit/runtime/theme_util.py +148 -0
  59. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/index.html +2 -2
  60. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/manifest.json +222 -222
  61. streamlit-1.50.0/streamlit/static/static/css/index.CHEnSPGk.css +1 -0
  62. streamlit-1.49.1/streamlit/static/static/css/index.C8X8rNzw.css → streamlit-1.50.0/streamlit/static/static/css/index.CIiu7Ygf.css +1 -1
  63. streamlit-1.49.1/streamlit/static/static/js/ErrorOutline.esm.DcGrhbBP.js → streamlit-1.50.0/streamlit/static/static/js/ErrorOutline.esm.DUpR0_Ka.js +1 -1
  64. streamlit-1.49.1/streamlit/static/static/js/FileDownload.esm.DgBvV6Pq.js → streamlit-1.50.0/streamlit/static/static/js/FileDownload.esm.CN4j9-1w.js +1 -1
  65. streamlit-1.49.1/streamlit/static/static/js/FileHelper.M6AAaeuA.js → streamlit-1.50.0/streamlit/static/static/js/FileHelper.CaIUKG91.js +1 -1
  66. streamlit-1.49.1/streamlit/static/static/js/FormClearHelper.DHh1GFzm.js → streamlit-1.50.0/streamlit/static/static/js/FormClearHelper.DTcdrasw.js +1 -1
  67. streamlit-1.49.1/streamlit/static/static/js/Hooks.DGu1od_L.js → streamlit-1.50.0/streamlit/static/static/js/Hooks.BRba_Own.js +1 -1
  68. streamlit-1.50.0/streamlit/static/static/js/InputInstructions.xnSDuYeQ.js +1 -0
  69. streamlit-1.49.1/streamlit/static/static/js/Particles.DDVT-6Qc.js → streamlit-1.50.0/streamlit/static/static/js/Particles.CElH0XX2.js +1 -1
  70. streamlit-1.49.1/streamlit/static/static/js/ProgressBar.BEY0cXXV.js → streamlit-1.50.0/streamlit/static/static/js/ProgressBar.DetlP5aY.js +2 -2
  71. streamlit-1.50.0/streamlit/static/static/js/Toolbar.C77ar7rq.js +1 -0
  72. streamlit-1.49.1/streamlit/static/static/js/base-input.CK3UVGp1.js → streamlit-1.50.0/streamlit/static/static/js/base-input.BQft14La.js +3 -3
  73. streamlit-1.49.1/streamlit/static/static/js/checkbox.D8W881TL.js → streamlit-1.50.0/streamlit/static/static/js/checkbox.yZOfXCeX.js +1 -1
  74. streamlit-1.49.1/streamlit/static/static/js/createSuper.B6W-Dh9S.js → streamlit-1.50.0/streamlit/static/static/js/createSuper.Dh9w1cs8.js +1 -1
  75. streamlit-1.50.0/streamlit/static/static/js/data-grid-overlay-editor.DcuHuCyW.js +1 -0
  76. streamlit-1.49.1/streamlit/static/static/js/downloader.DiKpuU_S.js → streamlit-1.50.0/streamlit/static/static/js/downloader.MeHtkq8r.js +1 -1
  77. streamlit-1.49.1/streamlit/static/static/js/es6.B8zRNPZ-.js → streamlit-1.50.0/streamlit/static/static/js/es6.VpBPGCnM.js +2 -2
  78. streamlit-1.49.1/streamlit/static/static/js/iframeResizer.contentWindow.DIewJmmh.js → streamlit-1.50.0/streamlit/static/static/js/iframeResizer.contentWindow.yMw_ARIL.js +1 -1
  79. streamlit-1.49.1/streamlit/static/static/js/index.B9mjBcgE.js → streamlit-1.50.0/streamlit/static/static/js/index.64ejlaaT.js +1 -1
  80. streamlit-1.49.1/streamlit/static/static/js/index.CD8HuT3N.js → streamlit-1.50.0/streamlit/static/static/js/index.6xX1278W.js +90 -91
  81. streamlit-1.50.0/streamlit/static/static/js/index.B-hiXRzw.js +1 -0
  82. streamlit-1.49.1/streamlit/static/static/js/index.Ch7MBCx0.js → streamlit-1.50.0/streamlit/static/static/js/index.B0H9IXUJ.js +47 -47
  83. streamlit-1.49.1/streamlit/static/static/js/index.4eF4NxG2.js → streamlit-1.50.0/streamlit/static/static/js/index.B4cAbHP6.js +1 -1
  84. streamlit-1.49.1/streamlit/static/static/js/index.Dk4C7X3i.js → streamlit-1.50.0/streamlit/static/static/js/index.B4dUQfni.js +1 -1
  85. streamlit-1.49.1/streamlit/static/static/js/index.CvYYtxD_.js → streamlit-1.50.0/streamlit/static/static/js/index.BPQo7BKk.js +1 -1
  86. streamlit-1.50.0/streamlit/static/static/js/index.Baqa90pe.js +2 -0
  87. streamlit-1.49.1/streamlit/static/static/js/index.D5naqx-J.js → streamlit-1.50.0/streamlit/static/static/js/index.Bj9JgOEC.js +1 -1
  88. streamlit-1.50.0/streamlit/static/static/js/index.BjCwMzj4.js +3 -0
  89. streamlit-1.49.1/streamlit/static/static/js/index.C_tmcx4B.js → streamlit-1.50.0/streamlit/static/static/js/index.Bm3VbPB5.js +1 -1
  90. streamlit-1.49.1/streamlit/static/static/js/index.C7fRKRs4.js → streamlit-1.50.0/streamlit/static/static/js/index.Bxz2yX3P.js +1 -1
  91. streamlit-1.49.1/streamlit/static/static/js/index.ho6NIXGl.js → streamlit-1.50.0/streamlit/static/static/js/index.BycLveZ4.js +1 -1
  92. streamlit-1.49.1/streamlit/static/static/js/index.452cqrrL.js → streamlit-1.50.0/streamlit/static/static/js/index.C9BdUqTi.js +1 -1
  93. streamlit-1.50.0/streamlit/static/static/js/index.CFMf5_ez.js +197 -0
  94. streamlit-1.50.0/streamlit/static/static/js/index.CGYqqs6j.js +1 -0
  95. streamlit-1.49.1/streamlit/static/static/js/index.zecpGxtj.js → streamlit-1.50.0/streamlit/static/static/js/index.CH1tqnSs.js +1 -1
  96. streamlit-1.49.1/streamlit/static/static/js/index.CjXWwH-y.js → streamlit-1.50.0/streamlit/static/static/js/index.CMItVsFA.js +1 -1
  97. streamlit-1.49.1/streamlit/static/static/js/index.B6U8LQo3.js → streamlit-1.50.0/streamlit/static/static/js/index.CTBk8Vk2.js +1 -1
  98. streamlit-1.50.0/streamlit/static/static/js/index.CiAQIz1H.js +7 -0
  99. streamlit-1.50.0/streamlit/static/static/js/index.Cj7DSzVR.js +73 -0
  100. streamlit-1.50.0/streamlit/static/static/js/index.Ck8rQ9OL.js +1 -0
  101. streamlit-1.49.1/streamlit/static/static/js/index.Ts_0SdB9.js → streamlit-1.50.0/streamlit/static/static/js/index.ClELlchS.js +2 -2
  102. streamlit-1.49.1/streamlit/static/static/js/index.Bte_9Lyq.js → streamlit-1.50.0/streamlit/static/static/js/index.Cnpi3o3E.js +1 -1
  103. streamlit-1.49.1/streamlit/static/static/js/index.CcJf6BCU.js → streamlit-1.50.0/streamlit/static/static/js/index.Ctn27_AE.js +1 -1
  104. streamlit-1.49.1/streamlit/static/static/js/index.CP5TD2z1.js → streamlit-1.50.0/streamlit/static/static/js/index.D2QEXQq_.js +1 -1
  105. streamlit-1.50.0/streamlit/static/static/js/index.DH71Ezyj.js +1 -0
  106. streamlit-1.49.1/streamlit/static/static/js/index.D2-atlaQ.js → streamlit-1.50.0/streamlit/static/static/js/index.DHh-U0dK.js +2 -2
  107. streamlit-1.49.1/streamlit/static/static/js/index.DtYN2x4k.js → streamlit-1.50.0/streamlit/static/static/js/index.DK7hD7_w.js +1 -1
  108. streamlit-1.49.1/streamlit/static/static/js/index.qhs54UAB.js → streamlit-1.50.0/streamlit/static/static/js/index.DKv_lNO7.js +1 -1
  109. streamlit-1.50.0/streamlit/static/static/js/index.DNLrMXgm.js +12 -0
  110. streamlit-1.50.0/streamlit/static/static/js/index.DW0Grddz.js +1 -0
  111. streamlit-1.49.1/streamlit/static/static/js/index.cnnXF7xQ.js → streamlit-1.50.0/streamlit/static/static/js/index.Dbe-Q3C-.js +1 -1
  112. streamlit-1.50.0/streamlit/static/static/js/index.DcPNYEUo.js +1 -0
  113. streamlit-1.50.0/streamlit/static/static/js/index.DuxqVQpd.js +1 -0
  114. streamlit-1.49.1/streamlit/static/static/js/index.CejBxbg1.js → streamlit-1.50.0/streamlit/static/static/js/index.FFOzOWzC.js +1 -1
  115. streamlit-1.49.1/streamlit/static/static/js/index.BnEpvLEz.js → streamlit-1.50.0/streamlit/static/static/js/index.GRUzrudl.js +1 -1
  116. streamlit-1.49.1/streamlit/static/static/js/input.nzVJphXi.js → streamlit-1.50.0/streamlit/static/static/js/input.s6pjQ49A.js +1 -1
  117. streamlit-1.49.1/streamlit/static/static/js/memory.CjCgTQz3.js → streamlit-1.50.0/streamlit/static/static/js/memory.Cuvsdfrl.js +1 -1
  118. streamlit-1.49.1/streamlit/static/static/js/number-overlay-editor.DaRFzZEO.js → streamlit-1.50.0/streamlit/static/static/js/number-overlay-editor.DdgVR5m3.js +1 -1
  119. streamlit-1.49.1/streamlit/static/static/js/possibleConstructorReturn.DgiPnZ9N.js → streamlit-1.50.0/streamlit/static/static/js/possibleConstructorReturn.CqidKeei.js +1 -1
  120. streamlit-1.49.1/streamlit/static/static/js/sandbox.mithfq7Z.js → streamlit-1.50.0/streamlit/static/static/js/sandbox.CCQREcJx.js +1 -1
  121. streamlit-1.49.1/streamlit/static/static/js/timepicker.Dbl5KFh6.js → streamlit-1.50.0/streamlit/static/static/js/timepicker.mkJF97Bb.js +4 -4
  122. streamlit-1.49.1/streamlit/static/static/js/toConsumableArray.D-Dx88BQ.js → streamlit-1.50.0/streamlit/static/static/js/toConsumableArray.De7I7KVR.js +1 -1
  123. streamlit-1.49.1/streamlit/static/static/js/uniqueId.Bh26R_3S.js → streamlit-1.50.0/streamlit/static/static/js/uniqueId.RI1LJdtz.js +1 -1
  124. streamlit-1.49.1/streamlit/static/static/js/useBasicWidgetState.DeK-QJpD.js → streamlit-1.50.0/streamlit/static/static/js/useBasicWidgetState.CedkNjUW.js +1 -1
  125. streamlit-1.49.1/streamlit/static/static/js/useTextInputAutoExpand.4iAdLWD-.js → streamlit-1.50.0/streamlit/static/static/js/useTextInputAutoExpand.Ca7w8dVs.js +2 -2
  126. streamlit-1.49.1/streamlit/static/static/js/useUpdateUiValue.CmT7_nJN.js → streamlit-1.50.0/streamlit/static/static/js/useUpdateUiValue.DeXelfRH.js +1 -1
  127. streamlit-1.50.0/streamlit/static/static/js/withFullScreenWrapper.C3561XxJ.js +1 -0
  128. streamlit-1.50.0/streamlit/static/static/media/MaterialSymbols-Rounded.DeCZgS-4.woff2 +0 -0
  129. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/string_util.py +58 -1
  130. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/bootstrap.py +0 -31
  131. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/routes.py +17 -4
  132. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/server.py +1 -0
  133. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/PKG-INFO +1 -1
  134. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/SOURCES.txt +69 -68
  135. streamlit-1.49.1/streamlit/material_icon_names.py +0 -25
  136. streamlit-1.49.1/streamlit/proto/NewSession_pb2.py +0 -53
  137. streamlit-1.49.1/streamlit/static/static/css/index.COe1010n.css +0 -1
  138. streamlit-1.49.1/streamlit/static/static/js/InputInstructions.z6sVgyYt.js +0 -1
  139. streamlit-1.49.1/streamlit/static/static/js/Toolbar.DSnK1fUh.js +0 -1
  140. streamlit-1.49.1/streamlit/static/static/js/data-grid-overlay-editor.DRTHOydk.js +0 -1
  141. streamlit-1.49.1/streamlit/static/static/js/index.BXYmrqnf.js +0 -1
  142. streamlit-1.49.1/streamlit/static/static/js/index.B_8AnktO.js +0 -1
  143. streamlit-1.49.1/streamlit/static/static/js/index.Bl7zGQSh.js +0 -7
  144. streamlit-1.49.1/streamlit/static/static/js/index.BnJIOYn9.js +0 -73
  145. streamlit-1.49.1/streamlit/static/static/js/index.C1HcTl5K.js +0 -1
  146. streamlit-1.49.1/streamlit/static/static/js/index.C7lSmSOP.js +0 -1
  147. streamlit-1.49.1/streamlit/static/static/js/index.D3K5nOu9.js +0 -197
  148. streamlit-1.49.1/streamlit/static/static/js/index.DkKT3LUI.js +0 -1
  149. streamlit-1.49.1/streamlit/static/static/js/index.MTPPBDHk.js +0 -2
  150. streamlit-1.49.1/streamlit/static/static/js/index.pqW9AMJD.js +0 -3
  151. streamlit-1.49.1/streamlit/static/static/js/index.urHgTgMQ.js +0 -12
  152. streamlit-1.49.1/streamlit/static/static/js/index.wzkv_11M.js +0 -1
  153. streamlit-1.49.1/streamlit/static/static/js/index.yF5AncHY.js +0 -1
  154. streamlit-1.49.1/streamlit/static/static/js/withFullScreenWrapper.DLp1ENGm.js +0 -1
  155. streamlit-1.49.1/streamlit/static/static/media/MaterialSymbols-Rounded.CBxVaFdk.woff2 +0 -0
  156. {streamlit-1.49.1 → streamlit-1.50.0}/MANIFEST.in +0 -0
  157. {streamlit-1.49.1 → streamlit-1.50.0}/bin/streamlit.cmd +0 -0
  158. {streamlit-1.49.1 → streamlit-1.50.0}/setup.cfg +0 -0
  159. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/__init__.py +0 -0
  160. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/__main__.py +0 -0
  161. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/auth_util.py +0 -0
  162. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/cli_util.py +0 -0
  163. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/__init__.py +0 -0
  164. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/echo.py +0 -0
  165. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/execution_control.py +0 -0
  166. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/experimental_query_params.py +0 -0
  167. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/logo.py +0 -0
  168. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/commands/page_config.py +0 -0
  169. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/__init__.py +0 -0
  170. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/lib/__init__.py +0 -0
  171. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/lib/local_component_registry.py +0 -0
  172. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/types/__init__.py +0 -0
  173. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/types/base_component_registry.py +0 -0
  174. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/types/base_custom_component.py +0 -0
  175. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/v1/__init__.py +0 -0
  176. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/v1/component_arrow.py +0 -0
  177. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/v1/component_registry.py +0 -0
  178. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/components/v1/components.py +0 -0
  179. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/config_option.py +0 -0
  180. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/config_util.py +0 -0
  181. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/connections/__init__.py +0 -0
  182. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/connections/snowflake_connection.py +0 -0
  183. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/connections/snowpark_connection.py +0 -0
  184. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/connections/sql_connection.py +0 -0
  185. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/connections/util.py +0 -0
  186. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/cursor.py +0 -0
  187. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/delta_generator_singletons.py +0 -0
  188. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/deprecation_util.py +0 -0
  189. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/development.py +0 -0
  190. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/__init__.py +0 -0
  191. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/alert.py +0 -0
  192. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/balloons.py +0 -0
  193. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/bokeh_chart.py +0 -0
  194. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/code.py +0 -0
  195. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/dialog_decorator.py +0 -0
  196. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/doc_string.py +0 -0
  197. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/empty.py +0 -0
  198. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/exception.py +0 -0
  199. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/heading.py +0 -0
  200. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/html.py +0 -0
  201. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/json.py +0 -0
  202. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/__init__.py +0 -0
  203. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/color_util.py +0 -0
  204. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/dicttools.py +0 -0
  205. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/file_uploader_utils.py +0 -0
  206. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/form_utils.py +0 -0
  207. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/image_utils.py +0 -0
  208. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/js_number.py +0 -0
  209. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/layout_utils.py +0 -0
  210. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/mutable_status_container.py +0 -0
  211. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/options_selector_utils.py +0 -0
  212. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/policies.py +0 -0
  213. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/streamlit_plotly_theme.py +0 -0
  214. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/lib/subtitle_utils.py +0 -0
  215. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/markdown.py +0 -0
  216. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/pdf.py +0 -0
  217. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/progress.py +0 -0
  218. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/snow.py +0 -0
  219. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/spinner.py +0 -0
  220. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/text.py +0 -0
  221. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/toast.py +0 -0
  222. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/elements/widgets/__init__.py +0 -0
  223. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/emojis.py +0 -0
  224. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/env_util.py +0 -0
  225. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/error_util.py +0 -0
  226. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/errors.py +0 -0
  227. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/external/__init__.py +0 -0
  228. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/external/langchain/__init__.py +0 -0
  229. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/external/langchain/streamlit_callback_handler.py +0 -0
  230. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/file_util.py +0 -0
  231. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/__init__.py +0 -0
  232. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/animation_demo.py +0 -0
  233. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/dataframe_demo.py +0 -0
  234. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/hello.py +0 -0
  235. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/mapping_demo.py +0 -0
  236. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/plotting_demo.py +0 -0
  237. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/streamlit_app.py +0 -0
  238. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/hello/utils.py +0 -0
  239. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/logger.py +0 -0
  240. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/navigation/__init__.py +0 -0
  241. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/navigation/page.py +0 -0
  242. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/net_util.py +0 -0
  243. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/platform.py +0 -0
  244. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Alert_pb2.py +0 -0
  245. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Alert_pb2.pyi +0 -0
  246. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AppPage_pb2.py +0 -0
  247. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AppPage_pb2.pyi +0 -0
  248. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ArrowNamedDataSet_pb2.py +0 -0
  249. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ArrowNamedDataSet_pb2.pyi +0 -0
  250. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ArrowVegaLiteChart_pb2.py +0 -0
  251. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ArrowVegaLiteChart_pb2.pyi +0 -0
  252. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Audio_pb2.py +0 -0
  253. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Audio_pb2.pyi +0 -0
  254. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AuthRedirect_pb2.py +0 -0
  255. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AuthRedirect_pb2.pyi +0 -0
  256. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AutoRerun_pb2.py +0 -0
  257. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/AutoRerun_pb2.pyi +0 -0
  258. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/BackMsg_pb2.py +0 -0
  259. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/BackMsg_pb2.pyi +0 -0
  260. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Balloons_pb2.py +0 -0
  261. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Balloons_pb2.pyi +0 -0
  262. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/BokehChart_pb2.py +0 -0
  263. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/BokehChart_pb2.pyi +0 -0
  264. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ButtonGroup_pb2.py +0 -0
  265. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ButtonGroup_pb2.pyi +0 -0
  266. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Button_pb2.py +0 -0
  267. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Button_pb2.pyi +0 -0
  268. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/CameraInput_pb2.py +0 -0
  269. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/CameraInput_pb2.pyi +0 -0
  270. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ChatInput_pb2.py +0 -0
  271. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ChatInput_pb2.pyi +0 -0
  272. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Checkbox_pb2.py +0 -0
  273. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Checkbox_pb2.pyi +0 -0
  274. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ClientState_pb2.py +0 -0
  275. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ClientState_pb2.pyi +0 -0
  276. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Code_pb2.py +0 -0
  277. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Code_pb2.pyi +0 -0
  278. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ColorPicker_pb2.py +0 -0
  279. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ColorPicker_pb2.pyi +0 -0
  280. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Common_pb2.py +0 -0
  281. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Common_pb2.pyi +0 -0
  282. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Components_pb2.py +0 -0
  283. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Components_pb2.pyi +0 -0
  284. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DataFrame_pb2.py +0 -0
  285. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DataFrame_pb2.pyi +0 -0
  286. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DateInput_pb2.py +0 -0
  287. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DateInput_pb2.pyi +0 -0
  288. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DeckGlJsonChart_pb2.py +0 -0
  289. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DeckGlJsonChart_pb2.pyi +0 -0
  290. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Delta_pb2.py +0 -0
  291. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Delta_pb2.pyi +0 -0
  292. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DocString_pb2.py +0 -0
  293. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DocString_pb2.pyi +0 -0
  294. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DownloadButton_pb2.py +0 -0
  295. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/DownloadButton_pb2.pyi +0 -0
  296. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Element_pb2.py +0 -0
  297. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Element_pb2.pyi +0 -0
  298. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Empty_pb2.py +0 -0
  299. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Empty_pb2.pyi +0 -0
  300. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Exception_pb2.py +0 -0
  301. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Exception_pb2.pyi +0 -0
  302. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Favicon_pb2.py +0 -0
  303. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Favicon_pb2.pyi +0 -0
  304. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/FileUploader_pb2.py +0 -0
  305. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/FileUploader_pb2.pyi +0 -0
  306. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ForwardMsg_pb2.py +0 -0
  307. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ForwardMsg_pb2.pyi +0 -0
  308. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/GapSize_pb2.py +0 -0
  309. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/GapSize_pb2.pyi +0 -0
  310. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/GitInfo_pb2.py +0 -0
  311. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/GitInfo_pb2.pyi +0 -0
  312. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/GraphVizChart_pb2.py +0 -0
  313. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/GraphVizChart_pb2.pyi +0 -0
  314. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Heading_pb2.py +0 -0
  315. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Heading_pb2.pyi +0 -0
  316. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/HeightConfig_pb2.py +0 -0
  317. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/HeightConfig_pb2.pyi +0 -0
  318. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Html_pb2.py +0 -0
  319. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Html_pb2.pyi +0 -0
  320. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/IFrame_pb2.py +0 -0
  321. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/IFrame_pb2.pyi +0 -0
  322. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Image_pb2.py +0 -0
  323. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Image_pb2.pyi +0 -0
  324. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Json_pb2.py +0 -0
  325. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Json_pb2.pyi +0 -0
  326. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/LabelVisibilityMessage_pb2.py +0 -0
  327. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/LabelVisibilityMessage_pb2.pyi +0 -0
  328. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/LinkButton_pb2.py +0 -0
  329. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/LinkButton_pb2.pyi +0 -0
  330. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Logo_pb2.py +0 -0
  331. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Logo_pb2.pyi +0 -0
  332. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Markdown_pb2.py +0 -0
  333. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Markdown_pb2.pyi +0 -0
  334. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Metric_pb2.py +0 -0
  335. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Metric_pb2.pyi +0 -0
  336. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/MetricsEvent_pb2.py +0 -0
  337. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/MetricsEvent_pb2.pyi +0 -0
  338. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/MultiSelect_pb2.py +0 -0
  339. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/MultiSelect_pb2.pyi +0 -0
  340. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/NamedDataSet_pb2.py +0 -0
  341. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/NamedDataSet_pb2.pyi +0 -0
  342. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Navigation_pb2.py +0 -0
  343. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Navigation_pb2.pyi +0 -0
  344. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/NumberInput_pb2.py +0 -0
  345. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/NumberInput_pb2.pyi +0 -0
  346. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageConfig_pb2.py +0 -0
  347. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageConfig_pb2.pyi +0 -0
  348. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageInfo_pb2.py +0 -0
  349. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageInfo_pb2.pyi +0 -0
  350. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageLink_pb2.py +0 -0
  351. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageLink_pb2.pyi +0 -0
  352. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageNotFound_pb2.py +0 -0
  353. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageNotFound_pb2.pyi +0 -0
  354. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageProfile_pb2.py +0 -0
  355. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PageProfile_pb2.pyi +0 -0
  356. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PagesChanged_pb2.py +0 -0
  357. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PagesChanged_pb2.pyi +0 -0
  358. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ParentMessage_pb2.py +0 -0
  359. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/ParentMessage_pb2.pyi +0 -0
  360. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PlotlyChart_pb2.py +0 -0
  361. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/PlotlyChart_pb2.pyi +0 -0
  362. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Progress_pb2.py +0 -0
  363. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Progress_pb2.pyi +0 -0
  364. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Radio_pb2.py +0 -0
  365. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Radio_pb2.pyi +0 -0
  366. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/RootContainer_pb2.py +0 -0
  367. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/RootContainer_pb2.pyi +0 -0
  368. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Selectbox_pb2.py +0 -0
  369. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Selectbox_pb2.pyi +0 -0
  370. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/SessionEvent_pb2.py +0 -0
  371. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/SessionEvent_pb2.pyi +0 -0
  372. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/SessionStatus_pb2.py +0 -0
  373. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/SessionStatus_pb2.pyi +0 -0
  374. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Skeleton_pb2.py +0 -0
  375. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Skeleton_pb2.pyi +0 -0
  376. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Slider_pb2.py +0 -0
  377. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Slider_pb2.pyi +0 -0
  378. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Snow_pb2.py +0 -0
  379. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Snow_pb2.pyi +0 -0
  380. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Spinner_pb2.py +0 -0
  381. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Spinner_pb2.pyi +0 -0
  382. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/TextArea_pb2.py +0 -0
  383. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/TextArea_pb2.pyi +0 -0
  384. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/TextInput_pb2.py +0 -0
  385. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/TextInput_pb2.pyi +0 -0
  386. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Text_pb2.py +0 -0
  387. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Text_pb2.pyi +0 -0
  388. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/TimeInput_pb2.py +0 -0
  389. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/TimeInput_pb2.pyi +0 -0
  390. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Toast_pb2.py +0 -0
  391. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Toast_pb2.pyi +0 -0
  392. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/VegaLiteChart_pb2.py +0 -0
  393. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/VegaLiteChart_pb2.pyi +0 -0
  394. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Video_pb2.py +0 -0
  395. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/Video_pb2.pyi +0 -0
  396. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/WidgetStates_pb2.py +0 -0
  397. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/WidgetStates_pb2.pyi +0 -0
  398. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/WidthConfig_pb2.py +0 -0
  399. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/WidthConfig_pb2.pyi +0 -0
  400. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/__init__.py +0 -0
  401. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/openmetrics_data_model_pb2.py +0 -0
  402. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/proto/openmetrics_data_model_pb2.pyi +0 -0
  403. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/py.typed +0 -0
  404. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/__init__.py +0 -0
  405. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/__init__.py +0 -0
  406. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/cache_data_api.py +0 -0
  407. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/cache_errors.py +0 -0
  408. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/cache_resource_api.py +0 -0
  409. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/cache_type.py +0 -0
  410. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/cache_utils.py +0 -0
  411. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/cached_message_replay.py +0 -0
  412. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/hashing.py +0 -0
  413. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/legacy_cache_api.py +0 -0
  414. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/storage/__init__.py +0 -0
  415. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/storage/cache_storage_protocol.py +0 -0
  416. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/storage/dummy_cache_storage.py +0 -0
  417. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +0 -0
  418. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/caching/storage/local_disk_cache_storage.py +0 -0
  419. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/connection_factory.py +0 -0
  420. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/context.py +0 -0
  421. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/context_util.py +0 -0
  422. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/credentials.py +0 -0
  423. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/forward_msg_cache.py +0 -0
  424. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/forward_msg_queue.py +0 -0
  425. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/fragment.py +0 -0
  426. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/media_file_manager.py +0 -0
  427. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/media_file_storage.py +0 -0
  428. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/memory_media_file_storage.py +0 -0
  429. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/memory_session_storage.py +0 -0
  430. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/memory_uploaded_file_manager.py +0 -0
  431. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/metrics_util.py +0 -0
  432. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/pages_manager.py +0 -0
  433. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/runtime.py +0 -0
  434. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/runtime_util.py +0 -0
  435. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/script_data.py +0 -0
  436. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner/__init__.py +0 -0
  437. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner/exec_code.py +0 -0
  438. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner/magic.py +0 -0
  439. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner/magic_funcs.py +0 -0
  440. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner/script_cache.py +0 -0
  441. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner/script_runner.py +0 -0
  442. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner_utils/__init__.py +0 -0
  443. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner_utils/exceptions.py +0 -0
  444. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner_utils/script_requests.py +0 -0
  445. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/scriptrunner_utils/script_run_context.py +0 -0
  446. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/secrets.py +0 -0
  447. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/session_manager.py +0 -0
  448. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/__init__.py +0 -0
  449. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/common.py +0 -0
  450. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/query_params.py +0 -0
  451. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/query_params_proxy.py +0 -0
  452. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/safe_session_state.py +0 -0
  453. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/session_state.py +0 -0
  454. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/session_state_proxy.py +0 -0
  455. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/state/widgets.py +0 -0
  456. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/stats.py +0 -0
  457. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/uploaded_file_manager.py +0 -0
  458. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/runtime/websocket_session_manager.py +0 -0
  459. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/source_util.py +0 -0
  460. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/favicon.png +0 -0
  461. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/css/index.DzuxGC_t.css +0 -0
  462. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/js/UploadFileInfo.C-jY39rj.js +0 -0
  463. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/js/createDownloadLinkElement.ZaXNnPK4.js +0 -0
  464. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/js/inputUtils.CptNuJwn.js +0 -0
  465. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/js/sprintf.D7DtBTRn.js +0 -0
  466. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_AMS-Regular.BQhdFMY1.woff2 +0 -0
  467. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_AMS-Regular.DMm9YOAa.woff +0 -0
  468. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_AMS-Regular.DRggAlZN.ttf +0 -0
  469. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Caligraphic-Bold.ATXxdsX0.ttf +0 -0
  470. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Caligraphic-Bold.BEiXGLvX.woff +0 -0
  471. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Caligraphic-Bold.Dq_IR9rO.woff2 +0 -0
  472. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Caligraphic-Regular.CTRA-rTL.woff +0 -0
  473. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Caligraphic-Regular.Di6jR-x-.woff2 +0 -0
  474. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Caligraphic-Regular.wX97UBjC.ttf +0 -0
  475. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Fraktur-Bold.BdnERNNW.ttf +0 -0
  476. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Fraktur-Bold.BsDP51OF.woff +0 -0
  477. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Fraktur-Bold.CL6g_b3V.woff2 +0 -0
  478. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Fraktur-Regular.CB_wures.ttf +0 -0
  479. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Fraktur-Regular.CTYiF6lA.woff2 +0 -0
  480. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Fraktur-Regular.Dxdc4cR9.woff +0 -0
  481. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Bold.Cx986IdX.woff2 +0 -0
  482. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Bold.Jm3AIy58.woff +0 -0
  483. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Bold.waoOVXN0.ttf +0 -0
  484. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-BoldItalic.DxDJ3AOS.woff2 +0 -0
  485. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-BoldItalic.DzxPMmG6.ttf +0 -0
  486. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-BoldItalic.SpSLRI95.woff +0 -0
  487. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Italic.3WenGoN9.ttf +0 -0
  488. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Italic.BMLOBm91.woff +0 -0
  489. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Italic.NWA7e6Wa.woff2 +0 -0
  490. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Regular.B22Nviop.woff2 +0 -0
  491. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Regular.Dr94JaBh.woff +0 -0
  492. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Main-Regular.ypZvNtVU.ttf +0 -0
  493. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Math-BoldItalic.B3XSjfu4.ttf +0 -0
  494. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Math-BoldItalic.CZnvNsCZ.woff2 +0 -0
  495. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Math-BoldItalic.iY-2wyZ7.woff +0 -0
  496. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Math-Italic.DA0__PXp.woff +0 -0
  497. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Math-Italic.flOr_0UB.ttf +0 -0
  498. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Math-Italic.t53AETM-.woff2 +0 -0
  499. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Bold.CFMepnvq.ttf +0 -0
  500. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Bold.D1sUS0GD.woff2 +0 -0
  501. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Bold.DbIhKOiC.woff +0 -0
  502. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Italic.C3H0VqGB.woff2 +0 -0
  503. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Italic.DN2j7dab.woff +0 -0
  504. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Italic.YYjJ1zSn.ttf +0 -0
  505. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Regular.BNo7hRIc.ttf +0 -0
  506. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Regular.CS6fqUqJ.woff +0 -0
  507. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_SansSerif-Regular.DDBCnlJ7.woff2 +0 -0
  508. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Script-Regular.C5JkGWo-.ttf +0 -0
  509. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Script-Regular.D3wIWfF6.woff2 +0 -0
  510. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Script-Regular.D5yQViql.woff +0 -0
  511. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size1-Regular.C195tn64.woff +0 -0
  512. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size1-Regular.Dbsnue_I.ttf +0 -0
  513. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size1-Regular.mCD8mA8B.woff2 +0 -0
  514. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size2-Regular.B7gKUWhC.ttf +0 -0
  515. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size2-Regular.Dy4dx90m.woff2 +0 -0
  516. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size2-Regular.oD1tc_U0.woff +0 -0
  517. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size3-Regular.CTq5MqoE.woff +0 -0
  518. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size3-Regular.DgpXs0kz.ttf +0 -0
  519. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size4-Regular.BF-4gkZK.woff +0 -0
  520. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size4-Regular.DWFBv043.ttf +0 -0
  521. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Size4-Regular.Dl5lxZxV.woff2 +0 -0
  522. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Typewriter-Regular.C0xS9mPB.woff +0 -0
  523. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Typewriter-Regular.CO6r4hn1.woff2 +0 -0
  524. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/KaTeX_Typewriter-Regular.D3Ib7_Hf.ttf +0 -0
  525. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/SourceCodeVF-Italic.ttf.Ba1oaZG1.woff2 +0 -0
  526. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/SourceCodeVF-Upright.ttf.BjWn63N-.woff2 +0 -0
  527. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/SourceSansVF-Italic.ttf.Bt9VkdQ3.woff2 +0 -0
  528. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/SourceSansVF-Upright.ttf.BsWL4Kly.woff2 +0 -0
  529. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/SourceSerifVariable-Italic.ttf.CVdzAtxO.woff2 +0 -0
  530. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/SourceSerifVariable-Roman.ttf.mdpVL9bi.woff2 +0 -0
  531. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/balloon-0.Czj7AKwE.png +0 -0
  532. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/balloon-1.CNvFFrND.png +0 -0
  533. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/balloon-2.DTvC6B1t.png +0 -0
  534. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/balloon-3.CgSk4tbL.png +0 -0
  535. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/balloon-4.mbtFrzxf.png +0 -0
  536. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/balloon-5.CSwkUfRA.png +0 -0
  537. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/fireworks.B4d-_KUe.gif +0 -0
  538. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/flake-0.DgWaVvm5.png +0 -0
  539. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/flake-1.B2r5AHMK.png +0 -0
  540. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/flake-2.BnWSExPC.png +0 -0
  541. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/static/static/media/snowflake.JU2jBHL8.svg +0 -0
  542. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/temporary_directory.py +0 -0
  543. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/testing/__init__.py +0 -0
  544. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/testing/v1/__init__.py +0 -0
  545. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/testing/v1/app_test.py +0 -0
  546. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/testing/v1/element_tree.py +0 -0
  547. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/testing/v1/local_script_runner.py +0 -0
  548. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/testing/v1/util.py +0 -0
  549. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/time_util.py +0 -0
  550. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/type_util.py +0 -0
  551. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/url_util.py +0 -0
  552. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/user_info.py +0 -0
  553. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/util.py +0 -0
  554. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/vendor/__init__.py +0 -0
  555. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/vendor/pympler/__init__.py +0 -0
  556. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/vendor/pympler/asizeof.py +0 -0
  557. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/version.py +0 -0
  558. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/__init__.py +0 -0
  559. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/event_based_path_watcher.py +0 -0
  560. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/folder_black_list.py +0 -0
  561. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/local_sources_watcher.py +0 -0
  562. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/path_watcher.py +0 -0
  563. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/polling_path_watcher.py +0 -0
  564. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/watcher/util.py +0 -0
  565. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/__init__.py +0 -0
  566. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/cache_storage_manager_config.py +0 -0
  567. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/cli.py +0 -0
  568. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/__init__.py +0 -0
  569. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/app_static_file_handler.py +0 -0
  570. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/authlib_tornado_integration.py +0 -0
  571. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/browser_websocket_handler.py +0 -0
  572. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/component_request_handler.py +0 -0
  573. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/media_file_handler.py +0 -0
  574. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/oauth_authlib_routes.py +0 -0
  575. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/oidc_mixin.py +0 -0
  576. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/server_util.py +0 -0
  577. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/stats_request_handler.py +0 -0
  578. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/upload_file_request_handler.py +0 -0
  579. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit/web/server/websocket_headers.py +0 -0
  580. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/dependency_links.txt +0 -0
  581. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/entry_points.txt +0 -0
  582. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/not-zip-safe +0 -0
  583. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/requires.txt +0 -0
  584. {streamlit-1.49.1 → streamlit-1.50.0}/streamlit.egg-info/top_level.txt +0 -0
  585. {streamlit-1.49.1 → streamlit-1.50.0}/tests/testutil.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: streamlit
3
- Version: 1.49.1
3
+ Version: 1.50.0
4
4
  Summary: A faster way to build and share data apps
5
5
  Home-page: https://streamlit.io
6
6
  Author: Snowflake Inc
@@ -23,7 +23,7 @@ from setuptools.command.install import install
23
23
 
24
24
  THIS_DIRECTORY = Path(__file__).parent
25
25
 
26
- VERSION = "1.49.1" # PEP-440
26
+ VERSION = "1.50.0" # PEP-440
27
27
 
28
28
  # IMPORTANT: We should try very hard *not* to add dependencies to Streamlit.
29
29
  # And if you do add one, make the required version as general as possible:
@@ -30,6 +30,7 @@ __all__ = [
30
30
  "LineChartColumn",
31
31
  "LinkColumn",
32
32
  "ListColumn",
33
+ "MultiselectColumn",
33
34
  "NumberColumn",
34
35
  "ProgressColumn",
35
36
  "SelectboxColumn",
@@ -50,6 +51,7 @@ from streamlit.elements.lib.column_types import (
50
51
  LineChartColumn,
51
52
  LinkColumn,
52
53
  ListColumn,
54
+ MultiselectColumn,
53
55
  NumberColumn,
54
56
  ProgressColumn,
55
57
  SelectboxColumn,
@@ -121,7 +121,9 @@ def navigation(
121
121
  menu, ``pages`` must be a dictionary. Each key is the label of a
122
122
  section and each value is the list of page-like objects for
123
123
  that section. If you use ``position="top"``, each grouping will be a
124
- collapsible item in the navigation menu.
124
+ collapsible item in the navigation menu. For top navigation, if you use
125
+ an empty string as a section header, the pages in that section will be
126
+ displayed at the beginning of the menu before the collapsible sections.
125
127
 
126
128
  When you use a string or path as a page-like object, they are
127
129
  internally passed to ``st.Page`` and converted to ``StreamlitPage``
@@ -170,44 +170,22 @@ And if you're using Streamlit Cloud, add "pyarrow" to your requirements.txt."""
170
170
  if tab_index is not None:
171
171
  element.component_instance.tab_index = tab_index
172
172
 
173
- # Normally, a widget's element_hash (which determines
174
- # its identity across multiple runs of an app) is computed
175
- # by hashing its arguments. This means that, if any of the arguments
176
- # to the widget are changed, Streamlit considers it a new widget
177
- # instance and it loses its previous state.
178
- #
179
- # However! If a *component* has a `key` argument, then the
180
- # component's hash identity is determined by entirely by
181
- # `component_name + url + key`. This means that, when `key`
182
- # exists, the component will maintain its identity even when its
183
- # other arguments change, and the component's iframe won't be
184
- # remounted on the frontend.
185
-
186
- def marshall_element_args() -> None:
187
- element.component_instance.json_args = serialized_json_args
188
- element.component_instance.special_args.extend(special_args)
189
-
190
- ctx = get_script_run_ctx()
191
-
192
- if key is None:
193
- marshall_element_args()
194
- computed_id = compute_and_register_element_id(
195
- "component_instance",
196
- user_key=key,
197
- dg=dg,
198
- name=self.name,
199
- url=self.url,
200
- json_args=serialized_json_args,
201
- special_args=special_args,
202
- )
203
- else:
204
- computed_id = compute_and_register_element_id(
205
- "component_instance",
206
- user_key=key,
207
- dg=dg,
208
- name=self.name,
209
- url=self.url,
210
- )
173
+ element.component_instance.json_args = serialized_json_args
174
+ element.component_instance.special_args.extend(special_args)
175
+
176
+ computed_id = compute_and_register_element_id(
177
+ "component_instance",
178
+ user_key=key,
179
+ # Ensure that the component identity is kept stable when key is provided,
180
+ # Only the name and url are whitelisted to result in a new identity
181
+ # if they are changed.
182
+ key_as_main_identity={"name", "url"},
183
+ dg=dg,
184
+ name=self.name,
185
+ url=self.url,
186
+ json_args=serialized_json_args,
187
+ special_args=special_args,
188
+ )
211
189
  element.component_instance.id = computed_id
212
190
 
213
191
  def deserialize_component(ui_value: Any) -> Any:
@@ -218,15 +196,12 @@ And if you're using Streamlit Cloud, add "pyarrow" to your requirements.txt."""
218
196
  element.component_instance.id,
219
197
  deserializer=deserialize_component,
220
198
  serializer=lambda x: x,
221
- ctx=ctx,
199
+ ctx=get_script_run_ctx(),
222
200
  on_change_handler=on_change,
223
201
  value_type="json_value",
224
202
  )
225
203
  widget_value = component_state.value
226
204
 
227
- if key is not None:
228
- marshall_element_args()
229
-
230
205
  if widget_value is None:
231
206
  widget_value = default
232
207
  elif isinstance(widget_value, ArrowTableProto):
@@ -1195,6 +1195,306 @@ _create_theme_options(
1195
1195
  """,
1196
1196
  )
1197
1197
 
1198
+ _create_theme_options(
1199
+ "redColor",
1200
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1201
+ description="""
1202
+ Red color used in the basic color palette.
1203
+
1204
+ By default, this is #ff4b4b for the light theme and #ff2b2b for the
1205
+ dark theme.
1206
+
1207
+ If `redColor` is provided, and `redBackgroundColor` isn't, then
1208
+ `redBackgroundColor` will be derived from `redColor` using 10%
1209
+ opacity for the light theme and 20% opacity for the dark theme.
1210
+ """,
1211
+ )
1212
+
1213
+ _create_theme_options(
1214
+ "orangeColor",
1215
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1216
+ description="""
1217
+ Orange color used in the basic color palette.
1218
+
1219
+ By default, this is #ffa421 for the light theme and #ff8700 for the
1220
+ dark theme.
1221
+
1222
+ If `orangeColor` is provided, and `orangeBackgroundColor` isn't, then
1223
+ `orangeBackgroundColor` will be derived from `orangeColor` using 10%
1224
+ opacity for the light theme and 20% opacity for the dark theme.
1225
+ """,
1226
+ )
1227
+
1228
+ _create_theme_options(
1229
+ "yellowColor",
1230
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1231
+ description="""
1232
+ Yellow color used in the basic color palette.
1233
+
1234
+ By default, this is #faca2b for the light theme and #ffe312 for the
1235
+ dark theme.
1236
+
1237
+ If `yellowColor` is provided, and `yellowBackgroundColor` isn't, then
1238
+ `yellowBackgroundColor` will be derived from `yellowColor` using 10%
1239
+ opacity for the light theme and 20% opacity for the dark theme.
1240
+ """,
1241
+ )
1242
+
1243
+ _create_theme_options(
1244
+ "blueColor",
1245
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1246
+ description="""
1247
+ Blue color used in the basic color palette.
1248
+
1249
+ By default, this is #1c83e1 for the light theme and #0068c9 for the
1250
+ dark theme.
1251
+
1252
+ If a `blueColor` is provided, and `blueBackgroundColor` isn't, then
1253
+ `blueBackgroundColor` will be derived from `blueColor` using 10%
1254
+ opacity for the light theme and 20% opacity for the dark theme.
1255
+ """,
1256
+ )
1257
+
1258
+ _create_theme_options(
1259
+ "greenColor",
1260
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1261
+ description="""
1262
+ Green color used in the basic color palette.
1263
+
1264
+ By default, this is #21c354 for the light theme and #09ab3b for the
1265
+ dark theme.
1266
+
1267
+ If `greenColor` is provided, and `greenBackgroundColor` isn't, then
1268
+ `greenBackgroundColor` will be derived from `greenColor` using 10%
1269
+ opacity for the light theme and 20% opacity for the dark theme.
1270
+ """,
1271
+ )
1272
+
1273
+ _create_theme_options(
1274
+ "violetColor",
1275
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1276
+ description="""
1277
+ Violet color used in the basic color palette.
1278
+
1279
+ By default, this is #803df5 for both the light and dark themes.
1280
+
1281
+ If a `violetColor` is provided, and `violetBackgroundColor` isn't, then
1282
+ `violetBackgroundColor` will be derived from `violetColor` using 10%
1283
+ opacity for the light theme and 20% opacity for the dark theme.
1284
+ """,
1285
+ )
1286
+
1287
+ _create_theme_options(
1288
+ "grayColor",
1289
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1290
+ description="""
1291
+ Gray color used in the basic color palette.
1292
+
1293
+ By default, this is #a3a8b8 for the light theme and #555867 for the
1294
+ dark theme.
1295
+
1296
+ If `grayColor` is provided, and `grayBackgroundColor` isn't, then
1297
+ `grayBackgroundColor` will be derived from `grayColor` using 10%
1298
+ opacity for the light theme and 20% opacity for the dark theme.
1299
+ """,
1300
+ )
1301
+
1302
+ _create_theme_options(
1303
+ "redBackgroundColor",
1304
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1305
+ description="""
1306
+ Red background color used in the basic color palette.
1307
+
1308
+ If `redColor` is provided, this defaults to `redColor` using 10%
1309
+ opacity for the light theme and 20% opacity for the dark theme.
1310
+
1311
+ Otherwise, this is #ff2b2b with 10% opacity for light theme and
1312
+ #ff6c6c with 20% opacity for dark theme.
1313
+ """,
1314
+ )
1315
+
1316
+ _create_theme_options(
1317
+ "orangeBackgroundColor",
1318
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1319
+ description="""
1320
+ Orange background color used for the basic color palette.
1321
+
1322
+ If `orangeColor` is provided, this defaults to `orangeColor` using 10%
1323
+ opacity for the light theme and 20% opacity for the dark theme.
1324
+
1325
+ Otherwise, this is #ffa421 with 10% opacity for the light theme and
1326
+ #ff8700 with 20% opacity for the dark theme.
1327
+ """,
1328
+ )
1329
+
1330
+ _create_theme_options(
1331
+ "yellowBackgroundColor",
1332
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1333
+ description="""
1334
+ Yellow background color used for the basic color palette.
1335
+
1336
+ If `yellowColor` is provided, this defaults to `yellowColor` using 10%
1337
+ opacity for the light theme and 20% opacity for the dark theme.
1338
+
1339
+ Otherwise, this is #ffff12 with 10% opacity for the light theme and
1340
+ #ffff12 with 20% opacity for the dark theme.
1341
+ """,
1342
+ )
1343
+
1344
+ _create_theme_options(
1345
+ "blueBackgroundColor",
1346
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1347
+ description="""
1348
+ Blue background color used for the basic color palette.
1349
+
1350
+ If `blueColor` is provided, this defaults to `blueColor` using 10%
1351
+ opacity for the light theme and 20% opacity for the dark theme.
1352
+
1353
+ Otherwise, this is #1c83ff with 10% opacity for the light theme and
1354
+ #3d9df3 with 20% opacity for the dark theme.
1355
+ """,
1356
+ )
1357
+
1358
+ _create_theme_options(
1359
+ "greenBackgroundColor",
1360
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1361
+ description="""
1362
+ Green background color used for the basic color palette.
1363
+
1364
+ If `greenColor` is provided, this defaults to `greenColor` using 10%
1365
+ opacity for the light theme and 20% opacity for the dark theme.
1366
+
1367
+ Otherwise, this is #21c354 with 10% opacity for the light theme and
1368
+ #3dd56d with 20% opacity for the dark theme.
1369
+ """,
1370
+ )
1371
+
1372
+ _create_theme_options(
1373
+ "violetBackgroundColor",
1374
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1375
+ description="""
1376
+ Violet background color used for the basic color palette.
1377
+
1378
+ If `violetColor` is provided, this defaults to `violetColor` using 10%
1379
+ opacity for the light theme and 20% opacity for the dark theme.
1380
+
1381
+ Otherwise, this is #9a5dff with 10% opacity for light theme and
1382
+ #9a5dff with 20% opacity for dark theme.
1383
+ """,
1384
+ )
1385
+
1386
+ _create_theme_options(
1387
+ "grayBackgroundColor",
1388
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1389
+ description="""
1390
+ Gray background color used for the basic color palette.
1391
+
1392
+ If `grayColor` is provided, this defaults to `grayColor` using 10%
1393
+ opacity for the light theme and 20% opacity for the dark theme.
1394
+
1395
+ Otherwise, this is #31333f with 10% opacity for the light theme and
1396
+ #808495 with 20% opacity for the dark theme.
1397
+ """,
1398
+ )
1399
+
1400
+ _create_theme_options(
1401
+ "redTextColor",
1402
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1403
+ description="""
1404
+ Red text color used for the basic color palette.
1405
+
1406
+ If `redColor` is provided, this defaults to `redColor`, darkened by 15%
1407
+ for the light theme and lightened by 15% for the dark theme.
1408
+
1409
+ Otherwise, this is #bd4043 for the light theme and #ff6c6c for the dark
1410
+ theme.
1411
+ """,
1412
+ )
1413
+
1414
+ _create_theme_options(
1415
+ "orangeTextColor",
1416
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1417
+ description="""
1418
+ Orange text color used for the basic color palette.
1419
+
1420
+ If `orangeColor` is provided, this defaults to `orangeColor`, darkened
1421
+ by 15% for the light theme and lightened by 15% for the dark theme.
1422
+
1423
+ Otherwise, this is #e2660c for the light theme and #ffbd45 for the dark
1424
+ theme.
1425
+ """,
1426
+ )
1427
+
1428
+ _create_theme_options(
1429
+ "yellowTextColor",
1430
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1431
+ description="""
1432
+ Yellow text color used for the basic color palette.
1433
+
1434
+ If `yellowColor` is provided, this defaults to `yellowColor`, darkened
1435
+ by 15% for the light theme and lightened by 15% for the dark theme.
1436
+
1437
+ Otherwise, this is #926c05 for the light theme and #ffffc2 for the dark
1438
+ theme.
1439
+ """,
1440
+ )
1441
+
1442
+ _create_theme_options(
1443
+ "blueTextColor",
1444
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1445
+ description="""
1446
+ Blue text color used for the basic color palette.
1447
+
1448
+ If `blueColor` is provided, this defaults to `blueColor`, darkened by
1449
+ 15% for the light theme and lightened by 15% for the dark theme.
1450
+
1451
+ Otherwise, this is #0054a3 for the light theme and #3d9df3 for the dark
1452
+ theme.
1453
+ """,
1454
+ )
1455
+
1456
+ _create_theme_options(
1457
+ "greenTextColor",
1458
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1459
+ description="""
1460
+ Green text color used for the basic color palette.
1461
+
1462
+ If `greenColor` is provided, this defaults to `greenColor`, darkened by
1463
+ 15% for the light theme and lightened by 15% for the dark theme.
1464
+
1465
+ Otherwise, this is #158237 for the light theme and #5ce488 for the dark
1466
+ theme.
1467
+ """,
1468
+ )
1469
+
1470
+ _create_theme_options(
1471
+ "violetTextColor",
1472
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1473
+ description="""
1474
+ Violet text color used for the basic color palette.
1475
+
1476
+ If `violetColor` is provided, this defaults to `violetColor`, darkened
1477
+ by 15% for the light theme and lightened by 15% for the dark theme.
1478
+
1479
+ Otherwise, this is #583f84 for the light theme and #b27eff for the dark
1480
+ theme.
1481
+ """,
1482
+ )
1483
+
1484
+ _create_theme_options(
1485
+ "grayTextColor",
1486
+ categories=["theme", CustomThemeCategories.SIDEBAR],
1487
+ description="""
1488
+ Gray text color used for the basic color palette.
1489
+
1490
+ If `grayColor` is provided, this defaults to `grayColor`, darkened by
1491
+ 15% for the light theme and lightened by 15% for the dark theme.
1492
+
1493
+ Otherwise, this is #31333f with 60% opacity for the light theme and
1494
+ #fafafa with 60% opacity for the dark theme.
1495
+ """,
1496
+ )
1497
+
1198
1498
  _create_theme_options(
1199
1499
  "linkColor",
1200
1500
  categories=["theme", CustomThemeCategories.SIDEBAR],
@@ -1231,6 +1531,8 @@ _create_theme_options(
1231
1531
  - "serif"
1232
1532
  - "monospace"
1233
1533
  - The `family` value for a custom font table under [[theme.fontFaces]]
1534
+ - A URL to a CSS file in the format of "<font name>:<url>" (like
1535
+ "Nunito:https://fonts.googleapis.com/css2?family=Nunito&display=swap")
1234
1536
  - A comma-separated list of these (as a single string) to specify
1235
1537
  fallbacks
1236
1538
 
@@ -1310,6 +1612,8 @@ _create_theme_options(
1310
1612
  - "serif"
1311
1613
  - "monospace"
1312
1614
  - The `family` value for a custom font table under [[theme.fontFaces]]
1615
+ - A URL to a CSS file in the format of "<font name>:<url>" (like
1616
+ "Nunito:https://fonts.googleapis.com/css2?family=Nunito&display=swap")
1313
1617
  - A comma-separated list of these (as a single string) to specify
1314
1618
  fallbacks
1315
1619
 
@@ -1390,6 +1694,8 @@ _create_theme_options(
1390
1694
  - "serif"
1391
1695
  - "monospace"
1392
1696
  - The `family` value for a custom font table under [[theme.fontFaces]]
1697
+ - A URL to a CSS file in the format of "<font name>:<url>" (like
1698
+ "'Space Mono':https://fonts.googleapis.com/css2?family=Space+Mono&display=swap")
1393
1699
  - A comma-separated list of these (as a single string) to specify
1394
1700
  fallbacks
1395
1701
  """,
@@ -16,7 +16,7 @@ from __future__ import annotations
16
16
 
17
17
  import json
18
18
  from abc import ABC, abstractmethod
19
- from typing import Any, Generic, TypeVar
19
+ from typing import Any, Generic, TypeVar, cast
20
20
 
21
21
  from streamlit.runtime.secrets import AttrDict, secrets_singleton
22
22
  from streamlit.util import calc_md5
@@ -116,7 +116,9 @@ class BaseConnection(ABC, Generic[RawConnectionT]):
116
116
  if connections_section is None or type(connections_section) is not AttrDict:
117
117
  return AttrDict({})
118
118
 
119
- return connections_section.get(self._connection_name, AttrDict({}))
119
+ return cast(
120
+ "AttrDict", connections_section.get(self._connection_name, AttrDict({}))
121
+ )
120
122
 
121
123
  def reset(self) -> None:
122
124
  """Reset this connection so that it gets reinitialized the next time it's used.
@@ -74,7 +74,8 @@ _DASK_INDEX: Final = "dask.dataframe.dask_expr._collection.Index"
74
74
  _DASK_DATAFRAME_LEGACY: Final = "dask.dataframe.core.DataFrame"
75
75
  _DASK_SERIES_LEGACY: Final = "dask.dataframe.core.Series"
76
76
  _DASK_INDEX_LEGACY: Final = "dask.dataframe.core.Index"
77
- _DUCKDB_RELATION: Final = "duckdb.duckdb.DuckDBPyRelation"
77
+ _DUCKDB_RELATION: Final = "_duckdb.DuckDBPyRelation"
78
+ _DUCKDB_RELATION_LEGACY: Final = "duckdb.duckdb.DuckDBPyRelation"
78
79
  _MODIN_DF_TYPE_STR: Final = "modin.pandas.dataframe.DataFrame"
79
80
  _MODIN_SERIES_TYPE_STR: Final = "modin.pandas.series.Series"
80
81
  _PANDAS_STYLER_TYPE_STR: Final = "pandas.io.formats.style.Styler"
@@ -452,7 +453,7 @@ def is_duckdb_relation(obj: object) -> bool:
452
453
  https://duckdb.org/docs/api/python/relational_api
453
454
  """
454
455
 
455
- return is_type(obj, _DUCKDB_RELATION)
456
+ return is_type(obj, _DUCKDB_RELATION) or is_type(obj, _DUCKDB_RELATION_LEGACY)
456
457
 
457
458
 
458
459
  def _is_list_of_scalars(data: Iterable[Any]) -> bool:
@@ -485,12 +485,11 @@ class DeltaGenerator(
485
485
  msg_el_proto.CopyFrom(element_proto)
486
486
 
487
487
  if layout_config:
488
- if layout_config.height:
488
+ if layout_config.height is not None:
489
489
  msg.delta.new_element.height_config.CopyFrom(
490
490
  get_height_config(layout_config.height)
491
491
  )
492
-
493
- if layout_config.width:
492
+ if layout_config.width is not None:
494
493
  msg.delta.new_element.width_config.CopyFrom(
495
494
  get_width_config(layout_config.width)
496
495
  )