reflex 0.3.8a2__py3-none-any.whl → 0.3.9a2__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 +1 -1
- reflex/.templates/apps/demo/code/demo.py +1 -1
- reflex/.templates/jinja/web/pages/utils.js.jinja2 +1 -1
- reflex/__init__.py +1 -0
- reflex/__init__.pyi +1 -0
- reflex/app.py +107 -86
- reflex/compiler/compiler.py +110 -0
- reflex/components/component.py +3 -1
- reflex/components/core/match.py +8 -4
- reflex/components/datadisplay/dataeditor.py +5 -1
- reflex/components/markdown/markdown.py +1 -0
- reflex/components/radix/__init__.py +2 -0
- reflex/components/radix/primitives/__init__.py +14 -1
- reflex/components/radix/primitives/accordion.py +426 -69
- reflex/components/radix/primitives/accordion.pyi +41 -11
- reflex/components/radix/primitives/base.py +4 -0
- reflex/components/radix/primitives/base.pyi +81 -0
- reflex/components/radix/primitives/form.py +4 -2
- reflex/components/radix/primitives/form.pyi +2 -2
- reflex/components/radix/primitives/progress.py +4 -2
- reflex/components/radix/primitives/progress.pyi +2 -2
- reflex/components/radix/primitives/slider.py +7 -5
- reflex/components/radix/primitives/slider.pyi +5 -5
- reflex/components/radix/themes/components/__init__.py +8 -2
- reflex/components/radix/themes/components/alertdialog.py +4 -4
- reflex/components/radix/themes/components/alertdialog.pyi +8 -1
- reflex/components/radix/themes/components/aspectratio.py +2 -4
- reflex/components/radix/themes/components/aspectratio.pyi +1 -3
- reflex/components/radix/themes/components/avatar.py +7 -3
- reflex/components/radix/themes/components/avatar.pyi +5 -3
- reflex/components/radix/themes/components/badge.py +5 -7
- reflex/components/radix/themes/components/badge.pyi +4 -6
- reflex/components/radix/themes/components/callout.py +36 -5
- reflex/components/radix/themes/components/callout.pyi +273 -9
- reflex/components/radix/themes/components/card.py +3 -3
- reflex/components/radix/themes/components/card.pyi +2 -2
- reflex/components/radix/themes/components/checkbox.py +41 -4
- reflex/components/radix/themes/components/checkbox.pyi +231 -8
- reflex/components/radix/themes/components/dialog.py +1 -1
- reflex/components/radix/themes/components/dialog.pyi +1 -1
- reflex/components/radix/themes/components/dropdownmenu.py +6 -0
- reflex/components/radix/themes/components/dropdownmenu.pyi +193 -0
- reflex/components/radix/themes/components/iconbutton.py +1 -1
- reflex/components/radix/themes/components/iconbutton.pyi +1 -1
- reflex/components/radix/themes/components/icons.py +1 -0
- reflex/components/radix/themes/components/inset.py +1 -0
- reflex/components/radix/themes/components/inset.pyi +1 -0
- reflex/components/radix/themes/components/radiogroup.py +68 -1
- reflex/components/radix/themes/components/radiogroup.pyi +254 -2
- reflex/components/radix/themes/components/select.py +93 -4
- reflex/components/radix/themes/components/select.pyi +246 -4
- reflex/components/radix/themes/components/slider.py +9 -6
- reflex/components/radix/themes/components/slider.pyi +12 -6
- reflex/components/radix/themes/components/tooltip.py +1 -0
- reflex/components/radix/themes/components/tooltip.pyi +1 -0
- reflex/components/radix/themes/layout/box.py +1 -1
- reflex/state.py +9 -4
- reflex/style.py +15 -0
- reflex/utils/path_ops.py +2 -2
- reflex/utils/prerequisites.py +57 -5
- reflex/utils/types.py +4 -1
- reflex/vars.py +36 -3
- {reflex-0.3.8a2.dist-info → reflex-0.3.9a2.dist-info}/METADATA +2 -2
- {reflex-0.3.8a2.dist-info → reflex-0.3.9a2.dist-info}/RECORD +67 -67
- {reflex-0.3.8a2.dist-info → reflex-0.3.9a2.dist-info}/WHEEL +1 -1
- {reflex-0.3.8a2.dist-info → reflex-0.3.9a2.dist-info}/LICENSE +0 -0
- {reflex-0.3.8a2.dist-info → reflex-0.3.9a2.dist-info}/entry_points.txt +0 -0
reflex/utils/prerequisites.py
CHANGED
|
@@ -16,6 +16,7 @@ import zipfile
|
|
|
16
16
|
from fileinput import FileInput
|
|
17
17
|
from pathlib import Path
|
|
18
18
|
from types import ModuleType
|
|
19
|
+
from typing import Callable
|
|
19
20
|
|
|
20
21
|
import httpx
|
|
21
22
|
import pkg_resources
|
|
@@ -26,7 +27,7 @@ from redis.asyncio import Redis
|
|
|
26
27
|
|
|
27
28
|
from reflex import constants, model
|
|
28
29
|
from reflex.compiler import templates
|
|
29
|
-
from reflex.config import get_config
|
|
30
|
+
from reflex.config import Config, get_config
|
|
30
31
|
from reflex.utils import console, path_ops, processes
|
|
31
32
|
|
|
32
33
|
|
|
@@ -162,7 +163,9 @@ def get_app(reload: bool = False) -> ModuleType:
|
|
|
162
163
|
from reflex.state import State
|
|
163
164
|
|
|
164
165
|
# Reset rx.State subclasses to avoid conflict when reloading.
|
|
165
|
-
State.class_subclasses
|
|
166
|
+
for subclass in tuple(State.class_subclasses):
|
|
167
|
+
if subclass.__module__ == module:
|
|
168
|
+
State.class_subclasses.remove(subclass)
|
|
166
169
|
# Reload the app module.
|
|
167
170
|
importlib.reload(app)
|
|
168
171
|
|
|
@@ -619,14 +622,64 @@ def install_bun():
|
|
|
619
622
|
)
|
|
620
623
|
|
|
621
624
|
|
|
622
|
-
def
|
|
625
|
+
def _write_cached_procedure_file(payload: str, cache_file: str):
|
|
626
|
+
with open(cache_file, "w") as f:
|
|
627
|
+
f.write(payload)
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
def _read_cached_procedure_file(cache_file: str) -> str | None:
|
|
631
|
+
if os.path.exists(cache_file):
|
|
632
|
+
with open(cache_file, "r") as f:
|
|
633
|
+
return f.read()
|
|
634
|
+
return None
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
def _clear_cached_procedure_file(cache_file: str):
|
|
638
|
+
if os.path.exists(cache_file):
|
|
639
|
+
os.remove(cache_file)
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
def cached_procedure(cache_file: str, payload_fn: Callable[..., str]):
|
|
643
|
+
"""Decorator to cache the runs of a procedure on disk. Procedures should not have
|
|
644
|
+
a return value.
|
|
645
|
+
|
|
646
|
+
Args:
|
|
647
|
+
cache_file: The file to store the cache payload in.
|
|
648
|
+
payload_fn: Function that computes cache payload from function args
|
|
649
|
+
|
|
650
|
+
Returns:
|
|
651
|
+
The decorated function.
|
|
652
|
+
"""
|
|
653
|
+
|
|
654
|
+
def _inner_decorator(func):
|
|
655
|
+
def _inner(*args, **kwargs):
|
|
656
|
+
payload = _read_cached_procedure_file(cache_file)
|
|
657
|
+
new_payload = payload_fn(*args, **kwargs)
|
|
658
|
+
if payload != new_payload:
|
|
659
|
+
_clear_cached_procedure_file(cache_file)
|
|
660
|
+
func(*args, **kwargs)
|
|
661
|
+
_write_cached_procedure_file(new_payload, cache_file)
|
|
662
|
+
|
|
663
|
+
return _inner
|
|
664
|
+
|
|
665
|
+
return _inner_decorator
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
@cached_procedure(
|
|
669
|
+
cache_file=os.path.join(
|
|
670
|
+
constants.Dirs.WEB, "reflex.install_frontend_packages.cached"
|
|
671
|
+
),
|
|
672
|
+
payload_fn=lambda p, c: f"{repr(sorted(list(p)))},{c.json()}",
|
|
673
|
+
)
|
|
674
|
+
def install_frontend_packages(packages: set[str], config: Config):
|
|
623
675
|
"""Installs the base and custom frontend packages.
|
|
624
676
|
|
|
625
677
|
Args:
|
|
626
678
|
packages: A list of package names to be installed.
|
|
679
|
+
config: The config object.
|
|
627
680
|
|
|
628
681
|
Example:
|
|
629
|
-
>>> install_frontend_packages(["react", "react-dom"])
|
|
682
|
+
>>> install_frontend_packages(["react", "react-dom"], get_config())
|
|
630
683
|
"""
|
|
631
684
|
# Install the base packages.
|
|
632
685
|
process = processes.new_process(
|
|
@@ -637,7 +690,6 @@ def install_frontend_packages(packages: set[str]):
|
|
|
637
690
|
|
|
638
691
|
processes.show_status("Installing base frontend packages", process)
|
|
639
692
|
|
|
640
|
-
config = get_config()
|
|
641
693
|
if config.tailwind is not None:
|
|
642
694
|
# install tailwind and tailwind plugins as dev dependencies.
|
|
643
695
|
process = processes.new_process(
|
reflex/utils/types.py
CHANGED
|
@@ -251,15 +251,18 @@ def is_valid_var_type(type_: Type) -> bool:
|
|
|
251
251
|
return _issubclass(type_, StateVar) or serializers.has_serializer(type_)
|
|
252
252
|
|
|
253
253
|
|
|
254
|
-
def is_backend_variable(name: str) -> bool:
|
|
254
|
+
def is_backend_variable(name: str, cls: Type | None = None) -> bool:
|
|
255
255
|
"""Check if this variable name correspond to a backend variable.
|
|
256
256
|
|
|
257
257
|
Args:
|
|
258
258
|
name: The name of the variable to check
|
|
259
|
+
cls: The class of the variable to check
|
|
259
260
|
|
|
260
261
|
Returns:
|
|
261
262
|
bool: The result of the check
|
|
262
263
|
"""
|
|
264
|
+
if cls is not None and name.startswith(f"_{cls.__name__}__"):
|
|
265
|
+
return False
|
|
263
266
|
return name.startswith("_") and not name.startswith("__")
|
|
264
267
|
|
|
265
268
|
|
reflex/vars.py
CHANGED
|
@@ -421,6 +421,26 @@ class Var:
|
|
|
421
421
|
and self._var_data == other._var_data
|
|
422
422
|
)
|
|
423
423
|
|
|
424
|
+
def _merge(self, other) -> Var:
|
|
425
|
+
"""Merge two or more dicts.
|
|
426
|
+
|
|
427
|
+
Args:
|
|
428
|
+
other: The other var to merge.
|
|
429
|
+
|
|
430
|
+
Returns:
|
|
431
|
+
The merged var.
|
|
432
|
+
|
|
433
|
+
Raises:
|
|
434
|
+
ValueError: If the other value to be merged is None.
|
|
435
|
+
"""
|
|
436
|
+
if other is None:
|
|
437
|
+
raise ValueError("The value to be merged cannot be None.")
|
|
438
|
+
if not isinstance(other, Var):
|
|
439
|
+
other = Var.create(other)
|
|
440
|
+
return self._replace(
|
|
441
|
+
_var_name=f"{{...{self._var_name}, ...{other._var_name}}}" # type: ignore
|
|
442
|
+
)
|
|
443
|
+
|
|
424
444
|
def to_string(self, json: bool = True) -> Var:
|
|
425
445
|
"""Convert a var to a string.
|
|
426
446
|
|
|
@@ -677,6 +697,16 @@ class Var:
|
|
|
677
697
|
|
|
678
698
|
left_operand, right_operand = (other, self) if flip else (self, other)
|
|
679
699
|
|
|
700
|
+
def get_operand_full_name(operand):
|
|
701
|
+
# operand vars that are string literals need to be wrapped in back ticks.
|
|
702
|
+
return (
|
|
703
|
+
operand._var_name_unwrapped
|
|
704
|
+
if operand._var_is_string
|
|
705
|
+
and not operand._var_state
|
|
706
|
+
and operand._var_is_local
|
|
707
|
+
else operand._var_full_name
|
|
708
|
+
)
|
|
709
|
+
|
|
680
710
|
if other is not None:
|
|
681
711
|
# check if the operation between operands is valid.
|
|
682
712
|
if op and not self.is_valid_operation(
|
|
@@ -688,18 +718,21 @@ class Var:
|
|
|
688
718
|
f"Unsupported Operand type(s) for {op}: `{left_operand._var_full_name}` of type {left_operand._var_type.__name__} and `{right_operand._var_full_name}` of type {right_operand._var_type.__name__}" # type: ignore
|
|
689
719
|
)
|
|
690
720
|
|
|
721
|
+
left_operand_full_name = get_operand_full_name(left_operand)
|
|
722
|
+
right_operand_full_name = get_operand_full_name(right_operand)
|
|
723
|
+
|
|
691
724
|
# apply function to operands
|
|
692
725
|
if fn is not None:
|
|
693
726
|
if invoke_fn:
|
|
694
727
|
# invoke the function on left operand.
|
|
695
|
-
operation_name = f"{
|
|
728
|
+
operation_name = f"{left_operand_full_name}.{fn}({right_operand_full_name})" # type: ignore
|
|
696
729
|
else:
|
|
697
730
|
# pass the operands as arguments to the function.
|
|
698
|
-
operation_name = f"{
|
|
731
|
+
operation_name = f"{left_operand_full_name} {op} {right_operand_full_name}" # type: ignore
|
|
699
732
|
operation_name = f"{fn}({operation_name})"
|
|
700
733
|
else:
|
|
701
734
|
# apply operator to operands (left operand <operator> right_operand)
|
|
702
|
-
operation_name = f"{
|
|
735
|
+
operation_name = f"{left_operand_full_name} {op} {right_operand_full_name}" # type: ignore
|
|
703
736
|
operation_name = format.wrap(operation_name, "(")
|
|
704
737
|
else:
|
|
705
738
|
# apply operator to left operand (<operator> left_operand)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: reflex
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9a2
|
|
4
4
|
Summary: Web apps in pure Python.
|
|
5
5
|
Home-page: https://reflex.dev
|
|
6
6
|
License: Apache-2.0
|
|
@@ -15,6 +15,7 @@ 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.0)
|
|
19
20
|
Requires-Dist: charset-normalizer (>=3.3.2,<4.0.0)
|
|
20
21
|
Requires-Dist: cloudpickle (>=2.2.1,<3.0.0)
|
|
@@ -242,7 +243,6 @@ We add a page from the root of the app to the index component. We also add a tit
|
|
|
242
243
|
|
|
243
244
|
```python
|
|
244
245
|
app.add_page(index, title="DALL-E")
|
|
245
|
-
app.compile()
|
|
246
246
|
```
|
|
247
247
|
|
|
248
248
|
You can create a multi-page app by adding more pages.
|
|
@@ -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=49tSWv0vpFpElJvx4E6LDHv9eBJGliS6gyzLgV8-B0U,1209
|
|
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,7 +8,7 @@ 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=LLA1UmonVgKuUfuwyuk28ZVTPPwog8jYKvLT81uvGUA,2738
|
|
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=eTlFlM8nDLSF8WT6_bV_yO4SBGEcMj2gx1CUVYQhGAo,692
|
|
14
14
|
reflex/.templates/apps/demo/code/pages/datatable.py,sha256=LlXyrLiAW7KEJoNSMTw-nIxUphXtvGOFh6g-blVBSfw,10749
|
|
@@ -56,7 +56,7 @@ reflex/.templates/jinja/web/pages/custom_component.js.jinja2,sha256=jDqpIxibHp1i
|
|
|
56
56
|
reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=5yzGDRJ-pMCnYwVSnUCQk7eZK-hfD0VW7tLISHkMnvA,343
|
|
57
57
|
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=Zk9MpnnvxQLK4CyxywvvaWFP-ON3n4VESrzRRWG4mFk,298
|
|
58
58
|
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
59
|
-
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=
|
|
59
|
+
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=xi1ryZ2dqWM4pmB4p028hxRtsdP6T3ZR5a8OG_U1IAs,3883
|
|
60
60
|
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=4-CvqGR8-nRzkuCOSp_PdqmhPEmOs_kOhskOlhLMEUg,141
|
|
61
61
|
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=cblxOcM8DLKg9S8OgS-uxA4OfGer60GAWwBOxNXwqzo,436
|
|
62
62
|
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=yj7gFQExMSntQnetCdoHCV5Gjz2mYamyInwG0zZOXZc,2780
|
|
@@ -72,16 +72,16 @@ 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=gAH1K2MDbXn6DIN4FVeBVWIgT6s0JmkNSjy7pRJ654M,8093
|
|
76
|
+
reflex/__init__.pyi,sha256=yyouYAJAYMciGhMerm-GDax9K89eEIxMmUy8sf2H_Ig,27059
|
|
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=zSdxHI4g2c9ZyP7VdXrcFeKKmEbL8IerD9PVHqD3eKQ,39655
|
|
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
86
|
reflex/compiler/utils.py,sha256=gvZsj_OXGHa8Aewfp5UOLCh1-7ukxHnWEifOR4WyB9Y,12830
|
|
87
87
|
reflex/components/__init__.py,sha256=g9RLTzO5ZBVqV5BuMLwItS9aoBCJUNmgmNlpanq9icc,461
|
|
@@ -246,7 +246,7 @@ reflex/components/chakra/typography/span.py,sha256=2DbW5DB27ijtTeugSDUVp3nQ64mrG
|
|
|
246
246
|
reflex/components/chakra/typography/span.pyi,sha256=IzFlO6mqV38IQu_JKbDBujIr5_9m0YDr_0Sx5g3T2ZY,3438
|
|
247
247
|
reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
|
|
248
248
|
reflex/components/chakra/typography/text.pyi,sha256=wDhAg9ZHK-FfrKutX0LWv0-lWprJAeurvx8n-UjUNec,3662
|
|
249
|
-
reflex/components/component.py,sha256=
|
|
249
|
+
reflex/components/component.py,sha256=li19BpGk7cq-JxsbGwdJG892S7JXcyDE1XAl-Tu0pPs,56797
|
|
250
250
|
reflex/components/core/__init__.py,sha256=nERy0Iejdf80_PK7NbtAG_jjKnM-LHd5GDkPDFKPwGk,605
|
|
251
251
|
reflex/components/core/banner.py,sha256=ZLWW_WBf-13GYpXcGanyKg7To_L4pKAlI9anwWe3c9E,3223
|
|
252
252
|
reflex/components/core/banner.pyi,sha256=mOClsFjS_sEjtaSq4s4crRZZHzRF4-07v7EouTmZEDM,8268
|
|
@@ -256,12 +256,12 @@ reflex/components/core/cond.py,sha256=kVOnwRdw-Qyj-GHLPjx-hTNWxZGFXCPcmALnW8dwNw
|
|
|
256
256
|
reflex/components/core/debounce.py,sha256=tImFRRaJkWzJXFAUoVlnKRX8XRQmlSQNZMB82_RdHpo,4563
|
|
257
257
|
reflex/components/core/debounce.pyi,sha256=hgWaIGFzPyUM_Fuonx5EVX6fKLyLEPaJWc5sn3Fc1sg,4112
|
|
258
258
|
reflex/components/core/foreach.py,sha256=Qk6UtwzQY6PR8-v40XRdt3knXiVH33cukbEvzyTV7XA,4031
|
|
259
|
-
reflex/components/core/match.py,sha256=
|
|
259
|
+
reflex/components/core/match.py,sha256=T3bdCQfEioA0yRBYDe8z57WAnLSyYOHan5PDOs4hlJE,9047
|
|
260
260
|
reflex/components/core/responsive.py,sha256=nLcLjFHnXYrsB0iyg3aWkEM145R8H998ZjQ7hw7aIXE,1905
|
|
261
261
|
reflex/components/core/upload.py,sha256=3E0Mbc44q6MfEWKv-VwqPcpqyYjyHl2JOq51Qz88Wcc,5954
|
|
262
262
|
reflex/components/core/upload.pyi,sha256=vwW7ddseBxJlAQfuIRFTGXqrLkWY7iZiFOHzN4ZAcn4,8367
|
|
263
263
|
reflex/components/datadisplay/__init__.py,sha256=9fAcuhBCsc6M06CqQLn4Xjb_TvS3R3TVP5P_aXnHh9I,150
|
|
264
|
-
reflex/components/datadisplay/dataeditor.py,sha256=
|
|
264
|
+
reflex/components/datadisplay/dataeditor.py,sha256=WdeEGRVlC1W2WnPn4zKhmyoaKTqgowqiiLg8zeuHTGw,12632
|
|
265
265
|
reflex/components/datadisplay/dataeditor.pyi,sha256=SzXDOifd0r6FIL8SKHfCbYVMnvAuLTTtJrfz22ig57E,10480
|
|
266
266
|
reflex/components/el/__init__.py,sha256=3QR9GuYBnFvtxLQm_aeSUzGJsqJBUjeTt6tcHyCqAcQ,73
|
|
267
267
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
@@ -296,7 +296,7 @@ reflex/components/gridjs/datatable.py,sha256=jinq5J8CIcmdbMynVLc9HAPCAVhozsN_gjX
|
|
|
296
296
|
reflex/components/gridjs/datatable.pyi,sha256=8SK6FPSAFCNWXi6fRM98mAnC3cHO2SkUuT12-f5-uww,7119
|
|
297
297
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
298
298
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
299
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
299
|
+
reflex/components/markdown/markdown.py,sha256=r9KJgDd1ujwgMuflCHjqISncrmqAQnH37HtpGYy7i-w,11019
|
|
300
300
|
reflex/components/markdown/markdown.pyi,sha256=hVNo52M2QN7vzDtJtxa-i1VvmSCW9DwHS6Ugxo9bII8,5252
|
|
301
301
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
302
302
|
reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
|
|
@@ -315,64 +315,64 @@ reflex/components/next/video.pyi,sha256=KJRYUhFWMFfN1e46hFQ8Hl-L8qHqicqpb0E6GHtI
|
|
|
315
315
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
316
316
|
reflex/components/plotly/plotly.py,sha256=bIXN9lsxYEbpmSvbau6GPYdLTZihEB3YgT1psTGVzXI,910
|
|
317
317
|
reflex/components/plotly/plotly.pyi,sha256=2scs_64ZoEcGDQW7Yy_4iY2YfYXbNewpU82tllUqKvI,6900
|
|
318
|
-
reflex/components/radix/__init__.py,sha256=
|
|
319
|
-
reflex/components/radix/primitives/__init__.py,sha256=
|
|
320
|
-
reflex/components/radix/primitives/accordion.py,sha256=
|
|
321
|
-
reflex/components/radix/primitives/accordion.pyi,sha256=
|
|
322
|
-
reflex/components/radix/primitives/base.py,sha256=
|
|
323
|
-
reflex/components/radix/primitives/base.pyi,sha256=
|
|
324
|
-
reflex/components/radix/primitives/form.py,sha256=
|
|
325
|
-
reflex/components/radix/primitives/form.pyi,sha256=
|
|
326
|
-
reflex/components/radix/primitives/progress.py,sha256=
|
|
327
|
-
reflex/components/radix/primitives/progress.pyi,sha256=
|
|
328
|
-
reflex/components/radix/primitives/slider.py,sha256=
|
|
329
|
-
reflex/components/radix/primitives/slider.pyi,sha256=
|
|
318
|
+
reflex/components/radix/__init__.py,sha256=FZ_9jhHwzKDbYq30Ij-vI6oe8lHHuKVq9jaTHpa5QhY,97
|
|
319
|
+
reflex/components/radix/primitives/__init__.py,sha256=DCGqLHDRVUJa6O3AIDsx9Bw_UfXJedPR5_2_fLa0AsI,623
|
|
320
|
+
reflex/components/radix/primitives/accordion.py,sha256=1irfS9X6LeEgQyjLGVIefokxs0I3b7Kt7IzZFb8ybf0,19419
|
|
321
|
+
reflex/components/radix/primitives/accordion.pyi,sha256=yk8R9nwh7XWGp-7BWi-TMRWtlg-LdDBDgUggvJEXPLs,21712
|
|
322
|
+
reflex/components/radix/primitives/base.py,sha256=s3OX4V2pNl6AQ3H9rz-pkE-2TNuNrqj0Mn2mOItF0eM,869
|
|
323
|
+
reflex/components/radix/primitives/base.pyi,sha256=qUe7AXWlGcueBIrEWuSCAzmjnkr1ja5VQf8boD__3pc,6615
|
|
324
|
+
reflex/components/radix/primitives/form.py,sha256=t7cSFyieCMSvJ9CZeiIpei9ELHvWYW3411n-YvRxv_g,7544
|
|
325
|
+
reflex/components/radix/primitives/form.pyi,sha256=_tIhLINYbH9jNgfSp0oq79j8oym1dIOXI7o80qerZCo,27596
|
|
326
|
+
reflex/components/radix/primitives/progress.py,sha256=DoOpCZkbTydqZzGv0jiMCfoZyfAG43cDLRNMgOQz34k,2117
|
|
327
|
+
reflex/components/radix/primitives/progress.pyi,sha256=DIcGsmYAF3ft4CVKxLkvgMhRbPxpzi-JVAIVyEjw68Y,10053
|
|
328
|
+
reflex/components/radix/primitives/slider.py,sha256=eCKzT7e08F1mIGm-d9wVQ-4OWPAnDY7s6p5IPUtjzHg,4750
|
|
329
|
+
reflex/components/radix/primitives/slider.pyi,sha256=AdVkJWGxHedUh-iNgqd37MSRWUDmUqN84OnFgTogh-g,16906
|
|
330
330
|
reflex/components/radix/themes/__init__.py,sha256=615Yg-j04dqhEZJdKoafCyOOXBTtCT20u7d2cBKleeI,237
|
|
331
331
|
reflex/components/radix/themes/base.py,sha256=eegKPprUz-TP0zYnD7eKRKYLCvmwyyzIL3UL5VVspW4,5036
|
|
332
332
|
reflex/components/radix/themes/base.pyi,sha256=ODp4st81g50bU0DLIo-tiQH-ci4W3LFec7W2DmBvles,27188
|
|
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=
|
|
333
|
+
reflex/components/radix/themes/components/__init__.py,sha256=T2BMqGSQgeRcK5nyoewwHdebA1qqaSpYh8hgjbD4Y7c,5352
|
|
334
|
+
reflex/components/radix/themes/components/alertdialog.py,sha256=eXBpattF8BZwYa-sEBPILcqmW-2C-tPov0GxwKFQ1Lo,2735
|
|
335
|
+
reflex/components/radix/themes/components/alertdialog.pyi,sha256=v1xAgveOI3N7-kGl2U7ycrX_Q9637CBvbpb6mzyI46c,52045
|
|
336
|
+
reflex/components/radix/themes/components/aspectratio.py,sha256=fShfRAYfPNsNUEW4KKEZymJuxqcMEyooGNrvp0PXbZg,415
|
|
337
|
+
reflex/components/radix/themes/components/aspectratio.pyi,sha256=kxbDAIinzMZ2BgV8fKRGNUu08ia_wIWANvSQCLtYxIA,7420
|
|
338
|
+
reflex/components/radix/themes/components/avatar.py,sha256=F03_dZFwj-ZDqt2dUFTdLupK02CU-PuiR96ZcA6VVuY,932
|
|
339
|
+
reflex/components/radix/themes/components/avatar.pyi,sha256=K6Fzb27VJh6cPOsi-dEs0Bzcnam6GsthDlVe8B_jB1o,8456
|
|
340
|
+
reflex/components/radix/themes/components/badge.py,sha256=LJ6A4Vl31g7sU1g5t-yXSsIqWQDEYmsO3XRy04sX2RA,846
|
|
341
|
+
reflex/components/radix/themes/components/badge.pyi,sha256=uksar_qdmF6zgfY4Vt0k9SUNAtzFGWiYkAXVh7eM3JM,11475
|
|
342
342
|
reflex/components/radix/themes/components/button.py,sha256=-Y_tPwNPb7_Ssgz4hxYrEUrJpASCq3gRw5sf1GweVWI,1094
|
|
343
343
|
reflex/components/radix/themes/components/button.pyi,sha256=QTJcodwyRonkPovwwJJqMqd4az_ItmhSIFBTYEdBiZA,13948
|
|
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=
|
|
344
|
+
reflex/components/radix/themes/components/callout.py,sha256=Pz7cUxg-KbW9lANi6bvfdNSJ3731pkNtnIsEWZRJDtc,2178
|
|
345
|
+
reflex/components/radix/themes/components/callout.pyi,sha256=FDsVQh1UQPKNieNGYu11R7EDHmSlYqR6HLhKv0c38bw,42283
|
|
346
|
+
reflex/components/radix/themes/components/card.py,sha256=eaFmrLUgc--Pqpv5czHQr-j2wK34Oxh2fv9tuzTj_W8,680
|
|
347
|
+
reflex/components/radix/themes/components/card.pyi,sha256=oPwc0-GijZsTnAs1g7nlopklXkpw4Sf4lUIbf35Cq5Y,11208
|
|
348
|
+
reflex/components/radix/themes/components/checkbox.py,sha256=Gz33r34QFkTF-xHvugpY9x5jSNB526Y3IvNij2atxCo,2828
|
|
349
|
+
reflex/components/radix/themes/components/checkbox.pyi,sha256=R_m2DPIYIKabRaGJhK_wBQ8PotqMZKR7jkTGfulHAeM,17847
|
|
350
350
|
reflex/components/radix/themes/components/contextmenu.py,sha256=zUTll40KITIS7I4EGkVqILHI9sD0fmsVj7ceAxfXZaw,4200
|
|
351
351
|
reflex/components/radix/themes/components/contextmenu.pyi,sha256=3rpl2Ic6EHCLUuhUOTIydL_tzHpCTFJqgSq9S3ybH-w,57263
|
|
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=
|
|
352
|
+
reflex/components/radix/themes/components/dialog.py,sha256=d4R-ntwpk0tyaPuyf5P6YXvcATROLYOoQ4RXQlS4ReI,2473
|
|
353
|
+
reflex/components/radix/themes/components/dialog.pyi,sha256=txo5pRua0dRlUU8P-purJzPBa48rz5nkEcVcz3r28Hs,45428
|
|
354
|
+
reflex/components/radix/themes/components/dropdownmenu.py,sha256=-nFy_r0WgJhh4c6un-GUhTi9gP7-rioe-45YnEZ-GfE,3362
|
|
355
|
+
reflex/components/radix/themes/components/dropdownmenu.pyi,sha256=pB88m0xggLME9lpEI6VFZPoBHBgisUZE_5pjpE9NXco,56063
|
|
356
356
|
reflex/components/radix/themes/components/hovercard.py,sha256=_PAN2h5EL3pd0ewk4gfZlc5x3x_znucndLvtFCTQKhk,2112
|
|
357
357
|
reflex/components/radix/themes/components/hovercard.pyi,sha256=cptJ27uwxAq6BJ_FrV2DlrAdWuEP7YE8pABRP1kQVSc,25805
|
|
358
|
-
reflex/components/radix/themes/components/iconbutton.py,sha256=
|
|
359
|
-
reflex/components/radix/themes/components/iconbutton.pyi,sha256=
|
|
360
|
-
reflex/components/radix/themes/components/icons.py,sha256=
|
|
358
|
+
reflex/components/radix/themes/components/iconbutton.py,sha256=fxd6lwgt7SZ6meRoNaVXPiDyGQ7OXWmu1NoIa-scUWI,1122
|
|
359
|
+
reflex/components/radix/themes/components/iconbutton.pyi,sha256=hpeOOe7qZvTANOgo5ODOkVDJi-fkA0BVSBGOfed_QZw,13984
|
|
360
|
+
reflex/components/radix/themes/components/icons.py,sha256=TbsTn5EVDuGde4bkRL3RioYn6-VupQx6he1pLdUcXjM,7953
|
|
361
361
|
reflex/components/radix/themes/components/icons.pyi,sha256=Q4A3AFUjP-d0jrJVjbbyztx6I7PX71GQ30k2i4FmOEA,6577
|
|
362
|
-
reflex/components/radix/themes/components/inset.py,sha256=
|
|
363
|
-
reflex/components/radix/themes/components/inset.pyi,sha256=
|
|
362
|
+
reflex/components/radix/themes/components/inset.py,sha256=a_7HhfcM-Sb5ImOriob6eLZeKRbIAEUT2DbR1yDlPaQ,1028
|
|
363
|
+
reflex/components/radix/themes/components/inset.pyi,sha256=R2uUAiuITfTeRPJlGy3T2oofoE7Sn0J5YeYU1PYARfM,11895
|
|
364
364
|
reflex/components/radix/themes/components/popover.py,sha256=1FB2hbR44c0PVG8pLj4aax1v1ioLJ-hM8mmbwWkWzTY,2803
|
|
365
365
|
reflex/components/radix/themes/components/popover.pyi,sha256=8F4m4TQuiIDDZFLCkktPxN3y-6OS-z5RsV3xzaPqSFI,33246
|
|
366
|
-
reflex/components/radix/themes/components/radiogroup.py,sha256=
|
|
367
|
-
reflex/components/radix/themes/components/radiogroup.pyi,sha256=
|
|
366
|
+
reflex/components/radix/themes/components/radiogroup.py,sha256=i-zseZbcwT0ORP1n3WlWtebi5rgdxS8GF7CBK-yDEzY,4297
|
|
367
|
+
reflex/components/radix/themes/components/radiogroup.pyi,sha256=MyXkgtbz35vuTJ-FV1uHiXqiBOhHiFfJAs6yuh-8nJE,25747
|
|
368
368
|
reflex/components/radix/themes/components/scrollarea.py,sha256=puVu_tUTZLxNikwRy4KEJOO7IMzWvkvjszQkIIzLzNs,1105
|
|
369
369
|
reflex/components/radix/themes/components/scrollarea.pyi,sha256=5663C3zbOd2miuha807wotqqHY8RsalK3pNUKoQBNcU,8638
|
|
370
|
-
reflex/components/radix/themes/components/select.py,sha256=
|
|
371
|
-
reflex/components/radix/themes/components/select.pyi,sha256=
|
|
370
|
+
reflex/components/radix/themes/components/select.py,sha256=ksx7RuSz7WCEO4ESr-nAH1MEaODOsKK2PGSKpG7vek8,7184
|
|
371
|
+
reflex/components/radix/themes/components/select.pyi,sha256=jrsYm9fSlLrKR5dsro7qsQPQKH6HMPvig0bITBL8br8,61590
|
|
372
372
|
reflex/components/radix/themes/components/separator.py,sha256=Z98WGWqpEFegf3yBkdzrDHAurs_H3ChhueNQtkD0GfA,847
|
|
373
373
|
reflex/components/radix/themes/components/separator.pyi,sha256=B65VsD3-tgZg-GhzJVH4Rer-2lSpc5CJxv1VE8cdK94,7982
|
|
374
|
-
reflex/components/radix/themes/components/slider.py,sha256=
|
|
375
|
-
reflex/components/radix/themes/components/slider.pyi,sha256=
|
|
374
|
+
reflex/components/radix/themes/components/slider.py,sha256=A-BN7ddCWoBCxtplJmEXuLcx7mo2KevVqSZ57-jqXCI,2146
|
|
375
|
+
reflex/components/radix/themes/components/slider.pyi,sha256=UsTpZKBzkx1_sYs_G64aHRAd7F7JJXozzCw3b3ItXMI,10068
|
|
376
376
|
reflex/components/radix/themes/components/switch.py,sha256=Lp_feJEgo9YoWjtXRXKwHRNE2SGiNJzcbUFN5s1av28,1950
|
|
377
377
|
reflex/components/radix/themes/components/switch.pyi,sha256=Hk3VfyMHUeczJ9O_ZeMwawIsqoWIVruYiwZh_nm9gHE,9543
|
|
378
378
|
reflex/components/radix/themes/components/table.py,sha256=0SV_uEAogTni0qOfvB0UAji7KPUDFLing2aR963vKt8,2229
|
|
@@ -383,12 +383,12 @@ reflex/components/radix/themes/components/textarea.py,sha256=Sio7jSZWDbhLm2Nv4c6
|
|
|
383
383
|
reflex/components/radix/themes/components/textarea.pyi,sha256=BBunoRtoLgpJZp768RmrcUP5RHuMzLSHVztSe_seD5c,13865
|
|
384
384
|
reflex/components/radix/themes/components/textfield.py,sha256=PCJ8ANFVBObIYb_NsT1wk9Ewumq872Bny7NufKd7L7A,3039
|
|
385
385
|
reflex/components/radix/themes/components/textfield.pyi,sha256=Q8ej_pEC3QsaxbdG59UZlLPdZ4K-q4UPyEWTvvrLWr0,33495
|
|
386
|
-
reflex/components/radix/themes/components/tooltip.py,sha256=
|
|
387
|
-
reflex/components/radix/themes/components/tooltip.pyi,sha256=
|
|
386
|
+
reflex/components/radix/themes/components/tooltip.py,sha256=HH_ToIXNzyPiLPVwUs2UYauJ6p9XjM7Eyst1ENf_uYE,397
|
|
387
|
+
reflex/components/radix/themes/components/tooltip.pyi,sha256=sWyc1mntb2v70eJ7L9H3US9L-sqmBKGAOqUi_ve8uzQ,7335
|
|
388
388
|
reflex/components/radix/themes/layout/__init__.py,sha256=B8KvgTw9HHKDugL9RNbL4pI0utMQqSoogZoAd6mFx2g,265
|
|
389
389
|
reflex/components/radix/themes/layout/base.py,sha256=OSGDf_RgNEzb1BPZ72VmM9b9TT1dwV08Dsfwb6AUB70,1176
|
|
390
390
|
reflex/components/radix/themes/layout/base.pyi,sha256=BtrTGGxhIzowf_1qhmsxbyOZZ0zpYdcO-Ebqud_sr4U,9474
|
|
391
|
-
reflex/components/radix/themes/layout/box.py,sha256=
|
|
391
|
+
reflex/components/radix/themes/layout/box.py,sha256=ggxWbI4I-Z4Sung5yk7IPpRB1TXpTY6c_hriENJ-VW8,270
|
|
392
392
|
reflex/components/radix/themes/layout/box.pyi,sha256=XVrDK9qFp3PQhdbG9bkjAN9XEKqnXElQuIeOL2xnF3I,12597
|
|
393
393
|
reflex/components/radix/themes/layout/container.py,sha256=q_otAvN8f4sHWK5ndinSP28QD9UXVS4DR7P04e5pMGY,541
|
|
394
394
|
reflex/components/radix/themes/layout/container.pyi,sha256=IDhtH_s1Xl0dWxRpcNP80VG4zCG4ZZvSReIcJg7EW8g,12914
|
|
@@ -465,8 +465,8 @@ reflex/page.py,sha256=VkrInVJ1jIlu141y4ssFh4dW7d5Uc8CbOaWY9JzwBa0,1916
|
|
|
465
465
|
reflex/page.pyi,sha256=nFfbDe-tBsrIrcAKWsoTy92olMkAosbmddh_Pgf2Sxc,505
|
|
466
466
|
reflex/reflex.py,sha256=4OQo-RIxpEVs-FI98gAp9ZW6dcz77oWg_qa8_C5Q6ng,17040
|
|
467
467
|
reflex/route.py,sha256=eVi2TSk9uM7DDGBy6rDYe6Gq4iuHZFK00Vmoq9IbIjk,2732
|
|
468
|
-
reflex/state.py,sha256=
|
|
469
|
-
reflex/style.py,sha256=
|
|
468
|
+
reflex/state.py,sha256=WLPL60XfT9gJ7MNZYQV-LLaLzKygP7w8EWTYf-0_le8,72578
|
|
469
|
+
reflex/style.py,sha256=2sUZeQdz3h-Ha3AvtRfE7YOxZqaU9K5abDP6vwOIX3A,7568
|
|
470
470
|
reflex/testing.py,sha256=hO_NOS9Tcvx6eQqXs6riBgoUlMbauTUu2fyOxinUMOU,28057
|
|
471
471
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
472
472
|
reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
|
|
@@ -476,17 +476,17 @@ reflex/utils/exec.py,sha256=rbG1Mhx4s6yvge_dEDynbT9oAH-iJSiDCsvhSKyJsNM,8622
|
|
|
476
476
|
reflex/utils/export.py,sha256=daLyx4W-Kjit7Wjg5Db7-yFarF8r0d2IJ8aliXLDXZo,2454
|
|
477
477
|
reflex/utils/format.py,sha256=gCic4Gm41jyQ_C9NcO37vU2vaoLSqaEWmcl7DejHBYA,20266
|
|
478
478
|
reflex/utils/imports.py,sha256=yah1kSVsOyUxA0wOMxJTwcmu6xlmkLJtV_zRIhshpsA,1919
|
|
479
|
-
reflex/utils/path_ops.py,sha256=
|
|
480
|
-
reflex/utils/prerequisites.py,sha256=
|
|
479
|
+
reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
|
|
480
|
+
reflex/utils/prerequisites.py,sha256=8-AKsEfc4qbO6T_Qzl3ytU-7NL9JnJ9FB3HZaJqgeK4,30564
|
|
481
481
|
reflex/utils/processes.py,sha256=3VZ48WzPy_PDZ6kSoewnHxHahqA9nAsW2ITXGPcK8LQ,8351
|
|
482
482
|
reflex/utils/serializers.py,sha256=r6POCP0eaVW2GITtLrmcXSsSJkhaezp68riut626VD4,7635
|
|
483
483
|
reflex/utils/telemetry.py,sha256=CxRreEGR3e3mq6oOuAf3krN4cCKtdPs47Q9gaY0svr8,2388
|
|
484
|
-
reflex/utils/types.py,sha256=
|
|
484
|
+
reflex/utils/types.py,sha256=O468UkPYHBdLAYhhZxtydUELMsfVVNVRN8d5Yw4z_VE,8404
|
|
485
485
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
486
|
-
reflex/vars.py,sha256=
|
|
486
|
+
reflex/vars.py,sha256=Jo7e-UVLXHPITScyhM-q2kQcB2jyHcNpuRFGB6cilxg,61167
|
|
487
487
|
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.
|
|
488
|
+
reflex-0.3.9a2.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
489
|
+
reflex-0.3.9a2.dist-info/METADATA,sha256=R8ROBH5tfrDQinlGXUNtTSG_zwGulm9SG5eP_P8XX4Q,11297
|
|
490
|
+
reflex-0.3.9a2.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
491
|
+
reflex-0.3.9a2.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
492
|
+
reflex-0.3.9a2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|