reflex 0.3.8a1__py3-none-any.whl → 0.3.9__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/apps/sidebar/code/sidebar.py +6 -1
- reflex/.templates/jinja/web/pages/utils.js.jinja2 +1 -1
- reflex/__init__.py +2 -0
- reflex/__init__.pyi +3 -0
- reflex/app.py +22 -7
- reflex/components/chakra/__init__.py +1 -0
- reflex/components/chakra/forms/__init__.py +1 -0
- reflex/components/chakra/forms/time_picker.py +11 -0
- reflex/components/chakra/forms/time_picker.pyi +129 -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 +430 -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 +14 -4
- reflex/components/radix/themes/components/alertdialog.py +31 -10
- reflex/components/radix/themes/components/alertdialog.pyi +396 -3
- 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 +94 -5
- reflex/components/radix/themes/components/select.pyi +251 -5
- 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 +21 -4
- reflex/style.py +15 -0
- reflex/testing.py +2 -0
- reflex/utils/format.py +13 -9
- reflex/utils/path_ops.py +2 -2
- reflex/utils/prerequisites.py +61 -4
- reflex/utils/types.py +4 -1
- reflex/vars.py +36 -3
- {reflex-0.3.8a1.dist-info → reflex-0.3.9.dist-info}/METADATA +2 -2
- {reflex-0.3.8a1.dist-info → reflex-0.3.9.dist-info}/RECORD +73 -71
- {reflex-0.3.8a1.dist-info → reflex-0.3.9.dist-info}/WHEEL +1 -1
- {reflex-0.3.8a1.dist-info → reflex-0.3.9.dist-info}/LICENSE +0 -0
- {reflex-0.3.8a1.dist-info → reflex-0.3.9.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
|
|
|
@@ -159,6 +160,13 @@ def get_app(reload: bool = False) -> ModuleType:
|
|
|
159
160
|
sys.path.insert(0, os.getcwd())
|
|
160
161
|
app = __import__(module, fromlist=(constants.CompileVars.APP,))
|
|
161
162
|
if reload:
|
|
163
|
+
from reflex.state import State
|
|
164
|
+
|
|
165
|
+
# Reset rx.State subclasses to avoid conflict when reloading.
|
|
166
|
+
for subclass in tuple(State.class_subclasses):
|
|
167
|
+
if subclass.__module__ == module:
|
|
168
|
+
State.class_subclasses.remove(subclass)
|
|
169
|
+
# Reload the app module.
|
|
162
170
|
importlib.reload(app)
|
|
163
171
|
|
|
164
172
|
return app
|
|
@@ -614,14 +622,64 @@ def install_bun():
|
|
|
614
622
|
)
|
|
615
623
|
|
|
616
624
|
|
|
617
|
-
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):
|
|
618
675
|
"""Installs the base and custom frontend packages.
|
|
619
676
|
|
|
620
677
|
Args:
|
|
621
678
|
packages: A list of package names to be installed.
|
|
679
|
+
config: The config object.
|
|
622
680
|
|
|
623
681
|
Example:
|
|
624
|
-
>>> install_frontend_packages(["react", "react-dom"])
|
|
682
|
+
>>> install_frontend_packages(["react", "react-dom"], get_config())
|
|
625
683
|
"""
|
|
626
684
|
# Install the base packages.
|
|
627
685
|
process = processes.new_process(
|
|
@@ -632,7 +690,6 @@ def install_frontend_packages(packages: set[str]):
|
|
|
632
690
|
|
|
633
691
|
processes.show_status("Installing base frontend packages", process)
|
|
634
692
|
|
|
635
|
-
config = get_config()
|
|
636
693
|
if config.tailwind is not None:
|
|
637
694
|
# install tailwind and tailwind plugins as dev dependencies.
|
|
638
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.9
|
|
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
|
|
@@ -42,7 +42,7 @@ reflex/.templates/apps/sidebar/code/pages/__init__.py,sha256=-sAdgxOrv5BNtXWFTcE
|
|
|
42
42
|
reflex/.templates/apps/sidebar/code/pages/dashboard.py,sha256=nHn5C0mX5ShPNviNhRa4da_PpuORx79XlIJClsqXbNM,496
|
|
43
43
|
reflex/.templates/apps/sidebar/code/pages/index.py,sha256=zLYpL9Wzh0riIgHmZKRGS7jbpVifAkyhWehOBUVVPEM,436
|
|
44
44
|
reflex/.templates/apps/sidebar/code/pages/settings.py,sha256=ccIO3dZ6192UptoDlLDHt3JEp-smA65fWFuX6V2L0gQ,489
|
|
45
|
-
reflex/.templates/apps/sidebar/code/sidebar.py,sha256=
|
|
45
|
+
reflex/.templates/apps/sidebar/code/sidebar.py,sha256=WXiYCt4a_stS1IQ4qZp4BLdnEmUI5rEQ5uWazUx9bzA,270
|
|
46
46
|
reflex/.templates/apps/sidebar/code/styles.py,sha256=VDvIprFB4C8wRr-0ATKTmQT81uB8ajdBEit4fIcmR28,1501
|
|
47
47
|
reflex/.templates/apps/sidebar/code/templates/__init__.py,sha256=MhJVkjYK0TUamNuR7hGSo0YKZVCTFJkN4FgC_w-zBHw,31
|
|
48
48
|
reflex/.templates/apps/sidebar/code/templates/template.py,sha256=hNErPMLC2sreafiMgzffKLh2H2FS98ocK3zaVLEKDLc,3584
|
|
@@ -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,11 +72,11 @@ 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=zUArt6qDRid09ZcOrLUzCdqk84a2sBI42LE0BJ4miG0,39173
|
|
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
|
|
@@ -103,7 +103,7 @@ reflex/components/base/meta.py,sha256=RWITTQTA_35-FbaVGhjkAWDOmU65rzJ-WedENRJk-3
|
|
|
103
103
|
reflex/components/base/meta.pyi,sha256=JIWM2x8z_A8sOpEoRv-avjOXyEC8OajqTGnCOnmBMqQ,13083
|
|
104
104
|
reflex/components/base/script.py,sha256=sNuoSeO1XxVfqSd9EADlOeNDti-zf8-vn_yd0NcmImc,2298
|
|
105
105
|
reflex/components/base/script.pyi,sha256=11PEE77sBt78L4AsEdhgD7uQ7TpqGNStCpD_vI8MIDw,4495
|
|
106
|
-
reflex/components/chakra/__init__.py,sha256=
|
|
106
|
+
reflex/components/chakra/__init__.py,sha256=HX_hJJl-fOw91KYRel6wXIvS8hNr1E7TxP-yPS13gWU,6427
|
|
107
107
|
reflex/components/chakra/base.py,sha256=dUlNe46V4ibTft6H8sR37hNUvHNr0DrSLOxv3fXvbGg,6621
|
|
108
108
|
reflex/components/chakra/base.pyi,sha256=7cYikxUYlVk_S7_mInup1jjQrK-1rtm0gCQ97U7kpE0,13958
|
|
109
109
|
reflex/components/chakra/datadisplay/__init__.py,sha256=vnxBrwRoAoAGOhizifxuhNS0OXd64LcI-_54-9tGEBY,596
|
|
@@ -143,7 +143,7 @@ reflex/components/chakra/feedback/skeleton.py,sha256=A_3XRK_5PVei9vtgN0nE5NpLROs
|
|
|
143
143
|
reflex/components/chakra/feedback/skeleton.pyi,sha256=fWW1RtQ6w3hd3XnRSgZPYDabYo3I-sNjwjzo1htXars,10898
|
|
144
144
|
reflex/components/chakra/feedback/spinner.py,sha256=NlnnwyTIf-I8AVkc2cDKN-522DjE-taG5dtzmBHar74,704
|
|
145
145
|
reflex/components/chakra/feedback/spinner.pyi,sha256=p9h2uJ365jdlMkr-u0EOd6GjSqgNDBIxkubne9aVcOk,4173
|
|
146
|
-
reflex/components/chakra/forms/__init__.py,sha256=
|
|
146
|
+
reflex/components/chakra/forms/__init__.py,sha256=wZKAr5kRyKjbXmL2k-9KKjc5cQl_Gh8xEmK2GU7lQiQ,1522
|
|
147
147
|
reflex/components/chakra/forms/button.py,sha256=tglnHifAxYlP8U08zrr5mSB3yrg52qUD-4rq3I3jJf0,2395
|
|
148
148
|
reflex/components/chakra/forms/button.pyi,sha256=HhsjPv7_0qpx3qk_Vvkri6r6wXfewyVk2OxG60y2aYU,10682
|
|
149
149
|
reflex/components/chakra/forms/checkbox.py,sha256=aicuKq19yCv_johCznquBD4STvacJ-74zbZ6VVfB-mk,2764
|
|
@@ -183,6 +183,8 @@ reflex/components/chakra/forms/switch.py,sha256=LVtJajB14_5ZzS63MyTLUfmna3Fnx4Xg
|
|
|
183
183
|
reflex/components/chakra/forms/switch.pyi,sha256=hBSghEZFWlt0HQaZFwuEvcW3Fs4LEFXdgzhYOVmG8iw,6597
|
|
184
184
|
reflex/components/chakra/forms/textarea.py,sha256=Wqf2-ovXIe60jStESFBk0ls4HdpO8ZPC9TiozYHwOuc,2740
|
|
185
185
|
reflex/components/chakra/forms/textarea.pyi,sha256=ODnMeaJHeVSgikHoto10KbTso4_Mmy_j7sRwTXNWXEc,5414
|
|
186
|
+
reflex/components/chakra/forms/time_picker.py,sha256=BriPTj3MYdmSbgqUJfTGGbQCPNWl6DjXWEX-iyE-l4s,246
|
|
187
|
+
reflex/components/chakra/forms/time_picker.pyi,sha256=c_x1AQLywsr3bpjpmoVvOfX8wUEh8Y6Yi--wEUrusPU,5836
|
|
186
188
|
reflex/components/chakra/layout/__init__.py,sha256=8sd4Fz_jPtWwPMT4oJ85sJ6NdJ3DcQLcK7PWZ_SLqVA,510
|
|
187
189
|
reflex/components/chakra/layout/aspect_ratio.py,sha256=8_qwFZeeHmdaRJ0oNtBWfJrvYirvNTeHdw7bvVnlJ8I,315
|
|
188
190
|
reflex/components/chakra/layout/aspect_ratio.pyi,sha256=bs87ZFyQMm--zBoCtUNtB2KM7o3Y6VleodvrtnUA2_4,3445
|
|
@@ -244,7 +246,7 @@ reflex/components/chakra/typography/span.py,sha256=2DbW5DB27ijtTeugSDUVp3nQ64mrG
|
|
|
244
246
|
reflex/components/chakra/typography/span.pyi,sha256=IzFlO6mqV38IQu_JKbDBujIr5_9m0YDr_0Sx5g3T2ZY,3438
|
|
245
247
|
reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
|
|
246
248
|
reflex/components/chakra/typography/text.pyi,sha256=wDhAg9ZHK-FfrKutX0LWv0-lWprJAeurvx8n-UjUNec,3662
|
|
247
|
-
reflex/components/component.py,sha256=
|
|
249
|
+
reflex/components/component.py,sha256=li19BpGk7cq-JxsbGwdJG892S7JXcyDE1XAl-Tu0pPs,56797
|
|
248
250
|
reflex/components/core/__init__.py,sha256=nERy0Iejdf80_PK7NbtAG_jjKnM-LHd5GDkPDFKPwGk,605
|
|
249
251
|
reflex/components/core/banner.py,sha256=ZLWW_WBf-13GYpXcGanyKg7To_L4pKAlI9anwWe3c9E,3223
|
|
250
252
|
reflex/components/core/banner.pyi,sha256=mOClsFjS_sEjtaSq4s4crRZZHzRF4-07v7EouTmZEDM,8268
|
|
@@ -254,12 +256,12 @@ reflex/components/core/cond.py,sha256=kVOnwRdw-Qyj-GHLPjx-hTNWxZGFXCPcmALnW8dwNw
|
|
|
254
256
|
reflex/components/core/debounce.py,sha256=tImFRRaJkWzJXFAUoVlnKRX8XRQmlSQNZMB82_RdHpo,4563
|
|
255
257
|
reflex/components/core/debounce.pyi,sha256=hgWaIGFzPyUM_Fuonx5EVX6fKLyLEPaJWc5sn3Fc1sg,4112
|
|
256
258
|
reflex/components/core/foreach.py,sha256=Qk6UtwzQY6PR8-v40XRdt3knXiVH33cukbEvzyTV7XA,4031
|
|
257
|
-
reflex/components/core/match.py,sha256=
|
|
259
|
+
reflex/components/core/match.py,sha256=T3bdCQfEioA0yRBYDe8z57WAnLSyYOHan5PDOs4hlJE,9047
|
|
258
260
|
reflex/components/core/responsive.py,sha256=nLcLjFHnXYrsB0iyg3aWkEM145R8H998ZjQ7hw7aIXE,1905
|
|
259
261
|
reflex/components/core/upload.py,sha256=3E0Mbc44q6MfEWKv-VwqPcpqyYjyHl2JOq51Qz88Wcc,5954
|
|
260
262
|
reflex/components/core/upload.pyi,sha256=vwW7ddseBxJlAQfuIRFTGXqrLkWY7iZiFOHzN4ZAcn4,8367
|
|
261
263
|
reflex/components/datadisplay/__init__.py,sha256=9fAcuhBCsc6M06CqQLn4Xjb_TvS3R3TVP5P_aXnHh9I,150
|
|
262
|
-
reflex/components/datadisplay/dataeditor.py,sha256=
|
|
264
|
+
reflex/components/datadisplay/dataeditor.py,sha256=WdeEGRVlC1W2WnPn4zKhmyoaKTqgowqiiLg8zeuHTGw,12632
|
|
263
265
|
reflex/components/datadisplay/dataeditor.pyi,sha256=SzXDOifd0r6FIL8SKHfCbYVMnvAuLTTtJrfz22ig57E,10480
|
|
264
266
|
reflex/components/el/__init__.py,sha256=3QR9GuYBnFvtxLQm_aeSUzGJsqJBUjeTt6tcHyCqAcQ,73
|
|
265
267
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
@@ -294,7 +296,7 @@ reflex/components/gridjs/datatable.py,sha256=jinq5J8CIcmdbMynVLc9HAPCAVhozsN_gjX
|
|
|
294
296
|
reflex/components/gridjs/datatable.pyi,sha256=8SK6FPSAFCNWXi6fRM98mAnC3cHO2SkUuT12-f5-uww,7119
|
|
295
297
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
296
298
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
297
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
299
|
+
reflex/components/markdown/markdown.py,sha256=r9KJgDd1ujwgMuflCHjqISncrmqAQnH37HtpGYy7i-w,11019
|
|
298
300
|
reflex/components/markdown/markdown.pyi,sha256=hVNo52M2QN7vzDtJtxa-i1VvmSCW9DwHS6Ugxo9bII8,5252
|
|
299
301
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
300
302
|
reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
|
|
@@ -313,64 +315,64 @@ reflex/components/next/video.pyi,sha256=KJRYUhFWMFfN1e46hFQ8Hl-L8qHqicqpb0E6GHtI
|
|
|
313
315
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
314
316
|
reflex/components/plotly/plotly.py,sha256=bIXN9lsxYEbpmSvbau6GPYdLTZihEB3YgT1psTGVzXI,910
|
|
315
317
|
reflex/components/plotly/plotly.pyi,sha256=2scs_64ZoEcGDQW7Yy_4iY2YfYXbNewpU82tllUqKvI,6900
|
|
316
|
-
reflex/components/radix/__init__.py,sha256=
|
|
317
|
-
reflex/components/radix/primitives/__init__.py,sha256=
|
|
318
|
-
reflex/components/radix/primitives/accordion.py,sha256=
|
|
319
|
-
reflex/components/radix/primitives/accordion.pyi,sha256=
|
|
320
|
-
reflex/components/radix/primitives/base.py,sha256=
|
|
321
|
-
reflex/components/radix/primitives/base.pyi,sha256=
|
|
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=
|
|
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=1aMasfcNh8LL9ouQtsb2Q_bCDryayPoACR5aZ5A2Dk4,19386
|
|
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
|
|
328
330
|
reflex/components/radix/themes/__init__.py,sha256=615Yg-j04dqhEZJdKoafCyOOXBTtCT20u7d2cBKleeI,237
|
|
329
331
|
reflex/components/radix/themes/base.py,sha256=eegKPprUz-TP0zYnD7eKRKYLCvmwyyzIL3UL5VVspW4,5036
|
|
330
332
|
reflex/components/radix/themes/base.pyi,sha256=ODp4st81g50bU0DLIo-tiQH-ci4W3LFec7W2DmBvles,27188
|
|
331
|
-
reflex/components/radix/themes/components/__init__.py,sha256=
|
|
332
|
-
reflex/components/radix/themes/components/alertdialog.py,sha256=
|
|
333
|
-
reflex/components/radix/themes/components/alertdialog.pyi,sha256=
|
|
334
|
-
reflex/components/radix/themes/components/aspectratio.py,sha256=
|
|
335
|
-
reflex/components/radix/themes/components/aspectratio.pyi,sha256=
|
|
336
|
-
reflex/components/radix/themes/components/avatar.py,sha256=
|
|
337
|
-
reflex/components/radix/themes/components/avatar.pyi,sha256=
|
|
338
|
-
reflex/components/radix/themes/components/badge.py,sha256=
|
|
339
|
-
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
|
|
340
342
|
reflex/components/radix/themes/components/button.py,sha256=-Y_tPwNPb7_Ssgz4hxYrEUrJpASCq3gRw5sf1GweVWI,1094
|
|
341
343
|
reflex/components/radix/themes/components/button.pyi,sha256=QTJcodwyRonkPovwwJJqMqd4az_ItmhSIFBTYEdBiZA,13948
|
|
342
|
-
reflex/components/radix/themes/components/callout.py,sha256=
|
|
343
|
-
reflex/components/radix/themes/components/callout.pyi,sha256=
|
|
344
|
-
reflex/components/radix/themes/components/card.py,sha256=
|
|
345
|
-
reflex/components/radix/themes/components/card.pyi,sha256=
|
|
346
|
-
reflex/components/radix/themes/components/checkbox.py,sha256=
|
|
347
|
-
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
|
|
348
350
|
reflex/components/radix/themes/components/contextmenu.py,sha256=zUTll40KITIS7I4EGkVqILHI9sD0fmsVj7ceAxfXZaw,4200
|
|
349
351
|
reflex/components/radix/themes/components/contextmenu.pyi,sha256=3rpl2Ic6EHCLUuhUOTIydL_tzHpCTFJqgSq9S3ybH-w,57263
|
|
350
|
-
reflex/components/radix/themes/components/dialog.py,sha256=
|
|
351
|
-
reflex/components/radix/themes/components/dialog.pyi,sha256=
|
|
352
|
-
reflex/components/radix/themes/components/dropdownmenu.py,sha256
|
|
353
|
-
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
|
|
354
356
|
reflex/components/radix/themes/components/hovercard.py,sha256=_PAN2h5EL3pd0ewk4gfZlc5x3x_znucndLvtFCTQKhk,2112
|
|
355
357
|
reflex/components/radix/themes/components/hovercard.pyi,sha256=cptJ27uwxAq6BJ_FrV2DlrAdWuEP7YE8pABRP1kQVSc,25805
|
|
356
|
-
reflex/components/radix/themes/components/iconbutton.py,sha256=
|
|
357
|
-
reflex/components/radix/themes/components/iconbutton.pyi,sha256=
|
|
358
|
-
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
|
|
359
361
|
reflex/components/radix/themes/components/icons.pyi,sha256=Q4A3AFUjP-d0jrJVjbbyztx6I7PX71GQ30k2i4FmOEA,6577
|
|
360
|
-
reflex/components/radix/themes/components/inset.py,sha256=
|
|
361
|
-
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
|
|
362
364
|
reflex/components/radix/themes/components/popover.py,sha256=1FB2hbR44c0PVG8pLj4aax1v1ioLJ-hM8mmbwWkWzTY,2803
|
|
363
365
|
reflex/components/radix/themes/components/popover.pyi,sha256=8F4m4TQuiIDDZFLCkktPxN3y-6OS-z5RsV3xzaPqSFI,33246
|
|
364
|
-
reflex/components/radix/themes/components/radiogroup.py,sha256=
|
|
365
|
-
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
|
|
366
368
|
reflex/components/radix/themes/components/scrollarea.py,sha256=puVu_tUTZLxNikwRy4KEJOO7IMzWvkvjszQkIIzLzNs,1105
|
|
367
369
|
reflex/components/radix/themes/components/scrollarea.pyi,sha256=5663C3zbOd2miuha807wotqqHY8RsalK3pNUKoQBNcU,8638
|
|
368
|
-
reflex/components/radix/themes/components/select.py,sha256=
|
|
369
|
-
reflex/components/radix/themes/components/select.pyi,sha256=
|
|
370
|
+
reflex/components/radix/themes/components/select.py,sha256=oiPi2A0slwH1XyVOGMw_vymoi5LN0pSfExm-TCDSLkE,7190
|
|
371
|
+
reflex/components/radix/themes/components/select.pyi,sha256=Ra3s7Ie2KDd53kULHt_TUkvIuUt6XhGEOfl-O14Km20,61658
|
|
370
372
|
reflex/components/radix/themes/components/separator.py,sha256=Z98WGWqpEFegf3yBkdzrDHAurs_H3ChhueNQtkD0GfA,847
|
|
371
373
|
reflex/components/radix/themes/components/separator.pyi,sha256=B65VsD3-tgZg-GhzJVH4Rer-2lSpc5CJxv1VE8cdK94,7982
|
|
372
|
-
reflex/components/radix/themes/components/slider.py,sha256=
|
|
373
|
-
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
|
|
374
376
|
reflex/components/radix/themes/components/switch.py,sha256=Lp_feJEgo9YoWjtXRXKwHRNE2SGiNJzcbUFN5s1av28,1950
|
|
375
377
|
reflex/components/radix/themes/components/switch.pyi,sha256=Hk3VfyMHUeczJ9O_ZeMwawIsqoWIVruYiwZh_nm9gHE,9543
|
|
376
378
|
reflex/components/radix/themes/components/table.py,sha256=0SV_uEAogTni0qOfvB0UAji7KPUDFLing2aR963vKt8,2229
|
|
@@ -381,12 +383,12 @@ reflex/components/radix/themes/components/textarea.py,sha256=Sio7jSZWDbhLm2Nv4c6
|
|
|
381
383
|
reflex/components/radix/themes/components/textarea.pyi,sha256=BBunoRtoLgpJZp768RmrcUP5RHuMzLSHVztSe_seD5c,13865
|
|
382
384
|
reflex/components/radix/themes/components/textfield.py,sha256=PCJ8ANFVBObIYb_NsT1wk9Ewumq872Bny7NufKd7L7A,3039
|
|
383
385
|
reflex/components/radix/themes/components/textfield.pyi,sha256=Q8ej_pEC3QsaxbdG59UZlLPdZ4K-q4UPyEWTvvrLWr0,33495
|
|
384
|
-
reflex/components/radix/themes/components/tooltip.py,sha256=
|
|
385
|
-
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
|
|
386
388
|
reflex/components/radix/themes/layout/__init__.py,sha256=B8KvgTw9HHKDugL9RNbL4pI0utMQqSoogZoAd6mFx2g,265
|
|
387
389
|
reflex/components/radix/themes/layout/base.py,sha256=OSGDf_RgNEzb1BPZ72VmM9b9TT1dwV08Dsfwb6AUB70,1176
|
|
388
390
|
reflex/components/radix/themes/layout/base.pyi,sha256=BtrTGGxhIzowf_1qhmsxbyOZZ0zpYdcO-Ebqud_sr4U,9474
|
|
389
|
-
reflex/components/radix/themes/layout/box.py,sha256=
|
|
391
|
+
reflex/components/radix/themes/layout/box.py,sha256=ggxWbI4I-Z4Sung5yk7IPpRB1TXpTY6c_hriENJ-VW8,270
|
|
390
392
|
reflex/components/radix/themes/layout/box.pyi,sha256=XVrDK9qFp3PQhdbG9bkjAN9XEKqnXElQuIeOL2xnF3I,12597
|
|
391
393
|
reflex/components/radix/themes/layout/container.py,sha256=q_otAvN8f4sHWK5ndinSP28QD9UXVS4DR7P04e5pMGY,541
|
|
392
394
|
reflex/components/radix/themes/layout/container.pyi,sha256=IDhtH_s1Xl0dWxRpcNP80VG4zCG4ZZvSReIcJg7EW8g,12914
|
|
@@ -463,28 +465,28 @@ reflex/page.py,sha256=VkrInVJ1jIlu141y4ssFh4dW7d5Uc8CbOaWY9JzwBa0,1916
|
|
|
463
465
|
reflex/page.pyi,sha256=nFfbDe-tBsrIrcAKWsoTy92olMkAosbmddh_Pgf2Sxc,505
|
|
464
466
|
reflex/reflex.py,sha256=4OQo-RIxpEVs-FI98gAp9ZW6dcz77oWg_qa8_C5Q6ng,17040
|
|
465
467
|
reflex/route.py,sha256=eVi2TSk9uM7DDGBy6rDYe6Gq4iuHZFK00Vmoq9IbIjk,2732
|
|
466
|
-
reflex/state.py,sha256=
|
|
467
|
-
reflex/style.py,sha256=
|
|
468
|
-
reflex/testing.py,sha256=
|
|
468
|
+
reflex/state.py,sha256=WLPL60XfT9gJ7MNZYQV-LLaLzKygP7w8EWTYf-0_le8,72578
|
|
469
|
+
reflex/style.py,sha256=2sUZeQdz3h-Ha3AvtRfE7YOxZqaU9K5abDP6vwOIX3A,7568
|
|
470
|
+
reflex/testing.py,sha256=hO_NOS9Tcvx6eQqXs6riBgoUlMbauTUu2fyOxinUMOU,28057
|
|
469
471
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
470
472
|
reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
|
|
471
473
|
reflex/utils/console.py,sha256=oEEaV9oSw5B24LPEwBOGlyrk2xI91Fo-pqGEsNICrjg,4583
|
|
472
474
|
reflex/utils/exceptions.py,sha256=oniHYS_c18hvwva4tvEmO33Fjmp605uFJBX4liKuqp8,504
|
|
473
475
|
reflex/utils/exec.py,sha256=rbG1Mhx4s6yvge_dEDynbT9oAH-iJSiDCsvhSKyJsNM,8622
|
|
474
476
|
reflex/utils/export.py,sha256=daLyx4W-Kjit7Wjg5Db7-yFarF8r0d2IJ8aliXLDXZo,2454
|
|
475
|
-
reflex/utils/format.py,sha256=
|
|
477
|
+
reflex/utils/format.py,sha256=4yfILoZmS4d4FXpg568Zrz5LEo7pXcR9e-veMTiKILc,20464
|
|
476
478
|
reflex/utils/imports.py,sha256=yah1kSVsOyUxA0wOMxJTwcmu6xlmkLJtV_zRIhshpsA,1919
|
|
477
|
-
reflex/utils/path_ops.py,sha256=
|
|
478
|
-
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
|
|
479
481
|
reflex/utils/processes.py,sha256=3VZ48WzPy_PDZ6kSoewnHxHahqA9nAsW2ITXGPcK8LQ,8351
|
|
480
482
|
reflex/utils/serializers.py,sha256=r6POCP0eaVW2GITtLrmcXSsSJkhaezp68riut626VD4,7635
|
|
481
483
|
reflex/utils/telemetry.py,sha256=CxRreEGR3e3mq6oOuAf3krN4cCKtdPs47Q9gaY0svr8,2388
|
|
482
|
-
reflex/utils/types.py,sha256=
|
|
484
|
+
reflex/utils/types.py,sha256=O468UkPYHBdLAYhhZxtydUELMsfVVNVRN8d5Yw4z_VE,8404
|
|
483
485
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
484
|
-
reflex/vars.py,sha256=
|
|
486
|
+
reflex/vars.py,sha256=Jo7e-UVLXHPITScyhM-q2kQcB2jyHcNpuRFGB6cilxg,61167
|
|
485
487
|
reflex/vars.pyi,sha256=VsVyNRIcuWnCDo2xrxF25gHV7qTM8wU1O350UBay3Rk,5032
|
|
486
|
-
reflex-0.3.
|
|
487
|
-
reflex-0.3.
|
|
488
|
-
reflex-0.3.
|
|
489
|
-
reflex-0.3.
|
|
490
|
-
reflex-0.3.
|
|
488
|
+
reflex-0.3.9.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
489
|
+
reflex-0.3.9.dist-info/METADATA,sha256=bAquufffw72NZo6cKO6zNMV7I_IeHbttkwH6_UawDIk,11295
|
|
490
|
+
reflex-0.3.9.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
491
|
+
reflex-0.3.9.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
492
|
+
reflex-0.3.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|