reflex 0.4.4a1__py3-none-any.whl → 0.4.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of reflex might be problematic. Click here for more details.
- reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +5 -1
- reflex/.templates/web/utils/state.js +2 -1
- reflex/app.py +173 -108
- reflex/app_module_for_backend.py +4 -2
- reflex/compiler/compiler.py +103 -11
- reflex/compiler/utils.py +16 -6
- reflex/components/component.py +86 -14
- reflex/components/core/upload.py +2 -2
- reflex/components/core/upload.pyi +1 -1
- reflex/components/el/elements/forms.py +1 -1
- reflex/components/markdown/markdown.py +4 -2
- reflex/components/radix/themes/components/radio_group.py +2 -1
- reflex/components/radix/themes/components/select.py +7 -2
- reflex/components/radix/themes/components/select.pyi +14 -0
- reflex/components/radix/themes/layout/list.py +31 -4
- reflex/components/radix/themes/layout/list.pyi +53 -9
- reflex/constants/installer.py +1 -1
- reflex/constants/route.py +2 -2
- reflex/event.py +4 -0
- reflex/model.py +88 -4
- reflex/state.py +20 -5
- reflex/testing.py +23 -1
- reflex/utils/exec.py +9 -0
- reflex/utils/format.py +46 -19
- reflex/utils/prerequisites.py +31 -10
- reflex/utils/processes.py +9 -2
- reflex/utils/telemetry.py +69 -29
- reflex/vars.py +5 -3
- {reflex-0.4.4a1.dist-info → reflex-0.4.5.dist-info}/METADATA +1 -1
- {reflex-0.4.4a1.dist-info → reflex-0.4.5.dist-info}/RECORD +33 -33
- {reflex-0.4.4a1.dist-info → reflex-0.4.5.dist-info}/LICENSE +0 -0
- {reflex-0.4.4a1.dist-info → reflex-0.4.5.dist-info}/WHEEL +0 -0
- {reflex-0.4.4a1.dist-info → reflex-0.4.5.dist-info}/entry_points.txt +0 -0
reflex/vars.py
CHANGED
|
@@ -633,7 +633,7 @@ class Var:
|
|
|
633
633
|
if types.is_generic_alias(self._var_type):
|
|
634
634
|
index = i if not isinstance(i, Var) else 0
|
|
635
635
|
type_ = types.get_args(self._var_type)
|
|
636
|
-
type_ = type_[index % len(type_)]
|
|
636
|
+
type_ = type_[index % len(type_)] if type_ else Any
|
|
637
637
|
elif types._issubclass(self._var_type, str):
|
|
638
638
|
type_ = str
|
|
639
639
|
|
|
@@ -1449,7 +1449,7 @@ class Var:
|
|
|
1449
1449
|
return self._replace(
|
|
1450
1450
|
_var_name=f"{self._var_name}.split({other._var_full_name})",
|
|
1451
1451
|
_var_is_string=False,
|
|
1452
|
-
_var_type=
|
|
1452
|
+
_var_type=List[str],
|
|
1453
1453
|
merge_var_data=other._var_data,
|
|
1454
1454
|
)
|
|
1455
1455
|
|
|
@@ -1555,7 +1555,7 @@ class Var:
|
|
|
1555
1555
|
|
|
1556
1556
|
return BaseVar(
|
|
1557
1557
|
_var_name=f"Array.from(range({v1._var_full_name}, {v2._var_full_name}, {step._var_name}))",
|
|
1558
|
-
_var_type=
|
|
1558
|
+
_var_type=List[int],
|
|
1559
1559
|
_var_is_local=False,
|
|
1560
1560
|
_var_data=VarData.merge(
|
|
1561
1561
|
v1._var_data,
|
|
@@ -1861,6 +1861,8 @@ class ComputedVar(Var, property):
|
|
|
1861
1861
|
# handle caching
|
|
1862
1862
|
if not hasattr(instance, self._cache_attr):
|
|
1863
1863
|
setattr(instance, self._cache_attr, super().__get__(instance, owner))
|
|
1864
|
+
# Ensure the computed var gets serialized to redis.
|
|
1865
|
+
instance._was_touched = True
|
|
1864
1866
|
return getattr(instance, self._cache_attr)
|
|
1865
1867
|
|
|
1866
1868
|
def _deps(
|
|
@@ -60,7 +60,7 @@ reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=-Jykv29ZqzsQyyRe_iR
|
|
|
60
60
|
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
61
61
|
reflex/.templates/jinja/web/pages/custom_component.js.jinja2,sha256=jDqpIxibHp1imx6xT8cpr8hgdXXWHTU7uqYB5pBvyXk,882
|
|
62
62
|
reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=5yzGDRJ-pMCnYwVSnUCQk7eZK-hfD0VW7tLISHkMnvA,343
|
|
63
|
-
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=
|
|
63
|
+
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=Tg_qWtBx-RU4M_l8WWdvy5_Au6KifHnHgxJbje8uGXU,378
|
|
64
64
|
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
65
65
|
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=xi1ryZ2dqWM4pmB4p028hxRtsdP6T3ZR5a8OG_U1IAs,3883
|
|
66
66
|
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=4-CvqGR8-nRzkuCOSp_PdqmhPEmOs_kOhskOlhLMEUg,141
|
|
@@ -77,19 +77,19 @@ reflex/.templates/web/styles/tailwind.css,sha256=zBp60NAZ3bHTLQ7LWIugrCbOQdhiXdb
|
|
|
77
77
|
reflex/.templates/web/utils/client_side_routing.js,sha256=iGGnZY07XMNLUT2GT_Y6OEICP7uc1FaWn9cPlQUpGgo,1254
|
|
78
78
|
reflex/.templates/web/utils/helpers/dataeditor.js,sha256=anZgi8RJ_J0yqDez1Ks51fNDIQOvP3WkIm1QRDwccSk,1622
|
|
79
79
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
80
|
-
reflex/.templates/web/utils/state.js,sha256=
|
|
80
|
+
reflex/.templates/web/utils/state.js,sha256=8AIlCXGQOUBbqUil2tCMJGGqdFyRR5jB3Oy4oQLce7U,21377
|
|
81
81
|
reflex/__init__.py,sha256=AWw9ICSuAvfwib_Hq_fKIxOwVZNHO5PQocFkD8c4xhY,5546
|
|
82
82
|
reflex/__init__.pyi,sha256=A5ggRGTri9IVTPLZNePVWEU4ZMv1hF9UraSbY1sNfEc,7362
|
|
83
83
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
84
84
|
reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
|
|
85
|
-
reflex/app.py,sha256=
|
|
85
|
+
reflex/app.py,sha256=nO8dFZO-vRQgYCdgMFuFlK4vnJAxlJM-Q8AMumOSaOk,43874
|
|
86
86
|
reflex/app.pyi,sha256=rbma5FRlD76JOtdFxUcWrgcVuLS47CmXivr-f8vKTbY,4928
|
|
87
|
-
reflex/app_module_for_backend.py,sha256=
|
|
87
|
+
reflex/app_module_for_backend.py,sha256=APD4jFsG-Tfd0vZWAfsdBYj4E4PeGZjjWeOZwBfUKRM,1152
|
|
88
88
|
reflex/base.py,sha256=EnYFVfXQgRcsz7JtBdfBkvxkf9msLEmt6OS-yGwcJQM,3869
|
|
89
89
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
90
|
-
reflex/compiler/compiler.py,sha256=
|
|
90
|
+
reflex/compiler/compiler.py,sha256=WhVCnAarPhBLSsLQJ16Ay_RUcaI5Wdrn6w1C1ZrOXSc,16967
|
|
91
91
|
reflex/compiler/templates.py,sha256=TKjq2cTtiwNZ_zIYNSTA6vG3CU2EoyrFTfkq8zhAL68,4344
|
|
92
|
-
reflex/compiler/utils.py,sha256=
|
|
92
|
+
reflex/compiler/utils.py,sha256=_iJ4inuEOuu1r4_3S-aZwP0nfIe68BtnoZ5hqFbva04,13708
|
|
93
93
|
reflex/components/__init__.py,sha256=_HDLeN8JYJaL2vsx0O7ihzAnIJUtUL2zknAUbT9YLYg,530
|
|
94
94
|
reflex/components/base/__init__.py,sha256=regtioYXwTxqWuf4Z7H51rjn2Vs1Kr1Fh_i4s-W1m0A,325
|
|
95
95
|
reflex/components/base/app_wrap.py,sha256=_LPpPO8c8M6dyEsyoahJaDKk-zEK4qvR_lSnaLpqUKM,573
|
|
@@ -250,7 +250,7 @@ reflex/components/chakra/typography/span.py,sha256=2DbW5DB27ijtTeugSDUVp3nQ64mrG
|
|
|
250
250
|
reflex/components/chakra/typography/span.pyi,sha256=IzFlO6mqV38IQu_JKbDBujIr5_9m0YDr_0Sx5g3T2ZY,3438
|
|
251
251
|
reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
|
|
252
252
|
reflex/components/chakra/typography/text.pyi,sha256=wDhAg9ZHK-FfrKutX0LWv0-lWprJAeurvx8n-UjUNec,3662
|
|
253
|
-
reflex/components/component.py,sha256=
|
|
253
|
+
reflex/components/component.py,sha256=lqvpOHUOqwqfnfrSuCf4v4qeoTGwtJqW_hVqiSaOvdA,63461
|
|
254
254
|
reflex/components/core/__init__.py,sha256=mMSd2IZqBgGf7zkjuPeA-oIiIXu_O08fk9x15D8hBSU,844
|
|
255
255
|
reflex/components/core/banner.py,sha256=DlQUUVmv38I3hk417mr637mxxHiayXI97TnzcEWKUAE,6005
|
|
256
256
|
reflex/components/core/banner.pyi,sha256=_zpKzkLGdBCdX882YO4tbbHpr-o_U81i6jYhs2TrYiQ,17190
|
|
@@ -266,8 +266,8 @@ reflex/components/core/html.pyi,sha256=8YcAeDIp2JGGQPxHS8Vd1rRfWjSY-lAYH6VMmKucq
|
|
|
266
266
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
267
267
|
reflex/components/core/match.py,sha256=XP5JEOTQ_jnmJ8LRWoC7TeAOYyKSE3Qw6-BjVDDu5m0,9989
|
|
268
268
|
reflex/components/core/responsive.py,sha256=nLcLjFHnXYrsB0iyg3aWkEM145R8H998ZjQ7hw7aIXE,1905
|
|
269
|
-
reflex/components/core/upload.py,sha256=
|
|
270
|
-
reflex/components/core/upload.pyi,sha256=
|
|
269
|
+
reflex/components/core/upload.py,sha256=pS7VUtF1bacQL8iwojiZq7b0vx0ZF5uUu9TqbO_UuUo,8993
|
|
270
|
+
reflex/components/core/upload.pyi,sha256=ExL1ylXx8m6xGwi706NNANo86B7nyI9bLnqdBSNxll4,8662
|
|
271
271
|
reflex/components/datadisplay/__init__.py,sha256=Uag6mVnKyDpVIIChVzeUdxXfGWRTO19s6KQ8UXVWDSk,334
|
|
272
272
|
reflex/components/datadisplay/code.py,sha256=piqy0uHVc6LLY86MvcdLinm9iMN1TsEvplSUMvFMgxY,11017
|
|
273
273
|
reflex/components/datadisplay/code.pyi,sha256=Rz9IqopenMe3y9kB3C4Aa7som9ytFWIpMUCYZz3BATY,31038
|
|
@@ -283,7 +283,7 @@ reflex/components/el/element.pyi,sha256=7DZ1eAmSTE-OaCyORvH_gRKLi-HBaRZrmmn0u91R
|
|
|
283
283
|
reflex/components/el/elements/__init__.py,sha256=WYfDTRAgm47AcIf2ePjzVHKOVEKDW1IpyQ5NG664sRA,3529
|
|
284
284
|
reflex/components/el/elements/base.py,sha256=7o_ifyF0Hq_zRpF5-WbiXWP7cgsiXju1jllUPnrOK8w,1982
|
|
285
285
|
reflex/components/el/elements/base.pyi,sha256=922kmIBRLi_Qcc1SMzcNIei1C5XJ18iE4FJ_PWCuGXQ,6406
|
|
286
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
286
|
+
reflex/components/el/elements/forms.py,sha256=EM61OTTTIdLt5amwH1koEavJedSW4cp2cj4dntnWNQU,17474
|
|
287
287
|
reflex/components/el/elements/forms.pyi,sha256=nAh2ljHHrH6bS59XEt2SR7K_r0HODGrPMVdWXrx7uHY,99339
|
|
288
288
|
reflex/components/el/elements/inline.py,sha256=0NozHMAyJaaUCRbmjX0MqMRmRYYmPk2EOCtKAr6SIE8,3610
|
|
289
289
|
reflex/components/el/elements/inline.pyi,sha256=bGSaspT-qfiQAC4MZwxhSJg-AVFawV-zEpUsiLj6Dck,166590
|
|
@@ -309,7 +309,7 @@ reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO
|
|
|
309
309
|
reflex/components/lucide/icon.py,sha256=T8hwKtSk4jauj21jifnFweKnPciYljwf_CUX92ZaytM,28399
|
|
310
310
|
reflex/components/lucide/icon.pyi,sha256=MzvG5W5g_buaISH5zlm27-9ogIy2ft07m3_R0HOtO2I,32723
|
|
311
311
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
312
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
312
|
+
reflex/components/markdown/markdown.py,sha256=v6mQN4vvRqSV57iy3-A3fDEHk2kamOnQArc_lRzXDLs,11348
|
|
313
313
|
reflex/components/markdown/markdown.pyi,sha256=AZIeJhzl5XJPbBZ0KtLsdKUy8FRIE2SsPp1_rZlazbA,5382
|
|
314
314
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
315
315
|
reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
|
|
@@ -384,14 +384,14 @@ reflex/components/radix/themes/components/inset.py,sha256=MEYMjiqCkUmAXyGONuwvqm
|
|
|
384
384
|
reflex/components/radix/themes/components/inset.pyi,sha256=dmnZ1sxsCRFRtj6YA9y7JN9YIcvh0bH10NjtP5oICe0,7884
|
|
385
385
|
reflex/components/radix/themes/components/popover.py,sha256=rUfOqbJEBTPjJHlKxbQ6_067rae4zByWHlMSEXwGB68,3177
|
|
386
386
|
reflex/components/radix/themes/components/popover.pyi,sha256=_VZvC4RZ1r8hbWXGQ6FcXoivCb6N86BdSOws5JGXlQ8,17399
|
|
387
|
-
reflex/components/radix/themes/components/radio_group.py,sha256=
|
|
387
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=PYottL-4UT2P8a4FAylpVL9y02OZ3xC_kIB7_d4FoG4,6253
|
|
388
388
|
reflex/components/radix/themes/components/radio_group.pyi,sha256=Qc37O7I25ZykJl-026KlMgezlvtpp5wqfPTZBPN7lms,24101
|
|
389
389
|
reflex/components/radix/themes/components/radiogroup.pyi,sha256=4A_iObTwZH2Be9I0zv2l6AzXOCZD9rr3vlti6Y-wZWA,26222
|
|
390
390
|
reflex/components/radix/themes/components/scroll_area.py,sha256=0Oc5K7sycSH_X8HbVI2A_FS8AddoFXcwvH_YZpsjTkc,920
|
|
391
391
|
reflex/components/radix/themes/components/scroll_area.pyi,sha256=G-0BnHn0cUnP6cRYPETLaWWWU17EFjH1QVwawUEbKS0,4422
|
|
392
392
|
reflex/components/radix/themes/components/scrollarea.pyi,sha256=rwOEpVI0m9gMjlSPPwOgUGc4n8tD2g5NQZ-NyvBGFWg,6513
|
|
393
|
-
reflex/components/radix/themes/components/select.py,sha256=
|
|
394
|
-
reflex/components/radix/themes/components/select.pyi,sha256=
|
|
393
|
+
reflex/components/radix/themes/components/select.py,sha256=BFx07foqIUm_neLZwiKV6Ddr_HRLZKtklRLHyGvwEv4,7906
|
|
394
|
+
reflex/components/radix/themes/components/select.pyi,sha256=4JwOMhG0Cfh0tJykIEYcpUPYkrUvzTjxZV43QntGuPc,45118
|
|
395
395
|
reflex/components/radix/themes/components/separator.py,sha256=si-4AZAKvjQwo6DCiHKdND7pK13vL1eWHCTO5OpIfb0,868
|
|
396
396
|
reflex/components/radix/themes/components/separator.pyi,sha256=gHPRkoUJIRQXBtf6RDX7qZkxK8f1zDXddQsUT5Yg2rM,6073
|
|
397
397
|
reflex/components/radix/themes/components/slider.py,sha256=cCuZuRxUi_hA86PP0YHmvbD22ezvCGcXllTn_xuQd08,3234
|
|
@@ -422,8 +422,8 @@ reflex/components/radix/themes/layout/flex.py,sha256=Jrr02gH7RzBUY-ul3POs9IepkOL
|
|
|
422
422
|
reflex/components/radix/themes/layout/flex.pyi,sha256=9a-gqelYAEnaJ_bQbradUFjYJX-YTPFgcv8VK-6d1Qc,8496
|
|
423
423
|
reflex/components/radix/themes/layout/grid.py,sha256=LOxEEtdfCtPgbW84aaQrX5zkASi6aqBHieYRUo_BGuY,1498
|
|
424
424
|
reflex/components/radix/themes/layout/grid.pyi,sha256=XMxY_EMqy1WGcufwW4YRdXhiHbHkkEpta9T01OQdWys,8902
|
|
425
|
-
reflex/components/radix/themes/layout/list.py,sha256=
|
|
426
|
-
reflex/components/radix/themes/layout/list.pyi,sha256=
|
|
425
|
+
reflex/components/radix/themes/layout/list.py,sha256=d9lAaEaRdoyaD6VcNhclhhJyTVYGUIMfvLJfeQ0oUXc,4711
|
|
426
|
+
reflex/components/radix/themes/layout/list.pyi,sha256=45L4aEX3ikrvQEKL3K__GesASIZSZQstp_DJKAL-qrY,45066
|
|
427
427
|
reflex/components/radix/themes/layout/section.py,sha256=w9OmAycanmWtFndDGDNIkJZZJJ54wIg6OQn5WaQ_Q-w,458
|
|
428
428
|
reflex/components/radix/themes/layout/section.pyi,sha256=0jWSLYyuYLz6j16NaYlp-1LH5p0uDcLpLcvdQ8d3CME,6753
|
|
429
429
|
reflex/components/radix/themes/layout/spacer.py,sha256=1TntJhfiTzDJMIMsuokkYoxZYKBJDaGRRg9KkSwEr4o,412
|
|
@@ -482,42 +482,42 @@ reflex/constants/compiler.py,sha256=ddlVpVPimB-CvNuw38HhsO1nd4OwIZaxQbpwrEm17lQ,
|
|
|
482
482
|
reflex/constants/config.py,sha256=7uUypVy-ezLt3UN3jXEX1XvL3sKaCLBwnJCyYjg9erI,1331
|
|
483
483
|
reflex/constants/custom_components.py,sha256=SX0SQVb-d6HJkZdezFL4UgkumyF6eJF682y4OvRUqUM,1268
|
|
484
484
|
reflex/constants/event.py,sha256=7cEUTWdIhWVw7g5Bn9yTZlxNnJY5MeJL55q-vT1YOZ0,2668
|
|
485
|
-
reflex/constants/installer.py,sha256=
|
|
486
|
-
reflex/constants/route.py,sha256=
|
|
485
|
+
reflex/constants/installer.py,sha256=wzoO_TaXF6N54CKmqpSSzT9QGIPalYn245AtUIIlEY0,3177
|
|
486
|
+
reflex/constants/route.py,sha256=9ydQEdlz3YwGmGMHVGz7zA-INoOLtz_xUU2S-WmhZZM,1940
|
|
487
487
|
reflex/constants/style.py,sha256=gSzu0sQEQjW81PekxJnwRs7SXQQVco-LxtVjCi0IQZc,636
|
|
488
488
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
489
489
|
reflex/custom_components/custom_components.py,sha256=rOZoDmwdR_pKlZHGtgQuBHembkjYWo5O5gNB8cFCKWc,22283
|
|
490
|
-
reflex/event.py,sha256=
|
|
490
|
+
reflex/event.py,sha256=9qM6N27r4QIxNYPoHNRHopgkJdhDvq-pOWgzlBDDSM4,27020
|
|
491
491
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
492
492
|
reflex/middleware/hydrate_middleware.py,sha256=iXgB_VID2moU9gNpc79TJHGGhQgDH6miT32T_0Ow5tU,1484
|
|
493
493
|
reflex/middleware/middleware.py,sha256=PX9TPaCHI1O-F3OucsZSp94gtMP3ALYs3zXSALOlN9E,1169
|
|
494
|
-
reflex/model.py,sha256=
|
|
494
|
+
reflex/model.py,sha256=tYmzGknVtDk-3qBi84pw4xxEwZIRhjDJGkTBpUcjCQA,13091
|
|
495
495
|
reflex/page.py,sha256=tyqyisi3AUapkoStPNROI7fM0rZ9KU1lpi5OgJcGsvk,1922
|
|
496
496
|
reflex/page.pyi,sha256=nFfbDe-tBsrIrcAKWsoTy92olMkAosbmddh_Pgf2Sxc,505
|
|
497
497
|
reflex/reflex.py,sha256=f_hO6Tgthi_i_GO5JLiCGihPQRYYYYeU5CfjQ0ZwCo0,18139
|
|
498
498
|
reflex/route.py,sha256=mRv4rHuSI6x-uWALujPfM5PNtoRea6cuThjchHtA2hQ,2908
|
|
499
|
-
reflex/state.py,sha256=
|
|
499
|
+
reflex/state.py,sha256=HfdjwO7e119mCiMz0PwY3jVeTqHqKYeM5_F1Z4qtQzs,100664
|
|
500
500
|
reflex/style.py,sha256=FEkQEsGU8v4q3pILdhTWNh1KwIh3LgS_n0Yx-wxFUhQ,8820
|
|
501
|
-
reflex/testing.py,sha256=
|
|
501
|
+
reflex/testing.py,sha256=BJD_C1PnTbivOI3G2yeC045DZb5DtDEpNtxz8Owy-u4,29858
|
|
502
502
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
503
503
|
reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
|
|
504
504
|
reflex/utils/console.py,sha256=oEEaV9oSw5B24LPEwBOGlyrk2xI91Fo-pqGEsNICrjg,4583
|
|
505
505
|
reflex/utils/exceptions.py,sha256=oniHYS_c18hvwva4tvEmO33Fjmp605uFJBX4liKuqp8,504
|
|
506
|
-
reflex/utils/exec.py,sha256=
|
|
506
|
+
reflex/utils/exec.py,sha256=jQH2JxwcrJYlsMVkPyndjunJOCnU__e2-WMKk9TFuSo,9414
|
|
507
507
|
reflex/utils/export.py,sha256=daLyx4W-Kjit7Wjg5Db7-yFarF8r0d2IJ8aliXLDXZo,2454
|
|
508
|
-
reflex/utils/format.py,sha256=
|
|
508
|
+
reflex/utils/format.py,sha256=4vY7NP-f7B2euJ5F5dM3yh5SYPzCY3bVZDATG2DMaMU,22648
|
|
509
509
|
reflex/utils/imports.py,sha256=yah1kSVsOyUxA0wOMxJTwcmu6xlmkLJtV_zRIhshpsA,1919
|
|
510
510
|
reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
|
|
511
|
-
reflex/utils/prerequisites.py,sha256=
|
|
512
|
-
reflex/utils/processes.py,sha256=
|
|
511
|
+
reflex/utils/prerequisites.py,sha256=xg6uqN__z-lNuiH6ngTN2vXxDgpYCMvBwwpFLqNMMwM,38430
|
|
512
|
+
reflex/utils/processes.py,sha256=u4VAlbr4OyXHURkAi7euJv7GmSQNqb5FP-wdoLOQjcg,8924
|
|
513
513
|
reflex/utils/serializers.py,sha256=4LOCpri11NKVocnPb4zzgIBvW8fT-fX0h_1DIMfv5yI,8538
|
|
514
|
-
reflex/utils/telemetry.py,sha256=
|
|
514
|
+
reflex/utils/telemetry.py,sha256=iQBH5gcAmMBOyGjb49yqQXJudJsG_jpxsdxW4a-Xs3g,3760
|
|
515
515
|
reflex/utils/types.py,sha256=1FaFTmPmSfLuMtSLrt02np6Nyhe22n6zC0LiAznAn10,13260
|
|
516
516
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
517
|
-
reflex/vars.py,sha256=
|
|
517
|
+
reflex/vars.py,sha256=me7VnCjAY6PQ6uh886J-N78ucd750bjGdm_YcSoUQMM,66063
|
|
518
518
|
reflex/vars.pyi,sha256=4sZo25A0nZ5nLhZ_uUnnz8enzBddhBvGmuHZAM2JhU4,5575
|
|
519
|
-
reflex-0.4.
|
|
520
|
-
reflex-0.4.
|
|
521
|
-
reflex-0.4.
|
|
522
|
-
reflex-0.4.
|
|
523
|
-
reflex-0.4.
|
|
519
|
+
reflex-0.4.5.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
520
|
+
reflex-0.4.5.dist-info/METADATA,sha256=BnmStJZMELExEw-k1UpUR0a8n3k7ZAh_lv_8-sU0Xiw,11323
|
|
521
|
+
reflex-0.4.5.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
522
|
+
reflex-0.4.5.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
523
|
+
reflex-0.4.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|