reflex 0.5.3__py3-none-any.whl → 0.5.3a1__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.

@@ -169,7 +169,7 @@ def _compile_root_stylesheet(stylesheets: list[str]) -> str:
169
169
  raise FileNotFoundError(
170
170
  f"The stylesheet file {stylesheet_full_path} does not exist."
171
171
  )
172
- stylesheet = f"../{constants.Dirs.PUBLIC}/{stylesheet.strip('/')}"
172
+ stylesheet = f"@/{stylesheet.strip('/')}"
173
173
  sheets.append(stylesheet) if stylesheet not in sheets else None
174
174
  return templates.STYLE.render(stylesheets=sheets)
175
175
 
@@ -9,7 +9,7 @@ class Html(Div):
9
9
  """Render the html.
10
10
 
11
11
  Returns:
12
- The code to render the html component.
12
+ The code to render the html component.
13
13
  """
14
14
 
15
15
  # The HTML to render.
@@ -185,7 +185,7 @@ from .elements.tables import tfoot as tfoot
185
185
  from .elements.tables import th as th
186
186
  from .elements.tables import thead as thead
187
187
  from .elements.tables import tr as tr
188
- from .elements.tables import tbody as tbody
188
+ from .elements.tables import Tbody as Tbody
189
189
  from .elements.tables import Caption as Caption
190
190
  from .elements.tables import Col as Col
191
191
  from .elements.tables import Colgroup as Colgroup
@@ -195,7 +195,6 @@ from .elements.tables import Tfoot as Tfoot
195
195
  from .elements.tables import Th as Th
196
196
  from .elements.tables import Thead as Thead
197
197
  from .elements.tables import Tr as Tr
198
- from .elements.tables import Tbody as Tbody
199
198
  from .elements.typography import blockquote as blockquote
200
199
  from .elements.typography import dd as dd
201
200
  from .elements.typography import div as div
@@ -102,7 +102,7 @@ _MAPPING = {
102
102
  "th",
103
103
  "thead",
104
104
  "tr",
105
- "tbody",
105
+ "Tbody",
106
106
  ],
