reflex 0.4.9a2__py3-none-any.whl → 0.5.0__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/apps/blank/code/blank.py +19 -16
- reflex/.templates/apps/demo/code/demo.py +1 -1
- reflex/.templates/apps/demo/code/pages/datatable.py +4 -4
- reflex/.templates/apps/demo/code/pages/forms.py +2 -2
- reflex/.templates/jinja/web/tailwind.config.js.jinja2 +12 -0
- reflex/.templates/web/utils/helpers/debounce.js +17 -0
- reflex/.templates/web/utils/helpers/throttle.js +22 -0
- reflex/.templates/web/utils/state.js +21 -3
- reflex/__init__.py +6 -1
- reflex/__init__.pyi +4 -1
- reflex/app.py +157 -140
- reflex/app_module_for_backend.py +1 -1
- reflex/base.py +13 -15
- reflex/compiler/compiler.py +10 -1
- reflex/compiler/utils.py +3 -30
- reflex/components/__init__.py +1 -0
- reflex/components/chakra/datadisplay/list.py +1 -3
- reflex/components/chakra/datadisplay/list.pyi +3 -3
- reflex/components/chakra/disclosure/accordion.py +1 -1
- reflex/components/chakra/forms/pininput.pyi +1 -1
- reflex/components/chakra/media/icon.py +2 -2
- reflex/components/component.py +275 -32
- reflex/components/core/__init__.py +2 -2
- reflex/components/core/cond.py +1 -10
- reflex/components/core/debounce.py +5 -2
- reflex/components/core/debounce.pyi +4 -2
- reflex/components/core/foreach.py +60 -49
- reflex/components/core/html.py +6 -0
- reflex/components/core/match.py +2 -17
- reflex/components/core/upload.py +42 -1
- reflex/components/core/upload.pyi +199 -1
- reflex/components/datadisplay/code.py +7 -3
- reflex/components/datadisplay/code.pyi +3 -1
- reflex/components/el/elements/forms.py +1 -1
- reflex/components/el/elements/forms.pyi +1 -1
- reflex/components/lucide/icon.py +5 -13
- reflex/components/lucide/icon.pyi +0 -1
- reflex/components/markdown/markdown.py +5 -23
- reflex/components/markdown/markdown.pyi +1 -4
- reflex/components/radix/primitives/accordion.py +265 -410
- reflex/components/radix/primitives/accordion.pyi +390 -36
- reflex/components/radix/primitives/form.py +33 -29
- reflex/components/radix/primitives/form.pyi +7 -2
- reflex/components/radix/primitives/progress.py +17 -9
- reflex/components/radix/primitives/progress.pyi +2 -0
- reflex/components/radix/primitives/slider.py +30 -18
- reflex/components/radix/primitives/slider.pyi +4 -0
- reflex/components/radix/themes/base.py +8 -1
- reflex/components/radix/themes/base.pyi +79 -1
- reflex/components/radix/themes/color_mode.py +88 -20
- reflex/components/radix/themes/color_mode.pyi +157 -139
- reflex/components/radix/themes/components/__init__.py +17 -0
- reflex/components/radix/themes/components/badge.py +2 -1
- reflex/components/radix/themes/components/badge.pyi +3 -1
- reflex/components/radix/themes/components/button.py +3 -1
- reflex/components/radix/themes/components/button.pyi +4 -1
- reflex/components/radix/themes/components/checkbox_cards.py +48 -0
- reflex/components/radix/themes/components/checkbox_cards.pyi +264 -0
- reflex/components/radix/themes/components/checkbox_group.py +42 -0
- reflex/components/radix/themes/components/checkbox_group.pyi +253 -0
- reflex/components/radix/themes/components/data_list.py +63 -0
- reflex/components/radix/themes/components/data_list.pyi +426 -0
- reflex/components/radix/themes/components/icon_button.py +20 -17
- reflex/components/radix/themes/components/icon_button.pyi +5 -1
- reflex/components/radix/themes/components/progress.py +55 -0
- reflex/components/radix/themes/components/progress.pyi +180 -0
- reflex/components/radix/themes/components/radio.py +31 -0
- reflex/components/radix/themes/components/radio.pyi +169 -0
- reflex/components/radix/themes/components/radio_cards.py +48 -0
- reflex/components/radix/themes/components/radio_cards.pyi +264 -0
- reflex/components/radix/themes/components/radio_group.py +2 -4
- reflex/components/radix/themes/components/segmented_control.py +48 -0
- reflex/components/radix/themes/components/segmented_control.pyi +262 -0
- reflex/components/radix/themes/components/skeleton.py +32 -0
- reflex/components/radix/themes/components/skeleton.pyi +106 -0
- reflex/components/radix/themes/components/spinner.py +26 -0
- reflex/components/radix/themes/components/spinner.pyi +101 -0
- reflex/components/radix/themes/components/tabs.py +26 -1
- reflex/components/radix/themes/components/tabs.pyi +69 -9
- reflex/components/radix/themes/components/text_field.py +101 -71
- reflex/components/radix/themes/components/text_field.pyi +81 -499
- reflex/components/radix/themes/layout/base.py +2 -2
- reflex/components/radix/themes/layout/base.pyi +4 -4
- reflex/components/radix/themes/layout/center.py +8 -3
- reflex/components/radix/themes/layout/center.pyi +2 -1
- reflex/components/radix/themes/layout/container.py +30 -2
- reflex/components/radix/themes/layout/container.pyi +9 -30
- reflex/components/radix/themes/layout/list.py +10 -5
- reflex/components/radix/themes/layout/list.pyi +5 -21
- reflex/components/radix/themes/layout/spacer.py +8 -3
- reflex/components/radix/themes/layout/spacer.pyi +2 -1
- reflex/components/radix/themes/layout/stack.py +7 -1
- reflex/components/radix/themes/layout/stack.pyi +3 -3
- reflex/components/radix/themes/typography/link.py +10 -2
- reflex/components/radix/themes/typography/link.pyi +5 -4
- reflex/components/sonner/__init__.py +3 -0
- reflex/components/sonner/toast.py +267 -0
- reflex/components/sonner/toast.pyi +205 -0
- reflex/components/tags/iter_tag.py +9 -6
- reflex/config.py +30 -54
- reflex/constants/__init__.py +0 -2
- reflex/constants/base.py +0 -5
- reflex/constants/colors.py +2 -0
- reflex/constants/installer.py +5 -1
- reflex/constants/route.py +4 -0
- reflex/custom_components/custom_components.py +24 -2
- reflex/event.py +75 -30
- reflex/experimental/__init__.py +5 -0
- reflex/experimental/layout.py +24 -6
- reflex/model.py +2 -1
- reflex/page.py +7 -4
- reflex/reflex.py +8 -3
- reflex/route.py +39 -0
- reflex/state.py +128 -131
- reflex/style.py +25 -3
- reflex/testing.py +10 -6
- reflex/utils/console.py +3 -1
- reflex/utils/exec.py +20 -7
- reflex/utils/format.py +1 -1
- reflex/utils/imports.py +3 -1
- reflex/utils/prerequisites.py +141 -20
- reflex/utils/processes.py +21 -1
- reflex/utils/pyi_generator.py +95 -5
- reflex/utils/serializers.py +1 -1
- reflex/utils/telemetry.py +26 -4
- reflex/utils/types.py +62 -18
- reflex/vars.py +11 -5
- {reflex-0.4.9a2.dist-info → reflex-0.5.0.dist-info}/METADATA +16 -4
- {reflex-0.4.9a2.dist-info → reflex-0.5.0.dist-info}/RECORD +132 -110
- {reflex-0.4.9a2.dist-info → reflex-0.5.0.dist-info}/WHEEL +1 -1
- reflex/app.pyi +0 -149
- {reflex-0.4.9a2.dist-info → reflex-0.5.0.dist-info}/LICENSE +0 -0
- {reflex-0.4.9a2.dist-info → reflex-0.5.0.dist-info}/entry_points.txt +0 -0
reflex/vars.py
CHANGED
|
@@ -818,14 +818,20 @@ class Var:
|
|
|
818
818
|
if fn is not None:
|
|
819
819
|
if invoke_fn:
|
|
820
820
|
# invoke the function on left operand.
|
|
821
|
-
operation_name =
|
|
821
|
+
operation_name = (
|
|
822
|
+
f"{left_operand_full_name}.{fn}({right_operand_full_name})"
|
|
823
|
+
) # type: ignore
|
|
822
824
|
else:
|
|
823
825
|
# pass the operands as arguments to the function.
|
|
824
|
-
operation_name =
|
|
826
|
+
operation_name = (
|
|
827
|
+
f"{left_operand_full_name} {op} {right_operand_full_name}"
|
|
828
|
+
) # type: ignore
|
|
825
829
|
operation_name = f"{fn}({operation_name})"
|
|
826
830
|
else:
|
|
827
831
|
# apply operator to operands (left operand <operator> right_operand)
|
|
828
|
-
operation_name =
|
|
832
|
+
operation_name = (
|
|
833
|
+
f"{left_operand_full_name} {op} {right_operand_full_name}"
|
|
834
|
+
) # type: ignore
|
|
829
835
|
operation_name = format.wrap(operation_name, "(")
|
|
830
836
|
else:
|
|
831
837
|
# apply operator to left operand (<operator> left_operand)
|
|
@@ -1819,8 +1825,8 @@ class BaseVar(Var):
|
|
|
1819
1825
|
value = self._var_type(value)
|
|
1820
1826
|
setattr(state, self._var_name, value)
|
|
1821
1827
|
except ValueError:
|
|
1822
|
-
console.
|
|
1823
|
-
f"{self._var_name}: Failed conversion of {value} to '{self._var_type.__name__}'. Value not set.",
|
|
1828
|
+
console.debug(
|
|
1829
|
+
f"{type(state).__name__}.{self._var_name}: Failed conversion of {value} to '{self._var_type.__name__}'. Value not set.",
|
|
1824
1830
|
)
|
|
1825
1831
|
else:
|
|
1826
1832
|
setattr(state, self._var_name, value)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: reflex
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Web apps in pure Python.
|
|
5
5
|
Home-page: https://reflex.dev
|
|
6
6
|
License: Apache-2.0
|
|
@@ -15,13 +15,14 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
19
|
Requires-Dist: alembic (>=1.11.1,<2.0)
|
|
19
20
|
Requires-Dist: build (>=1.0.3,<2.0)
|
|
20
21
|
Requires-Dist: charset-normalizer (>=3.3.2,<4.0)
|
|
21
22
|
Requires-Dist: dill (>=0.3.8,<0.4)
|
|
22
23
|
Requires-Dist: distro (>=1.8.0,<2.0) ; sys_platform == "linux"
|
|
23
24
|
Requires-Dist: fastapi (>=0.96.0,<1.0)
|
|
24
|
-
Requires-Dist: gunicorn (>=20.1.0,<
|
|
25
|
+
Requires-Dist: gunicorn (>=20.1.0,<23.0)
|
|
25
26
|
Requires-Dist: httpx (>=0.25.1,<1.0)
|
|
26
27
|
Requires-Dist: jinja2 (>=3.1.2,<4.0)
|
|
27
28
|
Requires-Dist: packaging (>=23.1,<25.0)
|
|
@@ -71,7 +72,7 @@ Description-Content-Type: text/markdown
|
|
|
71
72
|
|
|
72
73
|
---
|
|
73
74
|
|
|
74
|
-
[English](https://github.com/reflex-dev/reflex/blob/main/README.md) | [简体中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_cn/README.md) | [繁體中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_tw/README.md) | [Türkçe](https://github.com/reflex-dev/reflex/blob/main/docs/tr/README.md) | [हिंदी](https://github.com/reflex-dev/reflex/blob/main/docs/in/README.md) | [Português (Brasil)](https://github.com/reflex-dev/reflex/blob/main/docs/pt/pt_br/README.md) | [Italiano](https://github.com/reflex-dev/reflex/blob/main/docs/it/README.md) | [Español](https://github.com/reflex-dev/reflex/blob/main/docs/es/README.md) | [한국어](https://github.com/reflex-dev/reflex/blob/main/docs/kr/README.md)
|
|
75
|
+
[English](https://github.com/reflex-dev/reflex/blob/main/README.md) | [简体中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_cn/README.md) | [繁體中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_tw/README.md) | [Türkçe](https://github.com/reflex-dev/reflex/blob/main/docs/tr/README.md) | [हिंदी](https://github.com/reflex-dev/reflex/blob/main/docs/in/README.md) | [Português (Brasil)](https://github.com/reflex-dev/reflex/blob/main/docs/pt/pt_br/README.md) | [Italiano](https://github.com/reflex-dev/reflex/blob/main/docs/it/README.md) | [Español](https://github.com/reflex-dev/reflex/blob/main/docs/es/README.md) | [한국어](https://github.com/reflex-dev/reflex/blob/main/docs/kr/README.md) | [日本語](https://github.com/reflex-dev/reflex/blob/main/docs/ja/README.md)
|
|
75
76
|
|
|
76
77
|
---
|
|
77
78
|
|
|
@@ -133,6 +134,8 @@ Let's go over an example: creating an image generation UI around [DALL·E](https
|
|
|
133
134
|
|
|
134
135
|
Here is the complete code to create this. This is all done in one Python file!
|
|
135
136
|
|
|
137
|
+
|
|
138
|
+
|
|
136
139
|
```python
|
|
137
140
|
import reflex as rx
|
|
138
141
|
import openai
|
|
@@ -161,6 +164,7 @@ class State(rx.State):
|
|
|
161
164
|
self.image_url = response.data[0].url
|
|
162
165
|
self.processing, self.complete = False, True
|
|
163
166
|
|
|
167
|
+
|
|
164
168
|
def index():
|
|
165
169
|
return rx.center(
|
|
166
170
|
rx.vstack(
|
|
@@ -185,14 +189,22 @@ def index():
|
|
|
185
189
|
height="100vh",
|
|
186
190
|
)
|
|
187
191
|
|
|
188
|
-
|
|
189
192
|
# Add state and page to the app.
|
|
190
193
|
app = rx.App()
|
|
191
194
|
app.add_page(index, title="Reflex:DALL-E")
|
|
192
195
|
```
|
|
193
196
|
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
194
201
|
## Let's break this down.
|
|
195
202
|
|
|
203
|
+
<div align="center">
|
|
204
|
+
<img src="docs/images/dalle_colored_code_example.png" alt="Explaining the differences between backend and frontend parts of the DALL-E app." width="900" />
|
|
205
|
+
</div>
|
|
206
|
+
|
|
207
|
+
|
|
196
208
|
### **Reflex UI**
|
|
197
209
|
|
|
198
210
|
Let's start with the UI.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
reflex/.templates/apps/blank/assets/favicon.ico,sha256=baxxgDAQ2V4-G5Q4S2yK5uUJTUGkv-AOWBQ0xd6myUo,4286
|
|
2
2
|
reflex/.templates/apps/blank/code/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
reflex/.templates/apps/blank/code/blank.py,sha256=
|
|
3
|
+
reflex/.templates/apps/blank/code/blank.py,sha256=oKnsBBZM1-_RFAuwGKgfiCzgsrHlN_m_XP0-Fpnld7k,926
|
|
4
4
|
reflex/.templates/apps/demo/.gitignore,sha256=E0XWl5WEAeQrw8_bgtaUHU1dtao3PqnkQw2CFg1_HzA,32
|
|
5
5
|
reflex/.templates/apps/demo/assets/favicon.ico,sha256=baxxgDAQ2V4-G5Q4S2yK5uUJTUGkv-AOWBQ0xd6myUo,4286
|
|
6
6
|
reflex/.templates/apps/demo/assets/github.svg,sha256=3iQ3eRL-89bBiXmL0joQc_c8ag_tf8jPZYe4yygGnd4,1475
|
|
@@ -8,11 +8,11 @@ reflex/.templates/apps/demo/assets/icon.svg,sha256=3EnRAihBIXdNZIf5cuFystIyoV6en
|
|
|
8
8
|
reflex/.templates/apps/demo/assets/logo.svg,sha256=f_YiqcSiX3jtK3j43YmEZK6z9f-KPCXcZN6vU71wgeQ,5403
|
|
9
9
|
reflex/.templates/apps/demo/assets/paneleft.svg,sha256=yXj0tH-VpnQaEwriXmb9ar2HgeXcGU5W6d4buKDUkA4,807
|
|
10
10
|
reflex/.templates/apps/demo/code/__init__.py,sha256=kYpJ6_dYllTemD8RF6s_LH8zL10PuK4Zuogutt1oeAI,32
|
|
11
|
-
reflex/.templates/apps/demo/code/demo.py,sha256=
|
|
11
|
+
reflex/.templates/apps/demo/code/demo.py,sha256=pm6jro3v-fKbvkWvKDm2CAW2OLa18vd5oaSCO_sfxPU,2927
|
|
12
12
|
reflex/.templates/apps/demo/code/pages/__init__.py,sha256=iHhkpNuJcB_j9A54SSpIcbWAt89PpoLbNIWCs0Sk2ac,194
|
|
13
13
|
reflex/.templates/apps/demo/code/pages/chatapp.py,sha256=1LQt8idpMfryzvblpg2iaOwhcLIXhUO9yVrt0KmFWCg,706
|
|
14
|
-
reflex/.templates/apps/demo/code/pages/datatable.py,sha256=
|
|
15
|
-
reflex/.templates/apps/demo/code/pages/forms.py,sha256=
|
|
14
|
+
reflex/.templates/apps/demo/code/pages/datatable.py,sha256=7h7uOdMs93YGHjcUPUqhqjz0c2ZFhD-1KulVuQa6_q4,10906
|
|
15
|
+
reflex/.templates/apps/demo/code/pages/forms.py,sha256=OHSVWn39Rfx2F2xC6l65mjw-UtgUEbO7n5DxmApPLhw,8381
|
|
16
16
|
reflex/.templates/apps/demo/code/pages/graphing.py,sha256=zb-gL9N5Z1bKAL68ezdFEjmAoX1Hdil8dk71_WS2Yp0,8519
|
|
17
17
|
reflex/.templates/apps/demo/code/pages/home.py,sha256=M67eMx6OdnNpscKV7al4vAeMCvLvrSlkyRRiimVpBRA,1822
|
|
18
18
|
reflex/.templates/apps/demo/code/sidebar.py,sha256=aTw1EycmLNODOSzxXJ7egHiITE7bJYV7nkLzJrAFOdI,4722
|
|
@@ -46,7 +46,7 @@ reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=jl8HEaDdJb
|
|
|
46
46
|
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
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
|
-
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=
|
|
49
|
+
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=uZMIvtL94OZh6h8zsduv3ox6EXnnYgfVXB_5moOe86E,761
|
|
50
50
|
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=Vl2pKWItPjYSSVvPGRZHM5Oi177ijl-RxUjxkyeMXwc,3790
|
|
51
51
|
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=cdRQR4cx0OFHUY060k1AdsPpK7BNUV--NzsC9HdH4l8,37
|
|
52
52
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
@@ -58,21 +58,22 @@ reflex/.templates/web/postcss.config.js,sha256=JR7N3UZyyc9GdUfj3FNd4ArSEp3ybn565
|
|
|
58
58
|
reflex/.templates/web/styles/tailwind.css,sha256=zBp60NAZ3bHTLQ7LWIugrCbOQdhiXdbDZjSLJfg6KOw,59
|
|
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
|
+
reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
|
|
61
62
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
62
|
-
reflex/.templates/web/utils/
|
|
63
|
-
reflex/
|
|
64
|
-
reflex/__init__.
|
|
63
|
+
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
64
|
+
reflex/.templates/web/utils/state.js,sha256=jXU8S3potQ97cqaFjVE90I4fPPCvIxIJjqeQWDwRMP8,22511
|
|
65
|
+
reflex/__init__.py,sha256=fzBYk8qUFWkUlD3U-97xEAdv9N1tTMRmAzQat_9cZW0,5831
|
|
66
|
+
reflex/__init__.pyi,sha256=y4jPgnR9f6xOpFAK9-WM7p-T05Y5jGFYkx7Thdok_3I,7791
|
|
65
67
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
66
68
|
reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
|
|
67
|
-
reflex/app.py,sha256=
|
|
68
|
-
reflex/
|
|
69
|
-
reflex/
|
|
70
|
-
reflex/base.py,sha256=oVOWMxWOSc96Jon0R4fWrSt0PkMqoPhaM0PJGoK147o,4250
|
|
69
|
+
reflex/app.py,sha256=psx2__nr6QzQWYe_w1uY3J6bBs445asdtmf-dDq-IHM,46314
|
|
70
|
+
reflex/app_module_for_backend.py,sha256=_QFY5tZYO44C9h_yhGLn0LR27GXsuniBWAJqd80oQBw,1152
|
|
71
|
+
reflex/base.py,sha256=C9ziiavw71M46lAJK2UBbmoPDUKYNP1mw5X-CKmN1bw,4213
|
|
71
72
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
72
|
-
reflex/compiler/compiler.py,sha256=
|
|
73
|
+
reflex/compiler/compiler.py,sha256=_ywbGHWnyM6tqPV-oriyBhFkblm5jQSJ6UuZT0LtkBo,17455
|
|
73
74
|
reflex/compiler/templates.py,sha256=TKjq2cTtiwNZ_zIYNSTA6vG3CU2EoyrFTfkq8zhAL68,4344
|
|
74
|
-
reflex/compiler/utils.py,sha256
|
|
75
|
-
reflex/components/__init__.py,sha256=
|
|
75
|
+
reflex/compiler/utils.py,sha256=-lAG69cEm2pRke3cfRIRw52YCt3RK4HJkfUNwsg6dHQ,13274
|
|
76
|
+
reflex/components/__init__.py,sha256=SXSC9CkWnfovlj-sarVtNfSvu29xuxKV37r1cvN6h2E,552
|
|
76
77
|
reflex/components/base/__init__.py,sha256=regtioYXwTxqWuf4Z7H51rjn2Vs1Kr1Fh_i4s-W1m0A,325
|
|
77
78
|
reflex/components/base/app_wrap.py,sha256=_LPpPO8c8M6dyEsyoahJaDKk-zEK4qvR_lSnaLpqUKM,573
|
|
78
79
|
reflex/components/base/app_wrap.pyi,sha256=SIWmqdCK9fWrYLNJkxalrbykILyUs29O28TSt7-QrsU,2890
|
|
@@ -103,8 +104,8 @@ reflex/components/chakra/datadisplay/divider.py,sha256=sVxmP_VBJBsK50uuYOTqmChls
|
|
|
103
104
|
reflex/components/chakra/datadisplay/divider.pyi,sha256=OwSfEuSY7eAkuR5jsB3Hu7PcFeRkRqIrlakVzRGUO08,3934
|
|
104
105
|
reflex/components/chakra/datadisplay/keyboard_key.py,sha256=twR7opuIdsWBKQJYIC8WVxMgWTufTqQmWOWGVvSAX0c,180
|
|
105
106
|
reflex/components/chakra/datadisplay/keyboard_key.pyi,sha256=DCxQr8BVE4_IS8-OpiCJSnDtBV_U30Rk0x_m4__6hpE,3251
|
|
106
|
-
reflex/components/chakra/datadisplay/list.py,sha256=
|
|
107
|
-
reflex/components/chakra/datadisplay/list.pyi,sha256=
|
|
107
|
+
reflex/components/chakra/datadisplay/list.py,sha256=v6oQIKaLuwUBfH7mnaHi6Q52EUPAI-0hc0i-rUq4gfM,1484
|
|
108
|
+
reflex/components/chakra/datadisplay/list.pyi,sha256=EWJbeI4AflftTYkrgwIjSZqabpIOKTliU1J5k4S5IJg,12991
|
|
108
109
|
reflex/components/chakra/datadisplay/stat.py,sha256=vIIemV6DSusZ7Rh73u2GK1VJaVAIDniNASWjJQcWq_g,2149
|
|
109
110
|
reflex/components/chakra/datadisplay/stat.pyi,sha256=Hpv8ISsC7O8Sb7t21RiOAEFXM1qylKhdHg9WmU2qNCY,17461
|
|
110
111
|
reflex/components/chakra/datadisplay/table.py,sha256=nlbBAK7WfIsauuiTDTtVDi2wVTyqQd7BGpKC9RPtnvM,9122
|
|
@@ -112,7 +113,7 @@ reflex/components/chakra/datadisplay/table.pyi,sha256=hgMv6e0CAY24VSK6CezD_CKRyt
|
|
|
112
113
|
reflex/components/chakra/datadisplay/tag.py,sha256=0UXs_tBP-k5IPQzXCYe1WuWCH8TJ89PLHgF2HVQn4CU,2294
|
|
113
114
|
reflex/components/chakra/datadisplay/tag.pyi,sha256=AJ6zCV5xo6CQBn2pBZmkGXGUKN5VueYNwvmWmYp0oRM,15734
|
|
114
115
|
reflex/components/chakra/disclosure/__init__.py,sha256=x3d_1fLJVoxNyabvcB_Ik9CiFlALbHE6pzcfSrEfP_M,384
|
|
115
|
-
reflex/components/chakra/disclosure/accordion.py,sha256=
|
|
116
|
+
reflex/components/chakra/disclosure/accordion.py,sha256=kEYXTdBujmEgcF50nOTIEkxYTWpyP-mTIqvV1Nt--bk,3510
|
|
116
117
|
reflex/components/chakra/disclosure/accordion.pyi,sha256=XWDkky9nmwN14fLhcdIZo1UsLD4QoQ9vMQ4afzEtPCQ,15803
|
|
117
118
|
reflex/components/chakra/disclosure/tabs.py,sha256=u05ZQwgWU4dZ7fZ5h6hpj75gt_yASO8tT5b8wxgVWUw,3295
|
|
118
119
|
reflex/components/chakra/disclosure/tabs.pyi,sha256=JsuK9_ZHTSGFEaBR-jYLrDsEP_D7kaDwviZ2c0jwIko,18525
|
|
@@ -158,7 +159,7 @@ reflex/components/chakra/forms/numberinput.pyi,sha256=vM0cxbbKgaH8EtIBKCElEo9TE9
|
|
|
158
159
|
reflex/components/chakra/forms/password.py,sha256=rjFELopI5j5exce9QZJqf4hSIp5aW44DUbpbpfiB24w,256
|
|
159
160
|
reflex/components/chakra/forms/password.pyi,sha256=7fVBY1OjuJKJZiOIZrDgjBUBMzg1UCQGWlRsPpVr0Qs,5834
|
|
160
161
|
reflex/components/chakra/forms/pininput.py,sha256=xE1sr1BRIv7gLc6mpiZU7RhWz7vrDqBRTWcCCaZnfr8,6503
|
|
161
|
-
reflex/components/chakra/forms/pininput.pyi,sha256=
|
|
162
|
+
reflex/components/chakra/forms/pininput.pyi,sha256=iGhgp2XjZ74YM0jkdW-jGsZJflunfWwhD6co_me4GgI,9369
|
|
162
163
|
reflex/components/chakra/forms/radio.py,sha256=WLTyDrWYq-u6fVviURs8_oKrn8q-CGq2v40x3qC3lcA,3172
|
|
163
164
|
reflex/components/chakra/forms/radio.pyi,sha256=zLWvegKDJFCLFi-kPfjQvm0xVHl3GVoBAsqumkI_kpI,8410
|
|
164
165
|
reflex/components/chakra/forms/rangeslider.py,sha256=Bvao4GIOBpeEZ171Uj6n5xyvCujnDsQCyqYft5x6Ivo,4543
|
|
@@ -197,7 +198,7 @@ reflex/components/chakra/layout/wrap.pyi,sha256=7x7wKJ3R1sS4TOSydncFiNID_wujS7-7
|
|
|
197
198
|
reflex/components/chakra/media/__init__.py,sha256=hVpGoLNC4OTGRW0MFzR1Qao_-8j65fzZHTO_CYddxgs,190
|
|
198
199
|
reflex/components/chakra/media/avatar.py,sha256=RFSoiX450TBZxcgPI7wzm36zwdzheDRX4SN_reNt_QA,1668
|
|
199
200
|
reflex/components/chakra/media/avatar.pyi,sha256=wKc1PKwf-QEc1C-zteGJDOe3JHtlwCxHP05XMbLtKT4,10445
|
|
200
|
-
reflex/components/chakra/media/icon.py,sha256=
|
|
201
|
+
reflex/components/chakra/media/icon.py,sha256=JJH8qJog-oMfXM0MUImin2d_5EnVURgYKWUgWmmi8IE,2462
|
|
201
202
|
reflex/components/chakra/media/icon.pyi,sha256=kEK65qA28MzLrti9gcKFvDifIMoxmHOH79yIZ0CmzPc,6271
|
|
202
203
|
reflex/components/chakra/media/image.py,sha256=LnwHKkhhHlmFB1r9BEAAlk8pQzO0uXl4PCxE0cwMPYs,2400
|
|
203
204
|
reflex/components/chakra/media/image.pyi,sha256=hAZOf41BYjw1J0wiI6gGaftYqa70XYyTWiC6ATyxOPk,5423
|
|
@@ -232,27 +233,27 @@ reflex/components/chakra/typography/span.py,sha256=2DbW5DB27ijtTeugSDUVp3nQ64mrG
|
|
|
232
233
|
reflex/components/chakra/typography/span.pyi,sha256=itDe7RpjJN_K_9pZ7n_U9qlrTshGejv9lh5plvh3DCU,3372
|
|
233
234
|
reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
|
|
234
235
|
reflex/components/chakra/typography/text.pyi,sha256=FzqNtf0NUkGmRLrazSyfKHqznJjz_KCryU-2sRghZ0M,3596
|
|
235
|
-
reflex/components/component.py,sha256=
|
|
236
|
-
reflex/components/core/__init__.py,sha256=
|
|
236
|
+
reflex/components/component.py,sha256=UDH3IUdv4lWLi3oe4iIVJCSTG5a7L7MkdchhDxdXBbM,75744
|
|
237
|
+
reflex/components/core/__init__.py,sha256=EUhgNfO2NfQZ6HoeWJcF-INb4WpQecrYGKAUTLsg1R8,857
|
|
237
238
|
reflex/components/core/banner.py,sha256=DxYh4ORFIQlPPxvT-gudF0A8yj22oy6D_0IldTVHuZU,5943
|
|
238
239
|
reflex/components/core/banner.pyi,sha256=PPS1GJLp5uyD1h6mI0Fs-IKf9w4l7qG50rmkSA_HVno,17164
|
|
239
240
|
reflex/components/core/client_side_routing.py,sha256=mdZsGuc1V9qvOE0TaLEnXmXo0qHuPjc_dZrSjnlZsqc,1873
|
|
240
241
|
reflex/components/core/client_side_routing.pyi,sha256=7Zel95b6tqfW0ulIJEHh9fmG_6av9eNeNjtORZ73jjM,6264
|
|
241
242
|
reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
|
|
242
|
-
reflex/components/core/cond.py,sha256=
|
|
243
|
-
reflex/components/core/debounce.py,sha256=
|
|
244
|
-
reflex/components/core/debounce.pyi,sha256=
|
|
245
|
-
reflex/components/core/foreach.py,sha256=
|
|
246
|
-
reflex/components/core/html.py,sha256=
|
|
243
|
+
reflex/components/core/cond.py,sha256=bXip53gCUoZGLDgKgi6YFjJMIwPAos8Smb8SoOfzgCk,6005
|
|
244
|
+
reflex/components/core/debounce.py,sha256=VfK_QDzd7kriLYp5I3NsHujtXYJiciaNG2omYZIkEvM,4888
|
|
245
|
+
reflex/components/core/debounce.pyi,sha256=VGBX3hsRQo3xFP0xkYJuy25rDQ5rxRIk58mCV34fHSI,4216
|
|
246
|
+
reflex/components/core/foreach.py,sha256=eVaq8MflcNFri-Munx3XLk95AYihpQBX3n0ClMd23Ag,4334
|
|
247
|
+
reflex/components/core/html.py,sha256=3TjZweaxqGnma5l9UIEzmE5bsl0VSS6ixn8xD_xu2W0,1284
|
|
247
248
|
reflex/components/core/html.pyi,sha256=6lqiYm9XUcRuR1kW6Ken8GAyf63-f5R5Swrli9B0eWg,6616
|
|
248
249
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
249
|
-
reflex/components/core/match.py,sha256=
|
|
250
|
+
reflex/components/core/match.py,sha256=2ZhRWrRcgJ9zlswXgrtcUyBBMAN2pSbwuV_9tKU1rCk,9484
|
|
250
251
|
reflex/components/core/responsive.py,sha256=ycKULWxCRiUC_eWf_B1nhk9K0JXx5Uxw7acwPgWO8R4,1907
|
|
251
|
-
reflex/components/core/upload.py,sha256=
|
|
252
|
-
reflex/components/core/upload.pyi,sha256=
|
|
252
|
+
reflex/components/core/upload.py,sha256=hLAMxSsMtrmW_oIDChzWFQiSmhKaXg94dV65NOCI_us,10193
|
|
253
|
+
reflex/components/core/upload.pyi,sha256=IM7ZnriCs-hzFl4-0IdT2P4QNFvoJsDcr-VxkvnUyeo,17147
|
|
253
254
|
reflex/components/datadisplay/__init__.py,sha256=9HXaq0tuYBDm06AeWYmi1ywwNBsFEnbSe3zlVNCw7wk,357
|
|
254
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
255
|
-
reflex/components/datadisplay/code.pyi,sha256=
|
|
255
|
+
reflex/components/datadisplay/code.py,sha256=z-F0WgV9oF8sHmg_D5PT2aM7fy-rkvwh_sHAOS9P5Jg,11363
|
|
256
|
+
reflex/components/datadisplay/code.pyi,sha256=aRQIIJfbpPHlYxjl6bDKhyX9dBFRKu-DWu606kozRrQ,31213
|
|
256
257
|
reflex/components/datadisplay/dataeditor.py,sha256=WdeEGRVlC1W2WnPn4zKhmyoaKTqgowqiiLg8zeuHTGw,12632
|
|
257
258
|
reflex/components/datadisplay/dataeditor.pyi,sha256=e451O8T16GDPd01W5wPeIYynFO16keYW5EcSpOgF0m0,10485
|
|
258
259
|
reflex/components/datadisplay/logo.py,sha256=fdQ9gDxBln8MDRDN3hP4JkF6BhttnD6GhgGRaBmu0EU,2562
|
|
@@ -266,8 +267,8 @@ reflex/components/el/element.pyi,sha256=31AX-CCTBocTunCaAThKqga3tNU03lPsmevbT4xO
|
|
|
266
267
|
reflex/components/el/elements/__init__.py,sha256=WYfDTRAgm47AcIf2ePjzVHKOVEKDW1IpyQ5NG664sRA,3529
|
|
267
268
|
reflex/components/el/elements/base.py,sha256=7o_ifyF0Hq_zRpF5-WbiXWP7cgsiXju1jllUPnrOK8w,1982
|
|
268
269
|
reflex/components/el/elements/base.pyi,sha256=_40MCqre_XjD-rRoVXCC-SgyXTBOZqHkcCA_fURwlb4,6340
|
|
269
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
270
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
270
|
+
reflex/components/el/elements/forms.py,sha256=vi0bUiU4LEojnrhyiEi-aP27onG7mtke-CfZg-40rRQ,20103
|
|
271
|
+
reflex/components/el/elements/forms.pyi,sha256=mXAZDEYsopF_9EDqIQIaAyAtoJGaP9Yiav6avfzF7nY,99555
|
|
271
272
|
reflex/components/el/elements/inline.py,sha256=0NozHMAyJaaUCRbmjX0MqMRmRYYmPk2EOCtKAr6SIE8,3610
|
|
272
273
|
reflex/components/el/elements/inline.pyi,sha256=tJDkeoqkxJ8OID7DaVs5vu7OFecBQG1FGNE1zZSzTLw,164607
|
|
273
274
|
reflex/components/el/elements/media.py,sha256=leBasBQ4NS4xRxTY7U3s7T8CdiFlTO6n3lc8v-7lhdM,7929
|
|
@@ -289,11 +290,11 @@ reflex/components/gridjs/datatable.py,sha256=jinq5J8CIcmdbMynVLc9HAPCAVhozsN_gjX
|
|
|
289
290
|
reflex/components/gridjs/datatable.pyi,sha256=e-ISnxeBGD8ia-yk0fBVo-rJoyYOb3kxfk3AelZE3qo,7053
|
|
290
291
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
291
292
|
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
292
|
-
reflex/components/lucide/icon.py,sha256=
|
|
293
|
-
reflex/components/lucide/icon.pyi,sha256=
|
|
293
|
+
reflex/components/lucide/icon.py,sha256=L-Nc9AGk0neNlZqe_RofhTgOrSfmmhKO1ZTuMsgNdsU,34077
|
|
294
|
+
reflex/components/lucide/icon.pyi,sha256=1IxHAIgJG0dG49aHmEptBcJiOb9_diiyt6q1nUcKrD0,37918
|
|
294
295
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
295
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
296
|
-
reflex/components/markdown/markdown.pyi,sha256=
|
|
296
|
+
reflex/components/markdown/markdown.py,sha256=nPQm8P5VfKhXuWM_o-2kYrEF9U_aa-tr9no7OoCwf5M,10867
|
|
297
|
+
reflex/components/markdown/markdown.pyi,sha256=E-SG4gu4LSEprKixt9d8t2yS6e0WDHD2J2jnSdsJE7I,5100
|
|
297
298
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
298
299
|
reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
|
|
299
300
|
reflex/components/moment/__init__.py,sha256=XSYjQyEDvcSyLhS0uaoBWlLSp-whmqCkhvXh7bpotAY,79
|
|
@@ -313,97 +314,115 @@ reflex/components/plotly/plotly.py,sha256=GVExqrdSIfXngDFZATjjkomrwx97UM8F2W56rd
|
|
|
313
314
|
reflex/components/plotly/plotly.pyi,sha256=FrY0iQX7elz2ZWKW-DXdg8cz_v7bB7QqkZkpUZ1-oj8,6865
|
|
314
315
|
reflex/components/radix/__init__.py,sha256=5BGBr3z1_GcgCbNXUqAlK5AR13J7fxzFn4Wj-nTDNa4,112
|
|
315
316
|
reflex/components/radix/primitives/__init__.py,sha256=wkbCDG6q2MuZobhD6FeH9PgLXKZhb6cImguCV4n-aGs,214
|
|
316
|
-
reflex/components/radix/primitives/accordion.py,sha256=
|
|
317
|
-
reflex/components/radix/primitives/accordion.pyi,sha256=
|
|
317
|
+
reflex/components/radix/primitives/accordion.py,sha256=aOj_p-MpKq4vcRgVpDyO6bOWXIbKbSAycfGyHP9iOZs,16159
|
|
318
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=GtWMMaWHXW0kjFmXJCWz37rmhq9AnlyIcrj3JovwmjA,37999
|
|
318
319
|
reflex/components/radix/primitives/base.py,sha256=s3OX4V2pNl6AQ3H9rz-pkE-2TNuNrqj0Mn2mOItF0eM,869
|
|
319
320
|
reflex/components/radix/primitives/base.pyi,sha256=_SqXWZfCB80_VHW-jO33WhoRunUpiUcUIxziG9Fb2fw,6478
|
|
320
321
|
reflex/components/radix/primitives/drawer.py,sha256=Y4XDgSECoKnOopHiech3uXFhZPZOB3D6iQoicTDEuDc,8660
|
|
321
322
|
reflex/components/radix/primitives/drawer.pyi,sha256=n6lRm9UvTc3iWdXFZsmDVPvzZGlWmrvnaUEHEGChub8,34484
|
|
322
|
-
reflex/components/radix/primitives/form.py,sha256=
|
|
323
|
-
reflex/components/radix/primitives/form.pyi,sha256=
|
|
324
|
-
reflex/components/radix/primitives/progress.py,sha256=
|
|
325
|
-
reflex/components/radix/primitives/progress.pyi,sha256=
|
|
326
|
-
reflex/components/radix/primitives/slider.py,sha256=
|
|
327
|
-
reflex/components/radix/primitives/slider.pyi,sha256=
|
|
323
|
+
reflex/components/radix/primitives/form.py,sha256=eocMNACMNtEWCZG6XnwHrLfRSHGYNAtusAT8KqSgAA4,4964
|
|
324
|
+
reflex/components/radix/primitives/form.pyi,sha256=dqzqclVIP612jWCnxJP99JN0y_CfQf4FKbMlZGM-1rY,48138
|
|
325
|
+
reflex/components/radix/primitives/progress.py,sha256=H9Xz_HEc5lXJbRcr0G3S9r9zb6XiVrR1f2ZWwUwC-8s,4160
|
|
326
|
+
reflex/components/radix/primitives/progress.pyi,sha256=2_G6T8AeBo2InfM7i4kRAWIzBz2bXqNR2-YnVunlKE4,22874
|
|
327
|
+
reflex/components/radix/primitives/slider.py,sha256=ZJClHhTyR43z1gufN8xgojVZ_cy6quNg3Nz7FmBqYEU,5198
|
|
328
|
+
reflex/components/radix/primitives/slider.pyi,sha256=mgVdvP64yRKgLe_Zxi1z2Q5o7Bgole94NyG08Lt7HCc,16877
|
|
328
329
|
reflex/components/radix/themes/__init__.py,sha256=G7nHi3YqfM17fVE_XycJYapjB6en3wCcuwFz6xci45Q,292
|
|
329
|
-
reflex/components/radix/themes/base.py,sha256=
|
|
330
|
-
reflex/components/radix/themes/base.pyi,sha256=
|
|
331
|
-
reflex/components/radix/themes/color_mode.py,sha256=
|
|
332
|
-
reflex/components/radix/themes/color_mode.pyi,sha256=
|
|
333
|
-
reflex/components/radix/themes/components/__init__.py,sha256=
|
|
330
|
+
reflex/components/radix/themes/base.py,sha256=RepABp4uqffOZhzmFd210BgMcyXmsQrWTQXKqyjR5o8,8294
|
|
331
|
+
reflex/components/radix/themes/base.pyi,sha256=zAo0VQcLpSU4sxGT0DX6TaUF0IAjIei8IM04IgZFsHE,26971
|
|
332
|
+
reflex/components/radix/themes/color_mode.py,sha256=EREBySHvdxViFxXIggySSZeDkfGe4bs1XWmtGwIBRs0,5543
|
|
333
|
+
reflex/components/radix/themes/color_mode.pyi,sha256=4vL-az_AAulTiKOyY0_H3EyFMR_pxAB-EN50EEz7Oyc,22145
|
|
334
|
+
reflex/components/radix/themes/components/__init__.py,sha256=YNqd2CzuNp794X_12iVLC2b8HRDiyIDuwZWiS_bu620,2440
|
|
334
335
|
reflex/components/radix/themes/components/alert_dialog.py,sha256=QNxRfqZZQb5oYG1or68cYOYH5NaSuy3RK03QrLyfhuA,3267
|
|
335
336
|
reflex/components/radix/themes/components/alert_dialog.pyi,sha256=gVA8HRj4a_BmioWMIK8u6Xo4jO8QtwOcn7rKJtnmTlk,24434
|
|
336
337
|
reflex/components/radix/themes/components/aspect_ratio.py,sha256=jNoNtYkUYxhbBT90WjQYyuDPCpZFq4linlBvu4Qz3n4,400
|
|
337
338
|
reflex/components/radix/themes/components/aspect_ratio.pyi,sha256=BrAbHWtv9nJFq_A0pdz5k4KdE2mKFHBJhCKVXK0pmXk,3640
|
|
338
339
|
reflex/components/radix/themes/components/avatar.py,sha256=cwSbajTICFi_jnLBRP8-T_IKaXFKF9ZQj5UbpQvUA0E,989
|
|
339
340
|
reflex/components/radix/themes/components/avatar.pyi,sha256=u9y5XAfe5td14EGu38mi9CDPLgIwZgxIJbaGxWQRsWQ,6562
|
|
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=
|
|
341
|
+
reflex/components/radix/themes/components/badge.py,sha256=5EKkbBWGztM_tqX9zMb3_z8rToeK6uFFBsJv_nohwyc,821
|
|
342
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=TpfXNPmc8hGQxVtK_JVAVYGS4lI8Ypv57KY7gwfptw8,9347
|
|
343
|
+
reflex/components/radix/themes/components/button.py,sha256=mzkU1JLekKuthh0vMwSt1g7jplEMbntxQDZjBsKdVqk,1125
|
|
344
|
+
reflex/components/radix/themes/components/button.pyi,sha256=2TUn-EiPvCuNwMdx57-E5_BS-6J-DX4QUxmrwIFE7bM,11939
|
|
344
345
|
reflex/components/radix/themes/components/callout.py,sha256=pujKzpsi-GppN5ZirygY84yKbW7Cbkuu5z5cfwA2qmU,2378
|
|
345
346
|
reflex/components/radix/themes/components/callout.pyi,sha256=v3O46SbwhgK_z0yuEweaK86SFF3AhxtaCjkauDOhL_w,38710
|
|
346
347
|
reflex/components/radix/themes/components/card.py,sha256=z0JcGi80Va24jE5NeGHCNnGrtW_zmFu5z38PlTwG8Tk,659
|
|
347
348
|
reflex/components/radix/themes/components/card.pyi,sha256=deWd3lkVqJZcpwHwct4LOAx2Xh5rMSgVBljZkJT6LEA,7200
|
|
348
349
|
reflex/components/radix/themes/components/checkbox.py,sha256=KFwGAvPXb1elNmjJZYhA2EuK4bI3CMN5TB1V-zOI7cQ,4679
|
|
349
350
|
reflex/components/radix/themes/components/checkbox.pyi,sha256=NEEbJq4-dxh6VnWRjP0TL5wfpw9bl7UPQ2CskeRTqEI,20877
|
|
351
|
+
reflex/components/radix/themes/components/checkbox_cards.py,sha256=PWAM-f1x0z8PLGAMu70pr1t19AI2MJv23VcHIotNp60,1301
|
|
352
|
+
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=kHyK8xsT1t8n3OXiSIROn_VHxBFtJzX6PW4mdGY1OEU,9591
|
|
353
|
+
reflex/components/radix/themes/components/checkbox_group.py,sha256=Gx180QlVCr5rUoq2sxCFO5c1moYwzV8cuui1qqjHbwY,1024
|
|
354
|
+
reflex/components/radix/themes/components/checkbox_group.pyi,sha256=JAklxT_5sxBy5FE2nwtf6yIqLkFDok9UySg5r3VmTCY,9012
|
|
350
355
|
reflex/components/radix/themes/components/context_menu.py,sha256=ReofwS0fIRjhyFnfrnv-IRB3nyCW0U_0An1TP5a1GOk,5049
|
|
351
356
|
reflex/components/radix/themes/components/context_menu.pyi,sha256=Z053-qFpuW38NpFzuik6ltiaUJJbUAdEdQSDY_97k_s,31192
|
|
357
|
+
reflex/components/radix/themes/components/data_list.py,sha256=4osySv8GweMTomUs5upkXdqQg8ORxUDDZ-_IB6HaUIY,1508
|
|
358
|
+
reflex/components/radix/themes/components/data_list.pyi,sha256=gdk4lPTreUhBcfwHjOLwojTe6rvjxx1vuZu94dVrPPE,15403
|
|
352
359
|
reflex/components/radix/themes/components/dialog.py,sha256=DsvATCzPVshYyZssl6yxfDj4Y8yfZPMSFJQG3zUbffg,2600
|
|
353
360
|
reflex/components/radix/themes/components/dialog.pyi,sha256=Uns0-9zljL41ecgvxrDLjx3rTnS4-ylfEmHLOe3dfZk,24895
|
|
354
361
|
reflex/components/radix/themes/components/dropdown_menu.py,sha256=l4aVffoCdvezVjjXiMrBebMtFhEXmpTMUdZK28lsb8I,11256
|
|
355
362
|
reflex/components/radix/themes/components/dropdown_menu.pyi,sha256=T9dvKSPEtFTEnaZ93o5sIZDpzCB0N_hbmdpTbYS_Sjk,37901
|
|
356
363
|
reflex/components/radix/themes/components/hover_card.py,sha256=H8Utf1ox86YFYr-I9MYwD5iUzzpYRO2rAgB0k5TvnN8,2405
|
|
357
364
|
reflex/components/radix/themes/components/hover_card.pyi,sha256=4uS8yhPJbWT5no8-pPGt9XJMp7iymqoSj7L9uu1yy9Q,17744
|
|
358
|
-
reflex/components/radix/themes/components/icon_button.py,sha256=
|
|
359
|
-
reflex/components/radix/themes/components/icon_button.pyi,sha256=
|
|
365
|
+
reflex/components/radix/themes/components/icon_button.py,sha256=4qDNeP29oBue0VijQfMlgbck0plw1T1SkM3-tORjF4k,2940
|
|
366
|
+
reflex/components/radix/themes/components/icon_button.pyi,sha256=mFl1kphrmVrlmGmh_bdlhc6dutGsR1gLl6n0liMyaMg,12126
|
|
360
367
|
reflex/components/radix/themes/components/inset.py,sha256=MEYMjiqCkUmAXyGONuwvqmnpEZ4ka1RL_rhCN3hUeR0,1015
|
|
361
368
|
reflex/components/radix/themes/components/inset.pyi,sha256=iO8k-rNQtsqtnCl7KRa2QnTRJ_NZ-7vIBep9zqCPY9Q,7889
|
|
362
369
|
reflex/components/radix/themes/components/popover.py,sha256=rUfOqbJEBTPjJHlKxbQ6_067rae4zByWHlMSEXwGB68,3177
|
|
363
370
|
reflex/components/radix/themes/components/popover.pyi,sha256=DnSFL0s4WrQd9zCRqwS_YZ1OHu_Uavvvc6I0s6RPIsw,17404
|
|
364
|
-
reflex/components/radix/themes/components/
|
|
371
|
+
reflex/components/radix/themes/components/progress.py,sha256=82hnLnSwqlPeuBYXDz20bzWmGOpj1DjJQz4VRwyMrMY,1598
|
|
372
|
+
reflex/components/radix/themes/components/progress.pyi,sha256=Uhc300UzTX3Gx-Voj6IHafiCRNquED97zZ3E4bw7PqA,6676
|
|
373
|
+
reflex/components/radix/themes/components/radio.py,sha256=LpqiTO5mg4XtAvhw6XHSL2sMQQImLmDqlzV4jGy94zU,762
|
|
374
|
+
reflex/components/radix/themes/components/radio.pyi,sha256=QxJt1_yo5aU2nLuBiIMzoH5pp2XNGo4_-B_A_8-bYhI,5924
|
|
375
|
+
reflex/components/radix/themes/components/radio_cards.py,sha256=fmBfncgJ5mh5ozOZZRXGWQs-vV_gJaLzQBgkPf5kYJw,1250
|
|
376
|
+
reflex/components/radix/themes/components/radio_cards.pyi,sha256=hEkzd42LpbtIHD2JFcjsdcCnw0jJjbeZ3wPwz2UXHlI,9561
|
|
377
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=jzKQrz-0TVn4Zyf0d95bDny0tsNNCkqnmZao1BxoRmI,6233
|
|
365
378
|
reflex/components/radix/themes/components/radio_group.pyi,sha256=qEdhf8eWUntn-H74k_10uaaEcAMfKXlz4Kl6G8guy7A,24106
|
|
366
379
|
reflex/components/radix/themes/components/scroll_area.py,sha256=0Oc5K7sycSH_X8HbVI2A_FS8AddoFXcwvH_YZpsjTkc,920
|
|
367
380
|
reflex/components/radix/themes/components/scroll_area.pyi,sha256=jtpiX8b4LZWZwpUi4jElgkBfwOLIDgjnOSm-W88oaXc,4427
|
|
381
|
+
reflex/components/radix/themes/components/segmented_control.py,sha256=ZkxEgr6xrjnyqC5kn9q9ZTzd1iANQtlAZBK8Mu7r2RY,1292
|
|
382
|
+
reflex/components/radix/themes/components/segmented_control.pyi,sha256=M82L1yo6-DwT_eM0TX53YZhcIJ2gak3GhIlKvRLrGPw,9507
|
|
368
383
|
reflex/components/radix/themes/components/select.py,sha256=otgJdSdoE9VVv2z3PgtKJmDY_Ln6wPJlCz2ixFp9mDY,8028
|
|
369
384
|
reflex/components/radix/themes/components/select.pyi,sha256=u5bmgAuFqV1A9_avfUZ9uYxWi8y0eqqM7-H_LVKEyaw,45123
|
|
370
385
|
reflex/components/radix/themes/components/separator.py,sha256=si-4AZAKvjQwo6DCiHKdND7pK13vL1eWHCTO5OpIfb0,868
|
|
371
386
|
reflex/components/radix/themes/components/separator.pyi,sha256=Uw1Bk8px4gCdv-1gnhH_z8x2Uq68ksE9773G3uLLxDo,6078
|
|
387
|
+
reflex/components/radix/themes/components/skeleton.py,sha256=sEFtHPZ13SGbBX-soblfaQlhnhQHMBUfPAJtAdzc3WA,643
|
|
388
|
+
reflex/components/radix/themes/components/skeleton.pyi,sha256=zYcmuXH1KU5MJ47qpk-XBpdSxqQua6TJjyaBX6rWxgE,4289
|
|
372
389
|
reflex/components/radix/themes/components/slider.py,sha256=cCuZuRxUi_hA86PP0YHmvbD22ezvCGcXllTn_xuQd08,3234
|
|
373
390
|
reflex/components/radix/themes/components/slider.pyi,sha256=M_hydx2UUYqQy8Obj1QdytBLIGvWlTsKSldhqzLApaE,8162
|
|
391
|
+
reflex/components/radix/themes/components/spinner.py,sha256=lhS3Hi8h7dJLA9D4NNxH5z6ogzzsk6smfM-HRXk5upY,431
|
|
392
|
+
reflex/components/radix/themes/components/spinner.pyi,sha256=UtmAdfa-OrMk00VKPLFdMueB44i5beQF01w3WpZ0fQY,3845
|
|
374
393
|
reflex/components/radix/themes/components/switch.py,sha256=AY0kvgUxIv6o-YVSy8rWV4h_UqRiPsEZJiTf4J-TTuI,1976
|
|
375
394
|
reflex/components/radix/themes/components/switch.pyi,sha256=hcDJUSdNuAlbxlOZc9vbT8pIllSSWcxjAePUv_x2q_Q,7404
|
|
376
395
|
reflex/components/radix/themes/components/table.py,sha256=WN9MVfm4PsvB6L5Qtqmh_84mBdPjFv5CPcGbQA3WCG0,3111
|
|
377
396
|
reflex/components/radix/themes/components/table.pyi,sha256=gfIrd4WXdUwR-i08m-RVAMKosWWc9Uy0P6kQ4Z16R5k,47387
|
|
378
|
-
reflex/components/radix/themes/components/tabs.py,sha256=
|
|
379
|
-
reflex/components/radix/themes/components/tabs.pyi,sha256=
|
|
397
|
+
reflex/components/radix/themes/components/tabs.py,sha256=P9sKQgskvS8Z2mGOX5W9k51NjU3-k7wwFEGc2gpx5lM,2986
|
|
398
|
+
reflex/components/radix/themes/components/tabs.pyi,sha256=WIihKityGiACxT3ylGW8p7DqaBsGvbN3uSbp7l3gE4A,19119
|
|
380
399
|
reflex/components/radix/themes/components/text_area.py,sha256=9AhvEXcr87B1o0wmCTyIWYuzUNes_kMbXJh95Gai01o,3233
|
|
381
400
|
reflex/components/radix/themes/components/text_area.pyi,sha256=xOeJ23O-LKoGsgRbFDOsubkGJjZeAEKvjGasTi5J09Y,11711
|
|
382
|
-
reflex/components/radix/themes/components/text_field.py,sha256=
|
|
383
|
-
reflex/components/radix/themes/components/text_field.pyi,sha256=
|
|
401
|
+
reflex/components/radix/themes/components/text_field.py,sha256=IO8AEvpUvkysH5hCS-X7EaN3sR42GgzLvQj8_Evkb3M,6527
|
|
402
|
+
reflex/components/radix/themes/components/text_field.pyi,sha256=1rFK-ANTvuFgPjtq8JFnTVxjB5p0Z3-ZwMVI6yB3CPY,26637
|
|
384
403
|
reflex/components/radix/themes/components/tooltip.py,sha256=gSeURvwI8ITUoTmtWVFFMIeUMEL6B3NrvX0hw3Y7lWg,4465
|
|
385
404
|
reflex/components/radix/themes/components/tooltip.pyi,sha256=D53eQARMkv9claFUnfFVgL2uZA3bq48fWL21zzWGUaU,8092
|
|
386
405
|
reflex/components/radix/themes/layout/__init__.py,sha256=BtVM87BKeMfvEnJxUo4LLZ20aQRYJSHXd6G1F1v4oRA,811
|
|
387
|
-
reflex/components/radix/themes/layout/base.py,sha256=
|
|
388
|
-
reflex/components/radix/themes/layout/base.pyi,sha256=
|
|
406
|
+
reflex/components/radix/themes/layout/base.py,sha256=4vLbCSo4MgR_SH1grNZpE6IzVSKuWPHglk9Qu2P8xm8,1211
|
|
407
|
+
reflex/components/radix/themes/layout/base.pyi,sha256=eJOKNW9ClfS5YTssNTq6oSTg-d-Ytv_Ee1Vg8LoPTDM,7663
|
|
389
408
|
reflex/components/radix/themes/layout/box.py,sha256=YNQi7sK95oatWia-rHnePte_qYBQ4Oss1E7Djn4VqXs,281
|
|
390
409
|
reflex/components/radix/themes/layout/box.pyi,sha256=4HQmd6w6DG3DzPIRh79FkxHAlC-pKbrNcUXxX-jdikk,6462
|
|
391
|
-
reflex/components/radix/themes/layout/center.py,sha256=
|
|
392
|
-
reflex/components/radix/themes/layout/center.pyi,sha256=
|
|
393
|
-
reflex/components/radix/themes/layout/container.py,sha256=
|
|
394
|
-
reflex/components/radix/themes/layout/container.pyi,sha256=
|
|
410
|
+
reflex/components/radix/themes/layout/center.py,sha256=uzsPCQM0u1kQv_ooOGX2jLK4hfDIzkVxHQXeWRIjOV8,509
|
|
411
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=nKuVMX-RV6DHN55qTFcEKEzgQBal2TksbmDKcr8wjNw,8271
|
|
412
|
+
reflex/components/radix/themes/layout/container.py,sha256=PrwC_MjJmeyJ1Vu9zyFDcAJA0WIhY8BvXRVOT8I7YiI,1405
|
|
413
|
+
reflex/components/radix/themes/layout/container.pyi,sha256=SFwzZKYohv7y6_6WfjIhRagDj0XUY3IqwUi8Hdzd4M0,5247
|
|
395
414
|
reflex/components/radix/themes/layout/flex.py,sha256=Jrr02gH7RzBUY-ul3POs9IepkOLdDEUEhNF6VQgoA4Y,1374
|
|
396
415
|
reflex/components/radix/themes/layout/flex.pyi,sha256=oeO_VKqRakzH2IkAwVSJ191PeD2j_j8CIJi1LMiEnNg,8501
|
|
397
416
|
reflex/components/radix/themes/layout/grid.py,sha256=LOxEEtdfCtPgbW84aaQrX5zkASi6aqBHieYRUo_BGuY,1498
|
|
398
417
|
reflex/components/radix/themes/layout/grid.pyi,sha256=mfeSPKYoQISusvTDoUA0QV0PYS01uA_cBT8B_zC_-R0,8907
|
|
399
|
-
reflex/components/radix/themes/layout/list.py,sha256=
|
|
400
|
-
reflex/components/radix/themes/layout/list.pyi,sha256=
|
|
418
|
+
reflex/components/radix/themes/layout/list.py,sha256=vTMWoArtyK5awxky6q6CTJ6IM_zt25JNDDIm-1ftQec,4991
|
|
419
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=AhCMSkerWGLFtHmVL9XmuHXu5Y6oSKm4vauGKyR18kY,28927
|
|
401
420
|
reflex/components/radix/themes/layout/section.py,sha256=w9OmAycanmWtFndDGDNIkJZZJJ54wIg6OQn5WaQ_Q-w,458
|
|
402
421
|
reflex/components/radix/themes/layout/section.pyi,sha256=6yQnmu_aIE0tXKBExtUumzCWnq5HU6-uhPNqGI2sTXw,6758
|
|
403
|
-
reflex/components/radix/themes/layout/spacer.py,sha256=
|
|
404
|
-
reflex/components/radix/themes/layout/spacer.pyi,sha256=
|
|
405
|
-
reflex/components/radix/themes/layout/stack.py,sha256=
|
|
406
|
-
reflex/components/radix/themes/layout/stack.pyi,sha256=
|
|
422
|
+
reflex/components/radix/themes/layout/spacer.py,sha256=3ZTI1kV6aTwjKGn5b6mYN_Qla2vEYwf8ew2odrcAjag,492
|
|
423
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=mcXdMA4tkp6XWIpSRvkpAfHZ5hXXxByTIAdnEBTKaCE,8271
|
|
424
|
+
reflex/components/radix/themes/layout/stack.py,sha256=dGIRKYnx7jns_V-LL-OJ2aC-p-C0ZLnlIC2bXgxVDiY,1522
|
|
425
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=Gq87nlYHn1MMNHfWGeS14NVQmxrowscfMLs_9VnHTnw,22132
|
|
407
426
|
reflex/components/radix/themes/typography/__init__.py,sha256=gbsMbniQAZ6UPS7ReL67r28BSd4-fLoMEVS5wx1Ymro,343
|
|
408
427
|
reflex/components/radix/themes/typography/base.py,sha256=uxSmOnrr5bnP6_aPI8FI95kn2bf9DZYLXshg-GpCDug,408
|
|
409
428
|
reflex/components/radix/themes/typography/blockquote.py,sha256=2oeU4a6y4BwlPXOtwCIRJ1x5AIy_GgIjldbppRXJdH8,799
|
|
@@ -412,8 +431,8 @@ reflex/components/radix/themes/typography/code.py,sha256=b74UXNv6ktmO0bTkMKFYR41
|
|
|
412
431
|
reflex/components/radix/themes/typography/code.pyi,sha256=EpqSO88Nlbg9XnH54Jkwxtx2bXiF3X2cDYqoeQI38rw,9513
|
|
413
432
|
reflex/components/radix/themes/typography/heading.py,sha256=xKJUzuodTcu6e1in8tDckTfZ9te460mswPgbSj5a6U4,1324
|
|
414
433
|
reflex/components/radix/themes/typography/heading.pyi,sha256=DU78CN3o81WHOIuOi-OC8xBrp7K7DUSxXVvtYzZkXWk,10106
|
|
415
|
-
reflex/components/radix/themes/typography/link.py,sha256=
|
|
416
|
-
reflex/components/radix/themes/typography/link.pyi,sha256=
|
|
434
|
+
reflex/components/radix/themes/typography/link.py,sha256=dkehtyVJp8ah7KEAh47Bb-dJOcfq1G_TitpW-n7PMt4,3291
|
|
435
|
+
reflex/components/radix/themes/typography/link.pyi,sha256=llFWQRdDOmkaN9ZHjpKkcYz9ovhZV-MRMmLZAec1tnM,12144
|
|
417
436
|
reflex/components/radix/themes/typography/text.py,sha256=BQ_15kkTWvAbZr8dczgMmsKrUhIZzAN-f6r-Nzf9ZU0,2604
|
|
418
437
|
reflex/components/radix/themes/typography/text.pyi,sha256=jYHiLVgK0hDxZD-3HhYatm66Vm0Hn_GRgMbszn1DAyU,57238
|
|
419
438
|
reflex/components/react_player/__init__.py,sha256=W4wa5G4R_cl5tE1vfR4tY_RlvWLVsyTxzTAJ67q2gnc,144
|
|
@@ -434,66 +453,69 @@ reflex/components/recharts/polar.py,sha256=X4qG0IOCnC11Zb6iDTXuV9_IVU5MrIFYzmnQL
|
|
|
434
453
|
reflex/components/recharts/polar.pyi,sha256=mASlcYdJeKnK2sAsGfYUKlOo8BIpB4QyWYCQ1proV7Y,24326
|
|
435
454
|
reflex/components/recharts/recharts.py,sha256=Ap4HCCBY2Q9gdrh-PnHOvJY5ebIKCLgnQNrUWDp_bRs,2870
|
|
436
455
|
reflex/components/recharts/recharts.pyi,sha256=milPgyj87d3rOAcsruXTUP_vMJ1REBsDC6TJL0obap4,8535
|
|
456
|
+
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
457
|
+
reflex/components/sonner/toast.py,sha256=cpbKXLwJKLLviiySwun3uF9zXAjuDxekkqVV_sVzv8g,7638
|
|
458
|
+
reflex/components/sonner/toast.pyi,sha256=qM9JUphsmeCXjbE9vHjazmijVLrfGayBrc817VdYa2I,7635
|
|
437
459
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
438
460
|
reflex/components/suneditor/editor.py,sha256=GagQzBNxptJl6xYplta77m7aKqYbdlQ9Aldlw8Rxyzc,7360
|
|
439
461
|
reflex/components/suneditor/editor.pyi,sha256=h5NklINt1L8SdPwjwIsLeh1wpdncB_KEmooiV7WdAfs,10330
|
|
440
462
|
reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTkNhW_Q,152
|
|
441
463
|
reflex/components/tags/cond_tag.py,sha256=v5BO78bGQQuCy8lM45yI7nAuasxjQoRyQNdj5kakPBY,447
|
|
442
|
-
reflex/components/tags/iter_tag.py,sha256=
|
|
464
|
+
reflex/components/tags/iter_tag.py,sha256=FKPZtSR0wKyNrigEOYnGsndhXJzwNurTCEAS6Z5vff0,3927
|
|
443
465
|
reflex/components/tags/match_tag.py,sha256=pMwy46ewquPNwa1S71sDS_0Ga8YuviSrbpBU-_CWsoQ,387
|
|
444
466
|
reflex/components/tags/tag.py,sha256=hT7zHJyut6SlCiQS6SZ-CaUrHgfLgm9NjNDQWo7uCEQ,2778
|
|
445
467
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
446
|
-
reflex/config.py,sha256=
|
|
468
|
+
reflex/config.py,sha256=G7l1aOSPbpH-JcYfUIlIw8ZvWRY6Rd6-8kl97p0u-ms,10673
|
|
447
469
|
reflex/config.pyi,sha256=zQwPQ1bN4HjTHQGeKGOONrFPpw7XN7Osi2L41cRwtyw,3318
|
|
448
|
-
reflex/constants/__init__.py,sha256=
|
|
449
|
-
reflex/constants/base.py,sha256=
|
|
470
|
+
reflex/constants/__init__.py,sha256=jraOx-vMBIhpcvw3Pk0j3syZ3SSC2IXc1XsuIY0cgBc,2036
|
|
471
|
+
reflex/constants/base.py,sha256=qaJIa0W_IJ_s7uoe17PWN6T7a2Yvw8c-elGgPGG1M8M,5640
|
|
450
472
|
reflex/constants/base.pyi,sha256=S9mWWVp88KP16Cnh3guOPqLtIHc24SBBk6oKdoU1jgc,2980
|
|
451
|
-
reflex/constants/colors.py,sha256=
|
|
473
|
+
reflex/constants/colors.py,sha256=gab_GwjKcbpRJGS2zX0gkmc_yFT1nmQbFDHqx0mXKB0,1625
|
|
452
474
|
reflex/constants/compiler.py,sha256=uWTC28IpBlJzh-BnO05xoiCwYQsGeXJJ3RG6UB1xZQo,4207
|
|
453
475
|
reflex/constants/config.py,sha256=7uUypVy-ezLt3UN3jXEX1XvL3sKaCLBwnJCyYjg9erI,1331
|
|
454
476
|
reflex/constants/custom_components.py,sha256=SX0SQVb-d6HJkZdezFL4UgkumyF6eJF682y4OvRUqUM,1268
|
|
455
477
|
reflex/constants/event.py,sha256=7cEUTWdIhWVw7g5Bn9yTZlxNnJY5MeJL55q-vT1YOZ0,2668
|
|
456
|
-
reflex/constants/installer.py,sha256=
|
|
457
|
-
reflex/constants/route.py,sha256=
|
|
478
|
+
reflex/constants/installer.py,sha256=NoxgxmrAeYMIclYe81yIXdltL38YqdKq0ty-tIEvZrQ,3419
|
|
479
|
+
reflex/constants/route.py,sha256=fu1jp9MoIriUJ8Cu4gLeinTxkyVBbRPs8Bkt35vqYOM,2144
|
|
458
480
|
reflex/constants/style.py,sha256=gSzu0sQEQjW81PekxJnwRs7SXQQVco-LxtVjCi0IQZc,636
|
|
459
481
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
460
|
-
reflex/custom_components/custom_components.py,sha256=
|
|
461
|
-
reflex/event.py,sha256=
|
|
462
|
-
reflex/experimental/__init__.py,sha256=
|
|
482
|
+
reflex/custom_components/custom_components.py,sha256=IAy_9dhH7XHPMO3VBZK70c-9Sv0rkzT4ckLPcKDQ0xs,32298
|
|
483
|
+
reflex/event.py,sha256=IJLjI9EdN64OJqOVllNppApZO8oAqMx0F0VyLegf4HQ,27893
|
|
484
|
+
reflex/experimental/__init__.py,sha256=sE-g9y56aC2pQxyMGvbm2-_hPKa4e1YBjrQ3cRhiRis,608
|
|
463
485
|
reflex/experimental/hooks.py,sha256=ruqdKV3smQT53vVwYvs8Zx4RyTy6nY00rD0Loe1gWdU,2196
|
|
464
|
-
reflex/experimental/layout.py,sha256=
|
|
486
|
+
reflex/experimental/layout.py,sha256=g2tuJjgtaWn8sD-yO_H8B_DbIPjDCpORMNSgueP9UHo,7234
|
|
465
487
|
reflex/experimental/misc.py,sha256=4xlHrSCZaDyyiSexNKRbSfJ_UZy6-fzIBhKDeHNt94Q,281
|
|
466
488
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
467
489
|
reflex/middleware/hydrate_middleware.py,sha256=iXgB_VID2moU9gNpc79TJHGGhQgDH6miT32T_0Ow5tU,1484
|
|
468
490
|
reflex/middleware/middleware.py,sha256=PX9TPaCHI1O-F3OucsZSp94gtMP3ALYs3zXSALOlN9E,1169
|
|
469
|
-
reflex/model.py,sha256=
|
|
470
|
-
reflex/page.py,sha256=
|
|
471
|
-
reflex/reflex.py,sha256=
|
|
472
|
-
reflex/route.py,sha256=
|
|
473
|
-
reflex/state.py,sha256=
|
|
474
|
-
reflex/style.py,sha256=
|
|
475
|
-
reflex/testing.py,sha256=
|
|
491
|
+
reflex/model.py,sha256=WMcJiT04HSM4fKTP9SIZJQoDrIO2vaPTsoao-X169V4,13227
|
|
492
|
+
reflex/page.py,sha256=NPT0xMownZGTiYiRtrUJnvAe_4oEvlzEJEkG-vrGhqI,2077
|
|
493
|
+
reflex/reflex.py,sha256=VJZAwe9lIqbS3VB3QkP5-OMmNXmM4gi-5TWMCJgZPcc,17826
|
|
494
|
+
reflex/route.py,sha256=WZS7stKgO94nekFFYHaOqNgN3zZGpJb3YpGF4ViTHmw,4198
|
|
495
|
+
reflex/state.py,sha256=IAMB5rOVSNR04PhV1JCSUjM9lpspnDzNYyPm1_Asx88,105748
|
|
496
|
+
reflex/style.py,sha256=ujKp_n5mwF5BbLK6IPLu6PuM_MxZtAewX35acLDw7fg,9405
|
|
497
|
+
reflex/testing.py,sha256=zFlvQODofiaQd082v_bDK__qsBPzwysxeIDf-B86luI,30743
|
|
476
498
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
477
499
|
reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
|
|
478
500
|
reflex/utils/compat.py,sha256=rfN5mMcNWFXT1ESLnZlR-bYG7XJKHvAScXMWo9iBsKg,1255
|
|
479
|
-
reflex/utils/console.py,sha256
|
|
501
|
+
reflex/utils/console.py,sha256=-BHtwUabv8QlhGfEHupSn68fOOmPRZpkSvcqcjNBV-k,5182
|
|
480
502
|
reflex/utils/exceptions.py,sha256=oniHYS_c18hvwva4tvEmO33Fjmp605uFJBX4liKuqp8,504
|
|
481
|
-
reflex/utils/exec.py,sha256=
|
|
503
|
+
reflex/utils/exec.py,sha256=Y8XqS8uosanlkKzbItGQHXs8OPh16f4_gJOzSjbpvSk,10406
|
|
482
504
|
reflex/utils/export.py,sha256=UJd4BYFW9_eexhLCP4C5Ri8Cq2tWAPNVspq70lPLCyo,2270
|
|
483
|
-
reflex/utils/format.py,sha256=
|
|
484
|
-
reflex/utils/imports.py,sha256=
|
|
505
|
+
reflex/utils/format.py,sha256=ny6nr-3ZzLo4bBchO1Ciinbc4A6Ji3iZl_WprQn_oz8,22652
|
|
506
|
+
reflex/utils/imports.py,sha256=v_xLZiMn7UxxPu5mXln74tXi52wYKqPuZe11Ka31WuM,2309
|
|
485
507
|
reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
|
|
486
|
-
reflex/utils/prerequisites.py,sha256=
|
|
487
|
-
reflex/utils/processes.py,sha256=
|
|
488
|
-
reflex/utils/pyi_generator.py,sha256=
|
|
489
|
-
reflex/utils/serializers.py,sha256=
|
|
490
|
-
reflex/utils/telemetry.py,sha256=
|
|
491
|
-
reflex/utils/types.py,sha256=
|
|
508
|
+
reflex/utils/prerequisites.py,sha256=V_Ae4XyuQZClSsthZ_R9QS0zd548ZevOTl8RzzoKIZw,51212
|
|
509
|
+
reflex/utils/processes.py,sha256=p8o6MXuWaCcqXs4itDD-41M7FCmioeh784IZ6UGbyo8,11242
|
|
510
|
+
reflex/utils/pyi_generator.py,sha256=cOfDESTXjnIvJhi8-anKVDNllgpnsGd4OyRmwdw1z5Y,30637
|
|
511
|
+
reflex/utils/serializers.py,sha256=bKY4UxwumFfzE-75tpCFQWRfCeXn301fALwCAUgzgDw,9037
|
|
512
|
+
reflex/utils/telemetry.py,sha256=QzENUaQ_UR8Ac_BonOqx747qJuA2wJ3ntfmFj5QfRDI,4688
|
|
513
|
+
reflex/utils/types.py,sha256=NVdeZIQZTrrUCJMmlRSzQ8ZvCdAnQPQWCLBQioR4aQg,14842
|
|
492
514
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
493
|
-
reflex/vars.py,sha256=
|
|
515
|
+
reflex/vars.py,sha256=1IboqkSJYh_z-XlWAPzfcCaX-5imVdv6QSrpUAXBWNg,67317
|
|
494
516
|
reflex/vars.pyi,sha256=7sVCLoLg9Y7QAmXWz6FCtVmScpSV84u0yQ3ZBImb_Bk,5583
|
|
495
|
-
reflex-0.
|
|
496
|
-
reflex-0.
|
|
497
|
-
reflex-0.
|
|
498
|
-
reflex-0.
|
|
499
|
-
reflex-0.
|
|
517
|
+
reflex-0.5.0.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
518
|
+
reflex-0.5.0.dist-info/METADATA,sha256=oQRLz7pUoj-7JoPvwb_wloyifEPKl3sjAeUNUN2BvM8,12087
|
|
519
|
+
reflex-0.5.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
520
|
+
reflex-0.5.0.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
521
|
+
reflex-0.5.0.dist-info/RECORD,,
|