reflex 0.3.8a2__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.

Files changed (67) hide show
  1. reflex/.templates/apps/blank/code/blank.py +1 -1
  2. reflex/.templates/apps/demo/code/demo.py +1 -1
  3. reflex/.templates/jinja/web/pages/utils.js.jinja2 +1 -1
  4. reflex/__init__.py +1 -0
  5. reflex/__init__.pyi +1 -0
  6. reflex/app.py +4 -5
  7. reflex/components/component.py +3 -1
  8. reflex/components/core/match.py +8 -4
  9. reflex/components/datadisplay/dataeditor.py +5 -1
  10. reflex/components/markdown/markdown.py +1 -0
  11. reflex/components/radix/__init__.py +2 -0
  12. reflex/components/radix/primitives/__init__.py +14 -1
  13. reflex/components/radix/primitives/accordion.py +430 -69
  14. reflex/components/radix/primitives/accordion.pyi +41 -11
  15. reflex/components/radix/primitives/base.py +4 -0
  16. reflex/components/radix/primitives/base.pyi +81 -0
  17. reflex/components/radix/primitives/form.py +4 -2
  18. reflex/components/radix/primitives/form.pyi +2 -2
  19. reflex/components/radix/primitives/progress.py +4 -2
  20. reflex/components/radix/primitives/progress.pyi +2 -2
  21. reflex/components/radix/primitives/slider.py +7 -5
  22. reflex/components/radix/primitives/slider.pyi +5 -5
  23. reflex/components/radix/themes/components/__init__.py +8 -2
  24. reflex/components/radix/themes/components/alertdialog.py +4 -4
  25. reflex/components/radix/themes/components/alertdialog.pyi +8 -1
  26. reflex/components/radix/themes/components/aspectratio.py +2 -4
  27. reflex/components/radix/themes/components/aspectratio.pyi +1 -3
  28. reflex/components/radix/themes/components/avatar.py +7 -3
  29. reflex/components/radix/themes/components/avatar.pyi +5 -3
  30. reflex/components/radix/themes/components/badge.py +5 -7
  31. reflex/components/radix/themes/components/badge.pyi +4 -6
  32. reflex/components/radix/themes/components/callout.py +36 -5
  33. reflex/components/radix/themes/components/callout.pyi +273 -9
  34. reflex/components/radix/themes/components/card.py +3 -3
  35. reflex/components/radix/themes/components/card.pyi +2 -2
  36. reflex/components/radix/themes/components/checkbox.py +41 -4
  37. reflex/components/radix/themes/components/checkbox.pyi +231 -8
  38. reflex/components/radix/themes/components/dialog.py +1 -1
  39. reflex/components/radix/themes/components/dialog.pyi +1 -1
  40. reflex/components/radix/themes/components/dropdownmenu.py +6 -0
  41. reflex/components/radix/themes/components/dropdownmenu.pyi +193 -0
  42. reflex/components/radix/themes/components/iconbutton.py +1 -1
  43. reflex/components/radix/themes/components/iconbutton.pyi +1 -1
  44. reflex/components/radix/themes/components/icons.py +1 -0
  45. reflex/components/radix/themes/components/inset.py +1 -0
  46. reflex/components/radix/themes/components/inset.pyi +1 -0
  47. reflex/components/radix/themes/components/radiogroup.py +68 -1
  48. reflex/components/radix/themes/components/radiogroup.pyi +254 -2
  49. reflex/components/radix/themes/components/select.py +94 -5
  50. reflex/components/radix/themes/components/select.pyi +251 -5
  51. reflex/components/radix/themes/components/slider.py +9 -6
  52. reflex/components/radix/themes/components/slider.pyi +12 -6
  53. reflex/components/radix/themes/components/tooltip.py +1 -0
  54. reflex/components/radix/themes/components/tooltip.pyi +1 -0
  55. reflex/components/radix/themes/layout/box.py +1 -1
  56. reflex/state.py +9 -4
  57. reflex/style.py +15 -0
  58. reflex/utils/format.py +13 -9
  59. reflex/utils/path_ops.py +2 -2
  60. reflex/utils/prerequisites.py +57 -5
  61. reflex/utils/types.py +4 -1
  62. reflex/vars.py +36 -3
  63. {reflex-0.3.8a2.dist-info → reflex-0.3.9.dist-info}/METADATA +2 -2
  64. {reflex-0.3.8a2.dist-info → reflex-0.3.9.dist-info}/RECORD +67 -67
  65. {reflex-0.3.8a2.dist-info → reflex-0.3.9.dist-info}/WHEEL +1 -1
  66. {reflex-0.3.8a2.dist-info → reflex-0.3.9.dist-info}/LICENSE +0 -0
  67. {reflex-0.3.8a2.dist-info → reflex-0.3.9.dist-info}/entry_points.txt +0 -0