107
107
  "typography": [
108
108
  "blockquote",
@@ -183,7 +183,7 @@ from .tables import tfoot as tfoot
183
183
  from .tables import th as th
184
184
  from .tables import thead as thead
185
185
  from .tables import tr as tr
186
- from .tables import tbody as tbody
186
+ from .tables import Tbody as Tbody
187
187
  from .tables import Caption as Caption
188
188
  from .tables import Col as Col
189
189
  from .tables import Colgroup as Colgroup
@@ -193,7 +193,6 @@ from .tables import Tfoot as Tfoot
193
193
  from .tables import Th as Th
194
194
  from .tables import Thead as Thead
195
195
  from .tables import Tr as Tr
196
- from .tables import Tbody as Tbody
197
196
  from .typography import blockquote as blockquote
198
197
  from .typography import dd as dd
199
198
  from .typography import div as div
@@ -317,7 +316,7 @@ _MAPPING = {
317
316
  "th",
318
317
  "thead",
319
318
  "tr",
320
- "tbody",
319
+ "Tbody",
321
320
  ],
322
321
  "typography": [
323
322
  "blockquote",
@@ -109,7 +109,7 @@ class Plotly(PlotlyLib):
109
109
  config: Var[Dict]
110
110
 
111
111
  # If true, the graph will resize when the window is resized.
112
- use_resize_handler: Var[bool] = Var.create_safe(True)
112
+ use_resize_handler: Var[bool]
113
113
 
114
114
  # Fired after the plot is redrawn.
115
115
  on_after_plot: EventHandler[_passthrough_signature]
reflex/constants/base.py CHANGED
@@ -27,8 +27,6 @@ class Dirs(SimpleNamespace):
27
27
  UTILS = "utils"
28
28
  # The name of the output static directory.
29
29
  STATIC = "_static"
30
- # The name of the public html directory served at "/"
31
- PUBLIC = "public"
32
30
  # The name of the state file.
33
31
  STATE_PATH = "/".join([UTILS, "state"])
34
32
  # The name of the components file.
@@ -42,7 +40,7 @@ class Dirs(SimpleNamespace):
42
40
  # The directory where the utils file is located.
43
41
  WEB_UTILS = os.path.join(WEB, UTILS)
44
42
  # The directory where the assets are located.
45
- WEB_ASSETS = os.path.join(WEB, PUBLIC)
43
+ WEB_ASSETS = os.path.join(WEB, "public")
46
44
  # The env json file.
47
45
  ENV_JSON = os.path.join(WEB, "env.json")
48
46
  # The reflex json file.
@@ -0,0 +1,99 @@
1
+ """Stub file for reflex/constants/base.py"""
2
+ # ------------------- DO NOT EDIT ----------------------
3
+ # This file was generated by `reflex/utils/pyi_generator.py`!
4
+ # ------------------------------------------------------
5
+
6
+ from typing import Any, Dict, Literal, Optional, Union, overload
7
+ from reflex.vars import Var, BaseVar, ComputedVar
8
+ from reflex.event import EventChain, EventHandler, EventSpec
9
+ from reflex.style import Style
10
+ import os
11
+ import platform
12
+ from enum import Enum
13
+ from importlib import metadata
14
+ from types import SimpleNamespace
15
+ from platformdirs import PlatformDirs
16
+
17
+ IS_WINDOWS = platform.system() == "Windows"
18
+ IS_WINDOWS_BUN_SUPPORTED_MACHINE = IS_WINDOWS and platform.machine() in [
19
+ "AMD64",
20
+ "x86_64",
21
+ ]
22
+
23
+ class Dirs(SimpleNamespace):
24
+ WEB = ".web"
25
+ APP_ASSETS = "assets"
26
+ EXTERNAL_APP_ASSETS = "external"
27
+ UTILS = "utils"
28
+ STATIC = "_static"
29
+ STATE_PATH = "/".join([UTILS, "state"])
30
+ COMPONENTS_PATH = "/".join([UTILS, "components"])
31
+ CONTEXTS_PATH = "/".join([UTILS, "context"])
32
+ WEB_PAGES = os.path.join(WEB, "pages")
33
+ WEB_STATIC = os.path.join(WEB, STATIC)
34
+ WEB_UTILS = os.path.join(WEB, UTILS)
35
+ WEB_ASSETS = os.path.join(WEB, "public")
36
+ ENV_JSON = os.path.join(WEB, "env.json")
37
+ REFLEX_JSON = os.path.join(WEB, "reflex.json")
38
+ POSTCSS_JS = os.path.join(WEB, "postcss.config.js")
39
+
40
+ class Reflex(SimpleNamespace):
41
+ MODULE_NAME = "reflex"
42
+ VERSION = metadata.version(MODULE_NAME)
43
+ JSON = os.path.join(Dirs.WEB, "reflex.json")
44
+ _dir = os.environ.get("REFLEX_DIR", "")
45
+ DIR = _dir or PlatformDirs(MODULE_NAME, False).user_data_dir
46
+ ROOT_DIR = os.path.dirname(
47
+ os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
48
+ )
49
+
50
+ class ReflexHostingCLI(SimpleNamespace):
51
+ MODULE_NAME = "reflex-hosting-cli"
52
+
53
+ class Templates(SimpleNamespace):
54
+ APP_TEMPLATES_ROUTE = "/app-templates"
55
+ DEFAULT = "blank"
56
+
57
+ class Dirs(SimpleNamespace):
58
+ BASE = os.path.join(Reflex.ROOT_DIR, Reflex.MODULE_NAME, ".templates")
59
+ WEB_TEMPLATE = os.path.join(BASE, "web")
60
+ JINJA_TEMPLATE = os.path.join(BASE, "jinja")
61
+ CODE = "code"
62
+
63
+ class Next(SimpleNamespace):
64
+ CONFIG_FILE = "next.config.js"
65
+ SITEMAP_CONFIG_FILE = os.path.join(Dirs.WEB, "next-sitemap.config.js")
66
+ NODE_MODULES = "node_modules"
67
+ PACKAGE_LOCK = "package-lock.json"
68
+ FRONTEND_LISTENING_REGEX = "Local:[\\s]+(.*)"
69
+
70
+ class ColorMode(SimpleNamespace):
71
+ NAME = "colorMode"
72
+ USE = "useColorMode"
73
+ TOGGLE = "toggleColorMode"
74
+
75
+ class Env(str, Enum):
76
+ DEV = "dev"
77
+ PROD = "prod"
78
+
79
+ class LogLevel(str, Enum):
80
+ DEBUG = "debug"
81
+ INFO = "info"
82
+ WARNING = "warning"
83
+ ERROR = "error"
84
+ CRITICAL = "critical"
85
+
86
+ POLLING_MAX_HTTP_BUFFER_SIZE = 1000 * 1000
87
+
88
+ class Ping(SimpleNamespace):
89
+ INTERVAL = 25
90
+ TIMEOUT = 120
91
+
92
+ COOKIES = "cookies"
93
+ LOCAL_STORAGE = "local_storage"
94
+ SKIP_COMPILE_ENV_VAR = "__REFLEX_SKIP_COMPILE"
95
+ ENV_MODE_ENV_VAR = "REFLEX_ENV_MODE"
96
+ PYTEST_CURRENT_TEST = "PYTEST_CURRENT_TEST"
97
+ RELOAD_CONFIG = "__REFLEX_RELOAD_CONFIG"
98
+ REFLEX_VAR_OPENING_TAG = "<reflex.Var>"
99
+ REFLEX_VAR_CLOSING_TAG = "</reflex.Var>"
reflex/utils/format.py CHANGED
@@ -9,7 +9,8 @@ import re
9
9
  from typing import TYPE_CHECKING, Any, Callable, List, Optional, Union
10
10
 
11
11
  from reflex import constants
12
- from reflex.utils import exceptions, types
12
+ from reflex.utils import exceptions, serializers, types
13
+ from reflex.utils.serializers import serialize
13
14
  from reflex.vars import BaseVar, Var
14
15
 
15
16
  if TYPE_CHECKING:
@@ -399,7 +400,6 @@ def format_prop(
399
400
  """
400
401
  # import here to avoid circular import.
401
402
  from reflex.event import EventChain
402
- from reflex.utils import serializers
403
403
 
404
404
  try:
405
405
  # Handle var props.
@@ -687,8 +687,6 @@ def format_state(value: Any, key: Optional[str] = None) -> Any:
687
687
  Raises:
688
688
  TypeError: If the given value is not a valid state.
689
689
  """
690
- from reflex.utils import serializers
691
-
692
690
  # Handle dicts.
693
691
  if isinstance(value, dict):
694
692
  return {k: format_state(v, k) for k, v in value.items()}
@@ -702,7 +700,7 @@ def format_state(value: Any, key: Optional[str] = None) -> Any:
702
700
  return value
703
701
 
704
702
  # Serialize the value.
705
- serialized = serializers.serialize(value)
703
+ serialized = serialize(value)
706
704
  if serialized is not None:
707
705
  return serialized
708
706
 
@@ -805,9 +803,7 @@ def json_dumps(obj: Any) -> str:
805
803
  Returns:
806
804
  A string
807
805
  """
808
- from reflex.utils import serializers
809
-
810
- return json.dumps(obj, ensure_ascii=False, default=serializers.serialize)
806
+ return json.dumps(obj, ensure_ascii=False, default=serialize)
811
807
 
812
808
 
813
809
  def unwrap_vars(value: str) -> str:
@@ -12,7 +12,7 @@ from typing import Any, Callable, Dict, List, Set, Tuple, Type, Union, get_type_
12
12
 
13
13
  from reflex.base import Base
14
14
  from reflex.constants.colors import Color, format_color
15
- from reflex.utils import exceptions, types
15
+ from reflex.utils import exceptions, format, types
16
16
 
17
17
  # Mapping from type to a serializer.
18
18
  # The serializer should convert the type to a JSON object.
@@ -154,8 +154,6 @@ def serialize_primitive(value: Union[bool, int, float, None]) -> str:
154
154
  Returns:
155
155
  The serialized number/bool/None.
156
156
  """
157
- from reflex.utils import format
158
-
159
157
  return format.json_dumps(value)
160
158
 
161
159
 
@@ -182,8 +180,6 @@ def serialize_list(value: Union[List, Tuple, Set]) -> str:
182
180
  Returns:
183
181
  The serialized list.
184
182
  """
185
- from reflex.utils import format
186
-
187
183
  # Dump the list to a string.
188
184
  fprop = format.json_dumps(list(value))
189
185
 
@@ -206,7 +202,6 @@ def serialize_dict(prop: Dict[str, Any]) -> str:
206
202
  """
207
203
  # Import here to avoid circular imports.
208
204
  from reflex.event import EventHandler
209
- from reflex.utils import format
210
205
 
211
206
  prop_dict = {}
212
207
 
reflex/utils/types.py CHANGED
@@ -42,7 +42,7 @@ from sqlalchemy.orm import (
42
42
 
43
43
  from reflex import constants
44
44
  from reflex.base import Base
45
- from reflex.utils import console
45
+ from reflex.utils import console, serializers
46
46
 
47
47
  if sys.version_info >= (3, 12):
48
48
  from typing import override
@@ -392,8 +392,6 @@ def is_valid_var_type(type_: Type) -> bool:
392
392
  Returns:
393
393
  Whether the type is a valid prop type.
394
394
  """
395
- from reflex.utils import serializers
396
-
397
395
  if is_union(type_):
398
396
  return all((is_valid_var_type(arg) for arg in get_args(type_)))
399
397
  return _issubclass(type_, StateVar) or serializers.has_serializer(type_)
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, imports, serializers, types
38
+ from reflex.utils import console, format, 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
@@ -364,8 +364,6 @@ class Var:
364
364
  Raises:
365
365
  VarTypeError: If the value is JSON-unserializable.
366
366
  """
367
- from reflex.utils import format
368
-
369
367
  # Check for none values.
370
368
  if value is None:
371
369
  return None
@@ -545,8 +543,6 @@ class Var:
545
543
  Returns:
546
544
  The wrapped var, i.e. {state.var}.
547
545
  """
548
- from reflex.utils import format
549
-
550
546
  out = (
551
547
  self._var_full_name
552
548
  if self._var_is_local
@@ -604,8 +600,6 @@ class Var:
604
600
  Raises:
605
601
  VarTypeError: If the var is not indexable.
606
602
  """
607
- from reflex.utils import format
608
-
609
603
  # Indexing is only supported for strings, lists, tuples, dicts, and dataframes.
610
604
  if not (
611
605
  types._issubclass(self._var_type, Union[List, Dict, Tuple, str])
@@ -799,8 +793,6 @@ class Var:
799
793
  VarTypeError: If the operation between two operands is invalid.
800
794
  VarValueError: If flip is set to true and value of operand is not provided
801
795
  """
802
- from reflex.utils import format
803
-
804
796
  if isinstance(other, str):
805
797
  other = Var.create(json.dumps(other))
806
798
  else:
@@ -1679,8 +1671,6 @@ class Var:
1679
1671
  Returns:
1680
1672
  The full name of the var.
1681
1673
  """
1682
- from reflex.utils import format
1683
-
1684
1674
  if not self._var_full_name_needs_state_prefix:
1685
1675
  return self._var_name
1686
1676
  return (
@@ -1700,8 +1690,6 @@ class Var:
1700
1690
  Returns:
1701
1691
  The var with the set state.
1702
1692
  """
1703
- from reflex.utils import format
1704
-
1705
1693
  state_name = state if isinstance(state, str) else state.get_full_name()
1706
1694
  new_var_data = VarData(
1707
1695
  state=state_name,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: reflex
3
- Version: 0.5.3
3
+ Version: 0.5.3a1
4
4
  Summary: Web apps in pure Python.
5
5
  Home-page: https://reflex.dev
6
6
  License: Apache-2.0
@@ -70,7 +70,7 @@ reflex/app.py,sha256=Xv6k398WxXcz8XJub5tQpunrGmafIj6cfJmVrJaYlwQ,49380
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=VGBZR7PGEtpeVzI1LDoVaLBtatUW8hpheXrYbLiY1GQ,17480
73
+ reflex/compiler/compiler.py,sha256=_ywbGHWnyM6tqPV-oriyBhFkblm5jQSJ6UuZT0LtkBo,17455
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
@@ -247,7 +247,7 @@ reflex/components/core/cond.py,sha256=4jKcg9IBprpWAGY28Iymxe5Pu0UMEH-2e64zIkmf7_
247
247
  reflex/components/core/debounce.py,sha256=gcWv6HNMtPMdh7zxek10v77R07PPfiQJPunb_7FycEM,4860
248
248
  reflex/components/core/debounce.pyi,sha256=t0adfaCRfIellS8PDl6witgpBHoz9jk0SW0f82AHxxU,4255
249
249
  reflex/components/core/foreach.py,sha256=H3rWEq23lLtmUwsDYL1GMDe7mbV2Vk7H0mhNN1c1fAg,4759
250
- reflex/components/core/html.py,sha256=itZk4A8__Jfe8LwXey4tSlxTyZsKsHAPsHIcXVt42Y4,1304
250
+ reflex/components/core/html.py,sha256=ZJPaHTsWb0XaZ95xpC3NEadYEmebJKHY7r_1WAHnbrc,1305
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
@@ -262,15 +262,15 @@ reflex/components/datadisplay/dataeditor.py,sha256=oHeTU2EcvCBCWoJJ-jsKs7UxlgLAI
262
262
  reflex/components/datadisplay/dataeditor.pyi,sha256=u1Hg-5APM18ZiQMuzW95jI91hax85StnZmrSKUdYfwE,10554
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=XYqcfr6tWMCwMvGySKi7WJNK2cUw4MaYg-BjLXjl5-M,9829
265
+ reflex/components/el/__init__.pyi,sha256=BcT9E9NoERLiCLq0F1pQDi_AQy1pqIyQWuK5XHT3osg,9785
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=bwHkDJTSNBTVSDUaSVCSfdMOwE89V9utdiMgwIpFdKo,2322
273
- reflex/components/el/elements/__init__.pyi,sha256=LDpiMJxKQBk7Xp4YLr5K3RPsutbR7sMQFYuOOYvtRrI,9836
272
+ reflex/components/el/elements/__init__.py,sha256=SljCYxeXXbq_gB3yokpuy5QlgIlWzB45pj27o5Jx4dE,2322
273
+ reflex/components/el/elements/__init__.pyi,sha256=T6vmDDVtnmHaNF03khC_OC8mQ2h7DPM4WLYggQPAniw,9801
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
276
  reflex/components/el/elements/forms.py,sha256=20xxoOPC1IoBgzBBsSBGp0JSTy87jhB4lH3uIO_ze6A,20474
@@ -316,7 +316,7 @@ 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=PseBcObeZMWm2aa3f1tiNdZiKiN1AS6KkkW_k7UgqhQ,6225
319
+ reflex/components/plotly/plotly.py,sha256=sESaF-5AI_JuXwWxAXMYSUzBviWkLh1aFTb3UCwLk00,6201
320
320
  reflex/components/plotly/plotly.pyi,sha256=en9GZg5xctBUVTgK-9kyDL1zdRnFy52IbeBiJEMnNYc,9014
321
321
  reflex/components/props.py,sha256=0zyzw4dmAAPh_-mbr0_jGSRDQFKUM9vkz5MXA81nZX0,906
322
322
  reflex/components/radix/__init__.py,sha256=oGg_AE9vkAeGBJdQTth7tnbG_BtnXfQf402GnUp9LCY,473
@@ -481,7 +481,8 @@ reflex/components/tags/tag.py,sha256=hT7zHJyut6SlCiQS6SZ-CaUrHgfLgm9NjNDQWo7uCEQ
481
481
  reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
482
482
  reflex/config.py,sha256=9S4PhZsnHsoGE4FUFobB8UdrJsY6eJiUSSNErTJIu5I,10944
483
483
  reflex/constants/__init__.py,sha256=TbrafdaIIhceUK6u52xs2yVaj7n_6ZWjRSGahKwPmVM,1980
484
- reflex/constants/base.py,sha256=9Xj23wwgDtUhXFdVV5occuKffgGo6u-_ikTPUn_O4pM,5846
484
+ reflex/constants/base.py,sha256=1tIYzQUNy6WUzr_mPNaKlXPgWi7UxBU78LSRrnKT_sA,5768
485
+ reflex/constants/base.pyi,sha256=S8gYePgo8Dej32AZM0qjf6vUhrldHpm3lk-UBHW7gC4,3120
485
486
  reflex/constants/colors.py,sha256=gab_GwjKcbpRJGS2zX0gkmc_yFT1nmQbFDHqx0mXKB0,1625
486
487
  reflex/constants/compiler.py,sha256=LoCYFgJJX3NwIDlgOyAapX2at9UnWQ67LaysRxSIvno,4207
487
488
  reflex/constants/config.py,sha256=7uUypVy-ezLt3UN3jXEX1XvL3sKaCLBwnJCyYjg9erI,1331
@@ -516,21 +517,21 @@ reflex/utils/console.py,sha256=-BHtwUabv8QlhGfEHupSn68fOOmPRZpkSvcqcjNBV-k,5182
516
517
  reflex/utils/exceptions.py,sha256=3dHTYMHKHBCl1PZttA9AZ4Pa813I5RlfU58JXnI8T2c,2163
517
518
  reflex/utils/exec.py,sha256=RsRlzE8JdxTlFSTACd9XrLt9liDbvdxZrM5wkae9R4k,10961
518
519
  reflex/utils/export.py,sha256=UJd4BYFW9_eexhLCP4C5Ri8Cq2tWAPNVspq70lPLCyo,2270
519
- reflex/utils/format.py,sha256=zZO9NUn3AntrIEC6z2zgbW4Sm7SDpAifPQ5BrpDziyk,25238
520
+ reflex/utils/format.py,sha256=BFadhZX6oFvIZLQ0aUnul8SDN2iURSkFz-7tJcvDlRk,25149
520
521
  reflex/utils/imports.py,sha256=v_xLZiMn7UxxPu5mXln74tXi52wYKqPuZe11Ka31WuM,2309
521
522
  reflex/utils/lazy_loader.py,sha256=iyQU_bnigzskD-fdoxkt19i6SGbrHdSOOwCgB2FJWjc,1281
522
523
  reflex/utils/path_ops.py,sha256=Vy6fU_bXvOcCvbXdTSmeLwy_C4h9seYU-3yIrVdZEZQ,4737
523
524
  reflex/utils/prerequisites.py,sha256=kbF7eNWmt-Vzi7wdnUZUJynMaQCtttoP4MT8vO6graw,52552
524
525
  reflex/utils/processes.py,sha256=3viom6wOhrZKgbSC6qvcRiQlYDKnHm1jgdJEcGyReFM,11972
525
526
  reflex/utils/pyi_generator.py,sha256=_yrA4YIjDD3b_bECtTqJh3ENzaU1o40emlSvJEpv2g8,32709
526
- reflex/utils/serializers.py,sha256=8bpXhBF9zTivfQ95-dlbi6AQPZFlM-jgpXjwMISZjBQ,9130
527
+ reflex/utils/serializers.py,sha256=i7gNehjrcQ5_NX_KTLJT5KBakB54WPDjV5b-pz-b0ZU,9028
527
528
  reflex/utils/telemetry.py,sha256=t4cvQmoAxTKAWF53vGH6ZEX5QYrK_KEcarmvMy-4_E4,5568
528
- reflex/utils/types.py,sha256=HqBRav-efmCiGYAMYqgHid1xQcu64GNI4UN8nabAA_Y,15181
529
+ reflex/utils/types.py,sha256=1CJQsNf2wMrMJi-3th7eELZ3MFOFUBgoIs3j5rU-MNE,15152
529
530
  reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
530
- reflex/vars.py,sha256=EfnsCehZ2TncXpS9AioLkNCSRZ0ekNyuRdWuMa4gQuU,73012
531
+ reflex/vars.py,sha256=JBllxKwms4PPKxe7XUWZ1tAjS6F7XDPJGWtrkvaZ6z4,72774
531
532
  reflex/vars.pyi,sha256=6pAJI1oIhQv0sfc48zzB8z5dp9SfPaSZEoDKBzmb9So,6322
532
- reflex-0.5.3.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
533
- reflex-0.5.3.dist-info/METADATA,sha256=wdSan1-krrR5rfl8Z4UMQjlAdVbkULDJ3EUx5p4HN5E,12118
534
- reflex-0.5.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
535
- reflex-0.5.3.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
536
- reflex-0.5.3.dist-info/RECORD,,
533
+ reflex-0.5.3a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
534
+ reflex-0.5.3a1.dist-info/METADATA,sha256=ht31E_GGplnHmdO7SRL9jM5MokCCEUMn8K5hXeoGdVY,12120
535
+ reflex-0.5.3a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
536
+ reflex-0.5.3a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
537
+ reflex-0.5.3a1.dist-info/RECORD,,