reflex 0.5.3a1__py3-none-any.whl → 0.5.4__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/demo/code/webui/state.py +3 -2
- reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js +19 -20
- reflex/.templates/web/utils/state.js +6 -0
- reflex/__init__.py +7 -1
- reflex/__init__.pyi +2 -0
- reflex/app.py +2 -5
- reflex/compiler/compiler.py +3 -3
- reflex/components/chakra/base.py +3 -1
- reflex/components/chakra/forms/checkbox.py +1 -1
- reflex/components/chakra/forms/pininput.py +1 -1
- reflex/components/chakra/forms/rangeslider.py +1 -1
- reflex/components/chakra/navigation/link.py +3 -1
- reflex/components/component.py +43 -15
- reflex/components/core/banner.py +2 -1
- reflex/components/core/client_side_routing.py +3 -3
- reflex/components/core/client_side_routing.pyi +1 -0
- reflex/components/core/debounce.py +3 -1
- reflex/components/core/foreach.py +1 -1
- reflex/components/core/html.py +1 -1
- reflex/components/core/upload.py +2 -1
- reflex/components/datadisplay/code.py +4 -1
- reflex/components/datadisplay/dataeditor.py +11 -8
- reflex/components/datadisplay/dataeditor.pyi +1 -0
- reflex/components/el/__init__.pyi +2 -1
- reflex/components/el/elements/__init__.py +1 -1
- reflex/components/el/elements/__init__.pyi +3 -2
- reflex/components/el/elements/forms.py +25 -14
- reflex/components/el/elements/forms.pyi +2 -1
- reflex/components/markdown/markdown.py +17 -11
- reflex/components/markdown/markdown.pyi +12 -8
- reflex/components/plotly/plotly.py +83 -15
- reflex/components/plotly/plotly.pyi +15 -82
- reflex/components/radix/primitives/accordion.py +1 -1
- reflex/components/radix/themes/base.py +10 -2
- reflex/components/radix/themes/base.pyi +1 -0
- reflex/components/radix/themes/color_mode.py +1 -1
- reflex/components/radix/themes/components/checkbox.py +3 -1
- reflex/components/radix/themes/components/radio_group.py +6 -4
- reflex/components/radix/themes/components/separator.py +1 -1
- reflex/components/radix/themes/layout/container.py +1 -1
- reflex/components/radix/themes/layout/section.py +1 -1
- reflex/components/recharts/cartesian.py +42 -14
- reflex/components/recharts/cartesian.pyi +81 -17
- reflex/components/recharts/charts.py +12 -21
- reflex/components/recharts/charts.pyi +53 -14
- reflex/components/sonner/toast.py +37 -17
- reflex/components/sonner/toast.pyi +9 -5
- reflex/components/tags/tag.py +2 -1
- reflex/config.py +22 -14
- reflex/constants/__init__.py +2 -0
- reflex/constants/base.py +3 -1
- reflex/constants/config.py +7 -0
- reflex/event.py +24 -15
- reflex/experimental/__init__.py +22 -2
- reflex/experimental/client_state.py +81 -23
- reflex/experimental/hooks.py +35 -35
- reflex/experimental/layout.py +17 -5
- reflex/experimental/layout.pyi +536 -0
- reflex/reflex.py +9 -5
- reflex/style.py +3 -2
- reflex/testing.py +44 -13
- reflex/utils/compat.py +5 -0
- reflex/utils/format.py +20 -6
- reflex/utils/processes.py +27 -0
- reflex/utils/pyi_generator.py +11 -4
- reflex/utils/serializers.py +120 -16
- reflex/utils/types.py +9 -3
- reflex/vars.py +70 -21
- reflex/vars.pyi +2 -2
- {reflex-0.5.3a1.dist-info → reflex-0.5.4.dist-info}/METADATA +1 -1
- {reflex-0.5.3a1.dist-info → reflex-0.5.4.dist-info}/RECORD +74 -74
- reflex/constants/base.pyi +0 -99
- {reflex-0.5.3a1.dist-info → reflex-0.5.4.dist-info}/LICENSE +0 -0
- {reflex-0.5.3a1.dist-info → reflex-0.5.4.dist-info}/WHEEL +0 -0
- {reflex-0.5.3a1.dist-info → reflex-0.5.4.dist-info}/entry_points.txt +0 -0
reflex/vars.py
CHANGED
|
@@ -35,7 +35,7 @@ from typing import (
|
|
|
35
35
|
|
|
36
36
|
from reflex import constants
|
|
37
37
|
from reflex.base import Base
|
|
38
|
-
from reflex.utils import console,
|
|
38
|
+
from reflex.utils import console, imports, serializers, types
|
|
39
39
|
from reflex.utils.exceptions import VarAttributeError, VarTypeError, VarValueError
|
|
40
40
|
|
|
41
41
|
# This module used to export ImportVar itself, so we still import it for export here
|
|
@@ -347,7 +347,7 @@ class Var:
|
|
|
347
347
|
cls,
|
|
348
348
|
value: Any,
|
|
349
349
|
_var_is_local: bool = True,
|
|
350
|
-
_var_is_string: bool =
|
|
350
|
+
_var_is_string: bool | None = None,
|
|
351
351
|
_var_data: Optional[VarData] = None,
|
|
352
352
|
) -> Var | None:
|
|
353
353
|
"""Create a var from a value.
|
|
@@ -364,6 +364,8 @@ class Var:
|
|
|
364
364
|
Raises:
|
|
365
365
|
VarTypeError: If the value is JSON-unserializable.
|
|
366
366
|
"""
|
|
367
|
+
from reflex.utils import format
|
|
368
|
+
|
|
367
369
|
# Check for none values.
|
|
368
370
|
if value is None:
|
|
369
371
|
return None
|
|
@@ -378,18 +380,39 @@ class Var:
|
|
|
378
380
|
|
|
379
381
|
# Try to serialize the value.
|
|
380
382
|
type_ = type(value)
|
|
381
|
-
|
|
383
|
+
if type_ in types.JSONType:
|
|
384
|
+
name = value
|
|
385
|
+
else:
|
|
386
|
+
name, serialized_type = serializers.serialize(value, get_type=True)
|
|
387
|
+
if (
|
|
388
|
+
serialized_type is not None
|
|
389
|
+
and _var_is_string is None
|
|
390
|
+
and issubclass(serialized_type, str)
|
|
391
|
+
):
|
|
392
|
+
_var_is_string = True
|
|
382
393
|
if name is None:
|
|
383
394
|
raise VarTypeError(
|
|
384
395
|
f"No JSON serializer found for var {value} of type {type_}."
|
|
385
396
|
)
|
|
386
397
|
name = name if isinstance(name, str) else format.json_dumps(name)
|
|
387
398
|
|
|
399
|
+
if _var_is_string is None and type_ is str:
|
|
400
|
+
console.deprecate(
|
|
401
|
+
feature_name="Creating a Var from a string without specifying _var_is_string",
|
|
402
|
+
reason=(
|
|
403
|
+
"Specify _var_is_string=False to create a Var that is not a string literal. "
|
|
404
|
+
"In the future, creating a Var from a string will be treated as a string literal "
|
|
405
|
+
"by default."
|
|
406
|
+
),
|
|
407
|
+
deprecation_version="0.5.4",
|
|
408
|
+
removal_version="0.6.0",
|
|
409
|
+
)
|
|
410
|
+
|
|
388
411
|
return BaseVar(
|
|
389
412
|
_var_name=name,
|
|
390
413
|
_var_type=type_,
|
|
391
414
|
_var_is_local=_var_is_local,
|
|
392
|
-
_var_is_string=_var_is_string,
|
|
415
|
+
_var_is_string=_var_is_string if _var_is_string is not None else False,
|
|
393
416
|
_var_data=_var_data,
|
|
394
417
|
)
|
|
395
418
|
|
|
@@ -398,7 +421,7 @@ class Var:
|
|
|
398
421
|
cls,
|
|
399
422
|
value: Any,
|
|
400
423
|
_var_is_local: bool = True,
|
|
401
|
-
_var_is_string: bool =
|
|
424
|
+
_var_is_string: bool | None = None,
|
|
402
425
|
_var_data: Optional[VarData] = None,
|
|
403
426
|
) -> Var:
|
|
404
427
|
"""Create a var from a value, asserting that it is not None.
|
|
@@ -512,7 +535,7 @@ class Var:
|
|
|
512
535
|
if other is None:
|
|
513
536
|
return self._replace()
|
|
514
537
|
if not isinstance(other, Var):
|
|
515
|
-
other = Var.create(other)
|
|
538
|
+
other = Var.create(other, _var_is_string=False)
|
|
516
539
|
return self._replace(
|
|
517
540
|
_var_name=f"{{...{self._var_name}, ...{other._var_name}}}" # type: ignore
|
|
518
541
|
)
|
|
@@ -529,6 +552,14 @@ class Var:
|
|
|
529
552
|
fn = "JSON.stringify" if json else "String"
|
|
530
553
|
return self.operation(fn=fn, type_=str)
|
|
531
554
|
|
|
555
|
+
def to_int(self) -> Var:
|
|
556
|
+
"""Convert a var to an int.
|
|
557
|
+
|
|
558
|
+
Returns:
|
|
559
|
+
The parseInt var.
|
|
560
|
+
"""
|
|
561
|
+
return self.operation(fn="parseInt", type_=int)
|
|
562
|
+
|
|
532
563
|
def __hash__(self) -> int:
|
|
533
564
|
"""Define a hash function for a var.
|
|
534
565
|
|
|
@@ -543,6 +574,8 @@ class Var:
|
|
|
543
574
|
Returns:
|
|
544
575
|
The wrapped var, i.e. {state.var}.
|
|
545
576
|
"""
|
|
577
|
+
from reflex.utils import format
|
|
578
|
+
|
|
546
579
|
out = (
|
|
547
580
|
self._var_full_name
|
|
548
581
|
if self._var_is_local
|
|
@@ -600,6 +633,8 @@ class Var:
|
|
|
600
633
|
Raises:
|
|
601
634
|
VarTypeError: If the var is not indexable.
|
|
602
635
|
"""
|
|
636
|
+
from reflex.utils import format
|
|
637
|
+
|
|
603
638
|
# Indexing is only supported for strings, lists, tuples, dicts, and dataframes.
|
|
604
639
|
if not (
|
|
605
640
|
types._issubclass(self._var_type, Union[List, Dict, Tuple, str])
|
|
@@ -793,10 +828,12 @@ class Var:
|
|
|
793
828
|
VarTypeError: If the operation between two operands is invalid.
|
|
794
829
|
VarValueError: If flip is set to true and value of operand is not provided
|
|
795
830
|
"""
|
|
831
|
+
from reflex.utils import format
|
|
832
|
+
|
|
796
833
|
if isinstance(other, str):
|
|
797
|
-
other = Var.create(json.dumps(other))
|
|
834
|
+
other = Var.create(json.dumps(other), _var_is_string=False)
|
|
798
835
|
else:
|
|
799
|
-
other = Var.create(other)
|
|
836
|
+
other = Var.create(other, _var_is_string=False)
|
|
800
837
|
|
|
801
838
|
type_ = type_ or self._var_type
|
|
802
839
|
|
|
@@ -839,19 +876,19 @@ class Var:
|
|
|
839
876
|
if invoke_fn:
|
|
840
877
|
# invoke the function on left operand.
|
|
841
878
|
operation_name = (
|
|
842
|
-
f"{left_operand_full_name}.{fn}({right_operand_full_name})"
|
|
843
|
-
)
|
|
879
|
+
f"{left_operand_full_name}.{fn}({right_operand_full_name})" # type: ignore
|
|
880
|
+
)
|
|
844
881
|
else:
|
|
845
882
|
# pass the operands as arguments to the function.
|
|
846
883
|
operation_name = (
|
|
847
|
-
f"{left_operand_full_name} {op} {right_operand_full_name}"
|
|
848
|
-
)
|
|
884
|
+
f"{left_operand_full_name} {op} {right_operand_full_name}" # type: ignore
|
|
885
|
+
)
|
|
849
886
|
operation_name = f"{fn}({operation_name})"
|
|
850
887
|
else:
|
|
851
888
|
# apply operator to operands (left operand <operator> right_operand)
|
|
852
889
|
operation_name = (
|
|
853
|
-
f"{left_operand_full_name} {op} {right_operand_full_name}"
|
|
854
|
-
)
|
|
890
|
+
f"{left_operand_full_name} {op} {right_operand_full_name}" # type: ignore
|
|
891
|
+
)
|
|
855
892
|
operation_name = format.wrap(operation_name, "(")
|
|
856
893
|
else:
|
|
857
894
|
# apply operator to left operand (<operator> left_operand)
|
|
@@ -1379,7 +1416,7 @@ class Var:
|
|
|
1379
1416
|
if isinstance(other, str):
|
|
1380
1417
|
other = Var.create(json.dumps(other), _var_is_string=True)
|
|
1381
1418
|
elif not isinstance(other, Var):
|
|
1382
|
-
other = Var.create(other)
|
|
1419
|
+
other = Var.create(other, _var_is_string=False)
|
|
1383
1420
|
if types._issubclass(self._var_type, Dict):
|
|
1384
1421
|
return self._replace(
|
|
1385
1422
|
_var_name=f"{self._var_name}.{method}({other._var_full_name})",
|
|
@@ -1483,7 +1520,11 @@ class Var:
|
|
|
1483
1520
|
if not types._issubclass(self._var_type, str):
|
|
1484
1521
|
raise VarTypeError(f"Cannot strip non-string var {self._var_full_name}.")
|
|
1485
1522
|
|
|
1486
|
-
other =
|
|
1523
|
+
other = (
|
|
1524
|
+
Var.create_safe(json.dumps(other), _var_is_string=False)
|
|
1525
|
+
if isinstance(other, str)
|
|
1526
|
+
else other
|
|
1527
|
+
)
|
|
1487
1528
|
|
|
1488
1529
|
return self._replace(
|
|
1489
1530
|
_var_name=f"{self._var_name}.replace(/^${other._var_full_name}|${other._var_full_name}$/g, '')",
|
|
@@ -1506,7 +1547,11 @@ class Var:
|
|
|
1506
1547
|
if not types._issubclass(self._var_type, str):
|
|
1507
1548
|
raise VarTypeError(f"Cannot split non-string var {self._var_full_name}.")
|
|
1508
1549
|
|
|
1509
|
-
other =
|
|
1550
|
+
other = (
|
|
1551
|
+
Var.create_safe(json.dumps(other), _var_is_string=False)
|
|
1552
|
+
if isinstance(other, str)
|
|
1553
|
+
else other
|
|
1554
|
+
)
|
|
1510
1555
|
|
|
1511
1556
|
return self._replace(
|
|
1512
1557
|
_var_name=f"{self._var_name}.split({other._var_full_name})",
|
|
@@ -1531,11 +1576,11 @@ class Var:
|
|
|
1531
1576
|
raise VarTypeError(f"Cannot join non-list var {self._var_full_name}.")
|
|
1532
1577
|
|
|
1533
1578
|
if other is None:
|
|
1534
|
-
other = Var.create_safe('""')
|
|
1579
|
+
other = Var.create_safe('""', _var_is_string=False)
|
|
1535
1580
|
if isinstance(other, str):
|
|
1536
|
-
other = Var.create_safe(json.dumps(other))
|
|
1581
|
+
other = Var.create_safe(json.dumps(other), _var_is_string=False)
|
|
1537
1582
|
else:
|
|
1538
|
-
other = Var.create_safe(other)
|
|
1583
|
+
other = Var.create_safe(other, _var_is_string=False)
|
|
1539
1584
|
|
|
1540
1585
|
return self._replace(
|
|
1541
1586
|
_var_name=f"{self._var_name}.join({other._var_full_name})",
|
|
@@ -1604,7 +1649,7 @@ class Var:
|
|
|
1604
1649
|
if not isinstance(v2, Var):
|
|
1605
1650
|
v2 = Var.create(v2)
|
|
1606
1651
|
if v2 is None:
|
|
1607
|
-
v2 = Var.create_safe("undefined")
|
|
1652
|
+
v2 = Var.create_safe("undefined", _var_is_string=False)
|
|
1608
1653
|
elif v2._var_type != int:
|
|
1609
1654
|
raise VarTypeError(f"Cannot get range on non-int var {v2._var_full_name}.")
|
|
1610
1655
|
|
|
@@ -1671,6 +1716,8 @@ class Var:
|
|
|
1671
1716
|
Returns:
|
|
1672
1717
|
The full name of the var.
|
|
1673
1718
|
"""
|
|
1719
|
+
from reflex.utils import format
|
|
1720
|
+
|
|
1674
1721
|
if not self._var_full_name_needs_state_prefix:
|
|
1675
1722
|
return self._var_name
|
|
1676
1723
|
return (
|
|
@@ -1690,6 +1737,8 @@ class Var:
|
|
|
1690
1737
|
Returns:
|
|
1691
1738
|
The var with the set state.
|
|
1692
1739
|
"""
|
|
1740
|
+
from reflex.utils import format
|
|
1741
|
+
|
|
1693
1742
|
state_name = state if isinstance(state, str) else state.get_full_name()
|
|
1694
1743
|
new_var_data = VarData(
|
|
1695
1744
|
state=state_name,
|
reflex/vars.pyi
CHANGED
|
@@ -51,11 +51,11 @@ class Var:
|
|
|
51
51
|
_var_data: VarData | None = None
|
|
52
52
|
@classmethod
|
|
53
53
|
def create(
|
|
54
|
-
cls, value: Any, _var_is_local: bool =
|
|
54
|
+
cls, value: Any, _var_is_local: bool = True, _var_is_string: bool | None = None, _var_data: VarData | None = None,
|
|
55
55
|
) -> Optional[Var]: ...
|
|
56
56
|
@classmethod
|
|
57
57
|
def create_safe(
|
|
58
|
-
cls, value: Any, _var_is_local: bool =
|
|
58
|
+
cls, value: Any, _var_is_local: bool = True, _var_is_string: bool | None = None, _var_data: VarData | None = None,
|
|
59
59
|
) -> Var: ...
|
|
60
60
|
@classmethod
|
|
61
61
|
def __class_getitem__(cls, type_: Type) -> _GenericAlias: ...
|
|
@@ -27,7 +27,7 @@ reflex/.templates/apps/demo/code/webui/components/loading_icon.py,sha256=XsfXj_6
|
|
|
27
27
|
reflex/.templates/apps/demo/code/webui/components/modal.py,sha256=6IIN8tgYzhSGFe4psZn77-ZiTGNJIiBfTk9pmJufjkA,1829
|
|
28
28
|
reflex/.templates/apps/demo/code/webui/components/navbar.py,sha256=1T10fDy-h3rRuuw31MnJ0rxSB32QwppAmfi8kHHHZ9I,2251
|
|
29
29
|
reflex/.templates/apps/demo/code/webui/components/sidebar.py,sha256=YTi33v3FMZAbPdbaA3U0AYUa1jw20aysxjyPm7H3JFY,1735
|
|
30
|
-
reflex/.templates/apps/demo/code/webui/state.py,sha256=
|
|
30
|
+
reflex/.templates/apps/demo/code/webui/state.py,sha256=AKVq3yF97VjIFI4AM7C0oTy3bSQrb0CGkI5b0onz374,4038
|
|
31
31
|
reflex/.templates/apps/demo/code/webui/styles.py,sha256=uRkh7p30iWWDK86UlFolT9jL2HRHEhdfaKU0tYeNS_M,2281
|
|
32
32
|
reflex/.templates/jinja/app/rxconfig.py.jinja2,sha256=Scfnv_vZXIPQcz8zNIa4FmjEym1U5VMMWX4lryUMi10,74
|
|
33
33
|
reflex/.templates/jinja/custom_components/README.md.jinja2,sha256=qA4XZDxOTc2gRIG7CO1VvVawOgThwZqU2RZvRTPhXwE,127
|
|
@@ -51,7 +51,7 @@ reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=Vl2pKWItPjYSSVvPGRZHM
|
|
|
51
51
|
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=cdRQR4cx0OFHUY060k1AdsPpK7BNUV--NzsC9HdH4l8,37
|
|
52
52
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
53
53
|
reflex/.templates/web/components/reflex/chakra_color_mode_provider.js,sha256=4vJnV_AVrlH6FRzT4p0DF-kfHGKF3H6nXKtUEmAscKI,595
|
|
54
|
-
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=
|
|
54
|
+
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=fsWXkFlu7FaC-_2owLbDWZnl-ly4gg00XgBAD-KTcKI,655
|
|
55
55
|
reflex/.templates/web/jsconfig.json,sha256=Y9sEhjJcpk-ZDj-sxHYCvF9UZF4fyBL4oUlphb9X9Hk,97
|
|
56
56
|
reflex/.templates/web/next.config.js,sha256=ZpGOqo9wHEbt0S08G70VfUNUjFe79UXo7Cde8X8V10E,118
|
|
57
57
|
reflex/.templates/web/postcss.config.js,sha256=oEjUS1dzudKcmoPCD_B1ss2m1K14VDM0S6GAyrs1Ric,108
|
|
@@ -61,16 +61,16 @@ reflex/.templates/web/utils/helpers/dataeditor.js,sha256=anZgi8RJ_J0yqDez1Ks51fN
|
|
|
61
61
|
reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseLgQVk-DW-eFiHJYO9As,528
|
|
62
62
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
63
63
|
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
64
|
-
reflex/.templates/web/utils/state.js,sha256=
|
|
65
|
-
reflex/__init__.py,sha256=
|
|
66
|
-
reflex/__init__.pyi,sha256=
|
|
64
|
+
reflex/.templates/web/utils/state.js,sha256=uVUJ86IFs3kaaw-U843lU0cU3LAxYoO3A8RUsI8MBH8,22762
|
|
65
|
+
reflex/__init__.py,sha256=ByxtrWmBO18FaPFZyf0IWgMvpHu5Im4mNSHIE3hvboo,9396
|
|
66
|
+
reflex/__init__.pyi,sha256=s6y5J_1Yiu6VV4S-uIflKzI7ZPvwd3n3Z9xt4H5rHjg,10494
|
|
67
67
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
68
68
|
reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
|
|
69
|
-
reflex/app.py,sha256=
|
|
69
|
+
reflex/app.py,sha256=0pfbkE39vqHNICbC3Xnmwy75uYhk57l_SWFhzPi7Sjw,49327
|
|
70
70
|
reflex/app_module_for_backend.py,sha256=zGsgZWpl11exOuH34JZUimNgBnWpjL7WH4SW6LItxgY,1227
|
|
71
71
|
reflex/base.py,sha256=nqvgm-f1Fcj1WQrphKFniZWIM13bzr48OgfPBo1KZd8,4274
|
|
72
72
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
73
|
-
reflex/compiler/compiler.py,sha256=
|
|
73
|
+
reflex/compiler/compiler.py,sha256=kUlK41tVK9AE1Txuo9gM1WIOsEvYxELcXhDalB8E3iE,17482
|
|
74
74
|
reflex/compiler/templates.py,sha256=TKjq2cTtiwNZ_zIYNSTA6vG3CU2EoyrFTfkq8zhAL68,4344
|
|
75
75
|
reflex/compiler/utils.py,sha256=-lAG69cEm2pRke3cfRIRw52YCt3RK4HJkfUNwsg6dHQ,13274
|
|
76
76
|
reflex/components/__init__.py,sha256=oU81-YkofdNKgmwppJitqDnBNBXAWUtDV8_ULSaBVgg,637
|
|
@@ -95,7 +95,7 @@ reflex/components/base/meta.pyi,sha256=5JJdNt2irustsLfgkyCAP5_Q8bg3sKm6CpPZ3pO4e
|
|
|
95
95
|
reflex/components/base/script.py,sha256=_AfHhLy2DJnb_9zIsYyjaYvSUuWpXIh8LNB1Zicesq0,2323
|
|
96
96
|
reflex/components/base/script.pyi,sha256=NkEgHT9WVWnSE8tHPwLl9MFjKg5TCFCQIWvHHFg9vOI,4524
|
|
97
97
|
reflex/components/chakra/__init__.py,sha256=IvxaXNdJH_df-HZRf4IXilvl6XpLLzIzCSlLL0KVMsU,6378
|
|
98
|
-
reflex/components/chakra/base.py,sha256=
|
|
98
|
+
reflex/components/chakra/base.py,sha256=oK8m7AXR_LQL3cs1bznayqLpLvGWJIrNOYAxV9Wz3Rw,5294
|
|
99
99
|
reflex/components/chakra/base.pyi,sha256=YitA2O1JU7akR8SEFxPuaDeEXjt1W5JrButw6nnlmCg,10917
|
|
100
100
|
reflex/components/chakra/datadisplay/__init__.py,sha256=yDWJHYXf8i-WTXMdAAU4alskP1RLizvsYt9BKAi0Uts,459
|
|
101
101
|
reflex/components/chakra/datadisplay/badge.py,sha256=G0x7yacjFYQSD0Wrxc6UvC3kHJJ-qlRNbDyONxpbVmU,352
|
|
@@ -137,7 +137,7 @@ reflex/components/chakra/feedback/spinner.pyi,sha256=2Prqil2CD4WzhPHozfRy6i92U9M
|
|
|
137
137
|
reflex/components/chakra/forms/__init__.py,sha256=6TeCxpmKfVy3IxkhTE8amKowHiprEs5Q9P4C_BArygE,1453
|
|
138
138
|
reflex/components/chakra/forms/button.py,sha256=tglnHifAxYlP8U08zrr5mSB3yrg52qUD-4rq3I3jJf0,2395
|
|
139
139
|
reflex/components/chakra/forms/button.pyi,sha256=fgkzTkqvk_QAyqLOZ9pmvc7RY4F8jWCD45kV18vXkr8,10545
|
|
140
|
-
reflex/components/chakra/forms/checkbox.py,sha256=
|
|
140
|
+
reflex/components/chakra/forms/checkbox.py,sha256=CQck4B-G6UiBeEAzIedatHoCVshKJUD2LjCG0Cod4dc,2785
|
|
141
141
|
reflex/components/chakra/forms/checkbox.pyi,sha256=otg0hV05KaU0BT_46LtIr91ERHPHtKV1ILiJl5SKsDU,10301
|
|
142
142
|
reflex/components/chakra/forms/colormodeswitch.py,sha256=Cveeiop0yXsoMKid2cc7fDwhAgfFPGf2cTAtEdIkqi8,2860
|
|
143
143
|
reflex/components/chakra/forms/colormodeswitch.pyi,sha256=lxzi6hzj2SifnQZNAdQWLFTXpGix6V6ggJENQhi3OO8,18459
|
|
@@ -160,11 +160,11 @@ reflex/components/chakra/forms/numberinput.py,sha256=8TrkEmE4PyxDQ0nlHIWwz-1Jhpy
|
|
|
160
160
|
reflex/components/chakra/forms/numberinput.pyi,sha256=vM0cxbbKgaH8EtIBKCElEo9TE9SEzeDOFbyMSyF2-Cc,18093
|
|
161
161
|
reflex/components/chakra/forms/password.py,sha256=rjFELopI5j5exce9QZJqf4hSIp5aW44DUbpbpfiB24w,256
|
|
162
162
|
reflex/components/chakra/forms/password.pyi,sha256=7fVBY1OjuJKJZiOIZrDgjBUBMzg1UCQGWlRsPpVr0Qs,5834
|
|
163
|
-
reflex/components/chakra/forms/pininput.py,sha256=
|
|
163
|
+
reflex/components/chakra/forms/pininput.py,sha256=Pq6bBIixZbwLd3e40k2DkCwpGUA_fA5zz7aVfM1HGAI,6525
|
|
164
164
|
reflex/components/chakra/forms/pininput.pyi,sha256=iGhgp2XjZ74YM0jkdW-jGsZJflunfWwhD6co_me4GgI,9369
|
|
165
165
|
reflex/components/chakra/forms/radio.py,sha256=WLTyDrWYq-u6fVviURs8_oKrn8q-CGq2v40x3qC3lcA,3172
|
|
166
166
|
reflex/components/chakra/forms/radio.pyi,sha256=zLWvegKDJFCLFi-kPfjQvm0xVHl3GVoBAsqumkI_kpI,8410
|
|
167
|
-
reflex/components/chakra/forms/rangeslider.py,sha256=
|
|
167
|
+
reflex/components/chakra/forms/rangeslider.py,sha256=1phPUC72HQVPgLHyWEMpoGkTfC17rOYPEVVfAPZB5RM,4565
|
|
168
168
|
reflex/components/chakra/forms/rangeslider.pyi,sha256=nXAMZhD_thS2UuSTsYOCXuMkm6azASjFbhZAEoq9l2c,13939
|
|
169
169
|
reflex/components/chakra/forms/select.py,sha256=20J-MnaRSbRY2TjnbrlSIQrJMWJ7IKNWQGXj4mVEQUY,3624
|
|
170
170
|
reflex/components/chakra/forms/select.pyi,sha256=d44yf0lTQtFi_fB4d_4DkeAk_itTM-IWLvCuYdibJu4,8868
|
|
@@ -207,7 +207,7 @@ reflex/components/chakra/media/image.pyi,sha256=hAZOf41BYjw1J0wiI6gGaftYqa70XYyT
|
|
|
207
207
|
reflex/components/chakra/navigation/__init__.py,sha256=4S77tyjUNQfrKW1ablw3L8q2hNz8k04eSvtmoPN65tg,419
|
|
208
208
|
reflex/components/chakra/navigation/breadcrumb.py,sha256=b6hhci_Qw3qgCGYa-_xqsQNJSZyoWkVA48rXkTe6Ocs,2925
|
|
209
209
|
reflex/components/chakra/navigation/breadcrumb.pyi,sha256=iidg33UcoO6pnY_Zt7a5yFS5mitCucOcgG5PNbOhgQ0,13575
|
|
210
|
-
reflex/components/chakra/navigation/link.py,sha256=
|
|
210
|
+
reflex/components/chakra/navigation/link.py,sha256=EWRwmisrMXbgQVajbKNsimwXuK5sDlj2_otI0grsy8I,1511
|
|
211
211
|
reflex/components/chakra/navigation/link.pyi,sha256=Sb3bKMn2fgKb5_2AIc2Db3PAfbe1xyUcj_VX7xei7sA,3999
|
|
212
212
|
reflex/components/chakra/navigation/linkoverlay.py,sha256=eaGeVhohX5-NuQN8FqheHfRp79NVJN-cNslR978P7bE,521
|
|
213
213
|
reflex/components/chakra/navigation/linkoverlay.pyi,sha256=5_75CqKTqVrgzOFBHxhab0A612fI5fwj2qpBLUpZlOA,6233
|
|
@@ -235,46 +235,46 @@ reflex/components/chakra/typography/span.py,sha256=2DbW5DB27ijtTeugSDUVp3nQ64mrG
|
|
|
235
235
|
reflex/components/chakra/typography/span.pyi,sha256=itDe7RpjJN_K_9pZ7n_U9qlrTshGejv9lh5plvh3DCU,3372
|
|
236
236
|
reflex/components/chakra/typography/text.py,sha256=9YXBdK5UYqgDam3ITeRSnd8bu9ht3zydt0pkmJAECsk,472
|
|
237
237
|
reflex/components/chakra/typography/text.pyi,sha256=FzqNtf0NUkGmRLrazSyfKHqznJjz_KCryU-2sRghZ0M,3596
|
|
238
|
-
reflex/components/component.py,sha256=
|
|
238
|
+
reflex/components/component.py,sha256=NBnSyrsnTKWLWBJrgzOswdsp6X5Lu--G8gOIfZTsZdY,78219
|
|
239
239
|
reflex/components/core/__init__.py,sha256=96AHGkr07-cYckZqHg2ba_sAl964-S__CPYfM_wXHBk,1184
|
|
240
240
|
reflex/components/core/__init__.pyi,sha256=a-Mo7MQPoKLaVGlR_qVCrYPesCZd57tftynedO7-qvw,1828
|
|
241
|
-
reflex/components/core/banner.py,sha256=
|
|
241
|
+
reflex/components/core/banner.py,sha256=w9TwtOQM6LaM_iGDulUchzQ3WPErT2tc_T0T5-oXwpA,8261
|
|
242
242
|
reflex/components/core/banner.pyi,sha256=bEd8owWyrLNmNs6prgj1ZtrirS2ZSajkKmGXVdNXaKg,22710
|
|
243
|
-
reflex/components/core/client_side_routing.py,sha256=
|
|
244
|
-
reflex/components/core/client_side_routing.pyi,sha256=
|
|
243
|
+
reflex/components/core/client_side_routing.py,sha256=nndjrwyj139AB1Ha6nBKG_7Zs_Pu42rTwxG2eNVzFWY,1902
|
|
244
|
+
reflex/components/core/client_side_routing.pyi,sha256=hQ3Z6JGiFTMn94-U5SWE05KKA7rP2-WirXB7wefMCEw,6306
|
|
245
245
|
reflex/components/core/colors.py,sha256=-hzVGLEq3TiqroqzMi_YzGBCPXMvkNsen3pS_NzIQNk,590
|
|
246
246
|
reflex/components/core/cond.py,sha256=4jKcg9IBprpWAGY28Iymxe5Pu0UMEH-2e64zIkmf7_w,6163
|
|
247
|
-
reflex/components/core/debounce.py,sha256=
|
|
247
|
+
reflex/components/core/debounce.py,sha256=1oUUAZERsQ35Mr557zhgCRsgUU60R1YdDIsn58YRlAY,4912
|
|
248
248
|
reflex/components/core/debounce.pyi,sha256=t0adfaCRfIellS8PDl6witgpBHoz9jk0SW0f82AHxxU,4255
|
|
249
|
-
reflex/components/core/foreach.py,sha256=
|
|
250
|
-
reflex/components/core/html.py,sha256=
|
|
249
|
+
reflex/components/core/foreach.py,sha256=03gqSKJ0RG819lXux14X-hi0Fuz5y5fhJAxyIfxFkc0,4781
|
|
250
|
+
reflex/components/core/html.py,sha256=itZk4A8__Jfe8LwXey4tSlxTyZsKsHAPsHIcXVt42Y4,1304
|
|
251
251
|
reflex/components/core/html.pyi,sha256=sEvOH8E0b8GGpFjmNo5edBZN6gPN0F8FHFrQcp7wlEQ,6636
|
|
252
252
|
reflex/components/core/layout/__init__.py,sha256=znldZaj_NGt8qCZDG70GMwjMTskcvCf_2N_EjCAHwdc,30
|
|
253
253
|
reflex/components/core/match.py,sha256=Mbkl0FWbf0Y2CsWzExgLFwR25OeH0kKk7Y-ZnqMt3-0,9507
|
|
254
254
|
reflex/components/core/responsive.py,sha256=ACZdtJ4a4F8B3dm1k8h6J2_UJx0Z5LDB7XHQ2ty4wAc,1911
|
|
255
|
-
reflex/components/core/upload.py,sha256=
|
|
255
|
+
reflex/components/core/upload.py,sha256=kCT2YKzwQcGFsd9KDpvaBN3g2yRc4bho1aT8DG5J4nU,10205
|
|
256
256
|
reflex/components/core/upload.pyi,sha256=oQrEGaxccScvApKs8nGgyHg8xbLYzM4gZw39s1zKGjQ,17180
|
|
257
257
|
reflex/components/datadisplay/__init__.py,sha256=NedB3qfW3CJYPDHudiHP1-wEcpwGk78vVKk-T_eek4U,470
|
|
258
258
|
reflex/components/datadisplay/__init__.pyi,sha256=oFr43Hj2QVaF12U9JY0Ki3ulmnfW9hlX2zfaIfO5CIs,690
|
|
259
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
259
|
+
reflex/components/datadisplay/code.py,sha256=cnBk7pneSmmE6-2_nOIKo3HsynTHWzPwJVYbpKDoqhY,11469
|
|
260
260
|
reflex/components/datadisplay/code.pyi,sha256=jJqpMAiMvhZvqwuXvgLWWsZCExzzQIt4vNBy3PrFjTg,31228
|
|
261
|
-
reflex/components/datadisplay/dataeditor.py,sha256=
|
|
262
|
-
reflex/components/datadisplay/dataeditor.pyi,sha256=
|
|
261
|
+
reflex/components/datadisplay/dataeditor.py,sha256=kvld3iqGjHtNa_sJIfLMCthjab02HJz0YmY3vKxG4yI,12721
|
|
262
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=_tIdjsmpazGu-9rJcVFelI4TU4ZGnBhgjs9yQ_xsLa0,10596
|
|
263
263
|
reflex/components/datadisplay/logo.py,sha256=fdQ9gDxBln8MDRDN3hP4JkF6BhttnD6GhgGRaBmu0EU,2562
|
|
264
264
|
reflex/components/el/__init__.py,sha256=n4CYTU8Jb9Tj1oU3I7zaMikxn2XBc4bOX2e4blI6jac,415
|
|
265
|
-
reflex/components/el/__init__.pyi,sha256=
|
|
265
|
+
reflex/components/el/__init__.pyi,sha256=XYqcfr6tWMCwMvGySKi7WJNK2cUw4MaYg-BjLXjl5-M,9829
|
|
266
266
|
reflex/components/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
267
267
|
reflex/components/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
268
268
|
reflex/components/el/constants/react.py,sha256=f1-Vo8iWn2jSrR7vy-UwGbGRvw88UUZnbb3Rb56MSS4,15554
|
|
269
269
|
reflex/components/el/constants/reflex.py,sha256=SJidKWxPv0bwjPbeo57KFuEQNGyd8XUJrV-HfzX3tnE,1713
|
|
270
270
|
reflex/components/el/element.py,sha256=mSbygKXtQGOrsmMrKlel76oqebi4eG6AzlBwJ2xnhhY,494
|
|
271
271
|
reflex/components/el/element.pyi,sha256=31AX-CCTBocTunCaAThKqga3tNU03lPsmevbT4xOqQo,3213
|
|
272
|
-
reflex/components/el/elements/__init__.py,sha256=
|
|
273
|
-
reflex/components/el/elements/__init__.pyi,sha256=
|
|
272
|
+
reflex/components/el/elements/__init__.py,sha256=bwHkDJTSNBTVSDUaSVCSfdMOwE89V9utdiMgwIpFdKo,2322
|
|
273
|
+
reflex/components/el/elements/__init__.pyi,sha256=LDpiMJxKQBk7Xp4YLr5K3RPsutbR7sMQFYuOOYvtRrI,9836
|
|
274
274
|
reflex/components/el/elements/base.py,sha256=7o_ifyF0Hq_zRpF5-WbiXWP7cgsiXju1jllUPnrOK8w,1982
|
|
275
275
|
reflex/components/el/elements/base.pyi,sha256=_40MCqre_XjD-rRoVXCC-SgyXTBOZqHkcCA_fURwlb4,6340
|
|
276
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
277
|
-
reflex/components/el/elements/forms.pyi,sha256=
|
|
276
|
+
reflex/components/el/elements/forms.py,sha256=pYx68uX4S129GlDaegD6XxB7uE-uTAfuPsbF8wOc82Q,20866
|
|
277
|
+
reflex/components/el/elements/forms.pyi,sha256=yuroa3nPv0AJ-zEw3V-S5cBKkbOK6oUISDIzQWZW6uM,99925
|
|
278
278
|
reflex/components/el/elements/inline.py,sha256=OfQaGs6f0-9ycjZGbC8izJrHaGcTSVloF83AaJ9DKow,4084
|
|
279
279
|
reflex/components/el/elements/inline.pyi,sha256=NbiEfpZNVjQfhfidbT5O6V-XbxlrtnQCp3FWHSM3-b4,165080
|
|
280
280
|
reflex/components/el/elements/media.py,sha256=Jmy_HKJmTqeK43p25GJ0BTPBPFU-IPWmHLJlzZSlcrY,8767
|
|
@@ -299,8 +299,8 @@ reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO
|
|
|
299
299
|
reflex/components/lucide/icon.py,sha256=L-Nc9AGk0neNlZqe_RofhTgOrSfmmhKO1ZTuMsgNdsU,34077
|
|
300
300
|
reflex/components/lucide/icon.pyi,sha256=1IxHAIgJG0dG49aHmEptBcJiOb9_diiyt6q1nUcKrD0,37918
|
|
301
301
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
302
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
303
|
-
reflex/components/markdown/markdown.pyi,sha256=
|
|
302
|
+
reflex/components/markdown/markdown.py,sha256=wSRRAP42ZaqpwqLvm63JRFx68kUgVAQ3TfLjvNpZwnA,11128
|
|
303
|
+
reflex/components/markdown/markdown.pyi,sha256=P5g_H6QtlvbKuZgxkpu6t8hah_96RvSYxGOE03Begx4,5288
|
|
304
304
|
reflex/components/media/__init__.py,sha256=TsrfSzpXcRImityfegI2N9-vfj1a47ONUS-vyCUCEds,44
|
|
305
305
|
reflex/components/media/icon.py,sha256=1N268zLI9opst8EQkF5gPA-UN0aMprguUJgSbdFdo5g,102
|
|
306
306
|
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
@@ -316,14 +316,14 @@ reflex/components/next/link.pyi,sha256=Ct36W1hDaaslIkM_enRXDoLO7KwJSbzaFLGyBdPQi
|
|
|
316
316
|
reflex/components/next/video.py,sha256=2f81Ftb-6sikQb1xvExZqqQe0tcVjUY80ldh-GJ_uZw,730
|
|
317
317
|
reflex/components/next/video.pyi,sha256=exp6Gg-YXJBspVcjQn6KhY4nWgopnDzt5cVII-Fk2Pw,3429
|
|
318
318
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
319
|
-
reflex/components/plotly/plotly.py,sha256=
|
|
320
|
-
reflex/components/plotly/plotly.pyi,sha256=
|
|
319
|
+
reflex/components/plotly/plotly.py,sha256=1UgfSqAp3XR5kStIcHWIF8ZR-vw7qmHS1uPlmFkInTw,9073
|
|
320
|
+
reflex/components/plotly/plotly.pyi,sha256=NnNjm69ig4NJKTdUZxr9Z3SsbA2wIzmsy-NKR7ai6Jk,6742
|
|
321
321
|
reflex/components/props.py,sha256=0zyzw4dmAAPh_-mbr0_jGSRDQFKUM9vkz5MXA81nZX0,906
|
|
322
322
|
reflex/components/radix/__init__.py,sha256=oGg_AE9vkAeGBJdQTth7tnbG_BtnXfQf402GnUp9LCY,473
|
|
323
323
|
reflex/components/radix/__init__.pyi,sha256=NYoGUYzuIliK97-txDmDGaYXqKYU-bjbT2nu1jHhksE,4038
|
|
324
324
|
reflex/components/radix/primitives/__init__.py,sha256=awInjOiMrcrWgQU_jqfg9LCJ_lvDzD-JKy1sKgXH5QQ,442
|
|
325
325
|
reflex/components/radix/primitives/__init__.pyi,sha256=wcnPicjWQgJkuyXbk6JPaiUyb-lnYfreNqyXCeDJdb4,482
|
|
326
|
-
reflex/components/radix/primitives/accordion.py,sha256=
|
|
326
|
+
reflex/components/radix/primitives/accordion.py,sha256=fakIeCVgIy6zUlyM_v2tABxv49o8SEjpDb-BNuZ6RGs,15822
|
|
327
327
|
reflex/components/radix/primitives/accordion.pyi,sha256=BXQRJy7SlivFm_lwFO4XRSA9-yve_8k4EmGHQFUpqWk,38019
|
|
328
328
|
reflex/components/radix/primitives/base.py,sha256=s3OX4V2pNl6AQ3H9rz-pkE-2TNuNrqj0Mn2mOItF0eM,869
|
|
329
329
|
reflex/components/radix/primitives/base.pyi,sha256=_SqXWZfCB80_VHW-jO33WhoRunUpiUcUIxziG9Fb2fw,6478
|
|
@@ -337,9 +337,9 @@ reflex/components/radix/primitives/slider.py,sha256=whEo2n09mRqRJgq7JGRzrfMjvxHO
|
|
|
337
337
|
reflex/components/radix/primitives/slider.pyi,sha256=m-BYgslIMcTkoBYdeDysbpC5XTf9WjX-TylOZWkXNNk,16882
|
|
338
338
|
reflex/components/radix/themes/__init__.py,sha256=9HxYz_pwU9LHFJqDrDHSCSxuE-hsTaSE8t7IJoA-m20,491
|
|
339
339
|
reflex/components/radix/themes/__init__.pyi,sha256=AxRMKWpwoqrTX3c6_4UoA-c83UBMXlTUT5VunX09Vr0,514
|
|
340
|
-
reflex/components/radix/themes/base.py,sha256=
|
|
341
|
-
reflex/components/radix/themes/base.pyi,sha256=
|
|
342
|
-
reflex/components/radix/themes/color_mode.py,sha256=
|
|
340
|
+
reflex/components/radix/themes/base.py,sha256=1uid9ezp144UVowM-ss0O6f2mUsWtYTYNOzmqBIXV48,8743
|
|
341
|
+
reflex/components/radix/themes/base.pyi,sha256=_rtDedzTvV42SNEVHI_k1fyct8YT7H2GnXCGFnyYhjI,27182
|
|
342
|
+
reflex/components/radix/themes/color_mode.py,sha256=qIiMw5xWssgljqMvJbJhTDTPKoGEC4a5TphBTd84fJk,5584
|
|
343
343
|
reflex/components/radix/themes/color_mode.pyi,sha256=YZhgqFy7Rg5mHOzavIqV0tPtLeVz4eUONe10n5Adt98,22164
|
|
344
344
|
reflex/components/radix/themes/components/__init__.py,sha256=AyKD27f07gNt0LUivdnkiztjTKERqWKf5Rvsem3oARQ,422
|
|
345
345
|
reflex/components/radix/themes/components/__init__.pyi,sha256=PR1-XcaPrifdZzUhSA-dti1IE0tTx8fH1NjByweHr5o,1991
|
|
@@ -357,7 +357,7 @@ reflex/components/radix/themes/components/callout.py,sha256=J8Vttu37aHDxuKWyWwSo
|
|
|
357
357
|
reflex/components/radix/themes/components/callout.pyi,sha256=58FzM0pwOLuMtlD8UqmFO4wNq2wNqgxvbaQZCtommCw,38748
|
|
358
358
|
reflex/components/radix/themes/components/card.py,sha256=5DXE1gnvJDGqtFrKO8WB_FMz9e6_5HmKr2HCLsoYZAE,685
|
|
359
359
|
reflex/components/radix/themes/components/card.pyi,sha256=_k-Zo1Sid5pJJ022x3mVxF-PTIK-hWmbTYyF0NZC_SU,7226
|
|
360
|
-
reflex/components/radix/themes/components/checkbox.py,sha256=
|
|
360
|
+
reflex/components/radix/themes/components/checkbox.py,sha256=6qjkZa1MRrlvBan6svZg9s8k6VsrIDtdvSoW5pdP9oY,4714
|
|
361
361
|
reflex/components/radix/themes/components/checkbox.pyi,sha256=NEEbJq4-dxh6VnWRjP0TL5wfpw9bl7UPQ2CskeRTqEI,20877
|
|
362
362
|
reflex/components/radix/themes/components/checkbox_cards.py,sha256=PWAM-f1x0z8PLGAMu70pr1t19AI2MJv23VcHIotNp60,1301
|
|
363
363
|
reflex/components/radix/themes/components/checkbox_cards.pyi,sha256=kHyK8xsT1t8n3OXiSIROn_VHxBFtJzX6PW4mdGY1OEU,9591
|
|
@@ -385,7 +385,7 @@ reflex/components/radix/themes/components/radio.py,sha256=LpqiTO5mg4XtAvhw6XHSL2
|
|
|
385
385
|
reflex/components/radix/themes/components/radio.pyi,sha256=QxJt1_yo5aU2nLuBiIMzoH5pp2XNGo4_-B_A_8-bYhI,5924
|
|
386
386
|
reflex/components/radix/themes/components/radio_cards.py,sha256=fmBfncgJ5mh5ozOZZRXGWQs-vV_gJaLzQBgkPf5kYJw,1250
|
|
387
387
|
reflex/components/radix/themes/components/radio_cards.pyi,sha256=hEkzd42LpbtIHD2JFcjsdcCnw0jJjbeZ3wPwz2UXHlI,9561
|
|
388
|
-
reflex/components/radix/themes/components/radio_group.py,sha256=
|
|
388
|
+
reflex/components/radix/themes/components/radio_group.py,sha256=J9gILGxtTsgBrJkJC7vWKaVLYbCXl-LCDDTV19HvwfU,6353
|
|
389
389
|
reflex/components/radix/themes/components/radio_group.pyi,sha256=qEdhf8eWUntn-H74k_10uaaEcAMfKXlz4Kl6G8guy7A,24106
|
|
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=jtpiX8b4LZWZwpUi4jElgkBfwOLIDgjnOSm-W88oaXc,4427
|
|
@@ -393,7 +393,7 @@ reflex/components/radix/themes/components/segmented_control.py,sha256=ZkxEgr6xrj
|
|
|
393
393
|
reflex/components/radix/themes/components/segmented_control.pyi,sha256=M82L1yo6-DwT_eM0TX53YZhcIJ2gak3GhIlKvRLrGPw,9507
|
|
394
394
|
reflex/components/radix/themes/components/select.py,sha256=otgJdSdoE9VVv2z3PgtKJmDY_Ln6wPJlCz2ixFp9mDY,8028
|
|
395
395
|
reflex/components/radix/themes/components/select.pyi,sha256=u5bmgAuFqV1A9_avfUZ9uYxWi8y0eqqM7-H_LVKEyaw,45123
|
|
396
|
-
reflex/components/radix/themes/components/separator.py,sha256=
|
|
396
|
+
reflex/components/radix/themes/components/separator.py,sha256=nKxAQNKBNNhh0wuH8biXBYgDIEMI-Hu9v_dLpNgILhE,889
|
|
397
397
|
reflex/components/radix/themes/components/separator.pyi,sha256=Uw1Bk8px4gCdv-1gnhH_z8x2Uq68ksE9773G3uLLxDo,6078
|
|
398
398
|
reflex/components/radix/themes/components/skeleton.py,sha256=sEFtHPZ13SGbBX-soblfaQlhnhQHMBUfPAJtAdzc3WA,643
|
|
399
399
|
reflex/components/radix/themes/components/skeleton.pyi,sha256=zYcmuXH1KU5MJ47qpk-XBpdSxqQua6TJjyaBX6rWxgE,4289
|
|
@@ -421,7 +421,7 @@ reflex/components/radix/themes/layout/box.py,sha256=j-fzawX2HXdTVYPorpERvyOWGRvS
|
|
|
421
421
|
reflex/components/radix/themes/layout/box.pyi,sha256=fgElqsNrKJp1k0UypuxpXqQythExwDXSt4l9IwovEuI,6506
|
|
422
422
|
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
423
423
|
reflex/components/radix/themes/layout/center.pyi,sha256=RfYglzS3eIB5uaTue0YgMkAtFdUSuHSbPK0J8agZiM4,8296
|
|
424
|
-
reflex/components/radix/themes/layout/container.py,sha256=
|
|
424
|
+
reflex/components/radix/themes/layout/container.py,sha256=sjf8GSg_t7j-aircbCk4prJZfNThQYBOeKCYbbB1wD8,1483
|
|
425
425
|
reflex/components/radix/themes/layout/container.pyi,sha256=GUKH2UUVMjSPX7JOYf_EkPNSokJDHni0zdPg2iovyMM,5303
|
|
426
426
|
reflex/components/radix/themes/layout/flex.py,sha256=uVYixM-MdFjs0ubDeloKY5n5hhyWYxANoNTNFmPZXzI,1421
|
|
427
427
|
reflex/components/radix/themes/layout/flex.pyi,sha256=Ibzsak6CWcLjFlV02X8WqmuY2XYnhdUUiQUE-5tNPJM,8547
|
|
@@ -429,7 +429,7 @@ reflex/components/radix/themes/layout/grid.py,sha256=NNb1U4Dqc4b38vOaQnbfuurXNyt
|
|
|
429
429
|
reflex/components/radix/themes/layout/grid.pyi,sha256=yWZI3QkwoNewoULUzU97j94B1VdrnI7EbsyTEtximO4,8953
|
|
430
430
|
reflex/components/radix/themes/layout/list.py,sha256=dkPXWqWrLtevvaFuir7gwQ67PhDm-2bF3U7rd2BC36M,5343
|
|
431
431
|
reflex/components/radix/themes/layout/list.pyi,sha256=N52SJfxIIF2jY0mlXHooSKLt9Jip3xhIyIpvPoAuoG4,29001
|
|
432
|
-
reflex/components/radix/themes/layout/section.py,sha256=
|
|
432
|
+
reflex/components/radix/themes/layout/section.py,sha256=uE-VtIZObv6yEx73zuqrNMGkK-rpolZs1WzehaasL64,555
|
|
433
433
|
reflex/components/radix/themes/layout/section.pyi,sha256=1Oe8VSn8_Y6DcttDG4yQoJX4lQRDM1VWNJCUba_DMTU,6810
|
|
434
434
|
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
435
435
|
reflex/components/radix/themes/layout/spacer.pyi,sha256=c349qHuzk8IuCFO33CWA1z-whL97ypVdcMe7ddRpd44,8296
|
|
@@ -457,10 +457,10 @@ reflex/components/react_player/video.py,sha256=r_14UGX-u3MKqpyK6yGwlaqZGPGw1v6g9
|
|
|
457
457
|
reflex/components/react_player/video.pyi,sha256=yjyy03dNNAADtU_OiczuUigHNE2TVFbio_mCryorQ9U,4327
|
|
458
458
|
reflex/components/recharts/__init__.py,sha256=K9Pvqm27I8lMZECRziBhmfiLlt_6OysP6ksG43Fr694,2643
|
|
459
459
|
reflex/components/recharts/__init__.pyi,sha256=YSC9GJJrIcaImeNUjtIf_cEo3jrMFcxiXnunxu8nObA,5113
|
|
460
|
-
reflex/components/recharts/cartesian.py,sha256=
|
|
461
|
-
reflex/components/recharts/cartesian.pyi,sha256=
|
|
462
|
-
reflex/components/recharts/charts.py,sha256=
|
|
463
|
-
reflex/components/recharts/charts.pyi,sha256=
|
|
460
|
+
reflex/components/recharts/cartesian.py,sha256=IeNjtEgVRaLLZd_P927z8VSNsB1y5sN3SRRe6E-fJms,21327
|
|
461
|
+
reflex/components/recharts/cartesian.pyi,sha256=K2PSZVsZ6kM-JNSoVWpbB_KWp83SFN1FXHwE3DI9q9s,87624
|
|
462
|
+
reflex/components/recharts/charts.py,sha256=awd54qMKNydeDFibWdKVDkQpnMy6Iz2lhviY4ROgzCQ,18433
|
|
463
|
+
reflex/components/recharts/charts.pyi,sha256=hGX6hNjzQ8-Vw84P9d28h8lECXXKaVaATCOjJ87rXwk,50581
|
|
464
464
|
reflex/components/recharts/general.py,sha256=w2w5-2nNA6xhq41wT4nsxJ3XHAdtVsPje-54Svq3354,5792
|
|
465
465
|
reflex/components/recharts/general.pyi,sha256=rRkOOe43Rq1G9OD3XKJZwoesg2xbvtohiAMX3wEe6cY,22954
|
|
466
466
|
reflex/components/recharts/polar.py,sha256=w_HMUsxSB-CVdocecQygV0k3BsZlZfMRyIcnzGz5W9E,10714
|
|
@@ -468,8 +468,8 @@ reflex/components/recharts/polar.pyi,sha256=k33AH69aOyHGfEHaCQGA_cP2PYKnKgCs_yWa
|
|
|
468
468
|
reflex/components/recharts/recharts.py,sha256=Ap4HCCBY2Q9gdrh-PnHOvJY5ebIKCLgnQNrUWDp_bRs,2870
|
|
469
469
|
reflex/components/recharts/recharts.pyi,sha256=milPgyj87d3rOAcsruXTUP_vMJ1REBsDC6TJL0obap4,8535
|
|
470
470
|
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
471
|
-
reflex/components/sonner/toast.py,sha256=
|
|
472
|
-
reflex/components/sonner/toast.pyi,sha256=
|
|
471
|
+
reflex/components/sonner/toast.py,sha256=RLD90wbeFKq-Mac-_amDyFS25orUmCLo3ywXqEt6Z1g,10420
|
|
472
|
+
reflex/components/sonner/toast.pyi,sha256=L3Pb4HxWPnms10TdHvPE3g_3HNBnMc001E_ceoYJ3Fo,8302
|
|
473
473
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
474
474
|
reflex/components/suneditor/editor.py,sha256=GagQzBNxptJl6xYplta77m7aKqYbdlQ9Aldlw8Rxyzc,7360
|
|
475
475
|
reflex/components/suneditor/editor.pyi,sha256=h5NklINt1L8SdPwjwIsLeh1wpdncB_KEmooiV7WdAfs,10330
|
|
@@ -477,15 +477,14 @@ reflex/components/tags/__init__.py,sha256=Pc0JU-Tv_W7KCsydXgbKmu7w2VtHNkI6Cx2hTk
|
|
|
477
477
|
reflex/components/tags/cond_tag.py,sha256=v5BO78bGQQuCy8lM45yI7nAuasxjQoRyQNdj5kakPBY,447
|
|
478
478
|
reflex/components/tags/iter_tag.py,sha256=FKPZtSR0wKyNrigEOYnGsndhXJzwNurTCEAS6Z5vff0,3927
|
|
479
479
|
reflex/components/tags/match_tag.py,sha256=pMwy46ewquPNwa1S71sDS_0Ga8YuviSrbpBU-_CWsoQ,387
|
|
480
|
-
reflex/components/tags/tag.py,sha256=
|
|
480
|
+
reflex/components/tags/tag.py,sha256=iORWH5NBQ8U1cdMfUKaAkvFiZhvs5FPR9eHKlGjmPYg,2816
|
|
481
481
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
482
|
-
reflex/config.py,sha256=
|
|
483
|
-
reflex/constants/__init__.py,sha256=
|
|
484
|
-
reflex/constants/base.py,sha256=
|
|
485
|
-
reflex/constants/base.pyi,sha256=S8gYePgo8Dej32AZM0qjf6vUhrldHpm3lk-UBHW7gC4,3120
|
|
482
|
+
reflex/config.py,sha256=Lvgpk-ew6SevQxZ2m2ukJoWtjDfhTtWVaWImSpuq5LA,11687
|
|
483
|
+
reflex/constants/__init__.py,sha256=q67dwC2zqW9SHBSnrZ63zT7mz9pSeG1S6lP5M4L8jI8,2016
|
|
484
|
+
reflex/constants/base.py,sha256=9Xj23wwgDtUhXFdVV5occuKffgGo6u-_ikTPUn_O4pM,5846
|
|
486
485
|
reflex/constants/colors.py,sha256=gab_GwjKcbpRJGS2zX0gkmc_yFT1nmQbFDHqx0mXKB0,1625
|
|
487
486
|
reflex/constants/compiler.py,sha256=LoCYFgJJX3NwIDlgOyAapX2at9UnWQ67LaysRxSIvno,4207
|
|
488
|
-
reflex/constants/config.py,sha256=
|
|
487
|
+
reflex/constants/config.py,sha256=Kr78PoRK7pg_-P_u5EMCSu5QMzKaKssa3k-tVkjcrqM,1454
|
|
489
488
|
reflex/constants/custom_components.py,sha256=SX0SQVb-d6HJkZdezFL4UgkumyF6eJF682y4OvRUqUM,1268
|
|
490
489
|
reflex/constants/event.py,sha256=7cEUTWdIhWVw7g5Bn9yTZlxNnJY5MeJL55q-vT1YOZ0,2668
|
|
491
490
|
reflex/constants/installer.py,sha256=ezQ_lmLNyov2zDU5GYBSYiuuWK4s9tCOA7GtQgydyUY,3456
|
|
@@ -493,45 +492,46 @@ reflex/constants/route.py,sha256=fu1jp9MoIriUJ8Cu4gLeinTxkyVBbRPs8Bkt35vqYOM,214
|
|
|
493
492
|
reflex/constants/style.py,sha256=gSzu0sQEQjW81PekxJnwRs7SXQQVco-LxtVjCi0IQZc,636
|
|
494
493
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
495
494
|
reflex/custom_components/custom_components.py,sha256=vYBhEt0ceCTaXG_zQlD8aEUxEzyGwlc7D6RKah2Pp2A,33067
|
|
496
|
-
reflex/event.py,sha256=
|
|
497
|
-
reflex/experimental/__init__.py,sha256=
|
|
495
|
+
reflex/event.py,sha256=UQuVJ2aHcSpcXDO8sNKdXpvKrCOs4lnB1NMKqK2wNVo,28586
|
|
496
|
+
reflex/experimental/__init__.py,sha256=Nm7dShDLu42HowVFHufn5nPwji-39p0OP-uV83a-cC4,1364
|
|
498
497
|
reflex/experimental/assets.py,sha256=ZqgbyPda5KsvtaESO8nds-5m7DvWq8AOgTF2bOAtToo,1757
|
|
499
|
-
reflex/experimental/client_state.py,sha256=
|
|
500
|
-
reflex/experimental/hooks.py,sha256=
|
|
501
|
-
reflex/experimental/layout.py,sha256=
|
|
498
|
+
reflex/experimental/client_state.py,sha256=ovd3n6e-vHc-w1v3w-MVFXIWkZYAqaxnEXTFH2PcBZM,8570
|
|
499
|
+
reflex/experimental/hooks.py,sha256=emkTJC3dmv4UJ4JK-0ZS9BQujaDLsfdYeD1roPhR5IU,2436
|
|
500
|
+
reflex/experimental/layout.py,sha256=Zx8AGqWJrSzXY1XapsorOx-jNo2kRqaWOc4QJRulQdU,7656
|
|
501
|
+
reflex/experimental/layout.pyi,sha256=GULMurblUTmC5n3F2CaW4e9bUre16zrCvLxjgD-PXnA,20186
|
|
502
502
|
reflex/experimental/misc.py,sha256=4xlHrSCZaDyyiSexNKRbSfJ_UZy6-fzIBhKDeHNt94Q,281
|
|
503
503
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
504
504
|
reflex/middleware/hydrate_middleware.py,sha256=iXgB_VID2moU9gNpc79TJHGGhQgDH6miT32T_0Ow5tU,1484
|
|
505
505
|
reflex/middleware/middleware.py,sha256=PX9TPaCHI1O-F3OucsZSp94gtMP3ALYs3zXSALOlN9E,1169
|
|
506
506
|
reflex/model.py,sha256=WMcJiT04HSM4fKTP9SIZJQoDrIO2vaPTsoao-X169V4,13227
|
|
507
507
|
reflex/page.py,sha256=NPT0xMownZGTiYiRtrUJnvAe_4oEvlzEJEkG-vrGhqI,2077
|
|
508
|
-
reflex/reflex.py,sha256=
|
|
508
|
+
reflex/reflex.py,sha256=1wJX6casYE_sAc1JCo4vng9gsyAeiYsG2Yw7itk5Abs,17874
|
|
509
509
|
reflex/route.py,sha256=WZS7stKgO94nekFFYHaOqNgN3zZGpJb3YpGF4ViTHmw,4198
|
|
510
510
|
reflex/state.py,sha256=y9ueyKjNgJ8vQXS1PvRhUOItzT4rMj_q9GCy2qMOCOQ,108928
|
|
511
|
-
reflex/style.py,sha256=
|
|
512
|
-
reflex/testing.py,sha256=
|
|
511
|
+
reflex/style.py,sha256=2mUSDsnkKqvpNOEyA9zqXDoW0LyooOXiwOszDmIp95s,9620
|
|
512
|
+
reflex/testing.py,sha256=FJsQODHOjKHhhNOfupxxc2U9JbhSjLyyciQVhej6eXA,33073
|
|
513
513
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
514
514
|
reflex/utils/build.py,sha256=9LE93QlbfTHYyQWTgGZYSXX7QGDYzuE01ttWUVw_rGQ,8573
|
|
515
|
-
reflex/utils/compat.py,sha256=
|
|
515
|
+
reflex/utils/compat.py,sha256=zNB4U_kXDUE-6_LaiTeZJyti23oWorrHv416Fc-Oezc,1390
|
|
516
516
|
reflex/utils/console.py,sha256=-BHtwUabv8QlhGfEHupSn68fOOmPRZpkSvcqcjNBV-k,5182
|
|
517
517
|
reflex/utils/exceptions.py,sha256=3dHTYMHKHBCl1PZttA9AZ4Pa813I5RlfU58JXnI8T2c,2163
|
|
518
518
|
reflex/utils/exec.py,sha256=RsRlzE8JdxTlFSTACd9XrLt9liDbvdxZrM5wkae9R4k,10961
|
|
519
519
|
reflex/utils/export.py,sha256=UJd4BYFW9_eexhLCP4C5Ri8Cq2tWAPNVspq70lPLCyo,2270
|
|
520
|
-
reflex/utils/format.py,sha256=
|
|
520
|
+
reflex/utils/format.py,sha256=MjgqB-yp0G710MPXQ01xWkmyFnhwmV7PFWJ7bHedR5A,25557
|
|
521
521
|
reflex/utils/imports.py,sha256=v_xLZiMn7UxxPu5mXln74tXi52wYKqPuZe11Ka31WuM,2309
|
|
522
522
|
reflex/utils/lazy_loader.py,sha256=iyQU_bnigzskD-fdoxkt19i6SGbrHdSOOwCgB2FJWjc,1281
|
|
523
523
|
reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
|
|
524
524
|
reflex/utils/prerequisites.py,sha256=kbF7eNWmt-Vzi7wdnUZUJynMaQCtttoP4MT8vO6graw,52552
|
|
525
|
-
reflex/utils/processes.py,sha256=
|
|
526
|
-
reflex/utils/pyi_generator.py,sha256=
|
|
527
|
-
reflex/utils/serializers.py,sha256=
|
|
525
|
+
reflex/utils/processes.py,sha256=WFvcKDRVRCaNBbe3rZQega0K9DImwkHgyhJHyU98Gmw,13017
|
|
526
|
+
reflex/utils/pyi_generator.py,sha256=fDQ3zBaipI5AuXlTT4tfGFTzVK_lvljaZbHSpOENV8k,32982
|
|
527
|
+
reflex/utils/serializers.py,sha256=YrGNgfZNHbxuc4Kp5ph61WPu-QF0r6IR6KuVYluxcoY,11701
|
|
528
528
|
reflex/utils/telemetry.py,sha256=t4cvQmoAxTKAWF53vGH6ZEX5QYrK_KEcarmvMy-4_E4,5568
|
|
529
|
-
reflex/utils/types.py,sha256=
|
|
529
|
+
reflex/utils/types.py,sha256=VhLin6M0J7g3HdXw-Vf8ugA1USWDlHRKaDLaOCOkwHY,15255
|
|
530
530
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
531
|
-
reflex/vars.py,sha256=
|
|
532
|
-
reflex/vars.pyi,sha256=
|
|
533
|
-
reflex-0.5.
|
|
534
|
-
reflex-0.5.
|
|
535
|
-
reflex-0.5.
|
|
536
|
-
reflex-0.5.
|
|
537
|
-
reflex-0.5.
|
|
531
|
+
reflex/vars.py,sha256=78zGeR-Dt4Q9bVmXJabx0O3N-bfSBx-TpZ9V_LymHt0,74404
|
|
532
|
+
reflex/vars.pyi,sha256=wz0EfaIlQkLlpd35gM0BpL6TxWzBl-9nj8N_3FP1nh8,6332
|
|
533
|
+
reflex-0.5.4.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
534
|
+
reflex-0.5.4.dist-info/METADATA,sha256=D81qOKhzNTZ2Z-5e1WlxNCzPnTCQ8yvVNxC14bWmdCk,12118
|
|
535
|
+
reflex-0.5.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
536
|
+
reflex-0.5.4.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
537
|
+
reflex-0.5.4.dist-info/RECORD,,
|