@@ -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.clear()
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 install_frontend_packages(packages: set[str]):
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"{left_operand._var_full_name}.{fn}({right_operand._var_full_name})" # type: ignore
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"{left_operand._var_full_name} {op} {right_operand._var_full_name}" # type: ignore
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"{left_operand._var_full_name} {op} {right_operand._var_full_name}" # type: ignore
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.8a2
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=S2iHO4sDRHKAxqwVfiWCNpkxaBFCBTfslBskP-3kzkg,1200
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=yUc-tYeDM1dwVfRKuiamzE49gmibCsjhuBoEL-l7Zxg,2753
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=cgakjZFsNUAhX1mZ2YYwAXzk84CvOKnGph0E96_JQSE,3878
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=dZhJDLsLJDQg1zlsXu9k1p6FV_GyGmecVDkVzkMCk9Q,8051
76
- reflex/__init__.pyi,sha256=h3kKWa9hjM6PPzILHx5AX2dEjf9UYaDwMaOPkFOweKA,27014
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=qEH7v1XiGNhLMojS2HAjT-gULiMeebIWTRWMcrr6lQk,39236
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
@@ -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=4hjt74Y069xmZu8SWjFxcycAUevEgj_gK-DqCTCexwQ,56654
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=TeNuPO5BvDey_F7vRnj0Zb6YAb9wdV_XdBSHMobvUXg,8935
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=vn2FECDIhKeLd1QJpOLqDt2vHpvyof5k5ETuBpjL42Q,12577
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=2RMEQeeV68PJszlzAQIBccKUEqX2lqVFUJyhqvAVgS8,11018
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=h17lShMGLzeWJ64oiVaXk2cAihC3TRE7sckq7UZAyJQ,63
319
- reflex/components/radix/primitives/__init__.py,sha256=_nOhWZJsO44PGoGQ_eDBpjNPLkfNBKf4GA04O5482RE,327
320
- reflex/components/radix/primitives/accordion.py,sha256=rlxzAborWrxu8i0k2tt-cqDoY4HsoKmdOs5iFyUqHvg,6656
321
- reflex/components/radix/primitives/accordion.pyi,sha256=DWKMG-A2ohEM8t4KKkbyoCEkJjYO8Zlvolec0EV7dPw,20245
322
- reflex/components/radix/primitives/base.py,sha256=L_b3UXd1jZ5ahiVizcOBeRtvCco5PnDhDw67OsP4hwk,727
323
- reflex/components/radix/primitives/base.pyi,sha256=FYk_DzHLEr5qqVgDvuqlH6dw-FcH7UhfFuw7b5lxXNQ,3597
324
- reflex/components/radix/primitives/form.py,sha256=kWcY10G-zj1rmV6nVPHa7KaMyZVjwCCGWgD73AtyzA4,7482
325
- reflex/components/radix/primitives/form.pyi,sha256=gaiSq9gAEwbmkgp30at-DS0G_tRyzuWNh1LaUYr-hYU,27570
326
- reflex/components/radix/primitives/progress.py,sha256=tAtdNn-2GT1i8hiXVibDQA6LgRfdn9qDgUv9Pgh119M,2055
327
- reflex/components/radix/primitives/progress.pyi,sha256=nnS1Nx1PsCplm2Vk1e15wBSZG-AxVhK_OwbubPLgMG0,10027
328
- reflex/components/radix/primitives/slider.py,sha256=ObbLeHNpbcoY0wPg1W22bsxbsRpEWEcWkUWpLBTQrsI,4682
329
- reflex/components/radix/primitives/slider.pyi,sha256=9SVIaWpScEV-r8ypYKb0LfBuOTjo59f67jSxnhYbRCs,16874
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
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=RXBbGHjHjErAO3g70qcWx-OtJfKyX-XWbYDpfaaAtPU,5116
334
- reflex/components/radix/themes/components/alertdialog.py,sha256=RmPMN2GfOJSCKMIl_YESX4pF0n0qbIyHxqSqd0Ryk3A,2676
335
- reflex/components/radix/themes/components/alertdialog.pyi,sha256=t0UjKMn5PDUUdC1Hjaq_oIUQTFHdBX4UKJgRWuflSCs,51769
336
- reflex/components/radix/themes/components/aspectratio.py,sha256=bHli3kfg15C0gRbNZiIi-AnANSfZ4vIYp4xp27Y40aE,479
337
- reflex/components/radix/themes/components/aspectratio.pyi,sha256=D1dY2mdoftdrv0Wc2AZgcnYDpYyrrmsTHhcZc_1YZhY,7478
338
- reflex/components/radix/themes/components/avatar.py,sha256=AoghmQlXXg1ukW2SqT6SKrk81zFDZ-DjJr4b3qWsk3o,860
339
- reflex/components/radix/themes/components/avatar.pyi,sha256=YqpDfPTp4rJUJ9YHYfs0agrRna4rPrYfln0Me9hlY2s,8291
340
- reflex/components/radix/themes/components/badge.py,sha256=HGr7xjVhQniATCmUWQcZLysG8yQqnMWTJR9UCv7NCJs,900
341
- reflex/components/radix/themes/components/badge.pyi,sha256=f1bNM_z3JJtZ6uw-m4xkXJhKcIzAoi8WYgrWKVCvl5o,11528
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=z8LBQH-Q_5sdUfG2upJTcJo7ROiUjG2jZE8_5IWcp_U,1424
345
- reflex/components/radix/themes/components/callout.pyi,sha256=ozjE6m91Cqrfr0HHhB9nn7WJeXvnAXmoRqOQNGv8lZk,31757
346
- reflex/components/radix/themes/components/card.py,sha256=OGr8LgMV6phyn-LtE4O1f90OYqIR5smN1ijbGZit-Ls,710
347
- reflex/components/radix/themes/components/card.pyi,sha256=hlMsDqW9AJ0FFg-FbXw9ZS6rfMF3DTwY-fJlSnIJzt8,11211
348
- reflex/components/radix/themes/components/checkbox.py,sha256=kYkH3pCxEVdujQ2W2rFk7QvqDcAGdIh-JNPW6Rb-YwE,1837
349
- reflex/components/radix/themes/components/checkbox.pyi,sha256=RZSPoAffgiUAayR4_lLHr_n_tZYEQ4bnMDbG950yOhs,9464
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=bF4y2BDY6XlB0coH_eAtn8sZEcZjjSIWsmKHPJlp0qQ,2466
353
- reflex/components/radix/themes/components/dialog.pyi,sha256=F_YK6fSv0tmLYOHBuK39741ke2_BwS9mWr7U1pc_x-0,45421
354
- reflex/components/radix/themes/components/dropdownmenu.py,sha256=C7PljWx04NmF0xmvUaZ2byzjPMQbnWUVTxW9vTlxj8E,3178
355
- reflex/components/radix/themes/components/dropdownmenu.pyi,sha256=2AuiMqAH-2TKOkL-gRIl74u1XQyeYGM0ROzeO9rgJns,49356
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=By7ikf6nIWRqys1C55_buFZauPDKklvRufWi6qtvXfs,1098
359
- reflex/components/radix/themes/components/iconbutton.pyi,sha256=_bbE5j0pn3UBmEQZbaw2n9xqv7TdaW3DJuDzxfAxjl0,13960
360
- reflex/components/radix/themes/components/icons.py,sha256=BohlQxuV8BSS-C7aO_n4rnM6s8KEfA6Rcf_E0X8OcbE,7899
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=xVmYzxfUIjmzJMJbK_GYXgXk4G-tAH9YKYL8Xl8eJxQ,958
363
- reflex/components/radix/themes/components/inset.pyi,sha256=kcCPXGtlHdBCniUysv3eNtPVWKWd9CaQCLBy_n4QOUQ,11813
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=ASdxVz0OjPhK2lY1qTrMr5BtQ2haxwDBAk-qfdjTIqw,2215
367
- reflex/components/radix/themes/components/radiogroup.pyi,sha256=mqxYiZxVHG9CeeWTlkGeO2NW3JofO11APhC1H9LtdvA,16262
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=CFi-IZM9KVaZRsql8IE6M34b-eHDaeJiEH6LXEiGFJ4,4675
371
- reflex/components/radix/themes/components/select.pyi,sha256=PY8o2Q3Tk5BFJCpiCFLfmJZho68kuf00YwD9KM96T2E,51976
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
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=SJg4FaF6JTeu9zpTbzxcR_oO3T_wYDGV3nLqe5STbKk,1962
375
- reflex/components/radix/themes/components/slider.pyi,sha256=uIAUr-vTk2kvHry5VMEjD1V6_6s74AyMKX-J7rTMNRc,9729
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=OWpE4swD-i0SVq7svF2SRVRQ4p3eiinSER-ygePq-3U,363
387
- reflex/components/radix/themes/components/tooltip.pyi,sha256=rRHDkHD3XOdLWDUi_A6frzNEBL_uz_N-zpBxJa9K7ZE,7286
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=tl3qPM0GxOIXP8lpaqZGXhgiq5ZNL-8gBqOomzwAY5U,262
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=qar2TcwhunjA8kdA-stitn7TD7R78u5GaawZploBB_s,72395
469
- reflex/style.py,sha256=4BSOySUxUSMtd2iL4e1S7IDhzBfH3qcExHykrKx3mTs,7252
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
@@ -474,19 +474,19 @@ reflex/utils/console.py,sha256=oEEaV9oSw5B24LPEwBOGlyrk2xI91Fo-pqGEsNICrjg,4583
474
474
  reflex/utils/exceptions.py,sha256=oniHYS_c18hvwva4tvEmO33Fjmp605uFJBX4liKuqp8,504
