reflex 0.3.9a3__py3-none-any.whl → 0.3.10__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/__init__.py +3 -1
- reflex/__init__.pyi +3 -1
- reflex/app.py +116 -86
- reflex/compiler/compiler.py +110 -0
- reflex/compiler/utils.py +13 -12
- reflex/components/base/app_wrap.pyi +1 -0
- reflex/components/base/body.pyi +2 -0
- reflex/components/base/document.pyi +10 -0
- reflex/components/base/fragment.pyi +2 -0
- reflex/components/base/head.pyi +4 -0
- reflex/components/base/link.pyi +4 -0
- reflex/components/base/meta.pyi +8 -0
- reflex/components/base/script.pyi +2 -0
- reflex/components/chakra/base.pyi +7 -0
- reflex/components/chakra/datadisplay/badge.pyi +2 -0
- reflex/components/chakra/datadisplay/code.pyi +4 -0
- reflex/components/chakra/datadisplay/divider.pyi +2 -0
- reflex/components/chakra/datadisplay/keyboard_key.pyi +2 -0
- reflex/components/chakra/datadisplay/list.pyi +8 -0
- reflex/components/chakra/datadisplay/stat.pyi +12 -0
- reflex/components/chakra/datadisplay/table.pyi +18 -0
- reflex/components/chakra/datadisplay/tag.pyi +9 -0
- reflex/components/chakra/disclosure/accordion.pyi +10 -0
- reflex/components/chakra/disclosure/tabs.py +8 -0
- reflex/components/chakra/disclosure/tabs.pyi +10 -0
- reflex/components/chakra/disclosure/transition.pyi +12 -0
- reflex/components/chakra/disclosure/visuallyhidden.pyi +2 -0
- reflex/components/chakra/feedback/alert.pyi +8 -0
- reflex/components/chakra/feedback/circularprogress.pyi +4 -0
- reflex/components/chakra/feedback/progress.pyi +2 -0
- reflex/components/chakra/feedback/skeleton.pyi +6 -0
- reflex/components/chakra/feedback/spinner.pyi +2 -0
- reflex/components/chakra/forms/button.pyi +4 -0
- reflex/components/chakra/forms/checkbox.pyi +4 -0
- reflex/components/chakra/forms/colormodeswitch.pyi +7 -0
- reflex/components/chakra/forms/date_picker.pyi +2 -0
- reflex/components/chakra/forms/date_time_picker.pyi +2 -0
- reflex/components/chakra/forms/editable.pyi +8 -0
- reflex/components/chakra/forms/email.pyi +2 -0
- reflex/components/chakra/forms/form.pyi +10 -0
- reflex/components/chakra/forms/iconbutton.py +1 -0
- reflex/components/chakra/forms/iconbutton.pyi +2 -0
- reflex/components/chakra/forms/input.pyi +12 -0
- reflex/components/chakra/forms/numberinput.pyi +10 -0
- reflex/components/chakra/forms/password.pyi +2 -0
- reflex/components/chakra/forms/pininput.pyi +4 -0
- reflex/components/chakra/forms/radio.pyi +4 -0
- reflex/components/chakra/forms/rangeslider.pyi +8 -0
- reflex/components/chakra/forms/select.pyi +4 -0
- reflex/components/chakra/forms/slider.pyi +10 -0
- reflex/components/chakra/forms/switch.pyi +2 -0
- reflex/components/chakra/forms/textarea.pyi +2 -0
- reflex/components/chakra/forms/time_picker.pyi +2 -0
- reflex/components/chakra/layout/aspect_ratio.pyi +2 -0
- reflex/components/chakra/layout/box.pyi +2 -0
- reflex/components/chakra/layout/card.pyi +7 -0
- reflex/components/chakra/layout/center.pyi +6 -0
- reflex/components/chakra/layout/container.pyi +2 -0
- reflex/components/chakra/layout/flex.pyi +2 -0
- reflex/components/chakra/layout/grid.pyi +6 -0
- reflex/components/chakra/layout/html.pyi +2 -0
- reflex/components/chakra/layout/spacer.pyi +2 -0
- reflex/components/chakra/layout/stack.pyi +6 -0
- reflex/components/chakra/layout/wrap.pyi +4 -0
- reflex/components/chakra/media/avatar.pyi +6 -0
- reflex/components/chakra/media/icon.pyi +4 -0
- reflex/components/chakra/media/image.pyi +2 -0
- reflex/components/chakra/navigation/breadcrumb.pyi +8 -0
- reflex/components/chakra/navigation/link.pyi +2 -0
- reflex/components/chakra/navigation/linkoverlay.pyi +4 -0
- reflex/components/chakra/navigation/stepper.pyi +18 -0
- reflex/components/chakra/overlay/alertdialog.pyi +14 -0
- reflex/components/chakra/overlay/drawer.pyi +14 -0
- reflex/components/chakra/overlay/menu.pyi +16 -0
- reflex/components/chakra/overlay/modal.pyi +14 -0
- reflex/components/chakra/overlay/popover.pyi +18 -0
- reflex/components/chakra/overlay/tooltip.pyi +2 -0
- reflex/components/chakra/typography/heading.pyi +2 -0
- reflex/components/chakra/typography/highlight.pyi +2 -0
- reflex/components/chakra/typography/span.pyi +2 -0
- reflex/components/chakra/typography/text.pyi +2 -0
- reflex/components/component.py +41 -3
- reflex/components/core/__init__.py +2 -0
- reflex/components/core/banner.pyi +3 -0
- reflex/components/core/client_side_routing.pyi +4 -0
- reflex/components/core/colors.py +21 -0
- reflex/components/core/cond.py +11 -2
- reflex/components/core/debounce.pyi +1 -0
- reflex/components/core/layout/__init__.py +1 -0
- reflex/components/core/match.py +44 -18
- reflex/components/core/upload.py +8 -2
- reflex/components/core/upload.pyi +7 -1
- reflex/components/datadisplay/dataeditor.pyi +2 -0
- reflex/components/el/element.pyi +2 -0
- reflex/components/el/elements/base.pyi +2 -0
- reflex/components/el/elements/forms.py +3 -0
- reflex/components/el/elements/forms.pyi +32 -0
- reflex/components/el/elements/inline.pyi +56 -0
- reflex/components/el/elements/media.pyi +28 -0
- reflex/components/el/elements/metadata.pyi +10 -0
- reflex/components/el/elements/other.pyi +14 -0
- reflex/components/el/elements/scripts.pyi +6 -0
- reflex/components/el/elements/sectioning.pyi +30 -0
- reflex/components/el/elements/tables.pyi +20 -0
- reflex/components/el/elements/typography.pyi +30 -0
- reflex/components/gridjs/datatable.pyi +4 -0
- reflex/components/lucide/__init__.py +5 -0
- reflex/components/lucide/icon.py +1484 -0
- reflex/components/lucide/icon.pyi +1594 -0
- reflex/components/markdown/markdown.pyi +2 -0
- reflex/components/moment/moment.pyi +2 -0
- reflex/components/next/base.pyi +2 -0
- reflex/components/next/image.pyi +2 -0
- reflex/components/next/link.pyi +2 -0
- reflex/components/next/video.pyi +2 -0
- reflex/components/plotly/plotly.pyi +4 -0
- reflex/components/radix/primitives/__init__.py +10 -0
- reflex/components/radix/primitives/accordion.py +51 -32
- reflex/components/radix/primitives/accordion.pyi +16 -3
- reflex/components/radix/primitives/base.pyi +4 -0
- reflex/components/radix/primitives/drawer.py +240 -0
- reflex/components/radix/primitives/drawer.pyi +814 -0
- reflex/components/radix/primitives/form.py +40 -7
- reflex/components/radix/primitives/form.pyi +32 -10
- reflex/components/radix/primitives/progress.py +2 -2
- reflex/components/radix/primitives/progress.pyi +6 -0
- reflex/components/radix/primitives/slider.pyi +10 -0
- reflex/components/radix/themes/base.py +46 -12
- reflex/components/radix/themes/base.pyi +23 -9
- reflex/components/radix/themes/components/__init__.py +4 -2
- reflex/components/radix/themes/components/alertdialog.py +13 -12
- reflex/components/radix/themes/components/alertdialog.pyi +23 -351
- reflex/components/radix/themes/components/aspectratio.py +2 -5
- reflex/components/radix/themes/components/aspectratio.pyi +4 -51
- reflex/components/radix/themes/components/avatar.py +3 -4
- reflex/components/radix/themes/components/avatar.pyi +4 -57
- reflex/components/radix/themes/components/badge.py +3 -4
- reflex/components/radix/themes/components/badge.pyi +4 -56
- reflex/components/radix/themes/components/button.py +2 -3
- reflex/components/radix/themes/components/button.pyi +3 -51
- reflex/components/radix/themes/components/callout.py +9 -12
- reflex/components/radix/themes/components/callout.pyi +24 -217
- reflex/components/radix/themes/components/card.py +1 -2
- reflex/components/radix/themes/components/card.pyi +4 -51
- reflex/components/radix/themes/components/checkbox.py +11 -5
- reflex/components/radix/themes/components/checkbox.pyi +13 -112
- reflex/components/radix/themes/components/contextmenu.py +21 -21
- reflex/components/radix/themes/components/contextmenu.pyi +26 -401
- reflex/components/radix/themes/components/dialog.py +13 -16
- reflex/components/radix/themes/components/dialog.pyi +20 -303
- reflex/components/radix/themes/components/dropdownmenu.py +196 -32
- reflex/components/radix/themes/components/dropdownmenu.pyi +147 -389
- reflex/components/radix/themes/components/hovercard.py +5 -5
- reflex/components/radix/themes/components/hovercard.pyi +11 -151
- reflex/components/radix/themes/components/iconbutton.py +56 -4
- reflex/components/radix/themes/components/iconbutton.pyi +25 -71
- reflex/components/radix/themes/components/icons.pyi +4 -0
- reflex/components/radix/themes/components/inset.py +1 -2
- reflex/components/radix/themes/components/inset.pyi +4 -51
- reflex/components/radix/themes/components/popover.py +12 -12
- reflex/components/radix/themes/components/popover.pyi +14 -201
- reflex/components/radix/themes/components/radiogroup.py +47 -20
- reflex/components/radix/themes/components/radiogroup.pyi +26 -171
- reflex/components/radix/themes/components/scrollarea.py +2 -3
- reflex/components/radix/themes/components/scrollarea.pyi +4 -51
- reflex/components/radix/themes/components/select.py +28 -25
- reflex/components/radix/themes/components/select.pyi +43 -419
- reflex/components/radix/themes/components/separator.py +4 -5
- reflex/components/radix/themes/components/separator.pyi +5 -52
- reflex/components/radix/themes/components/slider.py +8 -5
- reflex/components/radix/themes/components/slider.pyi +9 -60
- reflex/components/radix/themes/components/switch.py +6 -4
- reflex/components/radix/themes/components/switch.pyi +5 -53
- reflex/components/radix/themes/components/table.py +14 -15
- reflex/components/radix/themes/components/table.pyi +22 -351
- reflex/components/radix/themes/components/tabs.py +9 -6
- reflex/components/radix/themes/components/tabs.pyi +18 -205
- reflex/components/radix/themes/components/textarea.py +2 -3
- reflex/components/radix/themes/components/textarea.pyi +10 -53
- reflex/components/radix/themes/components/textfield.py +105 -4
- reflex/components/radix/themes/components/textfield.pyi +200 -108
- reflex/components/radix/themes/components/tooltip.py +102 -2
- reflex/components/radix/themes/components/tooltip.pyi +66 -110
- reflex/components/radix/themes/layout/__init__.py +7 -0
- reflex/components/radix/themes/layout/base.pyi +2 -0
- reflex/components/radix/themes/layout/box.py +2 -2
- reflex/components/radix/themes/layout/box.pyi +4 -104
- reflex/components/radix/themes/layout/center.py +19 -0
- reflex/components/radix/themes/layout/center.pyi +261 -0
- reflex/components/radix/themes/layout/container.py +2 -2
- reflex/components/radix/themes/layout/container.pyi +4 -104
- reflex/components/radix/themes/layout/flex.py +2 -2
- reflex/components/radix/themes/layout/flex.pyi +4 -105
- reflex/components/radix/themes/layout/grid.pyi +2 -0
- reflex/components/radix/themes/layout/section.py +2 -2
- reflex/components/radix/themes/layout/section.pyi +4 -104
- reflex/components/radix/themes/layout/spacer.py +19 -0
- reflex/components/radix/themes/layout/spacer.pyi +261 -0
- reflex/components/radix/themes/layout/stack.py +60 -0
- reflex/components/radix/themes/layout/stack.pyi +537 -0
- reflex/components/radix/themes/typography/blockquote.py +2 -3
- reflex/components/radix/themes/typography/blockquote.pyi +4 -51
- reflex/components/radix/themes/typography/code.py +2 -3
- reflex/components/radix/themes/typography/code.pyi +4 -56
- reflex/components/radix/themes/typography/em.py +1 -2
- reflex/components/radix/themes/typography/em.pyi +4 -51
- reflex/components/radix/themes/typography/heading.py +2 -3
- reflex/components/radix/themes/typography/heading.pyi +4 -51
- reflex/components/radix/themes/typography/kbd.py +1 -2
- reflex/components/radix/themes/typography/kbd.pyi +4 -51
- reflex/components/radix/themes/typography/link.py +34 -3
- reflex/components/radix/themes/typography/link.pyi +41 -86
- reflex/components/radix/themes/typography/quote.py +1 -2
- reflex/components/radix/themes/typography/quote.pyi +4 -51
- reflex/components/radix/themes/typography/strong.py +1 -2
- reflex/components/radix/themes/typography/strong.pyi +4 -51
- reflex/components/radix/themes/typography/text.py +2 -3
- reflex/components/radix/themes/typography/text.pyi +4 -51
- reflex/components/radix/themes/typography.py +10 -11
- reflex/components/react_player/audio.pyi +2 -0
- reflex/components/react_player/react_player.pyi +2 -0
- reflex/components/react_player/video.pyi +2 -0
- reflex/components/recharts/cartesian.pyi +38 -0
- reflex/components/recharts/charts.pyi +22 -0
- reflex/components/recharts/general.pyi +10 -0
- reflex/components/recharts/polar.pyi +12 -0
- reflex/components/recharts/recharts.pyi +4 -0
- reflex/components/suneditor/editor.pyi +2 -0
- reflex/components/tags/tag.py +1 -1
- reflex/constants/base.py +5 -1
- reflex/constants/colors.py +80 -0
- reflex/constants/event.py +10 -1
- reflex/page.py +1 -1
- reflex/reflex.py +4 -0
- reflex/style.py +8 -3
- reflex/testing.py +21 -10
- reflex/utils/format.py +13 -9
- reflex/utils/prerequisites.py +41 -3
- reflex/utils/serializers.py +14 -0
- reflex/utils/telemetry.py +8 -2
- reflex/utils/types.py +36 -2
- reflex/vars.py +53 -18
- {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/METADATA +1 -2
- {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/RECORD +247 -233
- {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/WHEEL +1 -1
- {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/LICENSE +0 -0
- {reflex-0.3.9a3.dist-info → reflex-0.3.10.dist-info}/entry_points.txt +0 -0
|
@@ -72,387 +72,401 @@ reflex/.templates/web/utils/client_side_routing.js,sha256=iGGnZY07XMNLUT2GT_Y6OE
|
|
|
72
72
|
reflex/.templates/web/utils/helpers/dataeditor.js,sha256=anZgi8RJ_J0yqDez1Ks51fNDIQOvP3WkIm1QRDwccSk,1622
|
|
73
73
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
74
74
|
reflex/.templates/web/utils/state.js,sha256=btob-V8pdL_q93x37gW2YNHtBPQDEqoXgrl_RLb1y7g,18847
|
|
75
|
-
reflex/__init__.py,sha256=
|
|
76
|
-
reflex/__init__.pyi,sha256=
|
|
75
|
+
reflex/__init__.py,sha256=KusQJtG4thHoltOQImGoViYjLvOpgyyffEYqOWuNiEI,8178
|
|
76
|
+
reflex/__init__.pyi,sha256=wLfTv-Gl_Dh4zrg309zYyrAep3JiB8s1KxxZ5T8QThY,27156
|
|
77
77
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
78
78
|
reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
|
|
79
|
-
reflex/app.py,sha256=
|
|
79
|
+
reflex/app.py,sha256=iuDwAkBFmtE28Pb3n2VOWgemaYLQSXHvhAjJliBjSgw,39995
|
|
80
80
|
reflex/app.pyi,sha256=BHzQgRhY6GyDoIQiocElm_uJwnW80AzjTCPIjG5hs8M,4729
|
|
81
81
|
reflex/app_module_for_backend.py,sha256=C45M4G_CQjfAtBkRjkIi5v3HZEwIwToDU0TcFaHewRs,453
|
|
82
82
|
reflex/base.py,sha256=8UcGxfd_ayYie-VK6M9IXNZ1EjjX_OpxBJGY0F1Az1k,3608
|
|
83
83
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
84
|
-
reflex/compiler/compiler.py,sha256=
|
|
84
|
+
reflex/compiler/compiler.py,sha256=W06-QzXH65FxH1LJBfnHgLjx-IILfm3FQT4K0kwDfVE,16280
|
|
85
85
|
reflex/compiler/templates.py,sha256=U4Nt1WH0UsP-fkM3TQoV9ASBsCJEZEM7HOzthzhphtE,3516
|
|
86
|
-
reflex/compiler/utils.py,sha256=
|
|
86
|
+
reflex/compiler/utils.py,sha256=8MZP99CkfMeYQXaNjG2UYhHXS1BKseGLu0jlr1sQt5A,12889
|
|
87
87
|
reflex/components/__init__.py,sha256=g9RLTzO5ZBVqV5BuMLwItS9aoBCJUNmgmNlpanq9icc,461
|
|
88
88
|
reflex/components/base/__init__.py,sha256=regtioYXwTxqWuf4Z7H51rjn2Vs1Kr1Fh_i4s-W1m0A,325
|
|
89
89
|
reflex/components/base/app_wrap.py,sha256=_LPpPO8c8M6dyEsyoahJaDKk-zEK4qvR_lSnaLpqUKM,573
|
|
90
|
-
reflex/components/base/app_wrap.pyi,sha256=
|
|
90
|
+
reflex/components/base/app_wrap.pyi,sha256=iSQDHLvSlFlSRrN8W0Kb_v7E3lcJ-FJ7rd53QhzQ6UA,2941
|
|
91
91
|
reflex/components/base/bare.py,sha256=GQru8YeTZ8m7ZRGS6-ReGSIM2JRy1W10M7p73Tn4ecQ,1182
|
|
92
92
|
reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6I,151
|
|
93
|
-
reflex/components/base/body.pyi,sha256=
|
|
93
|
+
reflex/components/base/body.pyi,sha256=lXoHOljhlsJW3ASKlAcAS8l4c0NiADD0poYbjtDFLs4,3383
|
|
94
94
|
reflex/components/base/document.py,sha256=bSjdkrodZP6RTCSTHObgZYyOq7EAIl0iRUVIuTEJSYg,529
|
|
95
|
-
reflex/components/base/document.pyi,sha256=
|
|
95
|
+
reflex/components/base/document.pyi,sha256=lhNrP6tKuyrGcc_ack7jjTgId8YAzIdTG9_VSVB0tqY,15073
|
|
96
96
|
reflex/components/base/fragment.py,sha256=HGKEEqEW87bEkwGvwqYE_1o22l8J1xGX9T4P3J5Tn6k,312
|
|
97
|
-
reflex/components/base/fragment.pyi,sha256=
|
|
97
|
+
reflex/components/base/fragment.pyi,sha256=cCUXtvWAECjFKWZNogrSmPLXVVCm6DEsjXL8EOZECxI,3395
|
|
98
98
|
reflex/components/base/head.py,sha256=r7uis6H3Vc11ob8gqGNfExI_HPUKyTDNydInQXg6JeM,297
|
|
99
|
-
reflex/components/base/head.pyi,sha256=
|
|
99
|
+
reflex/components/base/head.pyi,sha256=MPrbdBPbiJnzDlghv5cX_Z2m_rQ_NrYkXqgiB8hL2mY,6290
|
|
100
100
|
reflex/components/base/link.py,sha256=y26QGX8QERS-vWjFggvYt_xKxJAfrpKmU0FGJMi3mh0,929
|
|
101
|
-
reflex/components/base/link.pyi,sha256=
|
|
101
|
+
reflex/components/base/link.pyi,sha256=l09Ie2FmVpvghGG9M77rH4zSmmUk0jeYU3RiwHazvb0,7349
|
|
102
102
|
reflex/components/base/meta.py,sha256=RWITTQTA_35-FbaVGhjkAWDOmU65rzJ-WedENRJk-3k,1438
|
|
103
|
-
reflex/components/base/meta.pyi,sha256=
|
|
103
|
+
reflex/components/base/meta.pyi,sha256=qkd1W3UwHlAjbJtRkRwVnS68jLu_2cjyNJaCKwtPvKY,13527
|
|
104
104
|
reflex/components/base/script.py,sha256=sNuoSeO1XxVfqSd9EADlOeNDti-zf8-vn_yd0NcmImc,2298
|
|
105
|
-
reflex/components/base/script.pyi,sha256=
|
|
105
|
+
reflex/components/base/script.pyi,sha256=fDizrWJQU4A7oo2dA6KG-CJ8Eu5CufDTgjNLWnVjwsw,4606
|
|
106
106
|
reflex/components/chakra/__init__.py,sha256=HX_hJJl-fOw91KYRel6wXIvS8hNr1E7TxP-yPS13gWU,6427
|
|
107
107
|
reflex/components/chakra/base.py,sha256=dUlNe46V4ibTft6H8sR37hNUvHNr0DrSLOxv3fXvbGg,6621
|
|
108
|
-
reflex/components/chakra/base.pyi,sha256=
|
|
108
|
+
reflex/components/chakra/base.pyi,sha256=Hokyp_vzkl34t3ZVKq0n5J9-QC5DArA-5Ke5dCk8738,14347
|
|
109
109
|
reflex/components/chakra/datadisplay/__init__.py,sha256=vnxBrwRoAoAGOhizifxuhNS0OXd64LcI-_54-9tGEBY,596
|
|
110
110
|
reflex/components/chakra/datadisplay/badge.py,sha256=G0x7yacjFYQSD0Wrxc6UvC3kHJJ-qlRNbDyONxpbVmU,352
|
|
111
|
-
reflex/components/chakra/datadisplay/badge.pyi,sha256=
|
|
111
|
+
reflex/components/chakra/datadisplay/badge.pyi,sha256=f23ao-RQ1DLSrM_1cbeu3rkX-DH-PEzOzUS-n7m3IvA,3831
|
|
112
112
|
reflex/components/chakra/datadisplay/code.py,sha256=6vUuz6w9A6WnXk4IO7fRxyGRKUjC77x7WYaJU3EV2D4,11128
|
|
113
|
-
reflex/components/chakra/datadisplay/code.pyi,sha256=
|
|
113
|
+
reflex/components/chakra/datadisplay/code.pyi,sha256=s_ZjUnxeGzf-6zWnP0VjT6BGfcqWQ0p0I41Z9RFvUQA,34079
|
|
114
114
|
reflex/components/chakra/datadisplay/divider.py,sha256=sVxmP_VBJBsK50uuYOTqmChlsJF1XdWHavDfaqKT3QU,657
|
|
115
|
-
reflex/components/chakra/datadisplay/divider.pyi,sha256=
|
|
115
|
+
reflex/components/chakra/datadisplay/divider.pyi,sha256=guJ-LKjp4U9LD4mePZBW7B5fuMhUj_kAsS_b-HuWBSM,4111
|
|
116
116
|
reflex/components/chakra/datadisplay/keyboard_key.py,sha256=twR7opuIdsWBKQJYIC8WVxMgWTufTqQmWOWGVvSAX0c,180
|
|
117
|
-
reflex/components/chakra/datadisplay/keyboard_key.pyi,sha256=
|
|
117
|
+
reflex/components/chakra/datadisplay/keyboard_key.pyi,sha256=QtGV3sDuqC0r56glden6BJRklefNiwmNBpVtXtAiC60,3428
|
|
118
118
|
reflex/components/chakra/datadisplay/list.py,sha256=eqMoxDXB7-9D-BKCeM_90fjG-dBUGNa7GRLqw8LGvDs,1505
|
|
119
|
-
reflex/components/chakra/datadisplay/list.pyi,sha256=
|
|
119
|
+
reflex/components/chakra/datadisplay/list.pyi,sha256=GwsAVRf19F2weop0ffyyXXiNAcYyoZfrJXVpssiyEcQ,13504
|
|
120
120
|
reflex/components/chakra/datadisplay/stat.py,sha256=vIIemV6DSusZ7Rh73u2GK1VJaVAIDniNASWjJQcWq_g,2149
|
|
121
|
-
reflex/components/chakra/datadisplay/stat.pyi,sha256=
|
|
121
|
+
reflex/components/chakra/datadisplay/stat.pyi,sha256=i3JqjoTNeh-CQPbGz9r6qUdl03I5clzW1etz1_YmfSE,18477
|
|
122
122
|
reflex/components/chakra/datadisplay/table.py,sha256=nlbBAK7WfIsauuiTDTtVDi2wVTyqQd7BGpKC9RPtnvM,9122
|
|
123
|
-
reflex/components/chakra/datadisplay/table.pyi,sha256=
|
|
123
|
+
reflex/components/chakra/datadisplay/table.pyi,sha256=CPUp7KJX7x0NBUBcrNZh64QmwJcqgvuMlb_UYRX9L1o,28530
|
|
124
124
|
reflex/components/chakra/datadisplay/tag.py,sha256=0UXs_tBP-k5IPQzXCYe1WuWCH8TJ89PLHgF2HVQn4CU,2294
|
|
125
|
-
reflex/components/chakra/datadisplay/tag.pyi,sha256=
|
|
125
|
+
reflex/components/chakra/datadisplay/tag.pyi,sha256=7XFfa5WxXj33sBhChNCJzkY_uXS2CrogIJVyXBtmKvI,16513
|
|
126
126
|
reflex/components/chakra/disclosure/__init__.py,sha256=x3d_1fLJVoxNyabvcB_Ik9CiFlALbHE6pzcfSrEfP_M,384
|
|
127
127
|
reflex/components/chakra/disclosure/accordion.py,sha256=ofRnQYvG1PSGG_UqaKW9Xx6Yt2fVO3hSc7Zk1Dw8cEg,3509
|
|
128
|
-
reflex/components/chakra/disclosure/accordion.pyi,sha256=
|
|
129
|
-
reflex/components/chakra/disclosure/tabs.py,sha256=
|
|
130
|
-
reflex/components/chakra/disclosure/tabs.pyi,sha256=
|
|
128
|
+
reflex/components/chakra/disclosure/accordion.pyi,sha256=ITAbt4zwbPAZSdmkMPC4-Zlgss50owTlNjct7IokDXA,16637
|
|
129
|
+
reflex/components/chakra/disclosure/tabs.py,sha256=u05ZQwgWU4dZ7fZ5h6hpj75gt_yASO8tT5b8wxgVWUw,3295
|
|
130
|
+
reflex/components/chakra/disclosure/tabs.pyi,sha256=GmLLDTB-rwtciL0x7ZmoRFcn7gD9ynNg4PvBNeLEAkk,19359
|
|
131
131
|
reflex/components/chakra/disclosure/transition.py,sha256=pm5ofM6eFBr2CT0JRZVhyFnJ421RDREF6HckYD4q1JI,1732
|
|
132
|
-
reflex/components/chakra/disclosure/transition.pyi,sha256=
|
|
132
|
+
reflex/components/chakra/disclosure/transition.pyi,sha256=El5XlW2DugknptfWJrhbq4oZksTwEP8R-n3gBcwmouA,21090
|
|
133
133
|
reflex/components/chakra/disclosure/visuallyhidden.py,sha256=ofooF8gUOWDaDj_43sSLLjYJMSnszv1_mIjOkKp3eV0,278
|
|
134
|
-
reflex/components/chakra/disclosure/visuallyhidden.pyi,sha256
|
|
134
|
+
reflex/components/chakra/disclosure/visuallyhidden.pyi,sha256=VPnT9x00FXSfbCBjrcxefjGsjdbhuAUFzug9_y8wCGA,3435
|
|
135
135
|
reflex/components/chakra/feedback/__init__.py,sha256=07F8-Y7FJxJSNmKEDqeTHIAJ9jyXsX-ii67-LaJ-0GY,313
|
|
136
136
|
reflex/components/chakra/feedback/alert.py,sha256=9f6-mqPgjc4oMm3cViGHA89dt9NPt9opgxCA57cQAL8,1623
|
|
137
|
-
reflex/components/chakra/feedback/alert.pyi,sha256=
|
|
137
|
+
reflex/components/chakra/feedback/alert.pyi,sha256=7u8TUuvTX5-3dq8faaqvwX6C_jkHJlP71xP5wkwBc0s,13033
|
|
138
138
|
reflex/components/chakra/feedback/circularprogress.py,sha256=DDhoN0c9mrV5W_pWh-Kebj0mRpCek0I8fep60Utvsuk,2006
|
|
139
|
-
reflex/components/chakra/feedback/circularprogress.pyi,sha256=
|
|
139
|
+
reflex/components/chakra/feedback/circularprogress.pyi,sha256=O43KLse58nC9WgHNLzIlOLl8eZVdkd14StbGJdT-tV8,7925
|
|
140
140
|
reflex/components/chakra/feedback/progress.py,sha256=9PNzfkcoGz62DjZb2NKciAEmlVfnqojbg0Ri-oy5Iic,871
|
|
141
|
-
reflex/components/chakra/feedback/progress.pyi,sha256=
|
|
141
|
+
reflex/components/chakra/feedback/progress.pyi,sha256=VH0gR658Jfl-Y5hDSk9lyycxA2a6tws36GA61hoAHCw,4455
|
|
142
142
|
reflex/components/chakra/feedback/skeleton.py,sha256=A_3XRK_5PVei9vtgN0nE5NpLROse8w6W9LBiDRuGADI,1776
|
|
143
|
-
reflex/components/chakra/feedback/skeleton.pyi,sha256=
|
|
143
|
+
reflex/components/chakra/feedback/skeleton.pyi,sha256=ZfKWvBF4_tgCpMQBtuzXLovUI-ShsMucdqkKTkKn0oI,11231
|
|
144
144
|
reflex/components/chakra/feedback/spinner.py,sha256=NlnnwyTIf-I8AVkc2cDKN-522DjE-taG5dtzmBHar74,704
|
|
145
|
-
reflex/components/chakra/feedback/spinner.pyi,sha256=
|
|
145
|
+
reflex/components/chakra/feedback/spinner.pyi,sha256=9oKqcz8FNDC4qe6hFUaQcxXzZaf3Kp2-aL3TnuKNQgg,4284
|
|
146
146
|
reflex/components/chakra/forms/__init__.py,sha256=wZKAr5kRyKjbXmL2k-9KKjc5cQl_Gh8xEmK2GU7lQiQ,1522
|
|
147
147
|
reflex/components/chakra/forms/button.py,sha256=tglnHifAxYlP8U08zrr5mSB3yrg52qUD-4rq3I3jJf0,2395
|
|
148
|
-
reflex/components/chakra/forms/button.pyi,sha256=
|
|
148
|
+
reflex/components/chakra/forms/button.pyi,sha256=5QWepVgUCR5OfY63aQm9aHxjXpQiEmmXFOEjNlDg1pI,10904
|
|
149
149
|
reflex/components/chakra/forms/checkbox.py,sha256=aicuKq19yCv_johCznquBD4STvacJ-74zbZ6VVfB-mk,2764
|
|
150
|
-
reflex/components/chakra/forms/checkbox.pyi,sha256=
|
|
150
|
+
reflex/components/chakra/forms/checkbox.pyi,sha256=ZRN_1gx38yQL55k9p3176uHQwVX9Gd5ZdtiQj1lKnJQ,10660
|
|
151
151
|
reflex/components/chakra/forms/colormodeswitch.py,sha256=zYR9yRKurZsjtOn6Fy_p1riak6d8jv1uSSZ2ep9kFZU,3365
|
|
152
|
-
reflex/components/chakra/forms/colormodeswitch.pyi,sha256=
|
|
152
|
+
reflex/components/chakra/forms/colormodeswitch.pyi,sha256=9MezpvsmPAB5uT5s253hZ5Qtr1xoAk4JyRFxJb_SLfA,19046
|
|
153
153
|
reflex/components/chakra/forms/date_picker.py,sha256=ntDsnY5eDN8aiRbjMmpS6yriUGpuJt5ik5ffACYY1ds,246
|
|
154
|
-
reflex/components/chakra/forms/date_picker.pyi,sha256=
|
|
154
|
+
reflex/components/chakra/forms/date_picker.pyi,sha256=60QIMzNUJVd_5ialOTunK2b8NVh9J2BlKszX97Vhx4Y,5947
|
|
155
155
|
reflex/components/chakra/forms/date_time_picker.py,sha256=4rRwpXVcTXtMEwkpstH0QKL159Sv4ze-2bimDqzw5Qc,280
|
|
156
|
-
reflex/components/chakra/forms/date_time_picker.pyi,sha256=
|
|
156
|
+
reflex/components/chakra/forms/date_time_picker.pyi,sha256=8-aXV3YOimZ5g0IFTup_38tAfqARBu4UgERZNSGDtkc,5960
|
|
157
157
|
reflex/components/chakra/forms/editable.py,sha256=LKyEgcU95oEYhvGYLmGDnfDDOU0ZF6DZV91IQaksp6Q,2110
|
|
158
|
-
reflex/components/chakra/forms/editable.pyi,sha256=
|
|
158
|
+
reflex/components/chakra/forms/editable.pyi,sha256=3ZKbj1E_KdQIn6_V7WrxSobDUCei7wZYR8c1zi8P2gM,14062
|
|
159
159
|
reflex/components/chakra/forms/email.py,sha256=1uoXLW7GgUm2FbHOmCy-sgipZk3SMZCUuzJAn008sHk,246
|
|
160
|
-
reflex/components/chakra/forms/email.pyi,sha256=
|
|
160
|
+
reflex/components/chakra/forms/email.pyi,sha256=ycMLJEKtqKbB2uz51HmNgzBaNrqRyI-iPvf8FWDLEa4,5931
|
|
161
161
|
reflex/components/chakra/forms/form.py,sha256=ofKV7BxeHthtsTCLgiLRdi4ThQCv_tXkaH3sEwW2T8o,7238
|
|
162
|
-
reflex/components/chakra/forms/form.pyi,sha256=
|
|
163
|
-
reflex/components/chakra/forms/iconbutton.py,sha256=
|
|
164
|
-
reflex/components/chakra/forms/iconbutton.pyi,sha256=
|
|
162
|
+
reflex/components/chakra/forms/form.pyi,sha256=elTJskesjlQG9a56mhsoi3uKf1oHXEAqPnCKoxg9w8M,17489
|
|
163
|
+
reflex/components/chakra/forms/iconbutton.py,sha256=KgmCYKOVAUgCLDSnyoDGd4aoRPdBtOjk-eykiDBQiBI,935
|
|
164
|
+
reflex/components/chakra/forms/iconbutton.pyi,sha256=JpWTVQEagw4Z8rVzxkN4CFneybEy_T_ewYRCEcixfmo,4845
|
|
165
165
|
reflex/components/chakra/forms/input.py,sha256=zB-x2XJwDXIP1g1CnlMn0ELgb2cDK1OITGSsvRGd_8M,4603
|
|
166
|
-
reflex/components/chakra/forms/input.pyi,sha256=
|
|
166
|
+
reflex/components/chakra/forms/input.pyi,sha256=W9gjBSYKOu03i_5LcxLN2lysrGKWn4hBea-f84tQCJc,22530
|
|
167
167
|
reflex/components/chakra/forms/multiselect.py,sha256=EbBbcJxjkv59q-lGDSi107wxzwR7tp8wAgQbZeht9S0,12940
|
|
168
168
|
reflex/components/chakra/forms/numberinput.py,sha256=8TrkEmE4PyxDQ0nlHIWwz-1Jhpy57gv5z7LA37IW1y0,4334
|
|
169
|
-
reflex/components/chakra/forms/numberinput.pyi,sha256=
|
|
169
|
+
reflex/components/chakra/forms/numberinput.pyi,sha256=xOFzRh4YwRXG1TFyPs7H7lnFaop-vT_DsuckHStvnv0,18927
|
|
170
170
|
reflex/components/chakra/forms/password.py,sha256=rjFELopI5j5exce9QZJqf4hSIp5aW44DUbpbpfiB24w,256
|
|
171
|
-
reflex/components/chakra/forms/password.pyi,sha256=
|
|
171
|
+
reflex/components/chakra/forms/password.pyi,sha256=Qke7zTblnfvVUanYdzwQvHZGE0HlEaEyaFExC1RLBCw,5940
|
|
172
172
|
reflex/components/chakra/forms/pininput.py,sha256=ZmA4wDve9NVGOqc_6rN5LJFgnz2YvZRBiijtIIXDImg,6501
|
|
173
|
-
reflex/components/chakra/forms/pininput.pyi,sha256=
|
|
173
|
+
reflex/components/chakra/forms/pininput.pyi,sha256=yJHUQJQeYZzWb0j336hHEGiuz31LYlJuuy3LJe9ifQ0,9649
|
|
174
174
|
reflex/components/chakra/forms/radio.py,sha256=zvfm04qyWnflk8ZfXnW4Samu12ySo24C3T4oAu_h4kA,3176
|
|
175
|
-
reflex/components/chakra/forms/radio.pyi,sha256=
|
|
175
|
+
reflex/components/chakra/forms/radio.pyi,sha256=Ue1-ZIfMeeAIzeYui317GjU6JMldk3_FmvNcNp8P5o0,8631
|
|
176
176
|
reflex/components/chakra/forms/rangeslider.py,sha256=jF3HNKOBb9wQ2T1k5QtHTTZ1N9l871Zqo5p4usqZD_o,4547
|
|
177
|
-
reflex/components/chakra/forms/rangeslider.pyi,sha256=
|
|
177
|
+
reflex/components/chakra/forms/rangeslider.pyi,sha256=9iGDgkICDk2RwUItZjeylZuM8leSP5x88PAqaxfYrCY,14595
|
|
178
178
|
reflex/components/chakra/forms/select.py,sha256=20J-MnaRSbRY2TjnbrlSIQrJMWJ7IKNWQGXj4mVEQUY,3624
|
|
179
|
-
reflex/components/chakra/forms/select.pyi,sha256=
|
|
179
|
+
reflex/components/chakra/forms/select.pyi,sha256=6T-07VrTnEhS2ot8GV4TYzTfdp428iS_uoKGtV39I_c,9085
|
|
180
180
|
reflex/components/chakra/forms/slider.py,sha256=5Sx1gNiBeRKZ30sFAwSQmTQbbKZBm_lXaubshvgHkdk,3532
|
|
181
|
-
reflex/components/chakra/forms/slider.pyi,sha256
|
|
181
|
+
reflex/components/chakra/forms/slider.pyi,sha256=GCvt5SrJz3yEjyybHBeadJKiOwvwh9gDP0_buvaGLLI,18295
|
|
182
182
|
reflex/components/chakra/forms/switch.py,sha256=LVtJajB14_5ZzS63MyTLUfmna3Fnx4XguTQeMT5zrdg,1838
|
|
183
|
-
reflex/components/chakra/forms/switch.pyi,sha256=
|
|
183
|
+
reflex/components/chakra/forms/switch.pyi,sha256=tBYOzR0eQKNXe5Jt_zc6d0VaWu2M8IzuYJecKYvS7jA,6708
|
|
184
184
|
reflex/components/chakra/forms/textarea.py,sha256=Wqf2-ovXIe60jStESFBk0ls4HdpO8ZPC9TiozYHwOuc,2740
|
|
185
|
-
reflex/components/chakra/forms/textarea.pyi,sha256=
|
|
185
|
+
reflex/components/chakra/forms/textarea.pyi,sha256=GKbQ5wGEMn-MYKYdcR8jkmRf72_8weqKRClbfs0Hx2o,5525
|
|
186
186
|
reflex/components/chakra/forms/time_picker.py,sha256=BriPTj3MYdmSbgqUJfTGGbQCPNWl6DjXWEX-iyE-l4s,246
|
|
187
|
-
reflex/components/chakra/forms/time_picker.pyi,sha256=
|
|
187
|
+
reflex/components/chakra/forms/time_picker.pyi,sha256=oVtFljkhDr_Ew0ai2XQ_AVtNECQKzH2KzDxJ0hVJ8_4,5947
|
|
188
188
|
reflex/components/chakra/layout/__init__.py,sha256=8sd4Fz_jPtWwPMT4oJ85sJ6NdJ3DcQLcK7PWZ_SLqVA,510
|
|
189
189
|
reflex/components/chakra/layout/aspect_ratio.py,sha256=8_qwFZeeHmdaRJ0oNtBWfJrvYirvNTeHdw7bvVnlJ8I,315
|
|
190
|
-
reflex/components/chakra/layout/aspect_ratio.pyi,sha256
|
|
190
|
+
reflex/components/chakra/layout/aspect_ratio.pyi,sha256=-AsTjqzofPMatxXEyb9OoLdHokhuQ9oaRARYc5gRqc0,3556
|
|
191
191
|
reflex/components/chakra/layout/box.py,sha256=S1zYdFGFVTeUCQz5OrmFqnN6zS86LRkHNcJvYjl1dtA,755
|
|
192
|
-
reflex/components/chakra/layout/box.pyi,sha256=
|
|
192
|
+
reflex/components/chakra/layout/box.pyi,sha256=IUDxMldXSoKXp6bBH4Lm8pXrYRbQShKbUJiuUENLpF8,3839
|
|
193
193
|
reflex/components/chakra/layout/card.py,sha256=QplYEaWhe-O7uHYN4b5nZyKcnwcJjcTqpt1aTPcZ298,2967
|
|
194
|
-
reflex/components/chakra/layout/card.pyi,sha256=
|
|
194
|
+
reflex/components/chakra/layout/card.pyi,sha256=CYRYtEPcwfC7n-rL5FxbbZtAOryzz4yuZc3OO-9xbk0,14447
|
|
195
195
|
reflex/components/chakra/layout/center.py,sha256=B1k9QmzSjPzohmTry_CxHlhJrldOXYmr4TZJsa7dE0Y,389
|
|
196
|
-
reflex/components/chakra/layout/center.pyi,sha256=
|
|
196
|
+
reflex/components/chakra/layout/center.pyi,sha256=s8LxgGDhlouIZFgr3y7Ws5wlbMJ-BnpAS7YdaDc2f_I,9233
|
|
197
197
|
reflex/components/chakra/layout/container.py,sha256=qvisCz961B6UixsPD2FH8LbJEa6Wqpaopte3nCCDLXQ,354
|
|
198
|
-
reflex/components/chakra/layout/container.pyi,sha256=
|
|
198
|
+
reflex/components/chakra/layout/container.pyi,sha256=nb0R66Bf3nnBsH3trrUidVtKlXMEPD7hjzdQn1UAL5w,3608
|
|
199
199
|
reflex/components/chakra/layout/flex.py,sha256=reu2d5JwtsiFq06Z3g1En7Tm0-wIBJEpSo22h2huMog,715
|
|
200
|
-
reflex/components/chakra/layout/flex.pyi,sha256=
|
|
200
|
+
reflex/components/chakra/layout/flex.pyi,sha256=S9N6k0fToQ-kS9T1efGPZnJZjwQiLxZ4elmpgrlqDIk,4315
|
|
201
201
|
reflex/components/chakra/layout/grid.py,sha256=TAVeomIWYnRtQVmTJFbQJ-ScHDLrd4gZos99LYTNLb0,4318
|
|
202
|
-
reflex/components/chakra/layout/grid.pyi,sha256
|
|
202
|
+
reflex/components/chakra/layout/grid.pyi,sha256=mpCpiVI0VU3zMrYopnBJHKP5slw5rphrJlpdj6wWy-Y,14394
|
|
203
203
|
reflex/components/chakra/layout/html.py,sha256=7OE1eFug3DPdXaFX4tb9IW_4OSCFQAydsMDScRQvtTc,1028
|
|
204
|
-
reflex/components/chakra/layout/html.pyi,sha256=
|
|
204
|
+
reflex/components/chakra/layout/html.pyi,sha256=qOPvsDTLD37uqfRrHsxr3xQP8vkZF7Ic8AVsGR6A4Qo,4038
|
|
205
205
|
reflex/components/chakra/layout/spacer.py,sha256=r1dBTNzqYnfX15sn-dEd28lp8nzFzOJgK9eWyiqHnU8,179
|
|
206
|
-
reflex/components/chakra/layout/spacer.pyi,sha256=
|
|
206
|
+
reflex/components/chakra/layout/spacer.pyi,sha256=pVnS_KFgJQupdlEIOZTL_kE5tvcL0Szh7u5jCjONgik,3407
|
|
207
207
|
reflex/components/chakra/layout/stack.py,sha256=Qhi-fMRiX7m_31G-Nq7_zZMJgtOITyy6oimtvXFFfpc,1077
|
|
208
|
-
reflex/components/chakra/layout/stack.pyi,sha256=
|
|
208
|
+
reflex/components/chakra/layout/stack.pyi,sha256=DIgEVB3x6XJJjQWZVJo6TWkbJ4yf1ZpBwr5Tu1vuwWg,12760
|
|
209
209
|
reflex/components/chakra/layout/wrap.py,sha256=NW_Lymib9klEBE_PxQruF1EUsxyzIzAYvHDFi0z3FWQ,1463
|
|
210
|
-
reflex/components/chakra/layout/wrap.pyi,sha256=
|
|
210
|
+
reflex/components/chakra/layout/wrap.pyi,sha256=LG2ULaddG2xRJb6TfceiY5oYakvPJk2zM8kXSnc-81Q,7231
|
|
211
211
|
reflex/components/chakra/media/__init__.py,sha256=hVpGoLNC4OTGRW0MFzR1Qao_-8j65fzZHTO_CYddxgs,190
|
|
212
212
|
reflex/components/chakra/media/avatar.py,sha256=RFSoiX450TBZxcgPI7wzm36zwdzheDRX4SN_reNt_QA,1668
|
|
213
|
-
reflex/components/chakra/media/avatar.pyi,sha256=
|
|
213
|
+
reflex/components/chakra/media/avatar.pyi,sha256=XLX93_hjPcoj6jvkXHEmWgqT0YifUp_Qfpb5r5U0CmQ,10986
|
|
214
214
|
reflex/components/chakra/media/icon.py,sha256=qV8_OV_QBrOM3tX0zOf3nZaUXxyBT-D65EhU4NNHLz4,2461
|
|
215
|
-
reflex/components/chakra/media/icon.pyi,sha256=
|
|
215
|
+
reflex/components/chakra/media/icon.pyi,sha256=tlQNJRWPKMDDkOqJMaHDnuFf8EfR17v4CKg6lzpMzoM,6559
|
|
216
216
|
reflex/components/chakra/media/image.py,sha256=LnwHKkhhHlmFB1r9BEAAlk8pQzO0uXl4PCxE0cwMPYs,2400
|
|
217
|
-
reflex/components/chakra/media/image.pyi,sha256=
|
|
217
|
+
reflex/components/chakra/media/image.pyi,sha256=v30AVV4LM3-SJ17M0vgk0mSUUZJIzIiOXJK0mZqiWgw,5529
|
|
218
218
|
reflex/components/chakra/navigation/__init__.py,sha256=4S77tyjUNQfrKW1ablw3L8q2hNz8k04eSvtmoPN65tg,419
|
|
219
219
|
reflex/components/chakra/navigation/breadcrumb.py,sha256=b6hhci_Qw3qgCGYa-_xqsQNJSZyoWkVA48rXkTe6Ocs,2925
|
|
220
|
-
reflex/components/chakra/navigation/breadcrumb.pyi,sha256=
|
|
220
|
+
reflex/components/chakra/navigation/breadcrumb.pyi,sha256=ZbF5Mxh3ns7r98uUm40SQr5sMnnlKaLvhVw7b2EHq20,14085
|
|
221
221
|
reflex/components/chakra/navigation/link.py,sha256=x0mdP4RHBReRtfCY2q5TGioau4zxzMtFydgXSEwdqiY,1475
|
|
222
|
-
reflex/components/chakra/navigation/link.pyi,sha256=
|
|
222
|
+
reflex/components/chakra/navigation/link.pyi,sha256=FFt4X_NWILIwjdE4y3Vo3lesW3GaLdgFALRzA4o0Csw,4105
|
|
223
223
|
reflex/components/chakra/navigation/linkoverlay.py,sha256=eaGeVhohX5-NuQN8FqheHfRp79NVJN-cNslR978P7bE,521
|
|
224
|
-
reflex/components/chakra/navigation/linkoverlay.pyi,sha256=
|
|
224
|
+
reflex/components/chakra/navigation/linkoverlay.pyi,sha256=PiFTH18Av0y0e_8cy6rMwAAXugh0BixMlEASa8GXgwk,6592
|
|
225
225
|
reflex/components/chakra/navigation/stepper.py,sha256=AEcovUKA6UkdZUbA2IJwtSQX_NExo2Rw4xso5J_HBAs,2935
|
|
226
|
-
reflex/components/chakra/navigation/stepper.pyi,sha256=
|
|
226
|
+
reflex/components/chakra/navigation/stepper.pyi,sha256=zoqwpQmgOQ0AfVYG6k2a5ru5XlmBY3XGe3OQHZfnHIc,29484
|
|
227
227
|
reflex/components/chakra/overlay/__init__.py,sha256=mXTw82F74gn9Jg-wovAP3Icrdzmr7I2ySDdT9hsnSH8,850
|
|
228
228
|
reflex/components/chakra/overlay/alertdialog.py,sha256=yuzNDkZEgGR72600tXfhcPJFvxy0HqBRpAE0kjwmX5A,5200
|
|
229
|
-
reflex/components/chakra/overlay/alertdialog.pyi,sha256=
|
|
229
|
+
reflex/components/chakra/overlay/alertdialog.pyi,sha256=heAt9_17Oq0fS_SVsL2UYdNwPDHr52JCdDHSNsi0yvc,25183
|
|
230
230
|
reflex/components/chakra/overlay/drawer.py,sha256=A-whl76ybFXZcaZSA7opUPvLdNxo6e6UffdyiuPFn8I,5186
|
|
231
|
-
reflex/components/chakra/overlay/drawer.pyi,sha256=
|
|
231
|
+
reflex/components/chakra/overlay/drawer.pyi,sha256=viLzqwciWzxSuNWFCK-78o1Izu_NU7YVqw5VQFNtvH0,26604
|
|
232
232
|
reflex/components/chakra/overlay/menu.py,sha256=GowVxQ7wkgpShY-ZC_pUiuHr3gUreLAfjbHJxs7c-xE,6974
|
|
233
|
-
reflex/components/chakra/overlay/menu.pyi,sha256=
|
|
233
|
+
reflex/components/chakra/overlay/menu.pyi,sha256=_3rWNGlA8stYKzp9F7fpPVOjTnrfvNZwcE2MHmg66Jw,29991
|
|
234
234
|
reflex/components/chakra/overlay/modal.py,sha256=u0DaOtNnb9emCsmllOzfagLIxEOU-BCTwIUzjb_9nJ4,5270
|
|
235
|
-
reflex/components/chakra/overlay/modal.pyi,sha256=
|
|
235
|
+
reflex/components/chakra/overlay/modal.pyi,sha256=Q355wivmYgliksu14kGSenVg4LbyTwbT43eRHrC5kxg,24747
|
|
236
236
|
reflex/components/chakra/overlay/popover.py,sha256=kI2DvLYn3PxisFS2VTI14BkAgAd0oszRxxWOSWlsuJI,5967
|
|
237
|
-
reflex/components/chakra/overlay/popover.pyi,sha256=
|
|
237
|
+
reflex/components/chakra/overlay/popover.pyi,sha256=LAeQJ7iYKXyX9twz9aKuBihMT1hbnqF_v9Jun5HMgjQ,31455
|
|
238
238
|
reflex/components/chakra/overlay/tooltip.py,sha256=GOpfdtUOb9PIhDAqvheMgjutmHdtLCZmNKLiLhbJtfo,2127
|
|
239
|
-
reflex/components/chakra/overlay/tooltip.pyi,sha256=
|
|
239
|
+
reflex/components/chakra/overlay/tooltip.pyi,sha256=_oTAwCFxw96CuQugKPbcDDIBJLK3lEn2duFZI4PMFfE,6237
|
|
240
240
|
reflex/components/chakra/typography/__init__.py,sha256=MiaAaf19bItqPAgQ_oHYJAnKnZeXT4nXSA7eGVBVJOs,271
|
|
241
241
|
reflex/components/chakra/typography/heading.py,sha256=d37nL3DcrGL4qPhX9l5gf3URVM2bL4kdmmaKWkbsP3w,379
|
|
242
|
-
reflex/components/chakra/typography/heading.pyi,sha256=
|
|
242
|
+
reflex/components/chakra/typography/heading.pyi,sha256=NLBs30vjLSS_vmxRr_CXACGivnk8Se6lL7616yZkyfI,3883
|
|
243
243
|
reflex/components/chakra/typography/highlight.py,sha256=qk_lihqY5Y9huSDbD0M3B786p_hs9CIKF6qg_dLkDag,671
|
|
244
|
-
reflex/components/chakra/typography/highlight.pyi,sha256=
|
|
244
|
+
reflex/components/chakra/typography/highlight.pyi,sha256=S57QKMwn6WSx5555roQ4BhO7Ay81pvgGiL0DVw_S5jg,3822
|
|
245
245
|
reflex/components/chakra/typography/span.py,sha256=2DbW5DB27ijtTeugSDUVp3nQ64mrGzhrRN3toDBgsl8,328
|
|
246
|
-
reflex/components/chakra/typography/span.pyi,sha256=
|
|
246
|
+
reflex/components/chakra/typography/span.pyi,sha256=qn8VhzypQX6xR7HtfMYTsrHihLsmqXv1zhGKR0xOZuw,3549
|
|
247
247
|
reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
|
|
248
|
-
reflex/components/chakra/typography/text.pyi,sha256=
|
|
249
|
-
reflex/components/component.py,sha256=
|
|
250
|
-
reflex/components/core/__init__.py,sha256=
|
|
248
|
+
reflex/components/chakra/typography/text.pyi,sha256=d90qcDsZ6OyGSIRvDS-ONdqyluMJ_6IGX9dRmNgck9I,3773
|
|
249
|
+
reflex/components/component.py,sha256=Qg48oDZrw3o3_86vVvyyZ-lCjvUBYy9B2wLBHLOuGMA,58383
|
|
250
|
+
reflex/components/core/__init__.py,sha256=qkQ4igVVg70NoKDuE9lyzsNh1HjsquyOmpmV6D2qlvQ,662
|
|
251
251
|
reflex/components/core/banner.py,sha256=ZLWW_WBf-13GYpXcGanyKg7To_L4pKAlI9anwWe3c9E,3223
|
|
252
|
-
reflex/components/core/banner.pyi,sha256
|
|
252
|
+
reflex/components/core/banner.pyi,sha256=-_i3dvVrtwBjkdgQq2YCS9Oqp_Pm1ns5B4S8N13r-Io,8436
|
|
253
253
|
reflex/components/core/client_side_routing.py,sha256=mdZsGuc1V9qvOE0TaLEnXmXo0qHuPjc_dZrSjnlZsqc,1873
|
|
254
|
-
reflex/components/core/client_side_routing.pyi,sha256=
|
|
255
|
-
reflex/components/core/
|
|
254
|
+
reflex/components/core/client_side_routing.pyi,sha256=NEWxuGWtsounk9oWPb1yWZjZ8BFOMb2xkMVzE0R_YyM,6623
|
|
255
|
+
reflex/components/core/colors.py,sha256=DloN6BduvQyLeXFA6Za08oOJsgD2v3BhGeaJYYZuV5s,517
|
|
256
|
+
reflex/components/core/cond.py,sha256=JgDU-HM9kkNdYRIq60OGhIJyCUAAJRlTuhZUcqaNqNU,5345
|
|
256
257
|
reflex/components/core/debounce.py,sha256=tImFRRaJkWzJXFAUoVlnKRX8XRQmlSQNZMB82_RdHpo,4563
|
|
257
|
-
reflex/components/core/debounce.pyi,sha256=
|
|
258
|
+
reflex/components/core/debounce.pyi,sha256=7lopWgnRy1cf1UyE__m1U-8leCIKrJ6MQ7pL7wdYePY,4168
|
|
258
259
|
reflex/components/core/foreach.py,sha256=Qk6UtwzQY6PR8-v40XRdt3knXiVH33cukbEvzyTV7XA,4031
|
|
259
|
-
reflex/components/core/
|
|
260
|
+
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
261
|
+
reflex/components/core/match.py,sha256=_Ne2VZa5lLfRorSkXom-iOOZiz_y5NMQdf2Cp1ZFPZE,9892
|
|
260
262
|
reflex/components/core/responsive.py,sha256=nLcLjFHnXYrsB0iyg3aWkEM145R8H998ZjQ7hw7aIXE,1905
|
|
261
|
-
reflex/components/core/upload.py,sha256=
|
|
262
|
-
reflex/components/core/upload.pyi,sha256=
|
|
263
|
+
reflex/components/core/upload.py,sha256=wZlQ5c_YVJeWmBqycYazUE8sbeuCmD1w4fAE9TBKWVU,6148
|
|
264
|
+
reflex/components/core/upload.pyi,sha256=BfH48IFYYpmtdiS2Ml-CI5tAMAFxyMFUI9upht_7Dqg,8636
|
|
263
265
|
reflex/components/datadisplay/__init__.py,sha256=9fAcuhBCsc6M06CqQLn4Xjb_TvS3R3TVP5P_aXnHh9I,150
|
|
264
266
|
reflex/components/datadisplay/dataeditor.py,sha256=WdeEGRVlC1W2WnPn4zKhmyoaKTqgowqiiLg8zeuHTGw,12632
|
|
265
|
-
reflex/components/datadisplay/dataeditor.pyi,sha256=
|
|
267
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=h8sGl9GmF7OXYoVplIKyE32sZ3YMFZ2lCrU9_wKD9Ng,10591
|
|
266
268
|
reflex/components/el/__init__.py,sha256=3QR9GuYBnFvtxLQm_aeSUzGJsqJBUjeTt6tcHyCqAcQ,73
|
|
267
269
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
268
270
|
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
269
271
|
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
270
272
|
reflex/components/el/constants/reflex.py,sha256=SJidKWxPv0bwjPbeo57KFuEQNGyd8XUJrV-HfzX3tnE,1713
|
|
271
273
|
reflex/components/el/element.py,sha256=mSbygKXtQGOrsmMrKlel76oqebi4eG6AzlBwJ2xnhhY,494
|
|
272
|
-
reflex/components/el/element.pyi,sha256=
|
|
274
|
+
reflex/components/el/element.pyi,sha256=FIShxETMA3tc9yrQiEvawaye1IGT9o6tFAhN1g02iUs,3390
|
|
273
275
|
reflex/components/el/elements/__init__.py,sha256=jWqZctwIYVVKg3XJu06vO25EasGa7dTJ3L-kFuAAFEQ,3506
|
|
274
276
|
reflex/components/el/elements/base.py,sha256=ZNdYF0IL1rQ5lclVqgwhPqGkYLDTjkwnSjxI0yzAjK8,2104
|
|
275
|
-
reflex/components/el/elements/base.pyi,sha256=
|
|
276
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
277
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
277
|
+
reflex/components/el/elements/base.pyi,sha256=2cZyhfAJhAUt8f5yYgNtcj_vOP0OMde3riFgIiBQZH8,6729
|
|
278
|
+
reflex/components/el/elements/forms.py,sha256=fq8Gc3MNbLp1z0x4F5mKlsG4HJoPbXrD1Ph8MdpWxE0,12871
|
|
279
|
+
reflex/components/el/elements/forms.pyi,sha256=JSi9xtougHFls9KZ7H8ndlw2KOVlvGJNK-5TJSWAM-I,102642
|
|
278
280
|
reflex/components/el/elements/inline.py,sha256=0NozHMAyJaaUCRbmjX0MqMRmRYYmPk2EOCtKAr6SIE8,3610
|
|
279
|
-
reflex/components/el/elements/inline.pyi,sha256=
|
|
281
|
+
reflex/components/el/elements/inline.pyi,sha256=BN7nWvDKBCJYiqidlJpO7cPgRU2y9yJutalcShIt1E0,175634
|
|
280
282
|
reflex/components/el/elements/media.py,sha256=AaDFbVLAsr4xyrpAlfOSMfGFqb4_Llo7SP4pux2mTgY,9053
|
|
281
|
-
reflex/components/el/elements/media.pyi,sha256=
|
|
283
|
+
reflex/components/el/elements/media.pyi,sha256=djFxUPB7OGqs30Hm5vbooeor_GtXFs9Blr6YMVgU4zc,101432
|
|
282
284
|
reflex/components/el/elements/metadata.py,sha256=IA756--gDaYnb0I6soe3J2-ZnKAq91a4SWadCooY9hg,1337
|
|
283
|
-
reflex/components/el/elements/metadata.pyi,sha256=
|
|
285
|
+
reflex/components/el/elements/metadata.pyi,sha256=LNNj_JvqcnG2kcGVDRiX1ol0AcuHjITFRTg7nUhdsNU,29784
|
|
284
286
|
reflex/components/el/elements/other.py,sha256=USuZjw0r8esrz1sXZOZUW6AG3ubgc0OUsGa-b1ZhOeg,1569
|
|
285
|
-
reflex/components/el/elements/other.pyi,sha256=
|
|
287
|
+
reflex/components/el/elements/other.pyi,sha256=USv3GYCz2vezDUaEa0JsF6Ay2vA8et-MtZUOPC03ZZU,44786
|
|
286
288
|
reflex/components/el/elements/scripts.py,sha256=f7e-TAZh1T5mrMC51uaJyO551cotwon0yWQ7NtoOWWk,1574
|
|
287
|
-
reflex/components/el/elements/scripts.pyi,sha256=
|
|
289
|
+
reflex/components/el/elements/scripts.pyi,sha256=A9gsNQzDHzArEsZwYtiSYugKLSui7JQPaSx3iNGhos8,21133
|
|
288
290
|
reflex/components/el/elements/sectioning.py,sha256=BV-zLPWOtsIcaQYYSkmOwPKmgtrHpbUuCz7X9WqVXP8,1644
|
|
289
|
-
reflex/components/el/elements/sectioning.pyi,sha256=
|
|
291
|
+
reflex/components/el/elements/sectioning.pyi,sha256=N2HprDQ5wwZzhnha7QGZShIsqQm8dbIo_6McrKgpDSs,93403
|
|
290
292
|
reflex/components/el/elements/tables.py,sha256=EKxZWN8rtsyWZSojRTGM8pJLPXvYud0yjo-Sk8tPN6w,3781
|
|
291
|
-
reflex/components/el/elements/tables.pyi,sha256=
|
|
293
|
+
reflex/components/el/elements/tables.pyi,sha256=IZi3631WArq_pVvVTNHgdLMbQ2DM2ygrisGgqr4IHi8,67862
|
|
292
294
|
reflex/components/el/elements/typography.py,sha256=aPU2PaVs1PUltiwBmgmJCqdmboK2p8YhWyDuI-Let0c,2525
|
|
293
|
-
reflex/components/el/elements/typography.pyi,sha256=
|
|
295
|
+
reflex/components/el/elements/typography.pyi,sha256=dgS9D4J2kfNVPyrFj94meYCMeB-GywcXKCztrzULK68,95199
|
|
294
296
|
reflex/components/gridjs/__init__.py,sha256=xJwDm1AZ70L5-t9LLqZwGUtDpijbf1KuMYDT-j8g3pM,88
|
|
295
297
|
reflex/components/gridjs/datatable.py,sha256=jinq5J8CIcmdbMynVLc9HAPCAVhozsN_gjXf_RPnkJo,4300
|
|
296
|
-
reflex/components/gridjs/datatable.pyi,sha256=
|
|
298
|
+
reflex/components/gridjs/datatable.pyi,sha256=aL_NBUwLWkfSyFVB4s2V4NZAal_hPiAN5j-Y9OfREjc,7341
|
|
297
299
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
300
|
+
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
301
|
+
reflex/components/lucide/icon.py,sha256=T8hwKtSk4jauj21jifnFweKnPciYljwf_CUX92ZaytM,28399
|
|
302
|
+
reflex/components/lucide/icon.pyi,sha256=vCw2uICmbyFUjJoa-ggEkCuvpZtLtj22d1764Na8DfQ,32945
|
|
298
303
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
299
304
|
reflex/components/markdown/markdown.py,sha256=r9KJgDd1ujwgMuflCHjqISncrmqAQnH37HtpGYy7i-w,11019
|
|
300
|
-
reflex/components/markdown/markdown.pyi,sha256=
|
|
305
|
+
reflex/components/markdown/markdown.pyi,sha256=YQBlvHhEb2CwJPJ45V6i4ozOnOZ5IO4UYYdeqXQSxVA,5363
|
|
301
306
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
302
307
|
reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
|
|
303
308
|
reflex/components/moment/__init__.py,sha256=XSYjQyEDvcSyLhS0uaoBWlLSp-whmqCkhvXh7bpotAY,79
|
|
304
309
|
reflex/components/moment/moment.py,sha256=vqyWJ8Xv5bi2xKZv5ATUb4F0YghowNRLyiE3R_OPc4I,3925
|
|
305
|
-
reflex/components/moment/moment.pyi,sha256=
|
|
310
|
+
reflex/components/moment/moment.pyi,sha256=Tocz2721atjUN2nMXDtlRTuf8Tg53SXL8gDGvH6MX-w,6976
|
|
306
311
|
reflex/components/next/__init__.py,sha256=jqYJK6QOAUS2PHpFy8xI6qDGn9h1aT0inNWYX_rZFM8,239
|
|
307
312
|
reflex/components/next/base.py,sha256=Di_-_T6N3DqvuwaJD2KSCSgKgw202VbNOcBKGvTDv7I,189
|
|
308
|
-
reflex/components/next/base.pyi,sha256=
|
|
313
|
+
reflex/components/next/base.pyi,sha256=p2OSIv1UcbsDbm30_xPs355IX3Bz1_AOcDrpaby3vO4,3410
|
|
309
314
|
reflex/components/next/image.py,sha256=ZK_hwW8R4aqEvL76RnW26REf788hv-5u3IWH7nB0slk,3831
|
|
310
|
-
reflex/components/next/image.pyi,sha256=
|
|
315
|
+
reflex/components/next/image.pyi,sha256=U8eiSMWkK5-hXmJGBjZnDOGVmNYq8gf1-1_kk3aT7mY,5901
|
|
311
316
|
reflex/components/next/link.py,sha256=9djgcEeAYiejW1hVpp5yMXV-b-GGD_2JuD6VQbzqzsA,503
|
|
312
|
-
reflex/components/next/link.pyi,sha256=
|
|
317
|
+
reflex/components/next/link.pyi,sha256=8TyYpWL43jtWmF5-a2Bqk47KXgg9IpDP_by-dQLFoKM,3638
|
|
313
318
|
reflex/components/next/video.py,sha256=2f81Ftb-6sikQb1xvExZqqQe0tcVjUY80ldh-GJ_uZw,730
|
|
314
|
-
reflex/components/next/video.pyi,sha256=
|
|
319
|
+
reflex/components/next/video.pyi,sha256=oI7sGBnMPn_qDky_MIDeL9BRsU7g4fKb5NsgMjt2BDA,3535
|
|
315
320
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
316
321
|
reflex/components/plotly/plotly.py,sha256=bIXN9lsxYEbpmSvbau6GPYdLTZihEB3YgT1psTGVzXI,910
|
|
317
|
-
reflex/components/plotly/plotly.pyi,sha256
|
|
322
|
+
reflex/components/plotly/plotly.pyi,sha256=-OLwbBDd8z6pIVwCBKCcZuw-31YEEt1VMjDNhxyh-g4,7122
|
|
318
323
|
reflex/components/radix/__init__.py,sha256=FZ_9jhHwzKDbYq30Ij-vI6oe8lHHuKVq9jaTHpa5QhY,97
|
|
319
|
-
reflex/components/radix/primitives/__init__.py,sha256=
|
|
320
|
-
reflex/components/radix/primitives/accordion.py,sha256=
|
|
321
|
-
reflex/components/radix/primitives/accordion.pyi,sha256=
|
|
324
|
+
reflex/components/radix/primitives/__init__.py,sha256=rvmptN9Y9yEoqfbpfZMMhZ6yZRoVpJUHxYoTFho0tgs,803
|
|
325
|
+
reflex/components/radix/primitives/accordion.py,sha256=xYRMCSxw0HcB7oL3127oCStPa7MOvO7C7z_1ypJ5DW0,19747
|
|
326
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=e23NZCmPtFa70GxiBJqAbyI9YaPweYtWJw3sQJtUZFQ,22428
|
|
322
327
|
reflex/components/radix/primitives/base.py,sha256=s3OX4V2pNl6AQ3H9rz-pkE-2TNuNrqj0Mn2mOItF0eM,869
|
|
323
|
-
reflex/components/radix/primitives/base.pyi,sha256=
|
|
324
|
-
reflex/components/radix/primitives/
|
|
325
|
-
reflex/components/radix/primitives/
|
|
326
|
-
reflex/components/radix/primitives/
|
|
327
|
-
reflex/components/radix/primitives/
|
|
328
|
+
reflex/components/radix/primitives/base.pyi,sha256=HexmvjXBG60KGpMmG8Qm64eow4LDaDIeZB04OVi5kdo,6837
|
|
329
|
+
reflex/components/radix/primitives/drawer.py,sha256=Ayq4CZP3-MuFKUSBM4Pe5LOUsx81NP9CFkZx6udJWTg,7243
|
|
330
|
+
reflex/components/radix/primitives/drawer.pyi,sha256=6orlhtcatC0sM6BN-j5F1zaKDbxd_8P0LpQGFQaPltg,31523
|
|
331
|
+
reflex/components/radix/primitives/form.py,sha256=QDp08P6ABLOCEbNiXhEREqEhV_ZPI49iP-yepX56Ims,8730
|
|
332
|
+
reflex/components/radix/primitives/form.pyi,sha256=SpluB6_nceDL53rPI97-k2FQkLFrq8LJEyPSVEs8RW4,28929
|
|
333
|
+
reflex/components/radix/primitives/progress.py,sha256=48Nk6W7Oxh_WXOXhO0NtDi6cRUZktOoTbXv0Nsu6NZE,2103
|
|
334
|
+
reflex/components/radix/primitives/progress.pyi,sha256=tOPGDxHHRG-99W0_qIiO2ajzmtNgNPYgIs_iWXXs32E,10386
|
|
328
335
|
reflex/components/radix/primitives/slider.py,sha256=eCKzT7e08F1mIGm-d9wVQ-4OWPAnDY7s6p5IPUtjzHg,4750
|
|
329
|
-
reflex/components/radix/primitives/slider.pyi,sha256=
|
|
336
|
+
reflex/components/radix/primitives/slider.pyi,sha256=opEZgPYBKiKySDs2iN8Xo_LNc_uaEeyG5M4jB6tJavM,17461
|
|
330
337
|
reflex/components/radix/themes/__init__.py,sha256=615Yg-j04dqhEZJdKoafCyOOXBTtCT20u7d2cBKleeI,237
|
|
331
|
-
reflex/components/radix/themes/base.py,sha256=
|
|
332
|
-
reflex/components/radix/themes/base.pyi,sha256=
|
|
333
|
-
reflex/components/radix/themes/components/__init__.py,sha256
|
|
334
|
-
reflex/components/radix/themes/components/alertdialog.py,sha256=
|
|
335
|
-
reflex/components/radix/themes/components/alertdialog.pyi,sha256=
|
|
336
|
-
reflex/components/radix/themes/components/aspectratio.py,sha256=
|
|
337
|
-
reflex/components/radix/themes/components/aspectratio.pyi,sha256=
|
|
338
|
-
reflex/components/radix/themes/components/avatar.py,sha256=
|
|
339
|
-
reflex/components/radix/themes/components/avatar.pyi,sha256=
|
|
340
|
-
reflex/components/radix/themes/components/badge.py,sha256=
|
|
341
|
-
reflex/components/radix/themes/components/badge.pyi,sha256=
|
|
342
|
-
reflex/components/radix/themes/components/button.py,sha256
|
|
343
|
-
reflex/components/radix/themes/components/button.pyi,sha256=
|
|
344
|
-
reflex/components/radix/themes/components/callout.py,sha256=
|
|
345
|
-
reflex/components/radix/themes/components/callout.pyi,sha256=
|
|
346
|
-
reflex/components/radix/themes/components/card.py,sha256=
|
|
347
|
-
reflex/components/radix/themes/components/card.pyi,sha256=
|
|
348
|
-
reflex/components/radix/themes/components/checkbox.py,sha256=
|
|
349
|
-
reflex/components/radix/themes/components/checkbox.pyi,sha256=
|
|
350
|
-
reflex/components/radix/themes/components/contextmenu.py,sha256=
|
|
351
|
-
reflex/components/radix/themes/components/contextmenu.pyi,sha256=
|
|
352
|
-
reflex/components/radix/themes/components/dialog.py,sha256=
|
|
353
|
-
reflex/components/radix/themes/components/dialog.pyi,sha256=
|
|
354
|
-
reflex/components/radix/themes/components/dropdownmenu.py,sha256
|
|
355
|
-
reflex/components/radix/themes/components/dropdownmenu.pyi,sha256=
|
|
356
|
-
reflex/components/radix/themes/components/hovercard.py,sha256=
|
|
357
|
-
reflex/components/radix/themes/components/hovercard.pyi,sha256=
|
|
358
|
-
reflex/components/radix/themes/components/iconbutton.py,sha256=
|
|
359
|
-
reflex/components/radix/themes/components/iconbutton.pyi,sha256=
|
|
338
|
+
reflex/components/radix/themes/base.py,sha256=cieuqsNFnNfvt2AlyohDzI4ZnWH5AxLXYvZn9MuxeaY,6352
|
|
339
|
+
reflex/components/radix/themes/base.pyi,sha256=50Eu6Vdnew3mXcTudE6QIvGUkTxsvcEH0_ijyzY37-4,28029
|
|
340
|
+
reflex/components/radix/themes/components/__init__.py,sha256=-n83HzHwTZ5WCfJGiCQXIVkL2RxxDdUu_gvs-41y47Y,5414
|
|
341
|
+
reflex/components/radix/themes/components/alertdialog.py,sha256=aEWidMYiQfNTZDDGRti2v99kbT65qxTTxUJLVyF7M2A,2674
|
|
342
|
+
reflex/components/radix/themes/components/alertdialog.pyi,sha256=DEM_kT8-osZN9YY8RVvSnhnze-C3W4GF_IPXF2-S6Bg,40085
|
|
343
|
+
reflex/components/radix/themes/components/aspectratio.py,sha256=x6-PNRAtWkNH5C4ix87jroIN-KqoBm_ZDa2UC2_i9ww,364
|
|
344
|
+
reflex/components/radix/themes/components/aspectratio.pyi,sha256=edBXjXPYlKEd9tBXj2uGx2dqX2pPEJLanQz4LPNjDdU,5689
|
|
345
|
+
reflex/components/radix/themes/components/avatar.py,sha256=WR-FVh-Gq_MKaO-zbk3lVzBfJJETekbpyd6gqN0daPA,912
|
|
346
|
+
reflex/components/radix/themes/components/avatar.pyi,sha256=RR1faOeA6YqEDrL94E2EaSUZ1vMzg3dR5H5UavsTo-4,6700
|
|
347
|
+
reflex/components/radix/themes/components/badge.py,sha256=tW_B4GtZPQm3laEdkb6ikFDP3NJBe2dsJnc3uWqvq24,792
|
|
348
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=Kb3UukQggyLtzxkPQpVvcoCmoa-y2MMfS5ACIPncG7A,9723
|
|
349
|
+
reflex/components/radix/themes/components/button.py,sha256=t8TEkh8MLY8rK1enau7O3Pi5z5ibF3l39Ot4mGkldPs,1059
|
|
350
|
+
reflex/components/radix/themes/components/button.pyi,sha256=q2wPfY6NRRjSFGP6tgxdRO3r0Byb1XQ_gdztDAERBj4,12213
|
|
351
|
+
reflex/components/radix/themes/components/callout.py,sha256=dp2_9YFSlPk_iqZcDg573GJ-IJnK1DjSqfug5Rn0kh4,2099
|
|
352
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=3iCjn__DYCoXtVC607-u9QiIc1rSrhz-x-E4uOxxwyI,35296
|
|
353
|
+
reflex/components/radix/themes/components/card.py,sha256=_3jLct19ZW-9jUiW63_OyFKmQYOwa5hfuWk7dXOO34k,638
|
|
354
|
+
reflex/components/radix/themes/components/card.pyi,sha256=6nQbf0ytE__e3k8iMeT3_VL8HVw0rQc_SoPdZGizZN4,9477
|
|
355
|
+
reflex/components/radix/themes/components/checkbox.py,sha256=TxA3tzzxsXmbwaIG6f420rNQIMb1TYiW4J1RHiTdHmI,2974
|
|
356
|
+
reflex/components/radix/themes/components/checkbox.pyi,sha256=M5Sl5yZvOopkOQp0Ic0eDjKicjDm2LmQ9EMnAGOw8kg,14473
|
|
357
|
+
reflex/components/radix/themes/components/contextmenu.py,sha256=Wz1W646dKMifpaEz2uMbcI0m2_IsRkpliuzJk5joN1E,4202
|
|
358
|
+
reflex/components/radix/themes/components/contextmenu.pyi,sha256=5Ph_Nkw8Yc3eA33G23qd5tbRC3QxatC56-QSTgj20pQ,43591
|
|
359
|
+
reflex/components/radix/themes/components/dialog.py,sha256=6clLY9KjTA-i-oSVFwbSkpJSDuwJMveru5H20hgi4Nw,2267
|
|
360
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=iD9c2ZdGDTRvRGT3cCfW8GnyjXdvAUwpaJmojpq4xLo,34949
|
|
361
|
+
reflex/components/radix/themes/components/dropdownmenu.py,sha256=6ngBpdyvk5pXN5UNfPVjaGk66YpbP8__15S4wX8q95k,10635
|
|
362
|
+
reflex/components/radix/themes/components/dropdownmenu.pyi,sha256=hjojIi6-4_EovXF5LNlcH8JhdG_KLOR44yEI0vZgdME,52142
|
|
363
|
+
reflex/components/radix/themes/components/hovercard.py,sha256=dOUxYrB_g9KRhhPvvrUdIrJUAjqLCXCcZIekRd1Zdc0,2087
|
|
364
|
+
reflex/components/radix/themes/components/hovercard.pyi,sha256=xRheZrdeinYeGB0x-fnCE_clYsLPzUVXD5KA2axJ3Dw,20693
|
|
365
|
+
reflex/components/radix/themes/components/iconbutton.py,sha256=wVcjkLN3kqbDuU_twqcSxJ2fFaiVxkSxTQFJ2aB-9TA,2759
|
|
366
|
+
reflex/components/radix/themes/components/iconbutton.pyi,sha256=ucGP1sbcE3y3K7m3vc76t18OlkN16TeP7L8lvLzX8EI,12250
|
|
360
367
|
reflex/components/radix/themes/components/icons.py,sha256=TbsTn5EVDuGde4bkRL3RioYn6-VupQx6he1pLdUcXjM,7953
|
|
361
|
-
reflex/components/radix/themes/components/icons.pyi,sha256=
|
|
362
|
-
reflex/components/radix/themes/components/inset.py,sha256=
|
|
363
|
-
reflex/components/radix/themes/components/inset.pyi,sha256=
|
|
364
|
-
reflex/components/radix/themes/components/popover.py,sha256=
|
|
365
|
-
reflex/components/radix/themes/components/popover.pyi,sha256=
|
|
366
|
-
reflex/components/radix/themes/components/radiogroup.py,sha256=
|
|
367
|
-
reflex/components/radix/themes/components/radiogroup.pyi,sha256=
|
|
368
|
-
reflex/components/radix/themes/components/scrollarea.py,sha256=
|
|
369
|
-
reflex/components/radix/themes/components/scrollarea.pyi,sha256=
|
|
370
|
-
reflex/components/radix/themes/components/select.py,sha256=
|
|
371
|
-
reflex/components/radix/themes/components/select.pyi,sha256=
|
|
372
|
-
reflex/components/radix/themes/components/separator.py,sha256=
|
|
373
|
-
reflex/components/radix/themes/components/separator.pyi,sha256=
|
|
374
|
-
reflex/components/radix/themes/components/slider.py,sha256=
|
|
375
|
-
reflex/components/radix/themes/components/slider.pyi,sha256=
|
|
376
|
-
reflex/components/radix/themes/components/switch.py,sha256=
|
|
377
|
-
reflex/components/radix/themes/components/switch.pyi,sha256=
|
|
378
|
-
reflex/components/radix/themes/components/table.py,sha256=
|
|
379
|
-
reflex/components/radix/themes/components/table.pyi,sha256=
|
|
380
|
-
reflex/components/radix/themes/components/tabs.py,sha256=
|
|
381
|
-
reflex/components/radix/themes/components/tabs.pyi,sha256=
|
|
382
|
-
reflex/components/radix/themes/components/textarea.py,sha256=
|
|
383
|
-
reflex/components/radix/themes/components/textarea.pyi,sha256=
|
|
384
|
-
reflex/components/radix/themes/components/textfield.py,sha256=
|
|
385
|
-
reflex/components/radix/themes/components/textfield.pyi,sha256=
|
|
386
|
-
reflex/components/radix/themes/components/tooltip.py,sha256=
|
|
387
|
-
reflex/components/radix/themes/components/tooltip.pyi,sha256=
|
|
388
|
-
reflex/components/radix/themes/layout/__init__.py,sha256=
|
|
368
|
+
reflex/components/radix/themes/components/icons.pyi,sha256=Xd1MpO3E2EBxyZV5LM5fAVGy0OsWgzJT2hHDb1ABHLc,6799
|
|
369
|
+
reflex/components/radix/themes/components/inset.py,sha256=ye3EmLSD5GZVodjMut7U_Zqw6nmyPbHwOYmp7keadC0,986
|
|
370
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=egM-xt4Iw9BJ5l2YYNoyTjmBuuASAw_Vir0rEvU8CIQ,10164
|
|
371
|
+
reflex/components/radix/themes/components/popover.py,sha256=IJRimFZRithtqxGuixgPnNtD4vrYMn12Z1u11x_wx-s,2831
|
|
372
|
+
reflex/components/radix/themes/components/popover.pyi,sha256=MuU4x8f7X-Lmker1VJT5sKIGoEulY3bzYZyBAxEOVGk,26422
|
|
373
|
+
reflex/components/radix/themes/components/radiogroup.py,sha256=i_JRtSFGSFSuCl5UwwSldr-rG4yOljP-h1Jg7auuJSE,5274
|
|
374
|
+
reflex/components/radix/themes/components/radiogroup.pyi,sha256=aa0nrL3gCaNC6yWVlvVwXOjViM_YEIRRjbsPmoRaA1w,20664
|
|
375
|
+
reflex/components/radix/themes/components/scrollarea.py,sha256=8sCTs6iElgohNTrLlWrvP8oz9kroMKaMh4jNB9oFEYI,1058
|
|
376
|
+
reflex/components/radix/themes/components/scrollarea.pyi,sha256=FMRSX6CJF40ArUW9sIMe1DbtgrQW785steWjpVm-5TI,6907
|
|
377
|
+
reflex/components/radix/themes/components/select.py,sha256=7Nn_5etChGS5m-DCsDz3kxCa-xkskBWOiXzzCuAAQoY,7036
|
|
378
|
+
reflex/components/radix/themes/components/select.pyi,sha256=ZsojHGGwoqyvEqZl5DpCBboSJzmugajZMlqDACoAhps,48008
|
|
379
|
+
reflex/components/radix/themes/components/separator.py,sha256=oG7hf33Ms49V_Pc2LpryoZfYMeDDRVKx-Iov9Nd_VMY,841
|
|
380
|
+
reflex/components/radix/themes/components/separator.pyi,sha256=yu-bLdgHZNvXTl4DfSk-Vfp33jVOlH6cTD1uweUuqV4,6257
|
|
381
|
+
reflex/components/radix/themes/components/slider.py,sha256=OHTfkKq2CX_Fn5rDSLesnS0iPO5IeAO6kGXh7P0MM_Y,2245
|
|
382
|
+
reflex/components/radix/themes/components/slider.pyi,sha256=C0fK1ClYtn2EuwjvCh_9KJvLbREWbRWRYBWGEWHEqbo,8370
|
|
383
|
+
reflex/components/radix/themes/components/switch.py,sha256=ZGlla7aK1dcQUUwF1N8mdqWzoUY5oktwLFPCSIsjHr0,1982
|
|
384
|
+
reflex/components/radix/themes/components/switch.pyi,sha256=TjXQ_i9aZyR7YzjKpoGwvIphT5S8s90pcnD3prrLo9E,7817
|
|
385
|
+
reflex/components/radix/themes/components/table.py,sha256=0WWC97PUaDpgZaBOEZcS1QUaahd5rw7uhTD5piYDKNg,1868
|
|
386
|
+
reflex/components/radix/themes/components/table.pyi,sha256=ukA_P25gJjmGvp2MBXhKIRnQlF5rwQv08i-XkUEXKxY,65325
|
|
387
|
+
reflex/components/radix/themes/components/tabs.py,sha256=FUdouwh-myhbMje6n_P5U4ut0HzIaOuT39d8W5HfRYE,1910
|
|
388
|
+
reflex/components/radix/themes/components/tabs.pyi,sha256=UPAlb2e_DduEYXLENKEBIUOHDVUYwtjMQu75t80moL8,21888
|
|
389
|
+
reflex/components/radix/themes/components/textarea.py,sha256=PJHZT67g2XHS8tfUOVGzbG0ShgMmLrCtYH4gYVtyG8M,2295
|
|
390
|
+
reflex/components/radix/themes/components/textarea.pyi,sha256=1-KOhr7rUhbNJXmlGYWmepJFcDe_VR2XWHTNQ6J9IcQ,12354
|
|
391
|
+
reflex/components/radix/themes/components/textfield.py,sha256=OqdTQpgdN9w5E-ZbYE7Vj-oUAGfVzFvT8Q3fo1bNZCc,5930
|
|
392
|
+
reflex/components/radix/themes/components/textfield.pyi,sha256=RlWgKpo8aJhEBcJjzOThL6iHSpOoZhOCTPncmebAra4,37313
|
|
393
|
+
reflex/components/radix/themes/components/tooltip.py,sha256=Iwy8Hbqz878x8AheuZJkgWY6Schv8pF5RCAe0KbgkRk,4438
|
|
394
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=2_pogU9kS-ML76y0s8BCsqHoVLRNKIJ1dgn6BeALdek,8172
|
|
395
|
+
reflex/components/radix/themes/layout/__init__.py,sha256=pnEDtCeCyNHj9ADzZohtOpuZo-Bn00e7cc3OJo3uMms,445
|
|
389
396
|
reflex/components/radix/themes/layout/base.py,sha256=OSGDf_RgNEzb1BPZ72VmM9b9TT1dwV08Dsfwb6AUB70,1176
|
|
390
|
-
reflex/components/radix/themes/layout/base.pyi,sha256=
|
|
391
|
-
reflex/components/radix/themes/layout/box.py,sha256=
|
|
392
|
-
reflex/components/radix/themes/layout/box.pyi,sha256=
|
|
393
|
-
reflex/components/radix/themes/layout/
|
|
394
|
-
reflex/components/radix/themes/layout/
|
|
395
|
-
reflex/components/radix/themes/layout/
|
|
396
|
-
reflex/components/radix/themes/layout/
|
|
397
|
+
reflex/components/radix/themes/layout/base.pyi,sha256=k2604Zxp0FXIbsyxwox1gz0itxTiZE9vuEDi0Tgb6wQ,9585
|
|
398
|
+
reflex/components/radix/themes/layout/box.py,sha256=YNQi7sK95oatWia-rHnePte_qYBQ4Oss1E7Djn4VqXs,281
|
|
399
|
+
reflex/components/radix/themes/layout/box.pyi,sha256=owM3r691Kk3WVePIS8wKVAn9uEBOCx5F-v2qizXyJuU,8759
|
|
400
|
+
reflex/components/radix/themes/layout/center.py,sha256=gCBCjQGWS6C8znX3_wsfuEuwiz3b6-LYiLrne_LwmiA,421
|
|
401
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=hY2gQgF9USW9uABd9IbiZAuRsc7CeQN8hEqVktPbX_I,10800
|
|
402
|
+
reflex/components/radix/themes/layout/container.py,sha256=n6l3EbNwoTlz05ZOlWjbOFGQaYIhD__klegwfPn_vV4,552
|
|
403
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=OPJdCAsv1zI9-MHjRM0Uf6Nmv6Y6vJE4Q6VV_eBuPHA,9076
|
|
404
|
+
reflex/components/radix/themes/layout/flex.py,sha256=hQAwawUNOzDVAxG93PwhyN5zvuQgfZfDmEyn9edItJE,1413
|
|
405
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=AuhjO9Oen5AsZEJv0Qifs9QjOssi8WvT9OWGx27vhlA,11107
|
|
397
406
|
reflex/components/radix/themes/layout/grid.py,sha256=Jjh2WxAtelmtaYrszOxOH6N85uqX0qLAdSYyyAc-Gfc,1448
|
|
398
|
-
reflex/components/radix/themes/layout/grid.pyi,sha256=
|
|
399
|
-
reflex/components/radix/themes/layout/section.py,sha256=
|
|
400
|
-
reflex/components/radix/themes/layout/section.pyi,sha256=
|
|
407
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=EZJdnqskC-FAPAx-ly7vDXkJkMtyBmSRT6ztbSC5J7g,11194
|
|
408
|
+
reflex/components/radix/themes/layout/section.py,sha256=w9OmAycanmWtFndDGDNIkJZZJJ54wIg6OQn5WaQ_Q-w,458
|
|
409
|
+
reflex/components/radix/themes/layout/section.pyi,sha256=sZ5Fq5OvVekrXFxpnxTaI6J1rS4vVJ2v2Wwi6YvmHMk,9055
|
|
410
|
+
reflex/components/radix/themes/layout/spacer.py,sha256=KWHN_Hgi8sL9t_xo5ItoQ__ZAhqVbMkCG0WIFJwxRPY,411
|
|
411
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=-qJRu_XebwLiVkCuvM9XnydcM6MTZ98-07xrdTO_HzE,10800
|
|
412
|
+
reflex/components/radix/themes/layout/stack.py,sha256=kLFLT4sA8r1qhLfcnSDb0Lspt1whnIMKa48JZOL8uoU,1577
|
|
413
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=ZpXK_893v68b5red5Xf8Kpxt_XW6Kno8oEihNpVn3E8,24167
|
|
401
414
|
reflex/components/radix/themes/typography/__init__.py,sha256=oJrViUdhgjSkRZ3rc5jSXiudGj5AQzGpwuv3dVbi4aE,446
|
|
402
415
|
reflex/components/radix/themes/typography/base.py,sha256=uxSmOnrr5bnP6_aPI8FI95kn2bf9DZYLXshg-GpCDug,408
|
|
403
|
-
reflex/components/radix/themes/typography/blockquote.py,sha256=
|
|
404
|
-
reflex/components/radix/themes/typography/blockquote.pyi,sha256=
|
|
405
|
-
reflex/components/radix/themes/typography/code.py,sha256=
|
|
406
|
-
reflex/components/radix/themes/typography/code.pyi,sha256=
|
|
407
|
-
reflex/components/radix/themes/typography/em.py,sha256=
|
|
408
|
-
reflex/components/radix/themes/typography/em.pyi,sha256=
|
|
409
|
-
reflex/components/radix/themes/typography/heading.py,sha256=
|
|
410
|
-
reflex/components/radix/themes/typography/heading.pyi,sha256=
|
|
411
|
-
reflex/components/radix/themes/typography/kbd.py,sha256=
|
|
412
|
-
reflex/components/radix/themes/typography/kbd.pyi,sha256=
|
|
413
|
-
reflex/components/radix/themes/typography/link.py,sha256=
|
|
414
|
-
reflex/components/radix/themes/typography/link.pyi,sha256=
|
|
415
|
-
reflex/components/radix/themes/typography/quote.py,sha256=
|
|
416
|
-
reflex/components/radix/themes/typography/quote.pyi,sha256=
|
|
417
|
-
reflex/components/radix/themes/typography/strong.py,sha256=
|
|
418
|
-
reflex/components/radix/themes/typography/strong.pyi,sha256=
|
|
419
|
-
reflex/components/radix/themes/typography/text.py,sha256=
|
|
420
|
-
reflex/components/radix/themes/typography/text.pyi,sha256=
|
|
421
|
-
reflex/components/radix/themes/typography.py,sha256=
|
|
416
|
+
reflex/components/radix/themes/typography/blockquote.py,sha256=2oeU4a6y4BwlPXOtwCIRJ1x5AIy_GgIjldbppRXJdH8,799
|
|
417
|
+
reflex/components/radix/themes/typography/blockquote.pyi,sha256=twMVV6NCu3jVlscQg-eA4jszW51eVkaliGxUF3hqYVo,9718
|
|
418
|
+
reflex/components/radix/themes/typography/code.py,sha256=b74UXNv6ktmO0bTkMKFYR41XkEHyHJoJI3mlhLuA0cE,909
|
|
419
|
+
reflex/components/radix/themes/typography/code.pyi,sha256=ZeTRDzuwOzKKFp7z44pqqnyVy_q7yCOlGc_MadN7gx8,9915
|
|
420
|
+
reflex/components/radix/themes/typography/em.py,sha256=X-10eBCeX32Vqnb6gGi705T1du34QiwQa5-wNti8dto,302
|
|
421
|
+
reflex/components/radix/themes/typography/em.pyi,sha256=HNIc0rW1fXjqU8vq_NUlRKHan22XQL5hqtQj9jntEJ0,8759
|
|
422
|
+
reflex/components/radix/themes/typography/heading.py,sha256=xKJUzuodTcu6e1in8tDckTfZ9te460mswPgbSj5a6U4,1324
|
|
423
|
+
reflex/components/radix/themes/typography/heading.pyi,sha256=sK0vL1g2xFlHLnjX5yLTx7BTsPyduo6-rB8rWAY8dXI,10508
|
|
424
|
+
reflex/components/radix/themes/typography/kbd.py,sha256=mn2mRzfjaCCRjKiQcfwRTM_3_WBQsaRaBYja_CKk4wg,443
|
|
425
|
+
reflex/components/radix/themes/typography/kbd.pyi,sha256=eVmd2fhzayB0C8NPQkrGgiH1FZPacqhCsVoHAcAD2ZQ,9084
|
|
426
|
+
reflex/components/radix/themes/typography/link.py,sha256=5CVQpSpPRF10h8yi9-yP3-lZD8JjmDHKh4vZO6BnBOo,2446
|
|
427
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=ThJhIcO4kETDoj4McvNc-chC24HyxnDLTKOl3VIs_bw,12174
|
|
428
|
+
reflex/components/radix/themes/typography/quote.py,sha256=BL_lf7UImhD7BeCuHiX3RiQFdylspnswN8y0q0kUY10,302
|
|
429
|
+
reflex/components/radix/themes/typography/quote.pyi,sha256=YPoyoTpkExUBB698BEjINiOP1_HiQ5VKzUTPcxyv6Sk,8913
|
|
430
|
+
reflex/components/radix/themes/typography/strong.py,sha256=fIYkMJO7ho68-PYqrTW8Zq0u-hUZcs3itDImnX5lS0s,324
|
|
431
|
+
reflex/components/radix/themes/typography/strong.pyi,sha256=Q1EScnB8khqZ4AvN_DAlEEJXlls-CQVy-f2mxuBXVnQ,8775
|
|
432
|
+
reflex/components/radix/themes/typography/text.py,sha256=g1Ja5Bm5aKygl8gzFA8otSD167Gg6Lsc4n4H6SQPPjI,1317
|
|
433
|
+
reflex/components/radix/themes/typography/text.pyi,sha256=vBcziEiRl3FwzF9nhQgWnIYs29bZBpKjchcOs9zZV2E,10501
|
|
434
|
+
reflex/components/radix/themes/typography.py,sha256=u7hqrwQlaFJgVuvwDm3Bb_upSqU3H3u7Hyl47X0sOxM,3579
|
|
422
435
|
reflex/components/react_player/__init__.py,sha256=W4wa5G4R_cl5tE1vfR4tY_RlvWLVsyTxzTAJ67q2gnc,144
|
|
423
436
|
reflex/components/react_player/audio.py,sha256=vUwo9SJpf2YndJp6irpkslmZIcw7ifE91Sym-WBT_9A,185
|
|
424
|
-
reflex/components/react_player/audio.pyi,sha256=
|
|
437
|
+
reflex/components/react_player/audio.pyi,sha256=fV_JSj7L-DNsHavPpmQyVGH_n2TRRNeeoeV3R3X2DEk,4504
|
|
425
438
|
reflex/components/react_player/react_player.py,sha256=e54YjfDMGsSEnBBaGKmHwuayqhx_yGgNvGO2mk_OTsA,1087
|
|
426
|
-
reflex/components/react_player/react_player.pyi,sha256=
|
|
439
|
+
reflex/components/react_player/react_player.pyi,sha256=_FZGhr8iax_dFSu2szq4PIK1DVV4AYnu30tRQ3rV7RY,4531
|
|
427
440
|
reflex/components/react_player/video.py,sha256=r_14UGX-u3MKqpyK6yGwlaqZGPGw1v6g9wBg0bwvaTU,185
|
|
428
|
-
reflex/components/react_player/video.pyi,sha256=
|
|
441
|
+
reflex/components/react_player/video.pyi,sha256=ahKYwQENzuUaa3J8RuXVGi0n9Zn9qrsAgiaSvThlqVk,4504
|
|
429
442
|
reflex/components/recharts/__init__.py,sha256=_z8TImfBT085hUYH-UQGwtSO69ZIlg5IWu-IKLIwUyc,2373
|
|
430
443
|
reflex/components/recharts/cartesian.py,sha256=kSOdShCDIP7sXSmRxTfwPYSuOEoBs8MNcT9yja37-bc,19595
|
|
431
|
-
reflex/components/recharts/cartesian.pyi,sha256=
|
|
444
|
+
reflex/components/recharts/cartesian.pyi,sha256=yOTNcdRczy-FdnxQsMafLva__xOn0uRUxnXHmhBwElQ,87604
|
|
432
445
|
reflex/components/recharts/charts.py,sha256=vuSsJ7IISU43ZedI9PiKyc4gT4q3nJ5tq8ZDfAcT-js,18493
|
|
433
|
-
reflex/components/recharts/charts.pyi,sha256=
|
|
446
|
+
reflex/components/recharts/charts.pyi,sha256=lOxee7XXu8sjb3Q7J8sARNaR64WQGH_KkFRmkjeOg6s,49973
|
|
434
447
|
reflex/components/recharts/general.py,sha256=71Z8IFDjNGT6m2110lkz81AeH6yFuyA9g5JH58qbYpE,5624
|
|
435
|
-
reflex/components/recharts/general.pyi,sha256=
|
|
448
|
+
reflex/components/recharts/general.pyi,sha256=1tdN7UT44tKdzXXEl7i1DYyUMOZ4tsIrDJgoSiGo75Y,23621
|
|
436
449
|
reflex/components/recharts/polar.py,sha256=X4qG0IOCnC11Zb6iDTXuV9_IVU5MrIFYzmnQLpyFufY,10410
|
|
437
|
-
reflex/components/recharts/polar.pyi,sha256=
|
|
450
|
+
reflex/components/recharts/polar.pyi,sha256=vykP_g1JUnVgsmaQEwXQdP9WZoU1Vudqft0JJYpPRfw,25413
|
|
438
451
|
reflex/components/recharts/recharts.py,sha256=Ap4HCCBY2Q9gdrh-PnHOvJY5ebIKCLgnQNrUWDp_bRs,2870
|
|
439
|
-
reflex/components/recharts/recharts.pyi,sha256=
|
|
452
|
+
reflex/components/recharts/recharts.pyi,sha256=HqPqd_epJStucJAR2Voy3S7-utu-HG9pi71dma3JOoI,8823
|
|
440
453
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
441
454
|
reflex/components/suneditor/editor.py,sha256=GagQzBNxptJl6xYplta77m7aKqYbdlQ9Aldlw8Rxyzc,7360
|
|
442
|
-
reflex/components/suneditor/editor.pyi,sha256=
|
|
455
|
+
reflex/components/suneditor/editor.pyi,sha256=L-q5OT0iot78w-N_nHSYCRA_tL2v2yP-p6nSEKsMRmc,10436
|
|
443
456
|
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
444
457
|
reflex/components/tags/cond_tag.py,sha256=v5BO78bGQQuCy8lM45yI7nAuasxjQoRyQNdj5kakPBY,447
|
|
445
458
|
reflex/components/tags/iter_tag.py,sha256=edHT77BBlvKtGP3f4cu_hhlovkYUO5FGTZKHkJBrayM,3620
|
|
446
459
|
reflex/components/tags/match_tag.py,sha256=pMwy46ewquPNwa1S71sDS_0Ga8YuviSrbpBU-_CWsoQ,387
|
|
447
|
-
reflex/components/tags/tag.py,sha256=
|
|
460
|
+
reflex/components/tags/tag.py,sha256=m6BpiplqSPhIpVVZHIL9eXC2XbQulFAJNuaw5mz_fSA,2612
|
|
448
461
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
449
462
|
reflex/config.py,sha256=EEY7gBZ2T3p9g6-LqbD-wt_jO6qcPW3a2t6NLtk1QKo,10606
|
|
450
463
|
reflex/config.pyi,sha256=Gf0Ptm9h0xEPsv0FAfwsSq6fs5ycjiR0WxbYimt9TKY,3278
|
|
451
464
|
reflex/constants/__init__.py,sha256=hvoydrEk17n1KHsm4dq_DgAYUDIKz0YB9sZuXjJFFvI,1823
|
|
452
|
-
reflex/constants/base.py,sha256=
|
|
465
|
+
reflex/constants/base.py,sha256=hTEDNHf2GHJ7HJBGmCMTN2iTvAtTEC9pyvO7mG-82ps,5646
|
|
466
|
+
reflex/constants/colors.py,sha256=xVCgae72xFCIBW6Va-y7rncMeqV2-JADJP0TCU7B3pM,1585
|
|
453
467
|
reflex/constants/compiler.py,sha256=PuZuIasjtj-EJtZBAJtVd_Yjhe5yiLDbdLOntVs1DLE,3683
|
|
454
468
|
reflex/constants/config.py,sha256=7uUypVy-ezLt3UN3jXEX1XvL3sKaCLBwnJCyYjg9erI,1331
|
|
455
|
-
reflex/constants/event.py,sha256=
|
|
469
|
+
reflex/constants/event.py,sha256=7cEUTWdIhWVw7g5Bn9yTZlxNnJY5MeJL55q-vT1YOZ0,2668
|
|
456
470
|
reflex/constants/installer.py,sha256=ut6nSoUUdxcp_EAHxKTsb98bD1ve8fmi55GU_3EMv7E,3176
|
|
457
471
|
reflex/constants/route.py,sha256=yk0WEPqQrNbTvvV8TEy1vvmV2ISg_Gr5jdVxSqFWEm4,1956
|
|
458
472
|
reflex/constants/style.py,sha256=gSzu0sQEQjW81PekxJnwRs7SXQQVco-LxtVjCi0IQZc,636
|
|
@@ -461,32 +475,32 @@ reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk
|
|
|
461
475
|
reflex/middleware/hydrate_middleware.py,sha256=8wkeB92prQ5rWg2VBU2dO-zgg3qOdeE8T2Dckr6mgws,1924
|
|
462
476
|
reflex/middleware/middleware.py,sha256=PX9TPaCHI1O-F3OucsZSp94gtMP3ALYs3zXSALOlN9E,1169
|
|
463
477
|
reflex/model.py,sha256=XJap0qphr0hEdf2HifeY9HJvAnj2JAE6LrHaoU3ZsHw,10757
|
|
464
|
-
reflex/page.py,sha256=
|
|
478
|
+
reflex/page.py,sha256=tyqyisi3AUapkoStPNROI7fM0rZ9KU1lpi5OgJcGsvk,1922
|
|
465
479
|
reflex/page.pyi,sha256=nFfbDe-tBsrIrcAKWsoTy92olMkAosbmddh_Pgf2Sxc,505
|
|
466
|
-
reflex/reflex.py,sha256=
|
|
480
|
+
reflex/reflex.py,sha256=cBGCegVJPus2PrVFQVb4tB3taDru0qNN0Cpuh8Wv80Y,17145
|
|
467
481
|
reflex/route.py,sha256=eVi2TSk9uM7DDGBy6rDYe6Gq4iuHZFK00Vmoq9IbIjk,2732
|
|
468
482
|
reflex/state.py,sha256=WLPL60XfT9gJ7MNZYQV-LLaLzKygP7w8EWTYf-0_le8,72578
|
|
469
|
-
reflex/style.py,sha256=
|
|
470
|
-
reflex/testing.py,sha256=
|
|
483
|
+
reflex/style.py,sha256=p2HvKZaLZkKot-LwPAEpv0Xu82m93XG93KtSDBK7xHU,7774
|
|
484
|
+
reflex/testing.py,sha256=SIRi85JXeHUuA5DHdZA1RF6AVmj9f9Xxy63LWhY2884,28513
|
|
471
485
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
472
486
|
reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
|
|
473
487
|
reflex/utils/console.py,sha256=oEEaV9oSw5B24LPEwBOGlyrk2xI91Fo-pqGEsNICrjg,4583
|
|
474
488
|
reflex/utils/exceptions.py,sha256=oniHYS_c18hvwva4tvEmO33Fjmp605uFJBX4liKuqp8,504
|
|
475
489
|
reflex/utils/exec.py,sha256=rbG1Mhx4s6yvge_dEDynbT9oAH-iJSiDCsvhSKyJsNM,8622
|
|
476
490
|
reflex/utils/export.py,sha256=daLyx4W-Kjit7Wjg5Db7-yFarF8r0d2IJ8aliXLDXZo,2454
|
|
477
|
-
reflex/utils/format.py,sha256=
|
|
491
|
+
reflex/utils/format.py,sha256=4yfILoZmS4d4FXpg568Zrz5LEo7pXcR9e-veMTiKILc,20464
|
|
478
492
|
reflex/utils/imports.py,sha256=yah1kSVsOyUxA0wOMxJTwcmu6xlmkLJtV_zRIhshpsA,1919
|
|
479
493
|
reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
|
|
480
|
-
reflex/utils/prerequisites.py,sha256=
|
|
494
|
+
reflex/utils/prerequisites.py,sha256=byzdvUZdX-ZnV8RtGOOvf5v6liOmiVfCEvEkMKtom2c,31902
|
|
481
495
|
reflex/utils/processes.py,sha256=3VZ48WzPy_PDZ6kSoewnHxHahqA9nAsW2ITXGPcK8LQ,8351
|
|
482
|
-
reflex/utils/serializers.py,sha256=
|
|
483
|
-
reflex/utils/telemetry.py,sha256=
|
|
484
|
-
reflex/utils/types.py,sha256=
|
|
496
|
+
reflex/utils/serializers.py,sha256=1x97RP6k2bcxtFv8VpmYHMvR9AIjLAtrZG1k3DKUoyA,7938
|
|
497
|
+
reflex/utils/telemetry.py,sha256=eeMdDwdl2wsRXL8VozciaLCVJqLISnRihklFpw44p2A,2619
|
|
498
|
+
reflex/utils/types.py,sha256=26DoLhFQpOkUWUt_y1LwVMwxE-8PBzs7J-T0YgxOIRw,9626
|
|
485
499
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
486
|
-
reflex/vars.py,sha256=
|
|
500
|
+
reflex/vars.py,sha256=fiC65PKmqGCd2p2PLcID9nzZF_YP8XVgj99W2yNto4E,62408
|
|
487
501
|
reflex/vars.pyi,sha256=VsVyNRIcuWnCDo2xrxF25gHV7qTM8wU1O350UBay3Rk,5032
|
|
488
|
-
reflex-0.3.
|
|
489
|
-
reflex-0.3.
|
|
490
|
-
reflex-0.3.
|
|
491
|
-
reflex-0.3.
|
|
492
|
-
reflex-0.3.
|
|
502
|
+
reflex-0.3.10.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
503
|
+
reflex-0.3.10.dist-info/METADATA,sha256=OGYvhP2g1spvX_pjWUjF7vyKK_D20BkkRQoJiOOGM0I,11245
|
|
504
|
+
reflex-0.3.10.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
505
|
+
reflex-0.3.10.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
506
|
+
reflex-0.3.10.dist-info/RECORD,,
|