reflex 0.5.5a2__py3-none-any.whl → 0.5.6a1__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.
Potentially problematic release.
This version of reflex might be problematic. Click here for more details.
- reflex/.templates/jinja/web/pages/_app.js.jinja2 +0 -1
- reflex/.templates/jinja/web/utils/context.js.jinja2 +2 -0
- reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +20 -2
- reflex/.templates/web/utils/helpers/paste.js +59 -0
- reflex/__init__.py +2 -0
- reflex/__init__.pyi +86 -87
- reflex/app.py +64 -126
- reflex/app_mixins/__init__.py +5 -0
- reflex/app_mixins/lifespan.py +57 -0
- reflex/app_mixins/middleware.py +93 -0
- reflex/app_mixins/mixin.py +14 -0
- reflex/compiler/compiler.py +6 -1
- reflex/components/__init__.pyi +0 -2
- reflex/components/base/__init__.pyi +1 -3
- reflex/components/base/app_wrap.pyi +21 -22
- reflex/components/base/body.pyi +21 -20
- reflex/components/base/document.pyi +85 -85
- reflex/components/base/fragment.pyi +21 -20
- reflex/components/base/head.pyi +37 -36
- reflex/components/base/link.pyi +37 -37
- reflex/components/base/meta.pyi +69 -70
- reflex/components/base/script.py +6 -2
- reflex/components/base/script.pyi +31 -27
- reflex/components/chakra/base.pyi +54 -56
- reflex/components/chakra/datadisplay/badge.pyi +21 -21
- reflex/components/chakra/datadisplay/code.pyi +21 -20
- reflex/components/chakra/datadisplay/divider.pyi +21 -22
- reflex/components/chakra/datadisplay/keyboard_key.pyi +21 -20
- reflex/components/chakra/datadisplay/list.pyi +69 -71
- reflex/components/chakra/datadisplay/stat.pyi +101 -102
- reflex/components/chakra/datadisplay/table.pyi +149 -153
- reflex/components/chakra/datadisplay/tag.pyi +85 -89
- reflex/components/chakra/disclosure/accordion.pyi +87 -93
- reflex/components/chakra/disclosure/tabs.pyi +85 -90
- reflex/components/chakra/disclosure/transition.pyi +104 -105
- reflex/components/chakra/disclosure/visuallyhidden.pyi +21 -20
- reflex/components/chakra/feedback/alert.pyi +69 -70
- reflex/components/chakra/feedback/circularprogress.pyi +38 -40
- reflex/components/chakra/feedback/progress.pyi +22 -23
- reflex/components/chakra/feedback/skeleton.pyi +53 -53
- reflex/components/chakra/feedback/spinner.pyi +21 -21
- reflex/components/chakra/forms/button.pyi +37 -42
- reflex/components/chakra/forms/checkbox.pyi +38 -39
- reflex/components/chakra/forms/colormodeswitch.pyi +72 -71
- reflex/components/chakra/forms/date_picker.pyi +24 -24
- reflex/components/chakra/forms/date_time_picker.pyi +24 -24
- reflex/components/chakra/forms/editable.pyi +73 -74
- reflex/components/chakra/forms/email.pyi +24 -24
- reflex/components/chakra/forms/form.pyi +112 -141
- reflex/components/chakra/forms/iconbutton.pyi +21 -22
- reflex/components/chakra/forms/input.pyi +104 -111
- reflex/components/chakra/forms/numberinput.pyi +87 -91
- reflex/components/chakra/forms/password.pyi +24 -24
- reflex/components/chakra/forms/pininput.pyi +39 -45
- reflex/components/chakra/forms/radio.pyi +38 -43
- reflex/components/chakra/forms/rangeslider.pyi +72 -76
- reflex/components/chakra/forms/select.pyi +39 -44
- reflex/components/chakra/forms/slider.pyi +88 -91
- reflex/components/chakra/forms/switch.pyi +22 -23
- reflex/components/chakra/forms/textarea.pyi +24 -27
- reflex/components/chakra/forms/time_picker.pyi +24 -24
- reflex/components/chakra/layout/aspect_ratio.pyi +21 -21
- reflex/components/chakra/layout/box.pyi +21 -22
- reflex/components/chakra/layout/card.pyi +69 -73
- reflex/components/chakra/layout/center.pyi +53 -52
- reflex/components/chakra/layout/container.pyi +21 -21
- reflex/components/chakra/layout/flex.pyi +23 -26
- reflex/components/chakra/layout/grid.pyi +53 -54
- reflex/components/chakra/layout/spacer.pyi +21 -20
- reflex/components/chakra/layout/stack.pyi +62 -60
- reflex/components/chakra/layout/wrap.pyi +37 -38
- reflex/components/chakra/media/avatar.pyi +54 -55
- reflex/components/chakra/media/icon.pyi +37 -38
- reflex/components/chakra/media/image.pyi +24 -26
- reflex/components/chakra/navigation/breadcrumb.pyi +69 -71
- reflex/components/chakra/navigation/link.pyi +20 -21
- reflex/components/chakra/navigation/linkoverlay.pyi +37 -37
- reflex/components/chakra/navigation/stepper.pyi +149 -151
- reflex/components/chakra/overlay/alertdialog.pyi +121 -124
- reflex/components/chakra/overlay/drawer.pyi +121 -126
- reflex/components/chakra/overlay/menu.pyi +135 -141
- reflex/components/chakra/overlay/modal.pyi +121 -124
- reflex/components/chakra/overlay/popover.pyi +151 -156
- reflex/components/chakra/overlay/tooltip.pyi +23 -24
- reflex/components/chakra/typography/heading.pyi +21 -21
- reflex/components/chakra/typography/highlight.pyi +21 -23
- reflex/components/chakra/typography/span.pyi +21 -21
- reflex/components/chakra/typography/text.pyi +21 -21
- reflex/components/component.py +6 -2
- reflex/components/core/__init__.py +2 -0
- reflex/components/core/__init__.pyi +9 -7
- reflex/components/core/banner.pyi +118 -146
- reflex/components/core/breakpoints.py +95 -0
- reflex/components/core/client_side_routing.pyi +37 -39
- reflex/components/core/clipboard.py +95 -0
- reflex/components/core/clipboard.pyi +102 -0
- reflex/components/core/debounce.pyi +23 -28
- reflex/components/core/html.pyi +38 -55
- reflex/components/core/upload.pyi +74 -91
- reflex/components/datadisplay/__init__.pyi +2 -3
- reflex/components/datadisplay/code.py +3 -3
- reflex/components/datadisplay/code.pyi +22 -31
- reflex/components/datadisplay/dataeditor.pyi +41 -45
- reflex/components/el/__init__.pyi +131 -135
- reflex/components/el/element.pyi +21 -20
- reflex/components/el/elements/__init__.pyi +131 -132
- reflex/components/el/elements/base.pyi +38 -55
- reflex/components/el/elements/forms.pyi +558 -878
- reflex/components/el/elements/inline.pyi +941 -1403
- reflex/components/el/elements/media.pyi +645 -994
- reflex/components/el/elements/metadata.pyi +186 -268
- reflex/components/el/elements/other.pyi +239 -353
- reflex/components/el/elements/scripts.pyi +113 -171
- reflex/components/el/elements/sectioning.pyi +500 -739
- reflex/components/el/elements/tables.pyi +355 -551
- reflex/components/el/elements/typography.pyi +510 -760
- reflex/components/gridjs/datatable.pyi +38 -42
- reflex/components/lucide/icon.pyi +37 -38
- reflex/components/markdown/markdown.pyi +23 -36
- reflex/components/moment/moment.pyi +23 -25
- reflex/components/next/base.pyi +21 -20
- reflex/components/next/image.pyi +25 -27
- reflex/components/next/link.pyi +21 -21
- reflex/components/next/video.pyi +22 -22
- reflex/components/plotly/plotly.pyi +42 -45
- reflex/components/radix/__init__.pyi +26 -30
- reflex/components/radix/primitives/__init__.pyi +0 -2
- reflex/components/radix/primitives/accordion.pyi +119 -127
- reflex/components/radix/primitives/base.pyi +37 -40
- reflex/components/radix/primitives/drawer.pyi +175 -179
- reflex/components/radix/primitives/form.pyi +250 -336
- reflex/components/radix/primitives/progress.pyi +92 -96
- reflex/components/radix/primitives/slider.pyi +87 -89
- reflex/components/radix/themes/__init__.pyi +0 -2
- reflex/components/radix/themes/base.pyi +118 -121
- reflex/components/radix/themes/color_mode.pyi +103 -117
- reflex/components/radix/themes/components/__init__.pyi +12 -14
- reflex/components/radix/themes/components/alert_dialog.py +2 -1
- reflex/components/radix/themes/components/alert_dialog.pyi +150 -157
- reflex/components/radix/themes/components/aspect_ratio.pyi +22 -22
- reflex/components/radix/themes/components/avatar.py +2 -1
- reflex/components/radix/themes/components/avatar.pyi +32 -23
- reflex/components/radix/themes/components/badge.py +2 -1
- reflex/components/radix/themes/components/badge.pyi +50 -57
- reflex/components/radix/themes/components/button.py +2 -1
- reflex/components/radix/themes/components/button.pyi +60 -79
- reflex/components/radix/themes/components/callout.py +2 -1
- reflex/components/radix/themes/components/callout.pyi +201 -258
- reflex/components/radix/themes/components/card.py +2 -1
- reflex/components/radix/themes/components/card.pyi +48 -56
- reflex/components/radix/themes/components/checkbox.py +2 -1
- reflex/components/radix/themes/components/checkbox.pyi +68 -62
- reflex/components/radix/themes/components/checkbox_cards.py +8 -3
- reflex/components/radix/themes/components/checkbox_cards.pyi +87 -44
- reflex/components/radix/themes/components/checkbox_group.py +2 -1
- reflex/components/radix/themes/components/checkbox_group.pyi +49 -40
- reflex/components/radix/themes/components/context_menu.py +2 -1
- reflex/components/radix/themes/components/context_menu.pyi +153 -147
- reflex/components/radix/themes/components/data_list.py +8 -7
- reflex/components/radix/themes/components/data_list.pyi +116 -78
- reflex/components/radix/themes/components/dialog.py +2 -1
- reflex/components/radix/themes/components/dialog.pyi +154 -161
- reflex/components/radix/themes/components/dropdown_menu.py +2 -1
- reflex/components/radix/themes/components/dropdown_menu.pyi +169 -163
- reflex/components/radix/themes/components/hover_card.py +2 -1
- reflex/components/radix/themes/components/hover_card.pyi +97 -107
- reflex/components/radix/themes/components/icon_button.py +2 -1
- reflex/components/radix/themes/components/icon_button.pyi +59 -82
- reflex/components/radix/themes/components/inset.py +10 -9
- reflex/components/radix/themes/components/inset.pyi +109 -61
- reflex/components/radix/themes/components/popover.py +2 -1
- reflex/components/radix/themes/components/popover.pyi +105 -112
- reflex/components/radix/themes/components/progress.py +2 -1
- reflex/components/radix/themes/components/progress.pyi +32 -24
- reflex/components/radix/themes/components/radio.py +2 -1
- reflex/components/radix/themes/components/radio.pyi +32 -23
- reflex/components/radix/themes/components/radio_cards.py +51 -3
- reflex/components/radix/themes/components/radio_cards.pyi +120 -44
- reflex/components/radix/themes/components/radio_group.py +5 -2
- reflex/components/radix/themes/components/radio_group.pyi +82 -77
- reflex/components/radix/themes/components/scroll_area.pyi +21 -21
- reflex/components/radix/themes/components/segmented_control.py +2 -1
- reflex/components/radix/themes/components/segmented_control.pyi +52 -46
- reflex/components/radix/themes/components/select.py +2 -1
- reflex/components/radix/themes/components/select.pyi +188 -164
- reflex/components/radix/themes/components/separator.py +5 -2
- reflex/components/radix/themes/components/separator.pyi +40 -24
- reflex/components/radix/themes/components/skeleton.py +7 -6
- reflex/components/radix/themes/components/skeleton.pyi +40 -26
- reflex/components/radix/themes/components/slider.py +2 -1
- reflex/components/radix/themes/components/slider.pyi +40 -31
- reflex/components/radix/themes/components/spinner.py +2 -1
- reflex/components/radix/themes/components/spinner.pyi +31 -22
- reflex/components/radix/themes/components/switch.py +2 -1
- reflex/components/radix/themes/components/switch.pyi +33 -25
- reflex/components/radix/themes/components/table.py +2 -1
- reflex/components/radix/themes/components/table.pyi +265 -404
- reflex/components/radix/themes/components/tabs.py +14 -1
- reflex/components/radix/themes/components/tabs.pyi +113 -92
- reflex/components/radix/themes/components/text_area.py +3 -2
- reflex/components/radix/themes/components/text_area.pyi +64 -66
- reflex/components/radix/themes/components/text_field.py +2 -1
- reflex/components/radix/themes/components/text_field.pyi +116 -140
- reflex/components/radix/themes/components/tooltip.pyi +32 -37
- reflex/components/radix/themes/layout/__init__.pyi +4 -7
- reflex/components/radix/themes/layout/base.py +10 -9
- reflex/components/radix/themes/layout/base.pyi +121 -31
- reflex/components/radix/themes/layout/box.pyi +39 -53
- reflex/components/radix/themes/layout/center.pyi +89 -58
- reflex/components/radix/themes/layout/container.py +4 -1
- reflex/components/radix/themes/layout/container.pyi +51 -58
- reflex/components/radix/themes/layout/flex.py +6 -5
- reflex/components/radix/themes/layout/flex.pyi +91 -61
- reflex/components/radix/themes/layout/grid.py +9 -8
- reflex/components/radix/themes/layout/grid.pyi +116 -64
- reflex/components/radix/themes/layout/list.pyi +173 -233
- reflex/components/radix/themes/layout/section.py +4 -1
- reflex/components/radix/themes/layout/section.pyi +50 -57
- reflex/components/radix/themes/layout/spacer.pyi +89 -58
- reflex/components/radix/themes/layout/stack.pyi +160 -160
- reflex/components/radix/themes/typography/__init__.pyi +0 -2
- reflex/components/radix/themes/typography/blockquote.py +3 -2
- reflex/components/radix/themes/typography/blockquote.pyi +58 -59
- reflex/components/radix/themes/typography/code.py +3 -2
- reflex/components/radix/themes/typography/code.pyi +57 -58
- reflex/components/radix/themes/typography/heading.py +5 -4
- reflex/components/radix/themes/typography/heading.pyi +71 -60
- reflex/components/radix/themes/typography/link.py +4 -3
- reflex/components/radix/themes/typography/link.pyi +74 -82
- reflex/components/radix/themes/typography/text.py +5 -4
- reflex/components/radix/themes/typography/text.pyi +330 -364
- reflex/components/react_player/audio.pyi +37 -36
- reflex/components/react_player/react_player.pyi +37 -38
- reflex/components/react_player/video.pyi +37 -36
- reflex/components/recharts/__init__.pyi +41 -42
- reflex/components/recharts/cartesian.pyi +384 -400
- reflex/components/recharts/charts.pyi +224 -231
- reflex/components/recharts/general.pyi +89 -96
- reflex/components/recharts/polar.pyi +97 -104
- reflex/components/recharts/recharts.pyi +37 -37
- reflex/components/sonner/toast.pyi +22 -27
- reflex/components/suneditor/editor.pyi +53 -58
- reflex/config.py +6 -0
- reflex/constants/event.py +1 -0
- reflex/experimental/layout.pyi +140 -194
- reflex/model.py +14 -2
- reflex/state.py +38 -45
- reflex/style.py +24 -13
- reflex/utils/codespaces.py +94 -0
- reflex/utils/compat.py +21 -0
- reflex/utils/exceptions.py +4 -0
- reflex/utils/format.py +25 -4
- reflex/utils/prerequisites.py +0 -13
- reflex/utils/pyi_generator.py +88 -61
- reflex/utils/types.py +83 -5
- reflex/vars.py +62 -5
- reflex/vars.pyi +23 -11
- {reflex-0.5.5a2.dist-info → reflex-0.5.6a1.dist-info}/METADATA +4 -5
- {reflex-0.5.5a2.dist-info → reflex-0.5.6a1.dist-info}/RECORD +262 -253
- {reflex-0.5.5a2.dist-info → reflex-0.5.6a1.dist-info}/LICENSE +0 -0
- {reflex-0.5.5a2.dist-info → reflex-0.5.6a1.dist-info}/WHEEL +0 -0
- {reflex-0.5.5a2.dist-info → reflex-0.5.6a1.dist-info}/entry_points.txt +0 -0
|
@@ -36,7 +36,7 @@ reflex/.templates/jinja/custom_components/demo_app.py.jinja2,sha256=ipbKtObNqQLc
|
|
|
36
36
|
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=PfE_WclDh5mknUkTh0D9uWseht38GvPpDu8-31TwkzI,614
|
|
37
37
|
reflex/.templates/jinja/custom_components/src.py.jinja2,sha256=e80PwMI6NoeQtGJ0NXWhYrkqUe7jvvJTFuztYQe-R5w,2403
|
|
38
38
|
reflex/.templates/jinja/web/package.json.jinja2,sha256=YU9PF8WgiQ8OPlG3oLDX31t2R0o6DFntCh698NTiDK8,548
|
|
39
|
-
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=
|
|
39
|
+
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=KNQmmGhRkVAOMSint5kcFnhjzq5C3Zoln47cKsJDJFc,929
|
|
40
40
|
reflex/.templates/jinja/web/pages/_document.js.jinja2,sha256=E2r3MWp-gimAa6DdRs9ErQpPEyjS_yV5fdid_wdOOlA,182
|
|
41
41
|
reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=-Jykv29ZqzsQyyRe_iR2gUD5ac-X5RhDrGs0-diOMOA,400
|
|
42
42
|
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
@@ -47,11 +47,11 @@ reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9
|
|
|
47
47
|
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=xi1ryZ2dqWM4pmB4p028hxRtsdP6T3ZR5a8OG_U1IAs,3883
|
|
48
48
|
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=4-CvqGR8-nRzkuCOSp_PdqmhPEmOs_kOhskOlhLMEUg,141
|
|
49
49
|
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=uZMIvtL94OZh6h8zsduv3ox6EXnnYgfVXB_5moOe86E,761
|
|
50
|
-
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=
|
|
50
|
+
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=i63BPgbEtc3s0NX0MLPNJZH2-FEkvuETElDeZ8ZITQY,3864
|
|
51
51
|
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=cdRQR4cx0OFHUY060k1AdsPpK7BNUV--NzsC9HdH4l8,37
|
|
52
52
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
53
53
|
reflex/.templates/web/components/reflex/chakra_color_mode_provider.js,sha256=E_-MshxFMx6gdLgICU2K2gEBQJTWQQrPft5SNg5ZnFo,1166
|
|
54
|
-
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=
|
|
54
|
+
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=DdONaDtArc63e-aYN9QLTU4Ri_dNfrn4RRyJ4EHQqD0,1646
|
|
55
55
|
reflex/.templates/web/jsconfig.json,sha256=Y9sEhjJcpk-ZDj-sxHYCvF9UZF4fyBL4oUlphb9X9Hk,97
|
|
56
56
|
reflex/.templates/web/next.config.js,sha256=ZpGOqo9wHEbt0S08G70VfUNUjFe79UXo7Cde8X8V10E,118
|
|
57
57
|
reflex/.templates/web/postcss.config.js,sha256=oEjUS1dzudKcmoPCD_B1ss2m1K14VDM0S6GAyrs1Ric,108
|
|
@@ -59,434 +59,442 @@ reflex/.templates/web/styles/tailwind.css,sha256=wGOoICTy1G0e5bWZ4LYOVgRa3ZT7M44
|
|
|
59
59
|
reflex/.templates/web/utils/client_side_routing.js,sha256=iGGnZY07XMNLUT2GT_Y6OEICP7uc1FaWn9cPlQUpGgo,1254
|
|
60
60
|
reflex/.templates/web/utils/helpers/dataeditor.js,sha256=anZgi8RJ_J0yqDez1Ks51fNDIQOvP3WkIm1QRDwccSk,1622
|
|
61
61
|
reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
|
|
62
|
+
reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
|
|
62
63
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
63
64
|
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
64
65
|
reflex/.templates/web/utils/state.js,sha256=dAGKAnhloEE5ldQ2n21k95br9djexy-CscZNQG-Remc,25021
|
|
65
|
-
reflex/__init__.py,sha256=
|
|
66
|
-
reflex/__init__.pyi,sha256=
|
|
66
|
+
reflex/__init__.py,sha256=1HO-TJ-wapnytmaQXmSvkPoL8HKld-CvvvMnns7XIA8,9589
|
|
67
|
+
reflex/__init__.pyi,sha256=z4t-OZKh68rAfHohp8g0qzeb0sxx3dvIznoyOuIijVg,10707
|
|
67
68
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
68
69
|
reflex/admin.py,sha256=_3pkkauMiTGJJ0kwAEBnsUWAgZZ_1WNnCaaObbhpmUI,374
|
|
69
|
-
reflex/app.py,sha256=
|
|
70
|
+
reflex/app.py,sha256=wzBA0yrRc4CTuPttTBHtcI-pVLxaEZH3vzYHtgvwu54,46985
|
|
71
|
+
reflex/app_mixins/__init__.py,sha256=Oegz3-gZLP9p2OAN5ALNbsgxuNQfS6lGZgQA8cc-9mQ,137
|
|
72
|
+
reflex/app_mixins/lifespan.py,sha256=0PaavAPTYmF7JdLKGfZQu_NT7oAaxyq7-5fauLZ9e8Y,2048
|
|
73
|
+
reflex/app_mixins/middleware.py,sha256=6Yby_Uw1-J0K7NgPyh-X7tGGhmezn6D7-KsfABYAVBU,3130
|
|
74
|
+
reflex/app_mixins/mixin.py,sha256=wjudM02c-y1vV8aTNUUs9CsFta7pzXrvBqyEzXOW-g4,310
|
|
70
75
|
reflex/app_module_for_backend.py,sha256=TOB73WSoPs-DVitLNjnCXDb5FXQFEvoIDIohDwovne4,1228
|
|
71
76
|
reflex/base.py,sha256=qBP_gr9BEPL2P0uYSH8mSw9FZJ2V2AxCSw1mcNVpnvw,4297
|
|
72
77
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
73
|
-
reflex/compiler/compiler.py,sha256=
|
|
78
|
+
reflex/compiler/compiler.py,sha256=1_PfhgLXozGmkMhFx58NBmCLF3gA4erf-vVerERB3_4,17814
|
|
74
79
|
reflex/compiler/templates.py,sha256=YkbTmzu4-BAW3DYnuF8Y1IbAuLiNJk9rmyuW-BHP5mA,4469
|
|
75
80
|
reflex/compiler/utils.py,sha256=7pEs27NEdDy2cORe3I4ues8lFGXfNuc7y7CEaZ-N5jU,13957
|
|
76
81
|
reflex/components/__init__.py,sha256=W_KyltR_KeMweL1-j0Q1tu3e7wJ8osDGxEh0LAFfqDI,638
|
|
77
|
-
reflex/components/__init__.pyi,sha256=
|
|
82
|
+
reflex/components/__init__.pyi,sha256=yQyzkFsaQMsJkDYUbj-ITwyWcoYxRpnlpGUrdg4Hmy8,892
|
|
78
83
|
reflex/components/base/__init__.py,sha256=ofR-82t0H6re-Wtl2x5138nO7jehQw4CcUaF2Zd7PT4,648
|
|
79
|
-
reflex/components/base/__init__.pyi,sha256=
|
|
84
|
+
reflex/components/base/__init__.pyi,sha256=A1I-3D8BDGtVty2qMt7KR0cyjLMGN_rlyCfkW5UPfYE,935
|
|
80
85
|
reflex/components/base/app_wrap.py,sha256=45fkel5ATAcCp7-eUCGXNuq4QwnCpI33VNJOIP_L6k4,574
|
|
81
|
-
reflex/components/base/app_wrap.pyi,sha256=
|
|
86
|
+
reflex/components/base/app_wrap.pyi,sha256=Ic4YetB-PdBdc7wjknJKIZ4_gtIQviwojVzztihKjlg,2790
|
|
82
87
|
reflex/components/base/bare.py,sha256=cbIugrPzaank429Xk5mLRydOCxLTX0tuRdXKoKL2Bxw,1234
|
|
83
88
|
reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6I,151
|
|
84
|
-
reflex/components/base/body.pyi,sha256
|
|
89
|
+
reflex/components/base/body.pyi,sha256=-QlAMnAHDikAWFzqxLJTSosW0LSJ-J0WJlbD1DQlIgo,3184
|
|
85
90
|
reflex/components/base/document.py,sha256=_Cl9iMXwXdxGMrCLAT20v35FX3MGtbqh2dfWenDtSKc,583
|
|
86
|
-
reflex/components/base/document.pyi,sha256=
|
|
91
|
+
reflex/components/base/document.pyi,sha256=tYLJTR7zAjlbcZ5doe59vv1-XEE5ZvrkhDlfuCRXHjA,14186
|
|
87
92
|
reflex/components/base/fragment.py,sha256=ys7wkokq-N8WBxa9fqkEaNIrBlSximyD7vqlFVe02hQ,342
|
|
88
|
-
reflex/components/base/fragment.pyi,sha256=
|
|
93
|
+
reflex/components/base/fragment.pyi,sha256=14hH-O8uEug7VzcIjrqo7LcOlGNsC5HCp4YKJgizI6s,3224
|
|
89
94
|
reflex/components/base/head.py,sha256=BGjOksNZEo_AZcYEuxNH7onsRnfyxJkJzl4cTd_EwiQ,318
|
|
90
|
-
reflex/components/base/head.pyi,sha256=
|
|
95
|
+
reflex/components/base/head.pyi,sha256=qKXugFVu6WE_0QDrln_lg9nELrSSzhnF0JSGSCORidU,6001
|
|
91
96
|
reflex/components/base/link.py,sha256=VcYe2CU0zBR3fOS-bNPbi0xc1uIc50u0rTgPc7emoH0,928
|
|
92
|
-
reflex/components/base/link.pyi,sha256=
|
|
97
|
+
reflex/components/base/link.pyi,sha256=EUf1weMfmhdsjDKT7cjmXKcL7RmtJhecMyjHIsUHqi8,6941
|
|
93
98
|
reflex/components/base/meta.py,sha256=RWITTQTA_35-FbaVGhjkAWDOmU65rzJ-WedENRJk-3k,1438
|
|
94
|
-
reflex/components/base/meta.pyi,sha256=
|
|
95
|
-
reflex/components/base/script.py,sha256=
|
|
96
|
-
reflex/components/base/script.pyi,sha256=
|
|
99
|
+
reflex/components/base/meta.pyi,sha256=u5THQWPAlBppkdDr7Cw8aWeTNmLZeHxK9o7PyToeqwo,12712
|
|
100
|
+
reflex/components/base/script.py,sha256=EMypn_Azzr1SXLI4mHrdHTaMweOjC0FEyTcM-WV480A,2391
|
|
101
|
+
reflex/components/base/script.pyi,sha256=5x0DBkIQKJ0f1Rz3izBa7t4JZJAGcbAaigys7RjXAbE,4616
|
|
97
102
|
reflex/components/chakra/__init__.py,sha256=IvxaXNdJH_df-HZRf4IXilvl6XpLLzIzCSlLL0KVMsU,6378
|
|
98
103
|
reflex/components/chakra/base.py,sha256=DTCbEFl0k_Xdm_qNLc8Kh6Zmz03ZQ_YqxT6j4mmlHLw,5270
|
|
99
|
-
reflex/components/chakra/base.pyi,sha256=
|
|
104
|
+
reflex/components/chakra/base.pyi,sha256=o5ggy_LK6TbK_52imBcJ8z_xQq0qx4kcXUgK3MXyl_M,10870
|
|
100
105
|
reflex/components/chakra/datadisplay/__init__.py,sha256=yDWJHYXf8i-WTXMdAAU4alskP1RLizvsYt9BKAi0Uts,459
|
|
101
106
|
reflex/components/chakra/datadisplay/badge.py,sha256=G0x7yacjFYQSD0Wrxc6UvC3kHJJ-qlRNbDyONxpbVmU,352
|
|
102
|
-
reflex/components/chakra/datadisplay/badge.pyi,sha256=
|
|
107
|
+
reflex/components/chakra/datadisplay/badge.pyi,sha256=dTTnosdaMC9bOJJZa_aVbsC5NiOCEmhwCkTncEQzQEw,3597
|
|
103
108
|
reflex/components/chakra/datadisplay/code.py,sha256=z1NfmQGghbiyvfl8lFm__162l9iCKXids2nZpWRpKws,175
|
|
104
|
-
reflex/components/chakra/datadisplay/code.pyi,sha256=
|
|
109
|
+
reflex/components/chakra/datadisplay/code.pyi,sha256=6CCAVyGSiaV3tovSuS4d-Wi1E8-Da1CAFK99roWJLaw,3207
|
|
105
110
|
reflex/components/chakra/datadisplay/divider.py,sha256=C2MdeT5l1pkB14Tznzru5TLi06OsBMRkNzk2Wt1nUlY,658
|
|
106
|
-
reflex/components/chakra/datadisplay/divider.pyi,sha256=
|
|
111
|
+
reflex/components/chakra/datadisplay/divider.pyi,sha256=Sms5AczWPZ7_AO8jFXMkM9JLZqw4RLtw_l380eE99ho,3843
|
|
107
112
|
reflex/components/chakra/datadisplay/keyboard_key.py,sha256=twR7opuIdsWBKQJYIC8WVxMgWTufTqQmWOWGVvSAX0c,180
|
|
108
|
-
reflex/components/chakra/datadisplay/keyboard_key.pyi,sha256=
|
|
113
|
+
reflex/components/chakra/datadisplay/keyboard_key.pyi,sha256=Zyus9JpZx4A418TMXzkwHlwXnJvhqnmhN40BknKKqoM,3229
|
|
109
114
|
reflex/components/chakra/datadisplay/list.py,sha256=v6oQIKaLuwUBfH7mnaHi6Q52EUPAI-0hc0i-rUq4gfM,1484
|
|
110
|
-
reflex/components/chakra/datadisplay/list.pyi,sha256=
|
|
115
|
+
reflex/components/chakra/datadisplay/list.pyi,sha256=b_JAI2ggUcNKPbnjrGZrUXUYZx02_iZZg41oQwhDRY4,12843
|
|
111
116
|
reflex/components/chakra/datadisplay/stat.py,sha256=vIIemV6DSusZ7Rh73u2GK1VJaVAIDniNASWjJQcWq_g,2149
|
|
112
|
-
reflex/components/chakra/datadisplay/stat.pyi,sha256=
|
|
117
|
+
reflex/components/chakra/datadisplay/stat.pyi,sha256=Kn5-ggQyLZyQgYRzp-nAQ3qV2DNz49rSHrcDl1jNhuY,17366
|
|
113
118
|
reflex/components/chakra/datadisplay/table.py,sha256=njazO71jUtjHHJjcpEOLgMd6656_9xZbhI87gsNndzk,9123
|
|
114
|
-
reflex/components/chakra/datadisplay/table.pyi,sha256=
|
|
119
|
+
reflex/components/chakra/datadisplay/table.pyi,sha256=bkapJgZ1R_561txTb9w_PrwFQp9aCNQUCnkdQMdypMk,27050
|
|
115
120
|
reflex/components/chakra/datadisplay/tag.py,sha256=qKolJdjwN6YbOss1sMp1SMuACp04Nu20Axo-BGTP5JM,2295
|
|
116
|
-
reflex/components/chakra/datadisplay/tag.pyi,sha256=
|
|
121
|
+
reflex/components/chakra/datadisplay/tag.pyi,sha256=xT98KGGwwlH8i0gIMeSu29GXkvJt7mccqKuTEjca1TM,15602
|
|
117
122
|
reflex/components/chakra/disclosure/__init__.py,sha256=x3d_1fLJVoxNyabvcB_Ik9CiFlALbHE6pzcfSrEfP_M,384
|
|
118
123
|
reflex/components/chakra/disclosure/accordion.py,sha256=kEYXTdBujmEgcF50nOTIEkxYTWpyP-mTIqvV1Nt--bk,3510
|
|
119
|
-
reflex/components/chakra/disclosure/accordion.pyi,sha256=
|
|
124
|
+
reflex/components/chakra/disclosure/accordion.pyi,sha256=bKyBbChIX7w4ESkwO_Cvuj8ZOG_m6ugRI2YYJ4Vtprk,15611
|
|
120
125
|
reflex/components/chakra/disclosure/tabs.py,sha256=u05ZQwgWU4dZ7fZ5h6hpj75gt_yASO8tT5b8wxgVWUw,3295
|
|
121
|
-
reflex/components/chakra/disclosure/tabs.pyi,sha256=
|
|
126
|
+
reflex/components/chakra/disclosure/tabs.pyi,sha256=W_55XK70ADuSO2zbTDZo1VvwA7nYhHH7usguiMu8G3w,18341
|
|
122
127
|
reflex/components/chakra/disclosure/transition.py,sha256=vs1O0H5c91Rv7hMq39zqgPxnhCMRGIyX2CmwM4IeUM0,1733
|
|
123
|
-
reflex/components/chakra/disclosure/transition.pyi,sha256=
|
|
128
|
+
reflex/components/chakra/disclosure/transition.pyi,sha256=54k0pe2XViwUaIhDkUlBjpTsQVsPz8AiLu3WsDW6Ack,19912
|
|
124
129
|
reflex/components/chakra/disclosure/visuallyhidden.py,sha256=ofooF8gUOWDaDj_43sSLLjYJMSnszv1_mIjOkKp3eV0,278
|
|
125
|
-
reflex/components/chakra/disclosure/visuallyhidden.pyi,sha256=
|
|
130
|
+
reflex/components/chakra/disclosure/visuallyhidden.pyi,sha256=P8F0dS6I4DTAQ-ti3EVYz5Wcabuag5PG71nEo1nxQqg,3236
|
|
126
131
|
reflex/components/chakra/feedback/__init__.py,sha256=07F8-Y7FJxJSNmKEDqeTHIAJ9jyXsX-ii67-LaJ-0GY,313
|
|
127
132
|
reflex/components/chakra/feedback/alert.py,sha256=9f6-mqPgjc4oMm3cViGHA89dt9NPt9opgxCA57cQAL8,1623
|
|
128
|
-
reflex/components/chakra/feedback/alert.pyi,sha256=
|
|
133
|
+
reflex/components/chakra/feedback/alert.pyi,sha256=1MgMftgly32K6pxhiBxsJCEqRlOz9GggAg4JCzTT5lw,12257
|
|
129
134
|
reflex/components/chakra/feedback/circularprogress.py,sha256=-njwnhScQQ9qNOx2ZkFo7J-F0q3f2w2VbSMmyovzKnQ,2007
|
|
130
|
-
reflex/components/chakra/feedback/circularprogress.pyi,sha256=
|
|
135
|
+
reflex/components/chakra/feedback/circularprogress.pyi,sha256=of3aN_R4W0axGilsG1e2JIItMY3EAUIN7bNLjhji0As,7506
|
|
131
136
|
reflex/components/chakra/feedback/progress.py,sha256=9PNzfkcoGz62DjZb2NKciAEmlVfnqojbg0Ri-oy5Iic,871
|
|
132
|
-
reflex/components/chakra/feedback/progress.pyi,sha256=
|
|
137
|
+
reflex/components/chakra/feedback/progress.pyi,sha256=1n6uiAUTJeCaumL32Is8IFHmyVS4JIYhmh_4RhrL9bc,4196
|
|
133
138
|
reflex/components/chakra/feedback/skeleton.py,sha256=A_3XRK_5PVei9vtgN0nE5NpLROse8w6W9LBiDRuGADI,1776
|
|
134
|
-
reflex/components/chakra/feedback/skeleton.pyi,sha256=
|
|
139
|
+
reflex/components/chakra/feedback/skeleton.pyi,sha256=Cxcwc2uBHgR2NZ3LrZPvd0DFAHIP-xRMyjRAFDi35oI,10642
|
|
135
140
|
reflex/components/chakra/feedback/spinner.py,sha256=NlnnwyTIf-I8AVkc2cDKN-522DjE-taG5dtzmBHar74,704
|
|
136
|
-
reflex/components/chakra/feedback/spinner.pyi,sha256=
|
|
141
|
+
reflex/components/chakra/feedback/spinner.pyi,sha256=hEQR3Os7EVhQGyZZmNQWHFL6hfFmoshzZycVxBDsl48,4046
|
|
137
142
|
reflex/components/chakra/forms/__init__.py,sha256=6TeCxpmKfVy3IxkhTE8amKowHiprEs5Q9P4C_BArygE,1453
|
|
138
143
|
reflex/components/chakra/forms/button.py,sha256=IWkGc_AK5k4JMywCQsuAwAZX7mBjYZ5h06E-iO1PjD4,2396
|
|
139
|
-
reflex/components/chakra/forms/button.pyi,sha256=
|
|
144
|
+
reflex/components/chakra/forms/button.pyi,sha256=FG0-hqUxIyTywV16rn7j4MpUzlNrgtVdrlfczoTxehg,10379
|
|
140
145
|
reflex/components/chakra/forms/checkbox.py,sha256=IbmVGW7susNvzO3CsTLX2JLVCQeMaKfeedOmCcwoJhE,2461
|
|
141
|
-
reflex/components/chakra/forms/checkbox.pyi,sha256=
|
|
146
|
+
reflex/components/chakra/forms/checkbox.pyi,sha256=zjEyM9x6GHrdYq-plkUZ-oX-3_kVaSbI9YYy3c3St-Q,10084
|
|
142
147
|
reflex/components/chakra/forms/colormodeswitch.py,sha256=TYOuhjmsAUXJTL7Btjp90eLBz7CKn-AMWvngkwbU-18,2861
|
|
143
|
-
reflex/components/chakra/forms/colormodeswitch.pyi,sha256=
|
|
148
|
+
reflex/components/chakra/forms/colormodeswitch.pyi,sha256=d0lqdowpdeljc4oj5LXtW2TaEkRSuIQOEUrgf_z9pGA,18360
|
|
144
149
|
reflex/components/chakra/forms/date_picker.py,sha256=ntDsnY5eDN8aiRbjMmpS6yriUGpuJt5ik5ffACYY1ds,246
|
|
145
|
-
reflex/components/chakra/forms/date_picker.pyi,sha256=
|
|
150
|
+
reflex/components/chakra/forms/date_picker.pyi,sha256=AQNTl7_2LWoOx8v2MIWuCjKO6vDreXQkQOHB_5qW_R4,5800
|
|
146
151
|
reflex/components/chakra/forms/date_time_picker.py,sha256=4rRwpXVcTXtMEwkpstH0QKL159Sv4ze-2bimDqzw5Qc,280
|
|
147
|
-
reflex/components/chakra/forms/date_time_picker.pyi,sha256=
|
|
152
|
+
reflex/components/chakra/forms/date_time_picker.pyi,sha256=C08-DI3oz7RrHgX6IJZ8dWqknxFdV4z4-kWRpGW5VtQ,5813
|
|
148
153
|
reflex/components/chakra/forms/editable.py,sha256=ZfJzGpO2XOuWhMh4blRb1DwD5zlXBqVEfbshvwrFVmc,1884
|
|
149
|
-
reflex/components/chakra/forms/editable.pyi,sha256=
|
|
154
|
+
reflex/components/chakra/forms/editable.pyi,sha256=1v6J0FfpeQAxPdXRF0zhMMh0XR37thZr6H_IseBF4aA,13151
|
|
150
155
|
reflex/components/chakra/forms/email.py,sha256=1uoXLW7GgUm2FbHOmCy-sgipZk3SMZCUuzJAn008sHk,246
|
|
151
|
-
reflex/components/chakra/forms/email.pyi,sha256=
|
|
156
|
+
reflex/components/chakra/forms/email.pyi,sha256=9hwIbna9_S7Ju3QHctaugl6OpfEKv9ZxkNR4DE2WoiM,5784
|
|
152
157
|
reflex/components/chakra/forms/form.py,sha256=Ekrgx7czqaxQCz4eCWS1hlIkUw58D5onmGk7QybX1oc,2580
|
|
153
|
-
reflex/components/chakra/forms/form.pyi,sha256=
|
|
158
|
+
reflex/components/chakra/forms/form.pyi,sha256=RPruZAvgs4HVWF-X7ppcyg22u_PZZET4EZBR4gb1ERQ,20040
|
|
154
159
|
reflex/components/chakra/forms/iconbutton.py,sha256=KgmCYKOVAUgCLDSnyoDGd4aoRPdBtOjk-eykiDBQiBI,935
|
|
155
|
-
reflex/components/chakra/forms/iconbutton.pyi,sha256
|
|
160
|
+
reflex/components/chakra/forms/iconbutton.pyi,sha256=fl0Cedm0cEmLBVQ3KJIgaQbIIyMHz6OenDJX6JlhV5A,4590
|
|
156
161
|
reflex/components/chakra/forms/input.py,sha256=tsFDXLIrjDvnoWBeEF3e3gYuu5g9tGYoAL7jNPFNfys,4152
|
|
157
|
-
reflex/components/chakra/forms/input.pyi,sha256=
|
|
162
|
+
reflex/components/chakra/forms/input.pyi,sha256=EMzAvMggQnsxS7lJam7zBHpghcS23yl8fV_Sj9qoWSs,21177
|
|
158
163
|
reflex/components/chakra/forms/multiselect.py,sha256=PAkLRdNipO1VLWR7AN3gOpQe2LaOfri5PzWh1_-r6D0,12941
|
|
159
164
|
reflex/components/chakra/forms/numberinput.py,sha256=c0gGhE3dVKxohlOiNDOxQK3m6gCm81_FOeRC30Tqa44,4011
|
|
160
|
-
reflex/components/chakra/forms/numberinput.pyi,sha256=
|
|
165
|
+
reflex/components/chakra/forms/numberinput.pyi,sha256=X4Mdd6VoMGlwqV6I8j3O2mgF5STwEfdUTwzCqWYV5Hg,17830
|
|
161
166
|
reflex/components/chakra/forms/password.py,sha256=rjFELopI5j5exce9QZJqf4hSIp5aW44DUbpbpfiB24w,256
|
|
162
|
-
reflex/components/chakra/forms/password.pyi,sha256=
|
|
167
|
+
reflex/components/chakra/forms/password.pyi,sha256=Ox5zX6-5drO2CnoMR3LdRrJ505awZsqM3ZH9FYa19YQ,5793
|
|
163
168
|
reflex/components/chakra/forms/pininput.py,sha256=23aajygkQPQcd1rqrkf66x1OxJRM7tyGpqoHEF01fdc,6245
|
|
164
|
-
reflex/components/chakra/forms/pininput.pyi,sha256=
|
|
169
|
+
reflex/components/chakra/forms/pininput.pyi,sha256=E2Vwf0WPT59E0RhG_sUnGRcWw9RJNzU3wvW5URZVYKg,8973
|
|
165
170
|
reflex/components/chakra/forms/radio.py,sha256=7XbqcoK8NRzTJIURLNzWET1n828lRoy2B_Q6Lx0Z1Jw,2858
|
|
166
|
-
reflex/components/chakra/forms/radio.pyi,sha256
|
|
171
|
+
reflex/components/chakra/forms/radio.pyi,sha256=KkupbIAT7-w_px5FnhocO8Ss3eIy64laJMOFRf69qa4,8064
|
|
167
172
|
reflex/components/chakra/forms/rangeslider.py,sha256=y9l7VB7WUYZqwCdwJ3C9z-EujIoOJjk2g2Eg_zO3ZOU,4313
|
|
168
|
-
reflex/components/chakra/forms/rangeslider.pyi,sha256=
|
|
173
|
+
reflex/components/chakra/forms/rangeslider.pyi,sha256=m9hkwHRAvqUvLZWdFcEy2TvVke-QmYvJiyBUzQ6qQPs,13644
|
|
169
174
|
reflex/components/chakra/forms/select.py,sha256=IgSolfMABBzOCwP8Zoh0mP2b2WB8E_ShnclXqMvTU1s,3299
|
|
170
|
-
reflex/components/chakra/forms/select.pyi,sha256=
|
|
175
|
+
reflex/components/chakra/forms/select.pyi,sha256=4vLsk1-K0FPgM2K-53u3P7bZ2mNo487zp7YGE5DGXs0,8510
|
|
171
176
|
reflex/components/chakra/forms/slider.py,sha256=U9PHz3BYRDvUBxudwZ1tpZQ_LckcT3vJ89qzhSFLyjY,3264
|
|
172
|
-
reflex/components/chakra/forms/slider.pyi,sha256=
|
|
177
|
+
reflex/components/chakra/forms/slider.pyi,sha256=3Qkb4BZWDLV0Rs-xnrYpQiKIOeQGhQsF3LQKLm7ZrM4,17200
|
|
173
178
|
reflex/components/chakra/forms/switch.py,sha256=XfmJleQbiqNkYMqFNyFkhjYEGLjMG0YSQCb1DGR_kg8,1502
|
|
174
|
-
reflex/components/chakra/forms/switch.pyi,sha256=
|
|
179
|
+
reflex/components/chakra/forms/switch.pyi,sha256=ZRZaPmXobcMlWCHiiAhSa8aGR16iSvoNFOc3BQj0tWU,6329
|
|
175
180
|
reflex/components/chakra/forms/textarea.py,sha256=TidqIehxzu7WkXpcpraTbSWYyqQCVE6Qu-bDXlMajuw,2273
|
|
176
|
-
reflex/components/chakra/forms/textarea.pyi,sha256=
|
|
181
|
+
reflex/components/chakra/forms/textarea.pyi,sha256=BIssqwQ_r5f_v_IJZ5rOGXqatmapwz3OhFli44qPw8s,5108
|
|
177
182
|
reflex/components/chakra/forms/time_picker.py,sha256=BriPTj3MYdmSbgqUJfTGGbQCPNWl6DjXWEX-iyE-l4s,246
|
|
178
|
-
reflex/components/chakra/forms/time_picker.pyi,sha256=
|
|
183
|
+
reflex/components/chakra/forms/time_picker.pyi,sha256=WTLM7WURTx_wU97CisPGrWY_4wswr13c5adN8Xr8xMs,5800
|
|
179
184
|
reflex/components/chakra/layout/__init__.py,sha256=PDSgqTkLhaXAFOXUtaSOp_v_0P7fLX_Q3TBOHXCRnqM,487
|
|
180
185
|
reflex/components/chakra/layout/aspect_ratio.py,sha256=8_qwFZeeHmdaRJ0oNtBWfJrvYirvNTeHdw7bvVnlJ8I,315
|
|
181
|
-
reflex/components/chakra/layout/aspect_ratio.pyi,sha256=
|
|
186
|
+
reflex/components/chakra/layout/aspect_ratio.pyi,sha256=L7p5gMxQFNw52vGyS71j0xGedIL2aKKEVdAOubKgU-E,3329
|
|
182
187
|
reflex/components/chakra/layout/box.py,sha256=S1zYdFGFVTeUCQz5OrmFqnN6zS86LRkHNcJvYjl1dtA,755
|
|
183
|
-
reflex/components/chakra/layout/box.pyi,sha256=
|
|
188
|
+
reflex/components/chakra/layout/box.pyi,sha256=QbQEde8pSr0olhZH_iaug_ZGmBZQqN5ZJ9p2L_QMwkw,3573
|
|
184
189
|
reflex/components/chakra/layout/card.py,sha256=QplYEaWhe-O7uHYN4b5nZyKcnwcJjcTqpt1aTPcZ298,2967
|
|
185
|
-
reflex/components/chakra/layout/card.pyi,sha256=
|
|
190
|
+
reflex/components/chakra/layout/card.pyi,sha256=zqIgRu8Ue_txoRnCuHSYw3dubaM-KWL2CXNGfjkaK78,13716
|
|
186
191
|
reflex/components/chakra/layout/center.py,sha256=B1k9QmzSjPzohmTry_CxHlhJrldOXYmr4TZJsa7dE0Y,389
|
|
187
|
-
reflex/components/chakra/layout/center.pyi,sha256=
|
|
192
|
+
reflex/components/chakra/layout/center.pyi,sha256=xUNCmA0op45mpTh7YrAULaXhS2-mO8nirmpRHPsqPJA,8672
|
|
188
193
|
reflex/components/chakra/layout/container.py,sha256=qvisCz961B6UixsPD2FH8LbJEa6Wqpaopte3nCCDLXQ,354
|
|
189
|
-
reflex/components/chakra/layout/container.pyi,sha256=
|
|
194
|
+
reflex/components/chakra/layout/container.pyi,sha256=5e37fqha8wiGr7R1Qx9HJFFwRcidRfEqZSsxPuinw6g,3381
|
|
190
195
|
reflex/components/chakra/layout/flex.py,sha256=reu2d5JwtsiFq06Z3g1En7Tm0-wIBJEpSo22h2huMog,715
|
|
191
|
-
reflex/components/chakra/layout/flex.pyi,sha256=
|
|
196
|
+
reflex/components/chakra/layout/flex.pyi,sha256=06JFUfQ4UlMzPiptJQ6NPh59qAkbdI_W3_seM6hit4o,4027
|
|
192
197
|
reflex/components/chakra/layout/grid.py,sha256=TAVeomIWYnRtQVmTJFbQJ-ScHDLrd4gZos99LYTNLb0,4318
|
|
193
|
-
reflex/components/chakra/layout/grid.pyi,sha256=
|
|
198
|
+
reflex/components/chakra/layout/grid.pyi,sha256=4gcsQKFHhwmv3tRqYlEkwT_VNqGrdOJFFmtjCgqNtRE,13787
|
|
194
199
|
reflex/components/chakra/layout/spacer.py,sha256=r1dBTNzqYnfX15sn-dEd28lp8nzFzOJgK9eWyiqHnU8,179
|
|
195
|
-
reflex/components/chakra/layout/spacer.pyi,sha256=
|
|
200
|
+
reflex/components/chakra/layout/spacer.pyi,sha256=F6honfDvPGXWzJcGRwnumIJC0TXsJG-4VzHysdbzWWk,3208
|
|
196
201
|
reflex/components/chakra/layout/stack.py,sha256=Qhi-fMRiX7m_31G-Nq7_zZMJgtOITyy6oimtvXFFfpc,1077
|
|
197
|
-
reflex/components/chakra/layout/stack.pyi,sha256=
|
|
202
|
+
reflex/components/chakra/layout/stack.pyi,sha256=xx6RIiIpBejksUS_bKe8FyTMyXv9wTYEBw_vo_NnOSY,12159
|
|
198
203
|
reflex/components/chakra/layout/wrap.py,sha256=NW_Lymib9klEBE_PxQruF1EUsxyzIzAYvHDFi0z3FWQ,1463
|
|
199
|
-
reflex/components/chakra/layout/wrap.pyi,sha256=
|
|
204
|
+
reflex/components/chakra/layout/wrap.pyi,sha256=rrPByNBBqb0nK7W2pDKR-fn8tEIaaqC4A6E5miJf154,6844
|
|
200
205
|
reflex/components/chakra/media/__init__.py,sha256=hVpGoLNC4OTGRW0MFzR1Qao_-8j65fzZHTO_CYddxgs,190
|
|
201
206
|
reflex/components/chakra/media/avatar.py,sha256=WuTwJVMEFXdSIOtgbQqyTjadJYpSsnN2OBycdyCogzQ,1471
|
|
202
|
-
reflex/components/chakra/media/avatar.pyi,sha256=
|
|
207
|
+
reflex/components/chakra/media/avatar.pyi,sha256=UvN3L8zSsNmyU1jlO7vdl-3ovMWm9f5QPlnQXNOyCr0,10289
|
|
203
208
|
reflex/components/chakra/media/icon.py,sha256=1tmT8liwQIhmKeVALaOrcU94NsQVYc3nzu4MjfUcrJs,2463
|
|
204
|
-
reflex/components/chakra/media/icon.pyi,sha256=
|
|
209
|
+
reflex/components/chakra/media/icon.pyi,sha256=g1ncRGXRmTJ0zZX0nLFO4ZCulhEPbHaDZXbVflAlvH0,6200
|
|
205
210
|
reflex/components/chakra/media/image.py,sha256=aZ1-E4ct-jdofQjK8VBhL7usypUSBFHue0PtpaMzn_Q,2269
|
|
206
|
-
reflex/components/chakra/media/image.pyi,sha256=
|
|
211
|
+
reflex/components/chakra/media/image.pyi,sha256=Xruhtuv440n5HhPnwVa0HHzyrrxjZzsCBOgV_8pVBU0,5253
|
|
207
212
|
reflex/components/chakra/navigation/__init__.py,sha256=4S77tyjUNQfrKW1ablw3L8q2hNz8k04eSvtmoPN65tg,419
|
|
208
213
|
reflex/components/chakra/navigation/breadcrumb.py,sha256=b6hhci_Qw3qgCGYa-_xqsQNJSZyoWkVA48rXkTe6Ocs,2925
|
|
209
|
-
reflex/components/chakra/navigation/breadcrumb.pyi,sha256=
|
|
214
|
+
reflex/components/chakra/navigation/breadcrumb.pyi,sha256=PQe651FjIn9bzdlz51xHTFN2HpvleJa0fqZrE9H8meo,13427
|
|
210
215
|
reflex/components/chakra/navigation/link.py,sha256=ndiyKjFDlhN49sUQHbRT22VhhhH7oeAvuRcia83lWcM,1604
|
|
211
|
-
reflex/components/chakra/navigation/link.pyi,sha256=
|
|
216
|
+
reflex/components/chakra/navigation/link.pyi,sha256=kVrjTegfdPwfcxKFuisDFUo-TPwK1XM9X5n7Ph_o4JA,3946
|
|
212
217
|
reflex/components/chakra/navigation/linkoverlay.py,sha256=eaGeVhohX5-NuQN8FqheHfRp79NVJN-cNslR978P7bE,521
|
|
213
|
-
reflex/components/chakra/navigation/linkoverlay.pyi,sha256=
|
|
218
|
+
reflex/components/chakra/navigation/linkoverlay.pyi,sha256=Toqv_fys6GA3G5-6RSWo6f9JtjlM8jeyLd1SmZ2Gr3o,6184
|
|
214
219
|
reflex/components/chakra/navigation/stepper.py,sha256=AEcovUKA6UkdZUbA2IJwtSQX_NExo2Rw4xso5J_HBAs,2935
|
|
215
|
-
reflex/components/chakra/navigation/stepper.pyi,sha256=
|
|
220
|
+
reflex/components/chakra/navigation/stepper.pyi,sha256=ar2uwzp4IXoDFXSZ5oVkHeFx27OHozj1W1nQxgBVgYI,27782
|
|
216
221
|
reflex/components/chakra/overlay/__init__.py,sha256=mXTw82F74gn9Jg-wovAP3Icrdzmr7I2ySDdT9hsnSH8,850
|
|
217
222
|
reflex/components/chakra/overlay/alertdialog.py,sha256=5gDQA9FGC8CRFtycmtFZsrAP3AAh-Km-VIqymHLUFF8,5167
|
|
218
|
-
reflex/components/chakra/overlay/alertdialog.pyi,sha256=
|
|
223
|
+
reflex/components/chakra/overlay/alertdialog.pyi,sha256=w6fn2_Zv_7KGE099Vaq5UDqGJUAAxCNs6q9bXCM6l_M,23725
|
|
219
224
|
reflex/components/chakra/overlay/drawer.py,sha256=kLdZnjDYHj0w6cKSYjLpyy2EEh_k93yAlVsma2TTyKQ,5153
|
|
220
|
-
reflex/components/chakra/overlay/drawer.pyi,sha256=
|
|
225
|
+
reflex/components/chakra/overlay/drawer.pyi,sha256=4notTGVQfOPBiW22Sumdghao2bljs5yoXl7eeQ1JU4I,25123
|
|
221
226
|
reflex/components/chakra/overlay/menu.py,sha256=yFUSpoq5lwt5MBNlBI31x3chusZ3v8n6-6RQ7Qa8mtw,6832
|
|
222
|
-
reflex/components/chakra/overlay/menu.pyi,sha256=
|
|
227
|
+
reflex/components/chakra/overlay/menu.pyi,sha256=PL7Jdx-589EFnTKnQ2uQYvcnQ_rGjOEFey4_lzOUVIc,28407
|
|
223
228
|
reflex/components/chakra/overlay/modal.py,sha256=vUYp1SM3Qf8A6IBpKcNILnqCF_Oxpw-c91DZ37ZYtxI,5263
|
|
224
|
-
reflex/components/chakra/overlay/modal.pyi,sha256=
|
|
229
|
+
reflex/components/chakra/overlay/modal.pyi,sha256=3doip2ltD1XZodiSmAhUdDQzoeaqnJoHcV96DI9pvMU,23349
|
|
225
230
|
reflex/components/chakra/overlay/popover.py,sha256=dJzDYffVW99wCJSb7s2lgmJb6dL-aU4Meaqgfe_XYsQ,5812
|
|
226
|
-
reflex/components/chakra/overlay/popover.pyi,sha256=
|
|
231
|
+
reflex/components/chakra/overlay/popover.pyi,sha256=TFcaVph6Dr02kuyzP5Oy8SVFTU9O4OYOl7_tN1bf_iI,29632
|
|
227
232
|
reflex/components/chakra/overlay/tooltip.py,sha256=Ng0h9NTrd2nXTkoAgyO3Evvon0Jry18yY0fecfhJbwo,1973
|
|
228
|
-
reflex/components/chakra/overlay/tooltip.pyi,sha256=
|
|
233
|
+
reflex/components/chakra/overlay/tooltip.pyi,sha256=hQuhPLY6n5rkAHpNnY2VuChywZjJeBI2Rydxa9LZeVU,5897
|
|
229
234
|
reflex/components/chakra/typography/__init__.py,sha256=MiaAaf19bItqPAgQ_oHYJAnKnZeXT4nXSA7eGVBVJOs,271
|
|
230
235
|
reflex/components/chakra/typography/heading.py,sha256=CzGudsC5Uqlqkq7r1wbp26Wt5zgQVTBC5FBTJxf-ULw,378
|
|
231
|
-
reflex/components/chakra/typography/heading.pyi,sha256=
|
|
236
|
+
reflex/components/chakra/typography/heading.pyi,sha256=JmZ1wyZdGc-yEa1WrelDSJhEzeIdwrA53b5lidLKK-Q,3645
|
|
232
237
|
reflex/components/chakra/typography/highlight.py,sha256=qk_lihqY5Y9huSDbD0M3B786p_hs9CIKF6qg_dLkDag,671
|
|
233
|
-
reflex/components/chakra/typography/highlight.pyi,sha256=
|
|
238
|
+
reflex/components/chakra/typography/highlight.pyi,sha256=xMAO7NnwxUzni5Kar5Zg_71YSCFHXJ1yUkJRhu4LUpA,3532
|
|
234
239
|
reflex/components/chakra/typography/span.py,sha256=232EckN22_fOv5aodO6jXPzmLZwJHF-Lu7cwJeNvJEI,329
|
|
235
|
-
reflex/components/chakra/typography/span.pyi,sha256=
|
|
240
|
+
reflex/components/chakra/typography/span.pyi,sha256=ABOFwFt9qsaZDSGDmkWH4OTJ4CCfnKHDDljbFsfguMY,3322
|
|
236
241
|
reflex/components/chakra/typography/text.py,sha256=hJuVhzYtUbHpf7ZBEvCelNH2Rj8vOVbL9nKddbMISc4,473
|
|
237
|
-
reflex/components/chakra/typography/text.pyi,sha256=
|
|
238
|
-
reflex/components/component.py,sha256=
|
|
239
|
-
reflex/components/core/__init__.py,sha256=
|
|
240
|
-
reflex/components/core/__init__.pyi,sha256=
|
|
242
|
+
reflex/components/chakra/typography/text.pyi,sha256=BAB7RTUo8GnF1TRy8Ee0EsG8nJB4HU3EqvUEvefzEUk,3546
|
|
243
|
+
reflex/components/component.py,sha256=4mdIUM-rVbYHpeb77BhkSpjfB3ZVS52FA-RZlazVaYI,79389
|
|
244
|
+
reflex/components/core/__init__.py,sha256=msAsWb_6bmZGSei4gEpyYczuJ0VNEZtg20fRtyb3wwM,1285
|
|
245
|
+
reflex/components/core/__init__.pyi,sha256=hmng2kT4e3iBSSI_x9t7g2-58G6Cb4rhuwz_APJ-UZM,1994
|
|
241
246
|
reflex/components/core/banner.py,sha256=JwITziJchgOcs2cKDNn6EX4yqhgCDW-bgNqlz3BMNo8,8356
|
|
242
|
-
reflex/components/core/banner.pyi,sha256=
|
|
247
|
+
reflex/components/core/banner.pyi,sha256=hKra3WaBtQvAXXqc_rZ8n3mND_oTdl-4wy0Fn4ReOFU,22138
|
|
248
|
+
reflex/components/core/breakpoints.py,sha256=ZEUGByvPrGM2GFH0K9raGcWkNX8LBhX9o3atE0eCYKs,2711
|
|
243
249
|
reflex/components/core/client_side_routing.py,sha256=eTt7EdzouejGUXVsy_Fe3SoH-T3l-LOkxo0Hx_Wrjx0,1903
|
|
244
|
-
reflex/components/core/client_side_routing.pyi,sha256=
|
|
250
|
+
reflex/components/core/client_side_routing.pyi,sha256=edJP3PkxEkayD0XKS7kc9f2FiZBZaEAMzTFJATBJ2ZQ,6183
|
|
251
|
+
reflex/components/core/clipboard.py,sha256=672mLbLlYB3gds6ZMTqYtx_LvalFc9nRErWSr4GDZMg,3161
|
|
252
|
+
reflex/components/core/clipboard.pyi,sha256=pzYGTlmE5tOnDoDCl_dVkc6bIYVjKT4PwI0dYGJGU3U,3936
|
|
245
253
|
reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
|
|
246
254
|
reflex/components/core/cond.py,sha256=wLHkGlp47FXk_VlzXx4n8k8xcLleWQsiWgIoNyUpuBE,6369
|
|
247
255
|
reflex/components/core/debounce.py,sha256=KFyfnvnaevSWrj04Uehh2w8guV2VM9oGx_ApuhP8q9M,4660
|
|
248
|
-
reflex/components/core/debounce.pyi,sha256=
|
|
256
|
+
reflex/components/core/debounce.pyi,sha256=DBRFYOemKi_YYZRzRef7iQ9CSrchhPkVLlNGLDXdwUc,4038
|
|
249
257
|
reflex/components/core/foreach.py,sha256=MXFXWS-sMoELEGocYB2mXVu4DVJzdgDjKaj8R3UrrxI,4782
|
|
250
258
|
reflex/components/core/html.py,sha256=iSeKFcld5m4zoXOGq0QEaKKtgTUUVLrIEVsP3cyYCxE,1305
|
|
251
|
-
reflex/components/core/html.pyi,sha256=
|
|
259
|
+
reflex/components/core/html.pyi,sha256=184TSzJ6NnxJuLBZWI4VSiWH_9Orc3zEHlIcu539Otw,6274
|
|
252
260
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
253
261
|
reflex/components/core/match.py,sha256=y7sBAwTJPLsfjNo6fmPykRaKUyuMa8orG6lwOvRt68c,9558
|
|
254
262
|
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
255
263
|
reflex/components/core/upload.py,sha256=2cWj9iYOfwfH0fUWFzhS3b2fUl0J_a1Na9-Ri8rl0ls,10222
|
|
256
|
-
reflex/components/core/upload.pyi,sha256=
|
|
264
|
+
reflex/components/core/upload.pyi,sha256=tFo0VYlQ2eEL-QhQrAKiTSD-a3GwcRAs2XMzfPtYT6A,16582
|
|
257
265
|
reflex/components/datadisplay/__init__.py,sha256=Uxq0V74orISXh6woTNQXgOUrKMSf0bi6Aytsh7G59yw,471
|
|
258
|
-
reflex/components/datadisplay/__init__.pyi,sha256=
|
|
259
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
260
|
-
reflex/components/datadisplay/code.pyi,sha256=
|
|
266
|
+
reflex/components/datadisplay/__init__.pyi,sha256=qBAk9Dsp7woSrOChcQ1YsXdGNYuJv-jCZpKSsEwMiIQ,653
|
|
267
|
+
reflex/components/datadisplay/code.py,sha256=StXx5-xl-WFJmXAoPzCNiNw9qbfFY4jy2JQmKj3ii-A,11338
|
|
268
|
+
reflex/components/datadisplay/code.pyi,sha256=1yC80QYXhImKmN88MaL6a-rdbmsBUytM0_4X25hlpow,30861
|
|
261
269
|
reflex/components/datadisplay/dataeditor.py,sha256=dVauysAdOTjwbjQCEd-64InsYRdPtBurbGbefQj2t5k,12387
|
|
262
|
-
reflex/components/datadisplay/dataeditor.pyi,sha256=
|
|
270
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=h_syg3HzmAECXvAOiw-kEiZ0ZXDsdyxpECynVPp_trQ,12128
|
|
263
271
|
reflex/components/datadisplay/logo.py,sha256=XoHt8xdbcikv3ptxeG8U--g8RzLNpUAG2sP7m4v2ZKo,2563
|
|
264
272
|
reflex/components/el/__init__.py,sha256=nfIjf_cyieEmxptKjA6wRjoongswXv4X3n6vDmsdarI,416
|
|
265
|
-
reflex/components/el/__init__.pyi,sha256=
|
|
273
|
+
reflex/components/el/__init__.pyi,sha256=lthwhs0mZSfcF2oNiphg67Q5P2uQHEqwJnvSjmkx0mg,10111
|
|
266
274
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
267
275
|
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
268
276
|
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
269
277
|
reflex/components/el/constants/reflex.py,sha256=SJidKWxPv0bwjPbeo57KFuEQNGyd8XUJrV-HfzX3tnE,1713
|
|
270
278
|
reflex/components/el/element.py,sha256=dQwT9dk6USK9cbnmzdW_CMSv-5NEYcr7td8oZO7LfCI,493
|
|
271
|
-
reflex/components/el/element.pyi,sha256
|
|
279
|
+
reflex/components/el/element.pyi,sha256=-W-QEZak6DWYNcr1EKbi6WF9Q3PkW4GADT38kdGDKxs,3191
|
|
272
280
|
reflex/components/el/elements/__init__.py,sha256=UrxkVLcbWLT39VWSDbbAqaa6E0hI0QzxR05VKn0uFvU,2398
|
|
273
|
-
reflex/components/el/elements/__init__.pyi,sha256=
|
|
281
|
+
reflex/components/el/elements/__init__.pyi,sha256=VtaWS0AqX40Lvm5U78Hb9HFqXtV6imzb3wOMjxTmIds,10172
|
|
274
282
|
reflex/components/el/elements/base.py,sha256=ot4PjFA2je13pGft2LCQohFpaioqrex3-4Cz72R_UvY,1983
|
|
275
|
-
reflex/components/el/elements/base.pyi,sha256=
|
|
283
|
+
reflex/components/el/elements/base.pyi,sha256=Q00178g3hUN7mA6wSBp8DeDMyfj7pjX047CWOHBp8IU,5970
|
|
276
284
|
reflex/components/el/elements/forms.py,sha256=57QvGT8fXfKIefcrQpQqHB_OIwEsHWBX6PuNiLv8I88,19936
|
|
277
|
-
reflex/components/el/elements/forms.pyi,sha256
|
|
285
|
+
reflex/components/el/elements/forms.pyi,sha256=YV_NctURe41LSV24HLWCNlN9v6Stw07GxrA0_OaDmJM,93849
|
|
278
286
|
reflex/components/el/elements/inline.py,sha256=2t2HL3_rmrjyX12FgP1yJ2o4UrahDhTdQh2h-2i9-uc,4085
|
|
279
|
-
reflex/components/el/elements/inline.pyi,sha256=
|
|
287
|
+
reflex/components/el/elements/inline.pyi,sha256=C24UygU3cAa1cgQ675TnNYhoA-XX9O5wXvMUNlkfz38,156731
|
|
280
288
|
reflex/components/el/elements/media.py,sha256=NIPsZNghWmrZVf-2dzw9a1tegOBKTuF8VUXTaB4Fv30,10003
|
|
281
|
-
reflex/components/el/elements/media.pyi,sha256=
|
|
289
|
+
reflex/components/el/elements/media.pyi,sha256=syw9MzOVTxljG2Y_-AJZTSjfQE3CC9YcbYUCWsij2jk,106682
|
|
282
290
|
reflex/components/el/elements/metadata.py,sha256=36icJlpQhEQb3J5Y32n0uN1voDQbyUdmEo0D5K2k7tY,1685
|
|
283
|
-
reflex/components/el/elements/metadata.pyi,sha256=
|
|
291
|
+
reflex/components/el/elements/metadata.pyi,sha256=sfw4WGMBhscpjqMQ76axi_ITa6fy9fTN3622VPA8iPk,29451
|
|
284
292
|
reflex/components/el/elements/other.py,sha256=vMmqTxgPfd73qiVadyFagv8C_0PsV5AcoBFMI4f0gkg,1729
|
|
285
|
-
reflex/components/el/elements/other.pyi,sha256=
|
|
293
|
+
reflex/components/el/elements/other.pyi,sha256=gE4do7ZZ8-PAE-nktu_k9yz6cFK2TGc-b-sIagKB0C4,40057
|
|
286
294
|
reflex/components/el/elements/scripts.py,sha256=GALcloQgA1I7nxxA0X5xGbzWZfYIY7nA0a1RTcQgXn4,1482
|
|
287
|
-
reflex/components/el/elements/scripts.pyi,sha256=
|
|
295
|
+
reflex/components/el/elements/scripts.pyi,sha256=w7eAPqkB00_tdtvx22RwlSjPAoZjUyEMTKN9nkSzTHw,18573
|
|
288
296
|
reflex/components/el/elements/sectioning.py,sha256=X2MVJvEOG1X1id6muzkfLgo5vVExwnsgxa-fdLY2zBA,1824
|
|
289
|
-
reflex/components/el/elements/sectioning.pyi,sha256=
|
|
297
|
+
reflex/components/el/elements/sectioning.pyi,sha256=ZHIGZmYMu2bIlFC4oufEpt_IJgncTrJvaPM4evgyp6E,83168
|
|
290
298
|
reflex/components/el/elements/tables.py,sha256=LJ4HqYMrgtBui8S7hGYNny5hasAO7_tgt-pYWUebuVg,2968
|
|
291
|
-
reflex/components/el/elements/tables.pyi,sha256=
|
|
299
|
+
reflex/components/el/elements/tables.pyi,sha256=azzn2kKlDmGT0fuytV_Hq0sAYaxctuM400FIwF6mbSM,58560
|
|
292
300
|
reflex/components/el/elements/typography.py,sha256=UomcLpYIlnkiLBW95aPv_qNAUSwW5ajQNZ9rgXfNpMU,2725
|
|
293
|
-
reflex/components/el/elements/typography.pyi,sha256=
|
|
301
|
+
reflex/components/el/elements/typography.pyi,sha256=xMXJDSxf0ugGzrSgr14fzX_qbixSAVFuD4DfZxwVQ6k,84798
|
|
294
302
|
reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
|
|
295
303
|
reflex/components/gridjs/datatable.py,sha256=i7RlTZxgBWuBp78sB-kdxRE0oTyeRxLmthmx_pgHYqI,4356
|
|
296
|
-
reflex/components/gridjs/datatable.pyi,sha256=
|
|
304
|
+
reflex/components/gridjs/datatable.pyi,sha256=ry0Mmge6LQeilckKJJNOeVwoqJe7f9bGzyCmXpfwJwo,6903
|
|
297
305
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
298
306
|
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
299
307
|
reflex/components/lucide/icon.py,sha256=L-Nc9AGk0neNlZqe_RofhTgOrSfmmhKO1ZTuMsgNdsU,34077
|
|
300
|
-
reflex/components/lucide/icon.pyi,sha256=
|
|
308
|
+
reflex/components/lucide/icon.pyi,sha256=zSBpYtzFztrVh8Bbv-4rZCHBgSflksHzbAVd3BLlb1k,37828
|
|
301
309
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
302
310
|
reflex/components/markdown/markdown.py,sha256=d8N9N155Iy1i8Y-Ps18cBsyRtMDOWsHD8WVx4beyGRU,10905
|
|
303
|
-
reflex/components/markdown/markdown.pyi,sha256=
|
|
311
|
+
reflex/components/markdown/markdown.pyi,sha256=VqZrqm9kfa2JRG5OG1ITxzFDan78DkM7Fuauu5MIfX0,4777
|
|
304
312
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
305
313
|
reflex/components/media/icon.py,sha256=JL1vzcrhW6mspMW215SGGbf6KOeOAMD9N-bqKSK27aI,103
|
|
306
314
|
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
307
315
|
reflex/components/moment/moment.py,sha256=ZfS3nCsKCoy7bBm-QvLKWsKoJ-TpRbBp6dQ1_iGvc68,3673
|
|
308
|
-
reflex/components/moment/moment.pyi,sha256=
|
|
316
|
+
reflex/components/moment/moment.pyi,sha256=QFrM9Tt9SAohnUtzQiwIjgeVGQfgWqqFXkpqjY-P_QQ,6764
|
|
309
317
|
reflex/components/next/__init__.py,sha256=jqYJK6QOAUS2PHpFy8xI6qDGn9h1aT0inNWYX_rZFM8,239
|
|
310
318
|
reflex/components/next/base.py,sha256=uo5Xehc_9U3JkVdH4b_fRYFjLYkFKcfFlmX_rtQbwxk,190
|
|
311
|
-
reflex/components/next/base.pyi,sha256=
|
|
319
|
+
reflex/components/next/base.pyi,sha256=fNZ7eF_k-BLWq7wG90bhbZrt0U93jb4XEXmhnZJoIZQ,3211
|
|
312
320
|
reflex/components/next/image.py,sha256=PeWc8zRvYWIgTyVLx37P8bBIyd2T2IdIEA9OoN8sByg,3697
|
|
313
|
-
reflex/components/next/image.pyi,sha256=
|
|
321
|
+
reflex/components/next/image.pyi,sha256=Ht582ROg8Z7W0VUPul_sLPfWuEnpFeDMj9DAYc3i4GM,5613
|
|
314
322
|
reflex/components/next/link.py,sha256=9djgcEeAYiejW1hVpp5yMXV-b-GGD_2JuD6VQbzqzsA,503
|
|
315
|
-
reflex/components/next/link.pyi,sha256=
|
|
323
|
+
reflex/components/next/link.pyi,sha256=iy7qjlbwBu_IB3UXaGBgJ8GXRIle9OFUpEWfraDT6Sk,3411
|
|
316
324
|
reflex/components/next/video.py,sha256=2f81Ftb-6sikQb1xvExZqqQe0tcVjUY80ldh-GJ_uZw,730
|
|
317
|
-
reflex/components/next/video.pyi,sha256=
|
|
325
|
+
reflex/components/next/video.pyi,sha256=5pNku85feaUdRQIgNyi2xXC9S_XjZNDElAyCIIv4Xbg,3352
|
|
318
326
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
319
327
|
reflex/components/plotly/plotly.py,sha256=T8LL00RDfmsddOWILgXwFcjIUbgigcM-r8SSFZEitKA,9074
|
|
320
|
-
reflex/components/plotly/plotly.pyi,sha256=
|
|
328
|
+
reflex/components/plotly/plotly.pyi,sha256=4nHje77R220Su2w2j9HYWNpOlqPBQ6zQr4Zsg3V0p3M,6520
|
|
321
329
|
reflex/components/props.py,sha256=_fTjkXxB2lHnbVYv5M5yQioXNUMBuGseM9ETsNRs8yw,907
|
|
322
330
|
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
323
|
-
reflex/components/radix/__init__.pyi,sha256=
|
|
331
|
+
reflex/components/radix/__init__.pyi,sha256=SULEqmhNaBu-VEL5reNjvgL6gisriVjPUiks-Po5HJM,3919
|
|
324
332
|
reflex/components/radix/primitives/__init__.py,sha256=R2sdZJqQCYaLScGkXnXDKAjVgV5MidceemooEUtvBt4,443
|
|
325
|
-
reflex/components/radix/primitives/__init__.pyi,sha256=
|
|
333
|
+
reflex/components/radix/primitives/__init__.pyi,sha256=C3ryDDEVq8kZp2PBm-_onHKXumFnKD__B2puDbO4WjE,401
|
|
326
334
|
reflex/components/radix/primitives/accordion.py,sha256=NKQpummz3fGSnNOzdqJmH3XwNl6W3IWFNJFSjHVbK40,15569
|
|
327
|
-
reflex/components/radix/primitives/accordion.pyi,sha256
|
|
335
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=0C7QnKTa3BOTrIu2WL-O1EJ4F3j53DIMOtMZrzh7WaY,37567
|
|
328
336
|
reflex/components/radix/primitives/base.py,sha256=QTdESCrw9ceQgPr3VtfjRTmpKeP1OH6tZX0dWZBpEFU,870
|
|
329
|
-
reflex/components/radix/primitives/base.pyi,sha256=
|
|
337
|
+
reflex/components/radix/primitives/base.pyi,sha256=95CZauwaCRAZOpidA62vN3tl5eCnoHxN1IQ0ZO9Zs3A,6330
|
|
330
338
|
reflex/components/radix/primitives/drawer.py,sha256=yXSnNLSP1WBfrsicqQP0hYlUOgYapW8S35NY-lzFuJk,8189
|
|
331
|
-
reflex/components/radix/primitives/drawer.pyi,sha256=
|
|
339
|
+
reflex/components/radix/primitives/drawer.pyi,sha256=Y6ADr_Igtk6NLmT-kxyrUevAPmtEyEzrF6FC6yNp8Jw,34117
|
|
332
340
|
reflex/components/radix/primitives/form.py,sha256=L3KGEfXgpYK3U-OjQbFBmmTXUxZWicWLQLXOef_Qgoc,4702
|
|
333
|
-
reflex/components/radix/primitives/form.pyi,sha256
|
|
341
|
+
reflex/components/radix/primitives/form.pyi,sha256=-8doIGXVWVjQxijyBgtwBGSYP8I8OdeqsrrLYSvECPE,46441
|
|
334
342
|
reflex/components/radix/primitives/progress.py,sha256=-O0puNQxxRDlgucNI697mzsMy-ce9pTSPtLaqCqpGWQ,4022
|
|
335
|
-
reflex/components/radix/primitives/progress.pyi,sha256=
|
|
343
|
+
reflex/components/radix/primitives/progress.pyi,sha256=g3RAAlsJEpMmj0evwFHddoQZ1YfS1lsWRJcc-b3TCQg,22511
|
|
336
344
|
reflex/components/radix/primitives/slider.py,sha256=GnUeqBze8dAhIZuq7X7kU8DoUkxh4BXqlpOStZhJaqU,4711
|
|
337
|
-
reflex/components/radix/primitives/slider.pyi,sha256=
|
|
345
|
+
reflex/components/radix/primitives/slider.pyi,sha256=LjNiSH6YMdFMb-mqs7Csmzsrg99d7P990rG3SICX77o,16751
|
|
338
346
|
reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984NzXrn2UCIdxUc,492
|
|
339
|
-
reflex/components/radix/themes/__init__.pyi,sha256=
|
|
347
|
+
reflex/components/radix/themes/__init__.pyi,sha256=RVeS7TipR51MgmsWJStZwh4QxKBtOMtCguBtVbUJqX8,476
|
|
340
348
|
reflex/components/radix/themes/base.py,sha256=MzD9lVR79bJTKcA3ta4LtX3RtjVzshXYf1n5Z-dol38,8718
|
|
341
|
-
reflex/components/radix/themes/base.pyi,sha256=
|
|
349
|
+
reflex/components/radix/themes/base.pyi,sha256=jXYuziavtXLYopN5Tb1jJbzm80m1yPPitnINzWAuTHo,27026
|
|
342
350
|
reflex/components/radix/themes/color_mode.py,sha256=kxGKtIVEabWas5eSYMVzC1gnFkwQ4VajAUFXKvwmvIQ,6510
|
|
343
|
-
reflex/components/radix/themes/color_mode.pyi,sha256=
|
|
351
|
+
reflex/components/radix/themes/color_mode.pyi,sha256=cxi3N3Bk8CxYu79tuSbWVxFVhFRLcMQW-VEHXLBJ1eo,22213
|
|
344
352
|
reflex/components/radix/themes/components/__init__.py,sha256=fzc5ghmmbIQ8yaxKQQY83TINb6k2uVPX-wddyTDlQx8,423
|
|
345
|
-
reflex/components/radix/themes/components/__init__.pyi,sha256=
|
|
346
|
-
reflex/components/radix/themes/components/alert_dialog.py,sha256=
|
|
347
|
-
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=
|
|
353
|
+
reflex/components/radix/themes/components/__init__.pyi,sha256=vcMoztOsVtM2NJl-n9kptIAGrUBiZLAZmU32kUMlzzQ,1903
|
|
354
|
+
reflex/components/radix/themes/components/alert_dialog.py,sha256=LDC9n2E0fRMlhoPL2UrlbL9dzmjyNU8llq304PRhwqw,2941
|
|
355
|
+
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=KtsEHeeONh2ATU7_eDUjyFwB5FLN_5M1_6O8axyj1yM,24277
|
|
348
356
|
reflex/components/radix/themes/components/aspect_ratio.py,sha256=dJQiPwvWrpiAk65_2AktTFsQBpQ-ZllL-CB9-XvPVvE,401
|
|
349
|
-
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=
|
|
350
|
-
reflex/components/radix/themes/components/avatar.py,sha256=
|
|
351
|
-
reflex/components/radix/themes/components/avatar.pyi,sha256=
|
|
352
|
-
reflex/components/radix/themes/components/badge.py,sha256=
|
|
353
|
-
reflex/components/radix/themes/components/badge.pyi,sha256=
|
|
354
|
-
reflex/components/radix/themes/components/button.py,sha256=
|
|
355
|
-
reflex/components/radix/themes/components/button.pyi,sha256=
|
|
356
|
-
reflex/components/radix/themes/components/callout.py,sha256=
|
|
357
|
-
reflex/components/radix/themes/components/callout.pyi,sha256=
|
|
358
|
-
reflex/components/radix/themes/components/card.py,sha256=
|
|
359
|
-
reflex/components/radix/themes/components/card.pyi,sha256=
|
|
360
|
-
reflex/components/radix/themes/components/checkbox.py,sha256=
|
|
361
|
-
reflex/components/radix/themes/components/checkbox.pyi,sha256=
|
|
362
|
-
reflex/components/radix/themes/components/checkbox_cards.py,sha256=
|
|
363
|
-
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=
|
|
364
|
-
reflex/components/radix/themes/components/checkbox_group.py,sha256=
|
|
365
|
-
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=
|
|
366
|
-
reflex/components/radix/themes/components/context_menu.py,sha256=
|
|
367
|
-
reflex/components/radix/themes/components/context_menu.pyi,sha256=
|
|
368
|
-
reflex/components/radix/themes/components/data_list.py,sha256=
|
|
369
|
-
reflex/components/radix/themes/components/data_list.pyi,sha256=
|
|
370
|
-
reflex/components/radix/themes/components/dialog.py,sha256=
|
|
371
|
-
reflex/components/radix/themes/components/dialog.pyi,sha256=
|
|
372
|
-
reflex/components/radix/themes/components/dropdown_menu.py,sha256
|
|
373
|
-
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=
|
|
374
|
-
reflex/components/radix/themes/components/hover_card.py,sha256=
|
|
375
|
-
reflex/components/radix/themes/components/hover_card.pyi,sha256=
|
|
376
|
-
reflex/components/radix/themes/components/icon_button.py,sha256=
|
|
377
|
-
reflex/components/radix/themes/components/icon_button.pyi,sha256=
|
|
378
|
-
reflex/components/radix/themes/components/inset.py,sha256=
|
|
379
|
-
reflex/components/radix/themes/components/inset.pyi,sha256=
|
|
380
|
-
reflex/components/radix/themes/components/popover.py,sha256=
|
|
381
|
-
reflex/components/radix/themes/components/popover.pyi,sha256=
|
|
382
|
-
reflex/components/radix/themes/components/progress.py,sha256=
|
|
383
|
-
reflex/components/radix/themes/components/progress.pyi,sha256=
|
|
384
|
-
reflex/components/radix/themes/components/radio.py,sha256=
|
|
385
|
-
reflex/components/radix/themes/components/radio.pyi,sha256=
|
|
386
|
-
reflex/components/radix/themes/components/radio_cards.py,sha256=
|
|
387
|
-
reflex/components/radix/themes/components/radio_cards.pyi,sha256=
|
|
388
|
-
reflex/components/radix/themes/components/radio_group.py,sha256=
|
|
389
|
-
reflex/components/radix/themes/components/radio_group.pyi,sha256=
|
|
357
|
+
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=LUVXFWr5jkXVWkOKBNM478eJuCnGrxD2QHUJptdLeLI,3559
|
|
358
|
+
reflex/components/radix/themes/components/avatar.py,sha256=I7L3A0wczGWxzUN1RJK34QPatfgZK3u90i8q92uHF9Q,1059
|
|
359
|
+
reflex/components/radix/themes/components/avatar.pyi,sha256=83MI0u4irkGl-nFIl5tSMHHKMohCDQisiiKr7fc6GmE,6849
|
|
360
|
+
reflex/components/radix/themes/components/badge.py,sha256=CZ3kBfvlQDz--FO7sJPGMGiDJBS8_JzQRbBZBJYejwY,917
|
|
361
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=rGgLeo9j3QrC8RRmLfSR85MOAJHyxC_3Pw4Rgd40E9Q,9280
|
|
362
|
+
reflex/components/radix/themes/components/button.py,sha256=lCjitQntBCX1PYJv7TC5HWjmyYvv4IEVn7bIyCIlWN8,1221
|
|
363
|
+
reflex/components/radix/themes/components/button.pyi,sha256=fdwL5Wp2MCRrNyAWby0JMsfOJY_ltWhlGaZdbPtgSaI,11699
|
|
364
|
+
reflex/components/radix/themes/components/callout.py,sha256=mVEZ2-RWM5uLP9h3wht4MtsINhTqAadV6xANdhcaP44,2486
|
|
365
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=Kd4Hwz94IaHarMXuPMp2GXx1AN2tRYBvUrzo1j7LDds,37913
|
|
366
|
+
reflex/components/radix/themes/components/card.py,sha256=dMnLLhuyUwJhtjvXVy_PPEf-xjlk67uLGxq8RDPPXfw,757
|
|
367
|
+
reflex/components/radix/themes/components/card.pyi,sha256=lAqcOs6gpZoIVd4-_UrlGEcvtbpDfQaITt_x1AzHc4Q,7183
|
|
368
|
+
reflex/components/radix/themes/components/checkbox.py,sha256=bevi1-nFFlnD9JallpV3-iV8HIhhIrw43bmvI8FEJsE,4324
|
|
369
|
+
reflex/components/radix/themes/components/checkbox.pyi,sha256=bDiJxfoHH1TxZFC1RPvHYg69EOdvIQmAt3T1syMUsjY,20772
|
|
370
|
+
reflex/components/radix/themes/components/checkbox_cards.py,sha256=HGwjoOtHEgn8OIC2kdLST5qHAagAwDPe-MoeMFPFPSA,1423
|
|
371
|
+
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=f-RLnywf3zZa2K3Gtlhlpz5PGx9fpVK3ZYpd0ls-QIU,10921
|
|
372
|
+
reflex/components/radix/themes/components/checkbox_group.py,sha256=FK0ZoigUwSE_fgeK9KjUo-Vup6TcTdAaVUrcxVmelkE,1526
|
|
373
|
+
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=YWs_CF100JZ_lhg2DPpxzgIOFkNIr4m7X3oEvruQGfk,9851
|
|
374
|
+
reflex/components/radix/themes/components/context_menu.py,sha256=agSI-PzrsGzTU8JGCqXbnrZXamBFhKvPgFQxUw14Zyc,4755
|
|
375
|
+
reflex/components/radix/themes/components/context_menu.pyi,sha256=kckmtgNs0kktl1gbkJNLPfE90Dfr00IVL1rjEbTkDms,31109
|
|
376
|
+
reflex/components/radix/themes/components/data_list.py,sha256=LDdpoiJMv8Bbh7eCxkd2HwhlqLOxA-l3EaoYHdvG7Qc,1650
|
|
377
|
+
reflex/components/radix/themes/components/data_list.pyi,sha256=9jk_WexoYsEG3JcCY4Se6ygwA3AII-087Mbu3PhF6B0,16738
|
|
378
|
+
reflex/components/radix/themes/components/dialog.py,sha256=FYNPTHkvdCbw4So88ookbToHOnLed33OeyWuOYhLUNE,2373
|
|
379
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=DUivcbPnRMi5mQaaCoSN39qWWzGj5kQgTu7AeIPYTcg,24738
|
|
380
|
+
reflex/components/radix/themes/components/dropdown_menu.py,sha256=IZ7Hs9VzVQ8nrmG4FOj2aPoGeqcZnEQ76KzinX8z514,10454
|
|
381
|
+
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=9y0qTRKM_2gMLWa_RDkB2n1JH8Ofdr6NV90LOImhS5E,37663
|
|
382
|
+
reflex/components/radix/themes/components/hover_card.py,sha256=vK3Gq9bDVNk_41rGy-j9LglySbjBsB3h4tB17Ul69do,2250
|
|
383
|
+
reflex/components/radix/themes/components/hover_card.pyi,sha256=EUJCVN9vhj-uGsNMrPlVOUCparGhVSJElBP0U1a5rD8,17621
|
|
384
|
+
reflex/components/radix/themes/components/icon_button.py,sha256=pAm3V8zA_l3Pfkxot7PA8SMHZV89puvu9vmKahSPXZU,3037
|
|
385
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=mn20LM9W_V0VGDD5szxuUI-8eFJOnA3J3o2YMOMR7dQ,11717
|
|
386
|
+
reflex/components/radix/themes/components/inset.py,sha256=tPWXz6t762lM1lUNO-lYbVKCKuw0-7C0ftkReCdFgAY,1208
|
|
387
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=6_snLrqa0ycjwU2gdmgGco0fZIywvON6vIkOSx7nkdI,9332
|
|
388
|
+
reflex/components/radix/themes/components/popover.py,sha256=ajXYUCwzX8g730TlyWlOIaUSO2Y1pvO8YhJsqDY5WbE,2992
|
|
389
|
+
reflex/components/radix/themes/components/popover.pyi,sha256=o2-ahNibwOJ3M0I76kZAl3nIHb2zK4pZlkWmjAvNKyg,17244
|
|
390
|
+
reflex/components/radix/themes/components/progress.py,sha256=R7wCrhWepB7iE_n20sUFjYUK34olnYwwx07MUkYltZU,1668
|
|
391
|
+
reflex/components/radix/themes/components/progress.pyi,sha256=RH4XZF1XI6nQuEHLXrDMfMzUadIQMMX7msFa1YQtoPo,6836
|
|
392
|
+
reflex/components/radix/themes/components/radio.py,sha256=8hLjf2CewWqCpO1_QYXky-_gNsNEH6zkZMe6Jidan4A,832
|
|
393
|
+
reflex/components/radix/themes/components/radio.pyi,sha256=Qvf2hkicNYibwSv34eD4kEW9ZulUcos005CkcSZiqyA,6134
|
|
394
|
+
reflex/components/radix/themes/components/radio_cards.py,sha256=45_uY5mZYC0QvVh0jGqUUIbBDzMmU7yjRDb36yDrKnE,2986
|
|
395
|
+
reflex/components/radix/themes/components/radio_cards.pyi,sha256=jiWY9Mg9V2p08brY8fHQDY9J_YWbuDdavgvaDcE9Pz0,13222
|
|
396
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=j_50tjGn_2_qsomIdtof_oaNFNGKbzG6KC3fj_B5pzg,6802
|
|
397
|
+
reflex/components/radix/themes/components/radio_group.pyi,sha256=qr3pwqIEy4vldkBKjH8NH6ho9ace1kU_-6oy6UupKIg,24021
|
|
390
398
|
reflex/components/radix/themes/components/scroll_area.py,sha256=ZlXPvWRQVJizxS64qK07Xa7eY0ACyz-NPQpfI6A9pF0,921
|
|
391
|
-
reflex/components/radix/themes/components/scroll_area.pyi,sha256
|
|
392
|
-
reflex/components/radix/themes/components/segmented_control.py,sha256=
|
|
393
|
-
reflex/components/radix/themes/components/segmented_control.pyi,sha256=
|
|
394
|
-
reflex/components/radix/themes/components/select.py,sha256=
|
|
395
|
-
reflex/components/radix/themes/components/select.pyi,sha256=
|
|
396
|
-
reflex/components/radix/themes/components/separator.py,sha256=
|
|
397
|
-
reflex/components/radix/themes/components/separator.pyi,sha256=
|
|
398
|
-
reflex/components/radix/themes/components/skeleton.py,sha256=
|
|
399
|
-
reflex/components/radix/themes/components/skeleton.pyi,sha256=
|
|
400
|
-
reflex/components/radix/themes/components/slider.py,sha256=
|
|
401
|
-
reflex/components/radix/themes/components/slider.pyi,sha256=
|
|
402
|
-
reflex/components/radix/themes/components/spinner.py,sha256=
|
|
403
|
-
reflex/components/radix/themes/components/spinner.pyi,sha256=
|
|
404
|
-
reflex/components/radix/themes/components/switch.py,sha256=
|
|
405
|
-
reflex/components/radix/themes/components/switch.pyi,sha256=
|
|
406
|
-
reflex/components/radix/themes/components/table.py,sha256=
|
|
407
|
-
reflex/components/radix/themes/components/table.pyi,sha256=
|
|
408
|
-
reflex/components/radix/themes/components/tabs.py,sha256=
|
|
409
|
-
reflex/components/radix/themes/components/tabs.pyi,sha256=
|
|
410
|
-
reflex/components/radix/themes/components/text_area.py,sha256=
|
|
411
|
-
reflex/components/radix/themes/components/text_area.pyi,sha256=
|
|
412
|
-
reflex/components/radix/themes/components/text_field.py,sha256=
|
|
413
|
-
reflex/components/radix/themes/components/text_field.pyi,sha256=
|
|
399
|
+
reflex/components/radix/themes/components/scroll_area.pyi,sha256=-6jdQKYRaq7GoI_IEUcCKIPJb7E4XAmeCiV2dn9OY2w,4360
|
|
400
|
+
reflex/components/radix/themes/components/segmented_control.py,sha256=Zfa3uvRcNM-Se7yNydYRp6QYALm5t7LifEy3IFVGpsM,1695
|
|
401
|
+
reflex/components/radix/themes/components/segmented_control.pyi,sha256=ccLqFpwMA7fnpqWAn9c3iQfbg3hurHdSi978vJM0pgE,10028
|
|
402
|
+
reflex/components/radix/themes/components/select.py,sha256=MU_5Nv32tAegTcFTjwPGWTeyJI3_EyhFxWpGOEv_siY,7746
|
|
403
|
+
reflex/components/radix/themes/components/select.pyi,sha256=bsoUsGrY-kOn0DvRfKXnQIheWrOcjhX62xyOUIXnX7M,45598
|
|
404
|
+
reflex/components/radix/themes/components/separator.py,sha256=j1rHo3joN4ckUykSrS7ivc8WBniEMTXBm5AbOqCnu5s,986
|
|
405
|
+
reflex/components/radix/themes/components/separator.pyi,sha256=cx6CL94bkY3-owpvbII67JJjB44NUYWBLYJlrogBNTI,6561
|
|
406
|
+
reflex/components/radix/themes/components/skeleton.py,sha256=_bhAJ30Rdw-mnKp31xbI040RpEr1Fv4F-kgXMUZrBqs,773
|
|
407
|
+
reflex/components/radix/themes/components/skeleton.pyi,sha256=Fg2wZEEhkGjAESxjbJHEkJWKlDxo3-TdWhmgvIlRIos,4749
|
|
408
|
+
reflex/components/radix/themes/components/slider.py,sha256=9HmcviAKRW7OG8cyCjZVC8g_dyCKX2F0JbPkhYiGCAY,3112
|
|
409
|
+
reflex/components/radix/themes/components/slider.pyi,sha256=1zKnQn1GahoLUeRxvt7syKV3tDLU3rSA1V_dXenwnPQ,8199
|
|
410
|
+
reflex/components/radix/themes/components/spinner.py,sha256=006p1G6EJlvyIrvqRC4-mReIm1pVCT8_3P4q2rdB-y4,501
|
|
411
|
+
reflex/components/radix/themes/components/spinner.pyi,sha256=SEquSs5RbLeGstSq_BDQEnyJmVY-fOiT56vUowkBqbA,4075
|
|
412
|
+
reflex/components/radix/themes/components/switch.py,sha256=Eg3_2HABpVfuNjpvVu47YhInSrXTDkRmRlAkVxApG9E,1748
|
|
413
|
+
reflex/components/radix/themes/components/switch.pyi,sha256=BVufa7nek3FeOpWlxkc6ql6zYRbahD3mbSRf_AlcY_4,7504
|
|
414
|
+
reflex/components/radix/themes/components/table.py,sha256=CjvAmcK8UUo8QfHCdMNF0OMVGE6Ueiv6mOt-7HcWZR0,3244
|
|
415
|
+
reflex/components/radix/themes/components/table.pyi,sha256=ojiS32pCcmCMH4KYoIqoi3diZkbUiJNc9aSyuppsVdI,45141
|
|
416
|
+
reflex/components/radix/themes/components/tabs.py,sha256=F2wWk_qAJW1WrViFz8f7lzCGxGgVYIQoEQLixas-TcU,4487
|
|
417
|
+
reflex/components/radix/themes/components/tabs.pyi,sha256=P_GcpMpGy4Cgs0hWKQxWUMd4XzdEwcvqBHzTyMChXa0,20588
|
|
418
|
+
reflex/components/radix/themes/components/text_area.py,sha256=8wwo0lRmx155byrtO9QHgV1tMeuWzGn8lompvxz74lU,3523
|
|
419
|
+
reflex/components/radix/themes/components/text_area.pyi,sha256=2OgiSzsA2XXjklpeKYb2Q6em0W066YZoB2k4UxCaFbE,12452
|
|
420
|
+
reflex/components/radix/themes/components/text_field.py,sha256=z7gugwvWGkjLBGfWa_R28qHiWBaCu2On9YogVNDLoWc,6466
|
|
421
|
+
reflex/components/radix/themes/components/text_field.pyi,sha256=PkH3JKgmivX6Tx1kZ594QtPC-g-tclWr-kFJsMfR5jY,26151
|
|
414
422
|
reflex/components/radix/themes/components/tooltip.py,sha256=iPgLS4YeGnAaO0VNitnrmW56PoqDsWEn4kXhHh9i49A,4306
|
|
415
|
-
reflex/components/radix/themes/components/tooltip.pyi,sha256=
|
|
423
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=51rW0qD80qHu-BZd2gOpgxXaY_atVfZrAGkZYVduT3w,7779
|
|
416
424
|
reflex/components/radix/themes/layout/__init__.py,sha256=dbRNzJ9pag7luTO3saNvgKzozrGNJ02_Vn9r3SwJHN4,406
|
|
417
|
-
reflex/components/radix/themes/layout/__init__.pyi,sha256=
|
|
418
|
-
reflex/components/radix/themes/layout/base.py,sha256=
|
|
419
|
-
reflex/components/radix/themes/layout/base.pyi,sha256=
|
|
425
|
+
reflex/components/radix/themes/layout/__init__.pyi,sha256=ozgCE6Oo6EWzQLk6j2ml5gYEyha8TbZpCQZK06U8Xfk,742
|
|
426
|
+
reflex/components/radix/themes/layout/base.py,sha256=B9jP5yX0RC_8aCqO3vMQ8zH_3jdJwNKUa9SBM4A8MWs,1377
|
|
427
|
+
reflex/components/radix/themes/layout/base.pyi,sha256=ZQzcyl5YOCQm4NEQEvGFdon5FFjk71wY1pU2swNHSgg,10820
|
|
420
428
|
reflex/components/radix/themes/layout/box.py,sha256=7BAGnOYX5HMiftVQmYG5_kWYmy_0rbexLrwREbSbAT4,327
|
|
421
|
-
reflex/components/radix/themes/layout/box.pyi,sha256=
|
|
429
|
+
reflex/components/radix/themes/layout/box.pyi,sha256=MsZgXBXZjgxtSLQWhNrlEPh2jltlPmAjebbTM3ZC_-I,6197
|
|
422
430
|
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
423
|
-
reflex/components/radix/themes/layout/center.pyi,sha256=
|
|
424
|
-
reflex/components/radix/themes/layout/container.py,sha256=
|
|
425
|
-
reflex/components/radix/themes/layout/container.pyi,sha256=
|
|
426
|
-
reflex/components/radix/themes/layout/flex.py,sha256=
|
|
427
|
-
reflex/components/radix/themes/layout/flex.pyi,sha256=
|
|
428
|
-
reflex/components/radix/themes/layout/grid.py,sha256=
|
|
429
|
-
reflex/components/radix/themes/layout/grid.pyi,sha256=
|
|
431
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=ZfMwYIvgSO7tgNEmQvpkRYbS2m6veu-GYbO17luQDWA,9765
|
|
432
|
+
reflex/components/radix/themes/layout/container.py,sha256=75j2q7Wb_kzOyJYklgKbNmPsKzq3vbeEcoMOJqWC_ec,1568
|
|
433
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=yrOYpsDjDooEs_O611fDLQ_yK13hLLREsdaLHdbYlbU,5229
|
|
434
|
+
reflex/components/radix/themes/layout/flex.py,sha256=UXpHSmCzsaxmBsjoTqqZVvptVN9U9ZYnUYqKlVpVJac,1539
|
|
435
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=RzyMc1PHrFChgFP_0BxGSUUItPtvqmEHVvmXVkHLfNE,9932
|
|
436
|
+
reflex/components/radix/themes/layout/grid.py,sha256=m58o9QjcvK81nDzS2oGVToVuonxMi_oZy0zA6gx2UC4,1699
|
|
437
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=jcYI4vI9N9Aw58y6v9Rio3hft0xoeIJKa2knbkCybAU,11120
|
|
430
438
|
reflex/components/radix/themes/layout/list.py,sha256=T0FJahH9kILWnuA3sI7_o51fBk-pBzfA747HDmkdz2g,5344
|
|
431
|
-
reflex/components/radix/themes/layout/list.pyi,sha256=
|
|
432
|
-
reflex/components/radix/themes/layout/section.py,sha256=
|
|
433
|
-
reflex/components/radix/themes/layout/section.pyi,sha256=
|
|
439
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=aEVmPB5dNuI_phIYHAu95UlufwTcFET6_jMjrczdxVw,27605
|
|
440
|
+
reflex/components/radix/themes/layout/section.py,sha256=0YIPRcqazcWhBMWQJwiohuURZ_ceFrFdQ1qiVOhUy1A,640
|
|
441
|
+
reflex/components/radix/themes/layout/section.pyi,sha256=bm86u9uPlHY3ujFReMnJM0WpO4ydf7FHHZ8czNTLBWM,6752
|
|
434
442
|
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
435
|
-
reflex/components/radix/themes/layout/spacer.pyi,sha256=
|
|
443
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=6S7tmCZX0erXIMuyoU6aE8LCMeupMKs4nakkh6I_WHU,9765
|
|
436
444
|
reflex/components/radix/themes/layout/stack.py,sha256=yPUUKH4SSNiLUerY4ebtIHDvIIKiRjDFQn4FtK1S8Bk,1591
|
|
437
|
-
reflex/components/radix/themes/layout/stack.pyi,sha256=
|
|
445
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=vBPSIYA0i1gqTPtAMdn9xCAnZYyu0meDqC6SbDt3Sd4,23234
|
|
438
446
|
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
439
|
-
reflex/components/radix/themes/typography/__init__.pyi,sha256=
|
|
447
|
+
reflex/components/radix/themes/typography/__init__.pyi,sha256=cXYgQJIXjO3arJXf0SLjHUqC62lNrRk9Ra68SEwo4QY,433
|
|
440
448
|
reflex/components/radix/themes/typography/base.py,sha256=3eiAZGs_l19E3fE8KpX75llSE2FoeuD3yp84wUnBX0s,409
|
|
441
|
-
reflex/components/radix/themes/typography/blockquote.py,sha256=
|
|
442
|
-
reflex/components/radix/themes/typography/blockquote.pyi,sha256=
|
|
443
|
-
reflex/components/radix/themes/typography/code.py,sha256=
|
|
444
|
-
reflex/components/radix/themes/typography/code.pyi,sha256=
|
|
445
|
-
reflex/components/radix/themes/typography/heading.py,sha256=
|
|
446
|
-
reflex/components/radix/themes/typography/heading.pyi,sha256=
|
|
447
|
-
reflex/components/radix/themes/typography/link.py,sha256=
|
|
448
|
-
reflex/components/radix/themes/typography/link.pyi,sha256=
|
|
449
|
-
reflex/components/radix/themes/typography/text.py,sha256=
|
|
450
|
-
reflex/components/radix/themes/typography/text.pyi,sha256=
|
|
449
|
+
reflex/components/radix/themes/typography/blockquote.py,sha256=zUq6j6GFNTnVj84_LirDWZTixFdXKjGOGdygJaB5HqA,941
|
|
450
|
+
reflex/components/radix/themes/typography/blockquote.pyi,sha256=8NDe07sxI9S1SAtCf_FoNuTzkKrU7D1oKpdBbbRYA00,9617
|
|
451
|
+
reflex/components/radix/themes/typography/code.py,sha256=uhqDOOtU_n3Z5scjTRLtX1dXn-0DG7iASMcdqw_EDno,1039
|
|
452
|
+
reflex/components/radix/themes/typography/code.pyi,sha256=XZz0mm1kphyR-u0zdXfZg3s2_moV_6l7C94UiI5iHMk,9793
|
|
453
|
+
reflex/components/radix/themes/typography/heading.py,sha256=m9YJYEKbsu_jNJ2DtpInS5bIhSD3k84IZze1Box7LqQ,1484
|
|
454
|
+
reflex/components/radix/themes/typography/heading.pyi,sha256=tPsv9CKieEd-ralYm4suxK8pB-BbuDqXf3Oa8gnnyxk,10867
|
|
455
|
+
reflex/components/radix/themes/typography/link.py,sha256=9SnCx9Ii7tjIyFa2ihK0Q-IoDTXnLJIu0-xhueDx5oA,3500
|
|
456
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=xKY6kBXtmwyPTL0liN1wBlQnD5WQ3W0ycZ9v2CtMNFo,12403
|
|
457
|
+
reflex/components/radix/themes/typography/text.py,sha256=4Cy0wiPJHn9_MCIQZS16ez9gpXUfvkQzFv8fOMpOCA0,2760
|
|
458
|
+
reflex/components/radix/themes/typography/text.pyi,sha256=gvUiN7odfLHApuhTl1Z2VhbNAs9GImibwDEn8AYe0mQ,58413
|
|
451
459
|
reflex/components/react_player/__init__.py,sha256=W4wa5G4R_cl5tE1vfR4tY_RlvWLVsyTxzTAJ67q2gnc,144
|
|
452
460
|
reflex/components/react_player/audio.py,sha256=qw_H2_W0AyMsHehA_Q9jskN4_N5TYgkzeisOxhepkPs,186
|
|
453
|
-
reflex/components/react_player/audio.pyi,sha256=
|
|
461
|
+
reflex/components/react_player/audio.pyi,sha256=nSBBTG43C09H_9jvy1_f7gnfHw8jWjPYy6O-FQMUsfs,6191
|
|
454
462
|
reflex/components/react_player/react_player.py,sha256=ZjiwGgbAVjTitqZSZCSAb2RXHAGZ4E25sBDVfqGNfbM,3114
|
|
455
|
-
reflex/components/react_player/react_player.pyi,sha256=
|
|
463
|
+
reflex/components/react_player/react_player.pyi,sha256=HQ_yxDIPcuofSkts2yV1hIn5XXc2j4-serVjCVE8154,6190
|
|
456
464
|
reflex/components/react_player/video.py,sha256=2V6tiwCwrzu9WPI1Wmuepk8kQ6M6K8nnMdLLjEbrxrw,186
|
|
457
|
-
reflex/components/react_player/video.pyi,sha256=
|
|
465
|
+
reflex/components/react_player/video.pyi,sha256=dzqTEpt5wZ1odNNvK2OhsO1lPYt1ww1nGTPoBXHT7b8,6191
|
|
458
466
|
reflex/components/recharts/__init__.py,sha256=GUifJIUtG91u4K55junZ_-l5ArcRFFDIyjS4y0lyAL4,2644
|
|
459
|
-
reflex/components/recharts/__init__.pyi,sha256=
|
|
467
|
+
reflex/components/recharts/__init__.pyi,sha256=FUu_BmjhVTbjU92KH2NnYEFr4eeZLMkthX8iIwswDIM,5076
|
|
460
468
|
reflex/components/recharts/cartesian.py,sha256=LbLLfo59jzvzLmIC5iuS1_NOzAuewAylEkGcuOIkfRQ,29073
|
|
461
|
-
reflex/components/recharts/cartesian.pyi,sha256=
|
|
469
|
+
reflex/components/recharts/cartesian.pyi,sha256=4QVXlZ_aSMRx2fEAqUI0wC3GxzEShgo2G5LlXmeyc64,106732
|
|
462
470
|
reflex/components/recharts/charts.py,sha256=Yk3R07UPKG_JNgF5LwXQMiBcbvtLHBmhyDlM4AbSNUg,17304
|
|
463
|
-
reflex/components/recharts/charts.pyi,sha256=
|
|
471
|
+
reflex/components/recharts/charts.pyi,sha256=U0Ixc7ar9N0tXUFE2DMWPmITK5cvSSz-zKyJJRXKpAI,53843
|
|
464
472
|
reflex/components/recharts/general.py,sha256=9Ro6BfaETdqkdpEeltZ6sAFIeUEt_r8FhlNF5MQfYQs,7130
|
|
465
|
-
reflex/components/recharts/general.pyi,sha256=
|
|
473
|
+
reflex/components/recharts/general.pyi,sha256=X2BcRbDHhB-a2BKamKPbJD8VP4zNE2nGGkhd7YWUCc8,25178
|
|
466
474
|
reflex/components/recharts/polar.py,sha256=SN7gvDKqBqocQ9CQD0XIML1vlK3GLKz4x9JwfX87L18,11197
|
|
467
|
-
reflex/components/recharts/polar.pyi,sha256=
|
|
475
|
+
reflex/components/recharts/polar.pyi,sha256=NIQybNTldkik6xEdAirSXPVLnAHBqGggz-qE8CFgZ7o,26216
|
|
468
476
|
reflex/components/recharts/recharts.py,sha256=_2zYZI4c0tG7377xHEBWLFj8Z1OO6ZPHHrTvW9rcnB0,2935
|
|
469
|
-
reflex/components/recharts/recharts.pyi,sha256=
|
|
477
|
+
reflex/components/recharts/recharts.pyi,sha256=SroD3llaVCKxQ1ZxNLO549qHbVge5f9Pulqxe6LNMKQ,8558
|
|
470
478
|
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
471
479
|
reflex/components/sonner/toast.py,sha256=XnamDs6Zsu7d67FEP9AMbq4weuuLVM4ZdPcyCx5ZJLY,10438
|
|
472
|
-
reflex/components/sonner/toast.pyi,sha256=
|
|
480
|
+
reflex/components/sonner/toast.pyi,sha256=7uSLtQ_6L5Iul9C5b8tNjDBhycUwKPQI0xjL6Cu58Is,8026
|
|
473
481
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
474
482
|
reflex/components/suneditor/editor.py,sha256=MTj3QBN11TSUDgsv8fToWrjEgkMSRVGohAVRi2VzS_k,7525
|
|
475
|
-
reflex/components/suneditor/editor.pyi,sha256=
|
|
483
|
+
reflex/components/suneditor/editor.pyi,sha256=a28U4PcxCd0pRoWt8WYCFzuJeJDnXdjue0ii39Nbz2s,9998
|
|
476
484
|
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
477
485
|
reflex/components/tags/cond_tag.py,sha256=v5BO78bGQQuCy8lM45yI7nAuasxjQoRyQNdj5kakPBY,447
|
|
478
486
|
reflex/components/tags/iter_tag.py,sha256=HOYAnP6egvVRBl-C4MySFysZx7lxJt3CjtEA81OAsbw,3928
|
|
479
487
|
reflex/components/tags/match_tag.py,sha256=pMwy46ewquPNwa1S71sDS_0Ga8YuviSrbpBU-_CWsoQ,387
|
|
480
488
|
reflex/components/tags/tag.py,sha256=iORWH5NBQ8U1cdMfUKaAkvFiZhvs5FPR9eHKlGjmPYg,2816
|
|
481
489
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
482
|
-
reflex/config.py,sha256=
|
|
490
|
+
reflex/config.py,sha256=UrOQLCLiTP8qY1T0r4tPUga_VBp4I7XbM7WkxDElEgY,11920
|
|
483
491
|
reflex/constants/__init__.py,sha256=ICWLo-8TEu_HuMqy-dXdw3Zi7NYbA7ZvHmWGpt3L_VY,2030
|
|
484
492
|
reflex/constants/base.py,sha256=F-vnRX8am-0assoM4DjvZOAo-wcsnaMw3BF4PO9KKHQ,5618
|
|
485
493
|
reflex/constants/colors.py,sha256=gab_GwjKcbpRJGS2zX0gkmc_yFT1nmQbFDHqx0mXKB0,1625
|
|
486
494
|
reflex/constants/compiler.py,sha256=DI8w1HvYpI3L1NdkWJTLfs23mHCsILKDkwRClE4aPsc,4272
|
|
487
495
|
reflex/constants/config.py,sha256=SIp0Jc-pElncHBFKwzosxwLMEjSwFlVgWrYCFGyv5iI,1455
|
|
488
496
|
reflex/constants/custom_components.py,sha256=SX0SQVb-d6HJkZdezFL4UgkumyF6eJF682y4OvRUqUM,1268
|
|
489
|
-
reflex/constants/event.py,sha256=
|
|
497
|
+
reflex/constants/event.py,sha256=4Od4X2nIY92sqQIorAhTcKnWRYPBS2E8M1gykiuEkMk,2707
|
|
490
498
|
reflex/constants/installer.py,sha256=kLchxwqV2jfTVkqfwhbOw5_dVRweoJUnqFD4mp3pZsE,3427
|
|
491
499
|
reflex/constants/route.py,sha256=fu1jp9MoIriUJ8Cu4gLeinTxkyVBbRPs8Bkt35vqYOM,2144
|
|
492
500
|
reflex/constants/style.py,sha256=sJ6LuPY1OWemwMXnI1Htm-pa087HWT6PWljUeyokcUI,474
|
|
@@ -498,40 +506,41 @@ reflex/experimental/assets.py,sha256=nWj4454REHDP2gybtlhOac0Xyb0uqBMzjAFqYlaYwcE
|
|
|
498
506
|
reflex/experimental/client_state.py,sha256=DvBZhdW43nGL3Trx5fciwuP4U5hsghA0BmJTv5KzvCA,8733
|
|
499
507
|
reflex/experimental/hooks.py,sha256=veeds9cSvEdLZDDNIFD-Ye5XRQombrBQNRmiVYOBXp8,2437
|
|
500
508
|
reflex/experimental/layout.py,sha256=Zx8AGqWJrSzXY1XapsorOx-jNo2kRqaWOc4QJRulQdU,7656
|
|
501
|
-
reflex/experimental/layout.pyi,sha256=
|
|
509
|
+
reflex/experimental/layout.pyi,sha256=aThlDKlifnG3QqIMQH5SwYewrLLXws8u38z3VW8BRSk,18933
|
|
502
510
|
reflex/experimental/misc.py,sha256=Ikmr-XuQfzOZqrY6yxDXkmpr7C5uDagc4nnowYmjWsc,610
|
|
503
511
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
504
512
|
reflex/middleware/hydrate_middleware.py,sha256=gZ5RTvsfKfrTkQN6QsTLfSnBAczCtGiBQ5edrOii3Vg,1485
|
|
505
513
|
reflex/middleware/middleware.py,sha256=1tEckRzSNWAwW8VsKt_x88lkk2vSFnRWH1uorsauNwI,1170
|
|
506
|
-
reflex/model.py,sha256=
|
|
514
|
+
reflex/model.py,sha256=f9F3J3JZX_NmUCU5mN4Lh7afclq9fikPUB1K2FmNlhU,13545
|
|
507
515
|
reflex/page.py,sha256=NPT0xMownZGTiYiRtrUJnvAe_4oEvlzEJEkG-vrGhqI,2077
|
|
508
516
|
reflex/reflex.py,sha256=1wJX6casYE_sAc1JCo4vng9gsyAeiYsG2Yw7itk5Abs,17874
|
|
509
517
|
reflex/route.py,sha256=WZS7stKgO94nekFFYHaOqNgN3zZGpJb3YpGF4ViTHmw,4198
|
|
510
|
-
reflex/state.py,sha256=
|
|
511
|
-
reflex/style.py,sha256=
|
|
518
|
+
reflex/state.py,sha256=PkXPoPR9Shn2aOf2zzJOhfyWGrLM3F87yJ0pJDlGV1c,110074
|
|
519
|
+
reflex/style.py,sha256=sLeIKBKUpZV1q1QwexVyckqFphjoxsPqCstVQf-D0Ak,11703
|
|
512
520
|
reflex/testing.py,sha256=S2fE4rFPart_sBDw0P0YFyhTRS__bErwEYdZ4r9OSXo,33175
|
|
513
521
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
514
522
|
reflex/utils/build.py,sha256=DJryIUJ_3DV2nn4pZ9SiV60lwIGYPZWgYw9prsQXrKA,8482
|
|
515
|
-
reflex/utils/
|
|
523
|
+
reflex/utils/codespaces.py,sha256=tKmju4aGzDMPy76_eQSzJd3RYmVmiiNZy3Yc0e3zG_w,2856
|
|
524
|
+
reflex/utils/compat.py,sha256=EqXhRHpaqqfW1L_lnUWheaD35G0iXIfHatta8oshqO0,2007
|
|
516
525
|
reflex/utils/console.py,sha256=-BHtwUabv8QlhGfEHupSn68fOOmPRZpkSvcqcjNBV-k,5182
|
|
517
|
-
reflex/utils/exceptions.py,sha256=
|
|
526
|
+
reflex/utils/exceptions.py,sha256=txYH8qtcUAwYSh5SikN76Htn8Z6MfdN2Ms3kvNdxPOk,2290
|
|
518
527
|
reflex/utils/exec.py,sha256=jTkIbbrSgq8tCbUmwoN2s26XghPVJM5jBVaOlPYCkoU,11365
|
|
519
528
|
reflex/utils/export.py,sha256=3dI9QjoU0ZA_g8OSQipVLpFWQcxWa_sHkpezWemvWbo,2366
|
|
520
|
-
reflex/utils/format.py,sha256=
|
|
529
|
+
reflex/utils/format.py,sha256=zfQb9PgeKsyMJ2koSz9CBUCWIH6WJ5-JIWYyyTTv3gE,26336
|
|
521
530
|
reflex/utils/imports.py,sha256=pRjW6PTP_XyAQ0x5UoAI1_EDzBZnyIL5yd3oTQXtV3U,3193
|
|
522
531
|
reflex/utils/lazy_loader.py,sha256=utVpUjKcz32GC1I7g0g7OlTyvVoZNFcuAjNtnxiSYww,1282
|
|
523
532
|
reflex/utils/path_ops.py,sha256=XQVq_r_2tFHECWuJPyxzk3GzijCJemgXxfI5w2rc_Vs,4924
|
|
524
|
-
reflex/utils/prerequisites.py,sha256=
|
|
533
|
+
reflex/utils/prerequisites.py,sha256=fTTGSlG_cK6iAh3wt-IkCI2qOdrg30VRNgHvXTtRjuc,52211
|
|
525
534
|
reflex/utils/processes.py,sha256=DAbvB_Lo0SOCXdprigv1C9gfj2IcCCHqo23y_mkD92w,13018
|
|
526
|
-
reflex/utils/pyi_generator.py,sha256=
|
|
535
|
+
reflex/utils/pyi_generator.py,sha256=76tSrYgz6-epNq8HkNXBJDl1OWhlKTk85Vgep15q3pw,34113
|
|
527
536
|
reflex/utils/serializers.py,sha256=lARTafxXhtNmC15lFaw424MJVwGRcWb8D42_osjKDWE,11689
|
|
528
537
|
reflex/utils/telemetry.py,sha256=t4cvQmoAxTKAWF53vGH6ZEX5QYrK_KEcarmvMy-4_E4,5568
|
|
529
|
-
reflex/utils/types.py,sha256=
|
|
538
|
+
reflex/utils/types.py,sha256=A8JepoRbONeo3cRIiLd08yUAo_To34UvU-t_S2P3UBA,17491
|
|
530
539
|
reflex/utils/watch.py,sha256=ukPT3YrvqsXYN6BInWiO_RPry5osSch9lOomQhxDyk0,2685
|
|
531
|
-
reflex/vars.py,sha256=
|
|
532
|
-
reflex/vars.pyi,sha256=
|
|
533
|
-
reflex-0.5.
|
|
534
|
-
reflex-0.5.
|
|
535
|
-
reflex-0.5.
|
|
536
|
-
reflex-0.5.
|
|
537
|
-
reflex-0.5.
|
|
540
|
+
reflex/vars.py,sha256=CNNEAa0VHvx03FIP2YPJqXb8lGP0OjC_EjQl73x4v0A,77066
|
|
541
|
+
reflex/vars.pyi,sha256=8jzIgkRVcYY0MMZ6Ol9EUhw8dtaxCzGRsnxWxZAGc1U,6477
|
|
542
|
+
reflex-0.5.6a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
543
|
+
reflex-0.5.6a1.dist-info/METADATA,sha256=mKQW4NG6KUOfbkP1I4ThN8LcTDWUX2TPajEACyeeFUk,12099
|
|
544
|
+
reflex-0.5.6a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
545
|
+
reflex-0.5.6a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
546
|
+
reflex-0.5.6a1.dist-info/RECORD,,
|