475
475
  reflex/utils/exec.py,sha256=rbG1Mhx4s6yvge_dEDynbT9oAH-iJSiDCsvhSKyJsNM,8622
476
476
  reflex/utils/export.py,sha256=daLyx4W-Kjit7Wjg5Db7-yFarF8r0d2IJ8aliXLDXZo,2454
477
- reflex/utils/format.py,sha256=gCic4Gm41jyQ_C9NcO37vU2vaoLSqaEWmcl7DejHBYA,20266
477
+ reflex/utils/format.py,sha256=4yfILoZmS4d4FXpg568Zrz5LEo7pXcR9e-veMTiKILc,20464
478
478
  reflex/utils/imports.py,sha256=yah1kSVsOyUxA0wOMxJTwcmu6xlmkLJtV_zRIhshpsA,1919
479
- reflex/utils/path_ops.py,sha256=pUcqPPKsvP6G5VVggX9fcw8lEkiKueTNoFq0eUlMyGc,4706
480
- reflex/utils/prerequisites.py,sha256=8Sazxmsgzd4DIjGE8ld6_V2bV5m8msOQ7g1d-mkPHSA,28919
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=sB3axbqJWB_lthWPEvSYqIgffd2A6Ocro4rjh4-geoY,8244
484
+ reflex/utils/types.py,sha256=O468UkPYHBdLAYhhZxtydUELMsfVVNVRN8d5Yw4z_VE,8404
485
485
  reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
486
- reflex/vars.py,sha256=hIXG9tIqEYZknvOFuZNdneq2RMfrH3XoHQlZFjDDmY4,60095
486
+ reflex/vars.py,sha256=Jo7e-UVLXHPITScyhM-q2kQcB2jyHcNpuRFGB6cilxg,61167
487
487
  reflex/vars.pyi,sha256=VsVyNRIcuWnCDo2xrxF25gHV7qTM8wU1O350UBay3Rk,5032
488
- reflex-0.3.8a2.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
489
- reflex-0.3.8a2.dist-info/METADATA,sha256=byZLLwDT-a5R89mmgTYPsahobHiAoRtbsuoE9X4-1fs,11260
490
- reflex-0.3.8a2.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
491
- reflex-0.3.8a2.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
492
- reflex-0.3.8a2.dist-info/RECORD,,
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,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.7.0
2
+ Generator: poetry-core 1.8.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any