reflex 0.6.7a2__py3-none-any.whl → 0.6.8a1__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/jinja/web/pages/_app.js.jinja2 +2 -4
- reflex/.templates/jinja/web/pages/custom_component.js.jinja2 +3 -4
- reflex/.templates/jinja/web/pages/index.js.jinja2 +2 -3
- reflex/.templates/jinja/web/pages/macros.js.jinja2 +38 -0
- reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +4 -16
- reflex/.templates/jinja/web/utils/context.js.jinja2 +1 -1
- reflex/.templates/web/utils/state.js +9 -4
- reflex/app.py +18 -10
- reflex/compiler/compiler.py +2 -2
- reflex/compiler/templates.py +41 -0
- reflex/compiler/utils.py +1 -1
- reflex/components/base/bare.py +7 -3
- reflex/components/component.py +78 -116
- reflex/components/core/banner.py +1 -1
- reflex/components/core/breakpoints.py +1 -1
- reflex/components/datadisplay/code.py +14 -10
- reflex/components/datadisplay/dataeditor.py +1 -1
- reflex/components/datadisplay/dataeditor.pyi +1 -1
- reflex/components/el/elements/forms.py +7 -5
- reflex/components/el/elements/metadata.py +1 -1
- reflex/components/lucide/icon.py +142 -19
- reflex/components/lucide/icon.pyi +141 -18
- reflex/components/markdown/markdown.py +3 -2
- reflex/components/plotly/plotly.py +3 -3
- reflex/components/plotly/plotly.pyi +3 -3
- reflex/components/radix/primitives/slider.py +1 -1
- reflex/components/radix/themes/layout/center.pyi +1 -1
- reflex/components/radix/themes/layout/flex.py +1 -1
- reflex/components/radix/themes/layout/flex.pyi +1 -1
- reflex/components/radix/themes/layout/grid.py +1 -1
- reflex/components/radix/themes/layout/grid.pyi +1 -1
- reflex/components/radix/themes/layout/spacer.pyi +1 -1
- reflex/components/radix/themes/layout/stack.pyi +3 -3
- reflex/components/radix/themes/typography/link.py +1 -1
- reflex/components/recharts/cartesian.py +2 -2
- reflex/components/recharts/cartesian.pyi +6 -6
- reflex/components/recharts/charts.py +2 -2
- reflex/components/recharts/polar.py +2 -2
- reflex/components/recharts/polar.pyi +2 -2
- reflex/components/sonner/toast.py +1 -1
- reflex/config.py +5 -0
- reflex/constants/base.py +1 -1
- reflex/constants/compiler.py +1 -0
- reflex/event.py +91 -1
- reflex/experimental/client_state.py +42 -20
- reflex/istate/data.py +3 -3
- reflex/model.py +4 -5
- reflex/page.py +1 -1
- reflex/proxy.py +119 -0
- reflex/reflex.py +8 -1
- reflex/state.py +116 -9
- reflex/testing.py +19 -8
- reflex/utils/console.py +6 -1
- reflex/utils/exceptions.py +4 -0
- reflex/utils/prerequisites.py +37 -20
- reflex/utils/processes.py +2 -2
- reflex/utils/pyi_generator.py +2 -2
- reflex/utils/telemetry.py +6 -4
- reflex/vars/base.py +14 -3
- reflex/vars/sequence.py +37 -0
- {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/METADATA +4 -2
- {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/RECORD +65 -63
- {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/LICENSE +0 -0
- {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/WHEEL +0 -0
- {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/entry_points.txt +0 -0
reflex/vars/base.py
CHANGED
|
@@ -127,7 +127,7 @@ class VarData:
|
|
|
127
127
|
state: str = "",
|
|
128
128
|
field_name: str = "",
|
|
129
129
|
imports: ImportDict | ParsedImportDict | None = None,
|
|
130
|
-
hooks: dict[str, None] | None = None,
|
|
130
|
+
hooks: dict[str, VarData | None] | None = None,
|
|
131
131
|
deps: list[Var] | None = None,
|
|
132
132
|
position: Hooks.HookPosition | None = None,
|
|
133
133
|
):
|
|
@@ -194,7 +194,9 @@ class VarData:
|
|
|
194
194
|
(var_data.state for var_data in all_var_datas if var_data.state), ""
|
|
195
195
|
)
|
|
196
196
|
|
|
197
|
-
hooks
|
|
197
|
+
hooks: dict[str, VarData | None] = {
|
|
198
|
+
hook: None for var_data in all_var_datas for hook in var_data.hooks
|
|
199
|
+
}
|
|
198
200
|
|
|
199
201
|
_imports = imports.merge_imports(
|
|
200
202
|
*(var_data.imports for var_data in all_var_datas)
|
|
@@ -2276,7 +2278,7 @@ def computed_var(
|
|
|
2276
2278
|
def computed_var(
|
|
2277
2279
|
fget: Callable[[BASE_STATE], Any] | None = None,
|
|
2278
2280
|
initial_value: Any | types.Unset = types.Unset(),
|
|
2279
|
-
cache: bool =
|
|
2281
|
+
cache: Optional[bool] = None,
|
|
2280
2282
|
deps: Optional[List[Union[str, Var]]] = None,
|
|
2281
2283
|
auto_deps: bool = True,
|
|
2282
2284
|
interval: Optional[Union[datetime.timedelta, int]] = None,
|
|
@@ -2302,6 +2304,15 @@ def computed_var(
|
|
|
2302
2304
|
ValueError: If caching is disabled and an update interval is set.
|
|
2303
2305
|
VarDependencyError: If user supplies dependencies without caching.
|
|
2304
2306
|
"""
|
|
2307
|
+
if cache is None:
|
|
2308
|
+
cache = False
|
|
2309
|
+
console.deprecate(
|
|
2310
|
+
"Default non-cached rx.var",
|
|
2311
|
+
"the default value will be `@rx.var(cache=True)` in a future release. "
|
|
2312
|
+
"To retain uncached var, explicitly pass `@rx.var(cache=False)`",
|
|
2313
|
+
deprecation_version="0.6.8",
|
|
2314
|
+
removal_version="0.7.0",
|
|
2315
|
+
)
|
|
2305
2316
|
if cache is False and interval is not None:
|
|
2306
2317
|
raise ValueError("Cannot set update interval without caching.")
|
|
2307
2318
|
|
reflex/vars/sequence.py
CHANGED
|
@@ -271,6 +271,25 @@ class StringVar(Var[STRING_TYPE], python_types=str):
|
|
|
271
271
|
raise_unsupported_operand_types("startswith", (type(self), type(prefix)))
|
|
272
272
|
return string_starts_with_operation(self, prefix)
|
|
273
273
|
|
|
274
|
+
@overload
|
|
275
|
+
def endswith(self, suffix: StringVar | str) -> BooleanVar: ...
|
|
276
|
+
|
|
277
|
+
@overload
|
|
278
|
+
def endswith(self, suffix: NoReturn) -> NoReturn: ...
|
|
279
|
+
|
|
280
|
+
def endswith(self, suffix: Any) -> BooleanVar:
|
|
281
|
+
"""Check if the string ends with a suffix.
|
|
282
|
+
|
|
283
|
+
Args:
|
|
284
|
+
suffix: The suffix.
|
|
285
|
+
|
|
286
|
+
Returns:
|
|
287
|
+
The string ends with operation.
|
|
288
|
+
"""
|
|
289
|
+
if not isinstance(suffix, (StringVar, str)):
|
|
290
|
+
raise_unsupported_operand_types("endswith", (type(self), type(suffix)))
|
|
291
|
+
return string_ends_with_operation(self, suffix)
|
|
292
|
+
|
|
274
293
|
@overload
|
|
275
294
|
def __lt__(self, other: StringVar | str) -> BooleanVar: ...
|
|
276
295
|
|
|
@@ -501,6 +520,24 @@ def string_starts_with_operation(
|
|
|
501
520
|
)
|
|
502
521
|
|
|
503
522
|
|
|
523
|
+
@var_operation
|
|
524
|
+
def string_ends_with_operation(
|
|
525
|
+
full_string: StringVar[Any], suffix: StringVar[Any] | str
|
|
526
|
+
):
|
|
527
|
+
"""Check if a string ends with a suffix.
|
|
528
|
+
|
|
529
|
+
Args:
|
|
530
|
+
full_string: The full string.
|
|
531
|
+
suffix: The suffix.
|
|
532
|
+
|
|
533
|
+
Returns:
|
|
534
|
+
Whether the string ends with the suffix.
|
|
535
|
+
"""
|
|
536
|
+
return var_operation_return(
|
|
537
|
+
js_expression=f"{full_string}.endsWith({suffix})", var_type=bool
|
|
538
|
+
)
|
|
539
|
+
|
|
540
|
+
|
|
504
541
|
@var_operation
|
|
505
542
|
def string_item_operation(string: StringVar[Any], index: NumberVar | int):
|
|
506
543
|
"""Get an item from a string.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: reflex
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.8a1
|
|
4
4
|
Summary: Web apps in pure Python.
|
|
5
5
|
Home-page: https://reflex.dev
|
|
6
6
|
License: Apache-2.0
|
|
@@ -15,7 +15,9 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Provides-Extra: proxy
|
|
18
19
|
Requires-Dist: alembic (>=1.11.1,<2.0)
|
|
20
|
+
Requires-Dist: asgiproxy (==0.1.1) ; extra == "proxy"
|
|
19
21
|
Requires-Dist: build (>=1.0.3,<2.0)
|
|
20
22
|
Requires-Dist: charset-normalizer (>=3.3.2,<4.0)
|
|
21
23
|
Requires-Dist: distro (>=1.8.0,<2.0) ; sys_platform == "linux"
|
|
@@ -301,7 +303,7 @@ We welcome contributions of any size! Below are some good ways to get started in
|
|
|
301
303
|
- **GitHub Discussions**: A great way to talk about features you want added or things that are confusing/need clarification.
|
|
302
304
|
- **GitHub Issues**: [Issues](https://github.com/reflex-dev/reflex/issues) are an excellent way to report bugs. Additionally, you can try and solve an existing issue and submit a PR.
|
|
303
305
|
|
|
304
|
-
We are actively looking for contributors, no matter your skill level or experience. To contribute check out [
|
|
306
|
+
We are actively looking for contributors, no matter your skill level or experience. To contribute check out [CONTRIBUTING.md](https://github.com/reflex-dev/reflex/blob/main/CONTRIBUTING.md)
|
|
305
307
|
|
|
306
308
|
|
|
307
309
|
## All Thanks To Our Contributors:
|
|
@@ -8,18 +8,19 @@ reflex/.templates/jinja/custom_components/demo_app.py.jinja2,sha256=ipbKtObNqQLc
|
|
|
8
8
|
reflex/.templates/jinja/custom_components/pyproject.toml.jinja2,sha256=4Y3gCELIePaVwNcoymcjdASBDReC9iaV9Mzj29vy69g,629
|
|
9
9
|
reflex/.templates/jinja/custom_components/src.py.jinja2,sha256=e80PwMI6NoeQtGJ0NXWhYrkqUe7jvvJTFuztYQe-R5w,2403
|
|
10
10
|
reflex/.templates/jinja/web/package.json.jinja2,sha256=YU9PF8WgiQ8OPlG3oLDX31t2R0o6DFntCh698NTiDK8,548
|
|
11
|
-
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=
|
|
11
|
+
reflex/.templates/jinja/web/pages/_app.js.jinja2,sha256=0seL3pJ454Pj0jEUe4K1Dr-heyMse8eI1vQ8lsvx3yU,1369
|
|
12
12
|
reflex/.templates/jinja/web/pages/_document.js.jinja2,sha256=E2r3MWp-gimAa6DdRs9ErQpPEyjS_yV5fdid_wdOOlA,182
|
|
13
13
|
reflex/.templates/jinja/web/pages/base_page.js.jinja2,sha256=-Jykv29ZqzsQyyRe_iR2gUD5ac-X5RhDrGs0-diOMOA,400
|
|
14
14
|
reflex/.templates/jinja/web/pages/component.js.jinja2,sha256=1Pui62uSL7LYA7FXZrh9ZmhKH8vHYu663eR134hhsAY,86
|
|
15
|
-
reflex/.templates/jinja/web/pages/custom_component.js.jinja2,sha256=
|
|
16
|
-
reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=
|
|
17
|
-
reflex/.templates/jinja/web/pages/
|
|
15
|
+
reflex/.templates/jinja/web/pages/custom_component.js.jinja2,sha256=2yj6YbuxHy3ztrbh8iB5cngB5pClQmD2ke4pS2Uq0BI,454
|
|
16
|
+
reflex/.templates/jinja/web/pages/index.js.jinja2,sha256=1Vh4XCF8-ekVgiqwZzO7ekcY-tTKmS8FUjPrmKyhJJo,376
|
|
17
|
+
reflex/.templates/jinja/web/pages/macros.js.jinja2,sha256=RtMZ6eufmMrHghNDMKpueSAhd-znKjgBbJXAAHFc7vU,901
|
|
18
|
+
reflex/.templates/jinja/web/pages/stateful_component.js.jinja2,sha256=E_CwG5o4pKteF1-Qjltkx9-8QGNSDoB-HvFgmgA4CJA,337
|
|
18
19
|
reflex/.templates/jinja/web/pages/stateful_components.js.jinja2,sha256=BfHi7ckH9u5xOliKWxjgmnia6AJbNnII97SC-dt_KSU,101
|
|
19
20
|
reflex/.templates/jinja/web/pages/utils.js.jinja2,sha256=M2HSFsAH3cO3umYL0eoBDqWQB62C1NDxCJc2NqLhFj8,3754
|
|
20
21
|
reflex/.templates/jinja/web/styles/styles.css.jinja2,sha256=4-CvqGR8-nRzkuCOSp_PdqmhPEmOs_kOhskOlhLMEUg,141
|
|
21
22
|
reflex/.templates/jinja/web/tailwind.config.js.jinja2,sha256=uZMIvtL94OZh6h8zsduv3ox6EXnnYgfVXB_5moOe86E,761
|
|
22
|
-
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=
|
|
23
|
+
reflex/.templates/jinja/web/utils/context.js.jinja2,sha256=p2aENgsP71xZ5mSfT0QjTfLSd4odtmAJu7GTvddgfhs,3983
|
|
23
24
|
reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=OSpBMh0Z9tTeqb10js4ZtnE9s1RV4gJfE8629csST8M,26
|
|
24
25
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
25
26
|
reflex/.templates/web/components/reflex/radix_themes_color_mode_provider.js,sha256=icn9Tzgp4Uts0QvvjWvDn3H8vNkP8wxrCjo3XJk32hI,1647
|
|
@@ -34,12 +35,12 @@ reflex/.templates/web/utils/helpers/debounce.js,sha256=xGhtTRtS_xIcaeqnYVvYJNseL
|
|
|
34
35
|
reflex/.templates/web/utils/helpers/paste.js,sha256=ef30HsR83jRzzvZnl8yV79yqFP8TC_u8SlN99cCS_OM,1799
|
|
35
36
|
reflex/.templates/web/utils/helpers/range.js,sha256=FevdZzCVxjF57ullfjpcUpeOXRxh5v09YnBB0jPbrS4,1152
|
|
36
37
|
reflex/.templates/web/utils/helpers/throttle.js,sha256=qxeyaEojaTeX36FPGftzVWrzDsRQU4iqg3U9RJz9Vj4,566
|
|
37
|
-
reflex/.templates/web/utils/state.js,sha256=
|
|
38
|
+
reflex/.templates/web/utils/state.js,sha256=939uZO6UZsn5KKql9er7HBiO_529G-KQ1hA6AqfsVHs,28934
|
|
38
39
|
reflex/__init__.py,sha256=c00VJtWXWwKr8YjDAJXT0_57PTbBZDZ9z5Djmzorxn0,10720
|
|
39
40
|
reflex/__init__.pyi,sha256=5V_z_NFVSF048DFv1aAfLYMi07fUB-j_L8gQc5SxU8k,11273
|
|
40
41
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
41
42
|
reflex/admin.py,sha256=_3pkkauMiTGJJ0kwAEBnsUWAgZZ_1WNnCaaObbhpmUI,374
|
|
42
|
-
reflex/app.py,sha256=
|
|
43
|
+
reflex/app.py,sha256=Qpw6KmZMpuUNiYiAhyMXA1utXsO253SSxJBK6bBbgYI,56701
|
|
43
44
|
reflex/app_mixins/__init__.py,sha256=Oegz3-gZLP9p2OAN5ALNbsgxuNQfS6lGZgQA8cc-9mQ,137
|
|
44
45
|
reflex/app_mixins/lifespan.py,sha256=IG72wp1Kas2polEP6Y1nB0wFPN3J4Kh0JAHvbQ-7wZ8,3185
|
|
45
46
|
reflex/app_mixins/middleware.py,sha256=V5J06Ux9qZIHFX0pnz8qd3EuHHI8KIvtEKpfave_kjI,3209
|
|
@@ -48,16 +49,16 @@ reflex/app_module_for_backend.py,sha256=Xr_JoKeX5Ks_EefejS6lRheMaPkiOlH_Xpzx9QNg
|
|
|
48
49
|
reflex/assets.py,sha256=M3pT3phlwIBUr4r44jj2zLJUVUzLAdYex2rpU98-Pq8,3395
|
|
49
50
|
reflex/base.py,sha256=m9LrNhHVxfQmShrIyJYm774oFl2iB6hM0QmbYxlzjvw,4159
|
|
50
51
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
51
|
-
reflex/compiler/compiler.py,sha256=
|
|
52
|
-
reflex/compiler/templates.py,sha256=
|
|
53
|
-
reflex/compiler/utils.py,sha256=
|
|
52
|
+
reflex/compiler/compiler.py,sha256=v28t80CVsEVNrjtCphdJ14Hkqd56EW3AQErOgtHx-V0,20797
|
|
53
|
+
reflex/compiler/templates.py,sha256=XsimfIuF-aYnk7r1LfLVJWW8447Lra32cxZBrw20YnU,5900
|
|
54
|
+
reflex/compiler/utils.py,sha256=F2EcCU8kHcPj1obDd4A99Xt9KoMW30rewFOO6vqNuDs,14576
|
|
54
55
|
reflex/components/__init__.py,sha256=zbIXThv1WPI0FdIGf9G9RAmGoCRoGy7nHcSZ8K5D5bA,624
|
|
55
56
|
reflex/components/__init__.pyi,sha256=qoj1zIWaitcZOGcJ6k7wuGJk_GAJCE9Xtx8CeRVrvoE,861
|
|
56
57
|
reflex/components/base/__init__.py,sha256=QIOxOPT87WrSE4TSHAsZ-358VzvUXAe1w8vWogQ3Uuo,730
|
|
57
58
|
reflex/components/base/__init__.pyi,sha256=c-8lUF9MAgAo9OHMjKIrV2ScM5S0fg8gTXp3iYFwVKU,1055
|
|
58
59
|
reflex/components/base/app_wrap.py,sha256=5K_myvYvHPeAJbm3BdEX17tKvdNEj6SV9RYahbIQBAQ,514
|
|
59
60
|
reflex/components/base/app_wrap.pyi,sha256=qqHPEbGzKZXSFGHvnDR-Z9nCvsVHmlnJwABttr8C4Vg,1994
|
|
60
|
-
reflex/components/base/bare.py,sha256=
|
|
61
|
+
reflex/components/base/bare.py,sha256=h_ufHIznUQjOTmo9vxPC88kZwrZFUg11Sr_HxbTMzQY,4011
|
|
61
62
|
reflex/components/base/body.py,sha256=QHOGMr98I6bUXsQKXcY0PzJdhopH6gQ8AESrDSgJV6I,151
|
|
62
63
|
reflex/components/base/body.pyi,sha256=ghMRwoF0XwgGmgoAfaTWjVG44bOvm8ECrqOQCKtjCq8,2388
|
|
63
64
|
reflex/components/base/document.py,sha256=_Cl9iMXwXdxGMrCLAT20v35FX3MGtbqh2dfWenDtSKc,583
|
|
@@ -74,12 +75,12 @@ reflex/components/base/meta.py,sha256=GvcBACA4Q3ptW_EXdJ6Wpolhh0x6yMW7QsCasG3keb
|
|
|
74
75
|
reflex/components/base/meta.pyi,sha256=hCYb6yCWou7lvtVAm1he-VzUZnJYNn1qlMqmOkvmDLU,9576
|
|
75
76
|
reflex/components/base/script.py,sha256=OZ2ZOWiEmzHRC0-OgH4qj_Dv6X-JSsX5OgaqLXld0VA,2433
|
|
76
77
|
reflex/components/base/script.pyi,sha256=HorIaRQ6_jcZPAINz4BzTUJrSBDEX41ODMk1qHj2s-A,3841
|
|
77
|
-
reflex/components/component.py,sha256=
|
|
78
|
+
reflex/components/component.py,sha256=F2A_EQUKeMksOxcRpc8oW4z14kjSOK50hzy0UL37WKE,86169
|
|
78
79
|
reflex/components/core/__init__.py,sha256=msAsWb_6bmZGSei4gEpyYczuJ0VNEZtg20fRtyb3wwM,1285
|
|
79
80
|
reflex/components/core/__init__.pyi,sha256=hmng2kT4e3iBSSI_x9t7g2-58G6Cb4rhuwz_APJ-UZM,1994
|
|
80
|
-
reflex/components/core/banner.py,sha256=
|
|
81
|
+
reflex/components/core/banner.py,sha256=iqUIjJ2iDPCkN1NDdz2VFYN_Qn6xRVlhg-jOwqcTVrU,8746
|
|
81
82
|
reflex/components/core/banner.pyi,sha256=1P9lgRFTdMrjxb427lY2SsDdtTjVw3VaBMXMEPiJImA,16462
|
|
82
|
-
reflex/components/core/breakpoints.py,sha256=
|
|
83
|
+
reflex/components/core/breakpoints.py,sha256=t-wzHVdB4HnZtAle-yueE33dJq07Q-R4Vx6a-y8WKaM,2712
|
|
83
84
|
reflex/components/core/client_side_routing.py,sha256=hwYzfnMDesPjkNObAIKIHYzWmzK1vniu7wNGyLTXKyQ,1886
|
|
84
85
|
reflex/components/core/client_side_routing.pyi,sha256=hIBo5Lzyu-Y8aSHn-7lrdG3KL_aqISbwlu6cYywMdiU,4613
|
|
85
86
|
reflex/components/core/clipboard.py,sha256=knmLnwLx5c3iqejsCUw3z8pIBOTgBunr6LjJxxa8MNA,3372
|
|
@@ -98,10 +99,10 @@ reflex/components/core/upload.py,sha256=Tis4GXV8Qjw6_sKjMy7vd7gfmGiLXjRj14vjBssi
|
|
|
98
99
|
reflex/components/core/upload.pyi,sha256=nzfugMkqXgOhlvTMhCCQl6t36oJ-NOUuS0Xz6G6xNqo,16115
|
|
99
100
|
reflex/components/datadisplay/__init__.py,sha256=L8pWWKNHWdUD2fbZRoEKjd_8c_hpDdGYO463hwkoIi4,438
|
|
100
101
|
reflex/components/datadisplay/__init__.pyi,sha256=rYMwO_X4NvUex6IL2MMTnhdFRp8Lz5zweMwXaW_l7nc,588
|
|
101
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
102
|
+
reflex/components/datadisplay/code.py,sha256=M8WLz8CtXyp83ha2Xh4rw27g184mWR3fZzFFX_3Zh4Q,14340
|
|
102
103
|
reflex/components/datadisplay/code.pyi,sha256=uynx-BDSb9SJYw-2lcDr4k-lyL8yxm7Ewu_zoSCrMhY,50740
|
|
103
|
-
reflex/components/datadisplay/dataeditor.py,sha256
|
|
104
|
-
reflex/components/datadisplay/dataeditor.pyi,sha256=
|
|
104
|
+
reflex/components/datadisplay/dataeditor.py,sha256=TNcNUJNpGyuQIFpaLhMVXJWCC6Mh-IMeQJeS4deUjbE,13624
|
|
105
|
+
reflex/components/datadisplay/dataeditor.pyi,sha256=7oBCzIA3Qi_Rtb55eA55jrsR1Pu8gMLShLRb_utJVks,14137
|
|
105
106
|
reflex/components/datadisplay/logo.py,sha256=IX8t8tmGEtvttBdru7mipVgADygYzz1zZ27dz4uJScE,1849
|
|
106
107
|
reflex/components/datadisplay/shiki_code_block.py,sha256=aw4Zm3BrKG42GeuEcOfxdQBYR1eBj1OmqptdOWyHLlE,23554
|
|
107
108
|
reflex/components/datadisplay/shiki_code_block.pyi,sha256=u8NP_s9GGE9OKUIAskwbRlYW023t0vzp3rdxZYRaye8,70879
|
|
@@ -118,13 +119,13 @@ reflex/components/el/elements/__init__.py,sha256=Slx-rO0DOJeHTUbhocKyYm2wb570MJO
|
|
|
118
119
|
reflex/components/el/elements/__init__.pyi,sha256=0D3Iw6gktb0vio95VVR69WNY7HXwULQdsy8YMIam9xk,9900
|
|
119
120
|
reflex/components/el/elements/base.py,sha256=Wn8NANdEIsZD3Rexf_Rtd5OhuA23jzeH9ZOq8tFhAWY,1912
|
|
120
121
|
reflex/components/el/elements/base.pyi,sha256=Y7QJlE0-6oXYgkU9qG4IBfb51-GmwcDguMejVI85Qr0,5173
|
|
121
|
-
reflex/components/el/elements/forms.py,sha256=
|
|
122
|
+
reflex/components/el/elements/forms.py,sha256=HbsD_UxvEZlbWzgry6MPcWCZStXGmmVZKJoQXzhi3PU,21421
|
|
122
123
|
reflex/components/el/elements/forms.pyi,sha256=xsIkKC6MqSaplccXwpNtNLqQno7bTL7_YpziblW2s7s,84836
|
|
123
124
|
reflex/components/el/elements/inline.py,sha256=83JivMuTiangYcomgMXC_xRUZ27Sl-DsW3rTpvbSX1Y,4024
|
|
124
125
|
reflex/components/el/elements/inline.pyi,sha256=f-c4HyD2uYd3ZkAi8uGeAdqmJ7xZPhQlCJKATzab4o0,134847
|
|
125
126
|
reflex/components/el/elements/media.py,sha256=PNhSo7ECZFN6nQQwWmc5i4_adjnG5vrMRhIET19QzzI,14568
|
|
126
127
|
reflex/components/el/elements/media.pyi,sha256=P1yl2kLPRbhqpwvHFLzcHgdAyuNUa4ag1SgZLRmDwNs,137573
|
|
127
|
-
reflex/components/el/elements/metadata.py,sha256=
|
|
128
|
+
reflex/components/el/elements/metadata.py,sha256=uCYwUa8TlNYxi8TzChBR29XOqv8Fc6bQXDCbt2iRfQs,2465
|
|
128
129
|
reflex/components/el/elements/metadata.pyi,sha256=gDxNhS8_cGYn0wRuShRDiras6ZWMsKtkDLd-1Cqet7I,25729
|
|
129
130
|
reflex/components/el/elements/other.py,sha256=_okS2oLQ0QvwYypSXZIJbaIbvf2hZ9qRNsf8h_oAiYM,1456
|
|
130
131
|
reflex/components/el/elements/other.pyi,sha256=Y3BkjRpeE4roqdHtM7VULdov4ZHq7CEGO1D7viQcvBU,34126
|
|
@@ -141,10 +142,10 @@ reflex/components/gridjs/datatable.py,sha256=Fjd605rDMvZinMfWjefUwv_eOr33OeWvalO
|
|
|
141
142
|
reflex/components/gridjs/datatable.pyi,sha256=qUSs4z4jUGY-SFVCqwPzvEehmhZ4Hq9-RKditmZtTwc,5327
|
|
142
143
|
reflex/components/literals.py,sha256=hogLnwTJxFJODIvqihg-GD9kFZVsEBDoYzaRit56Nuk,501
|
|
143
144
|
reflex/components/lucide/__init__.py,sha256=EggTK2MuQKQeOBLKW-mF0VaDK9zdWBImu1HO2dvHZbE,73
|
|
144
|
-
reflex/components/lucide/icon.py,sha256=
|
|
145
|
-
reflex/components/lucide/icon.pyi,sha256=
|
|
145
|
+
reflex/components/lucide/icon.py,sha256=tTpdL8j9aWvlO050q5LOaQ8qhHzusiIDQ2kaaO59oR8,31673
|
|
146
|
+
reflex/components/lucide/icon.pyi,sha256=uTy_PvxOkKX7tvZ1j-d302TkyJkBy23RuWcG4T16-Dg,34369
|
|
146
147
|
reflex/components/markdown/__init__.py,sha256=Dfl1At5uYoY7H4ufZU_RY2KOGQDLtj75dsZ2BTqqAns,87
|
|
147
|
-
reflex/components/markdown/markdown.py,sha256=
|
|
148
|
+
reflex/components/markdown/markdown.py,sha256=KQ5V31zolOwgSNIgMQvWYxyssDEWABRJUTQgOwAqIIM,15485
|
|
148
149
|
reflex/components/markdown/markdown.pyi,sha256=O2AYa1FXN0Aq8FKt7XpORmWkHhdAwRxZ6RmDv188EM4,4320
|
|
149
150
|
reflex/components/moment/__init__.py,sha256=jGnZgRBivYJQPIcFgtLaXFteCeIG3gGH5ACXkjEgmsI,92
|
|
150
151
|
reflex/components/moment/moment.py,sha256=9GnkHW89afd6mGnpp_yCjZWZUExUVwxXie8W_mVOdhk,4124
|
|
@@ -159,8 +160,8 @@ reflex/components/next/link.pyi,sha256=A8jQIkj-vHrDqTVbuam3Y8eazLHGwqhynqLYr_9Nv
|
|
|
159
160
|
reflex/components/next/video.py,sha256=GngxgHvAfGwRHkPUBNp6_GfGarP5mMN6KFA_-VizDOI,735
|
|
160
161
|
reflex/components/next/video.pyi,sha256=JOmKt7-I20YlF_htFI-H5RpOM_9dMw16IShFG52xtRA,2556
|
|
161
162
|
reflex/components/plotly/__init__.py,sha256=OX-Ly11fIg0uRTQHfqNVKV4M9xqMqLOqXzZIfKNYE0w,77
|
|
162
|
-
reflex/components/plotly/plotly.py,sha256=
|
|
163
|
-
reflex/components/plotly/plotly.pyi,sha256=
|
|
163
|
+
reflex/components/plotly/plotly.py,sha256=ZqZbEkpVAsq1s_dOPJ3A555qQXgrA8GXgCOZ3I_AhfE,8753
|
|
164
|
+
reflex/components/plotly/plotly.pyi,sha256=y2lb3vkdL1rA8HFFAKTPzFQAOqlv9DhnYHIDLeo7qFA,7283
|
|
164
165
|
reflex/components/props.py,sha256=mBwSby1aFmpnD3gfy92pqFITvNikj0hSE6HUMa5sBm4,2482
|
|
165
166
|
reflex/components/radix/__init__.py,sha256=fRsLvIO3MrTtPOXtmnxYDB9phvzlcbyB_utgpafYMho,474
|
|
166
167
|
reflex/components/radix/__init__.pyi,sha256=dAq-X-_kCQiFHtt6Ao8qFOFqHcjVUwmHwP2Fobx1T40,3982
|
|
@@ -176,7 +177,7 @@ reflex/components/radix/primitives/form.py,sha256=JS632HHaqPoMbZ-sD4wldj8SXGgtU_
|
|
|
176
177
|
reflex/components/radix/primitives/form.pyi,sha256=uCJh69k5b8RJd2iRzOLDYYLur-Mq3TnvrMj1wpiIR70,39516
|
|
177
178
|
reflex/components/radix/primitives/progress.py,sha256=G-yFtf1Ss72Maczgf78T9VF4cqiPyfpQy2_9n2euXhY,4027
|
|
178
179
|
reflex/components/radix/primitives/progress.pyi,sha256=CeEg5PJWM8Aj09JVMeLdAHGXpdojZAufdjp78l-Iheg,18595
|
|
179
|
-
reflex/components/radix/primitives/slider.py,sha256=
|
|
180
|
+
reflex/components/radix/primitives/slider.py,sha256=dwhagx-m4M4TzlQIsl5Xff70LD2WjDg_0nyNzAxsBpw,5015
|
|
180
181
|
reflex/components/radix/primitives/slider.pyi,sha256=lOaJoXureA0MutJY28UpC6T26Ol_UgTsXWDnCs90_vg,13077
|
|
181
182
|
reflex/components/radix/themes/__init__.py,sha256=3ASzR_OrjkLXZ6CksGKIQPOcyYZ984NzXrn2UCIdxUc,492
|
|
182
183
|
reflex/components/radix/themes/__init__.pyi,sha256=RVeS7TipR51MgmsWJStZwh4QxKBtOMtCguBtVbUJqX8,476
|
|
@@ -263,21 +264,21 @@ reflex/components/radix/themes/layout/base.pyi,sha256=YIPcg0P10-gc_2MXsaEsHq5peg
|
|
|
263
264
|
reflex/components/radix/themes/layout/box.py,sha256=7BAGnOYX5HMiftVQmYG5_kWYmy_0rbexLrwREbSbAT4,327
|
|
264
265
|
reflex/components/radix/themes/layout/box.pyi,sha256=aGfbWqhi-O4aP_j2jxAhmxEJ1cLp-9v64M_Hkubb9Ng,5400
|
|
265
266
|
reflex/components/radix/themes/layout/center.py,sha256=iNGsfoVUrVtb-TH3sdOVpxUQHF-2GTVFVCX_KkRuQog,490
|
|
266
|
-
reflex/components/radix/themes/layout/center.pyi,sha256=
|
|
267
|
+
reflex/components/radix/themes/layout/center.pyi,sha256=5ssmaN29ugLPLjwf6Z6jvYkhGqRvYe8X4Nu3p31a9ZY,8967
|
|
267
268
|
reflex/components/radix/themes/layout/container.py,sha256=gpWV6uqeXFcfG539YHn3nDm1T7M9_3eYptWCGJAEjEU,1552
|
|
268
269
|
reflex/components/radix/themes/layout/container.pyi,sha256=OiB77rt2_D37bGlhuCh8uEtxFd9QoCI_j0Rvwb8w0qs,4433
|
|
269
|
-
reflex/components/radix/themes/layout/flex.py,sha256=
|
|
270
|
-
reflex/components/radix/themes/layout/flex.pyi,sha256
|
|
271
|
-
reflex/components/radix/themes/layout/grid.py,sha256=
|
|
272
|
-
reflex/components/radix/themes/layout/grid.pyi,sha256=
|
|
270
|
+
reflex/components/radix/themes/layout/flex.py,sha256=A6gflxUH7lI-kRthQZrrVDCozBKbFQELEZc5ArldOmU,1522
|
|
271
|
+
reflex/components/radix/themes/layout/flex.pyi,sha256=uoQb0Zg8Eto_HmSj6SK4WW7acsS_mmIlOlXao_uKOl8,9134
|
|
272
|
+
reflex/components/radix/themes/layout/grid.py,sha256=biFoJFzu9OLPd5A4_CUwcpTyF7_bKoH8jxjON884stQ,1682
|
|
273
|
+
reflex/components/radix/themes/layout/grid.pyi,sha256=xx9HjIYb9MtsTSHnzORH1a4cmqUcl2qFT2jUOFu8jM8,10322
|
|
273
274
|
reflex/components/radix/themes/layout/list.py,sha256=Sp5iJomjksWll1d7ZDBcmWtLTq69G8h3CHVUcKeTZgg,5263
|
|
274
275
|
reflex/components/radix/themes/layout/list.pyi,sha256=YrfLoYVUbX-F4BTIvMu5hsH0hreqV6tEdGyFW6AKMNo,26628
|
|
275
276
|
reflex/components/radix/themes/layout/section.py,sha256=ZSVYvC4Pq0z3oQMUBdhC4Hn8qZ__N86vifag3ZO99bs,624
|
|
276
277
|
reflex/components/radix/themes/layout/section.pyi,sha256=yMIf90c4fu6KXqAEIzGJ42PKHVda5-y1fvxo3-sDvgY,5955
|
|
277
278
|
reflex/components/radix/themes/layout/spacer.py,sha256=tDmJ4f-eH4CtuWiQh-91-8xCmHfTttSwzcJt-SIS_Ww,473
|
|
278
|
-
reflex/components/radix/themes/layout/spacer.pyi,sha256=
|
|
279
|
+
reflex/components/radix/themes/layout/spacer.pyi,sha256=B2BvS0qJeRvLV206lZOKoLUzatibicJ3aEvqyUgOsqc,8967
|
|
279
280
|
reflex/components/radix/themes/layout/stack.py,sha256=e_7tOQ4RkrlBHaLxeEC1__IsTcHqSWeJ_EfpdUBSd0w,1545
|
|
280
|
-
reflex/components/radix/themes/layout/stack.pyi,sha256=
|
|
281
|
+
reflex/components/radix/themes/layout/stack.pyi,sha256=tqnpa26w9rH2RnYVeSNxZr3eo8sLfecNNiEvcENVerM,22084
|
|
281
282
|
reflex/components/radix/themes/typography/__init__.py,sha256=dEopnJWc8cPs1oUBK3wMHQtzQ_QNM9pIblzEWbZZ4G4,422
|
|
282
283
|
reflex/components/radix/themes/typography/__init__.pyi,sha256=cXYgQJIXjO3arJXf0SLjHUqC62lNrRk9Ra68SEwo4QY,433
|
|
283
284
|
reflex/components/radix/themes/typography/base.py,sha256=3eiAZGs_l19E3fE8KpX75llSE2FoeuD3yp84wUnBX0s,409
|
|
@@ -287,7 +288,7 @@ reflex/components/radix/themes/typography/code.py,sha256=9tatKTGiDNgrIS2uoX6vf0u
|
|
|
287
288
|
reflex/components/radix/themes/typography/code.pyi,sha256=9XRnABxWxyZzK9-umlxiljhgoyMtulEsFnYBYpMHpzY,9087
|
|
288
289
|
reflex/components/radix/themes/typography/heading.py,sha256=qWR7bUD24SkoQ5rTLV14jLGYr0gpJk6QVX_HhsKeZZ0,1546
|
|
289
290
|
reflex/components/radix/themes/typography/heading.pyi,sha256=j4lAr09OnexmURK3dUpVdcbjK9tD9xP3Vn-TjeR0zrE,10161
|
|
290
|
-
reflex/components/radix/themes/typography/link.py,sha256=
|
|
291
|
+
reflex/components/radix/themes/typography/link.py,sha256=0-Kb5Nb0LERsDqfOUumw0ATK0Y4VR7Hg8RamMJAOiiE,3633
|
|
291
292
|
reflex/components/radix/themes/typography/link.pyi,sha256=EtuLws8VMtXZlk9bxyWmEa9Y0v1nCJWIVLkh5fFUP9E,11697
|
|
292
293
|
reflex/components/radix/themes/typography/text.py,sha256=ammVLEOcqvWoJ4MPe6DZMg-mLjQSyY63DRGpekjKyTI,2822
|
|
293
294
|
reflex/components/radix/themes/typography/text.pyi,sha256=xLYafKmEwb5LM0N3wM2pR0F8Cqbf9IFlRj8Fnf7WQ9c,53021
|
|
@@ -300,18 +301,18 @@ reflex/components/react_player/video.py,sha256=2V6tiwCwrzu9WPI1Wmuepk8kQ6M6K8nnM
|
|
|
300
301
|
reflex/components/react_player/video.pyi,sha256=bAYvxlAKDfobuzMiCzkU7hbQ2uY2VGoXj6cGJ1DnMnw,6444
|
|
301
302
|
reflex/components/recharts/__init__.py,sha256=GUifJIUtG91u4K55junZ_-l5ArcRFFDIyjS4y0lyAL4,2644
|
|
302
303
|
reflex/components/recharts/__init__.pyi,sha256=FUu_BmjhVTbjU92KH2NnYEFr4eeZLMkthX8iIwswDIM,5076
|
|
303
|
-
reflex/components/recharts/cartesian.py,sha256=
|
|
304
|
-
reflex/components/recharts/cartesian.pyi,sha256=
|
|
305
|
-
reflex/components/recharts/charts.py,sha256
|
|
304
|
+
reflex/components/recharts/cartesian.py,sha256=e-2fE4AkOHNpKDAML9_fdq5NVNhRllCqAJ8izbRcj78,34703
|
|
305
|
+
reflex/components/recharts/cartesian.pyi,sha256=5xu88tCskbS4QhYtLWi55vijR6AUjuHxhLyKW4URLNo,113739
|
|
306
|
+
reflex/components/recharts/charts.py,sha256=5GwA7vV-qKqlnPH6VEjT4ZBo-W1zoJNcpSS_c7OlW7Q,18566
|
|
306
307
|
reflex/components/recharts/charts.pyi,sha256=Rd47xWc-cqskaF0y1VCAPNAN1B7zrZMyArHcxXrQqDQ,51750
|
|
307
308
|
reflex/components/recharts/general.py,sha256=G-uqoJ-wltsZS0lr-KkUjawfIbBr-pNIPBmo6UJ498Q,8628
|
|
308
309
|
reflex/components/recharts/general.pyi,sha256=vnRsLUIG5Ll7Vc4VNvtVaXMocoCoAsM0ip7wGYR2WCA,23243
|
|
309
|
-
reflex/components/recharts/polar.py,sha256=
|
|
310
|
-
reflex/components/recharts/polar.pyi,sha256=
|
|
310
|
+
reflex/components/recharts/polar.py,sha256=nA534aQuP78w3b1kuZ2PQOgusYEqwVZ4QTfVtwfQC10,15711
|
|
311
|
+
reflex/components/recharts/polar.pyi,sha256=NJugPNg1rtHVSzy8Fc3JXe5Y-Kxku8Jt8N7UieOwCoY,29452
|
|
311
312
|
reflex/components/recharts/recharts.py,sha256=zzsyo668aRZUX8aAKmf_cSfMlVD97frco4-HkmpL1yI,3182
|
|
312
313
|
reflex/components/recharts/recharts.pyi,sha256=vPy4O4kAWG8hGrvqI6nKcr22L5OEDMb3P4zcSOnAVj4,7144
|
|
313
314
|
reflex/components/sonner/__init__.py,sha256=L_mdRIy7-ccRGSz5VK6J8O-c-e-D1p9xWw29_ErrvGg,68
|
|
314
|
-
reflex/components/sonner/toast.py,sha256
|
|
315
|
+
reflex/components/sonner/toast.py,sha256=-BLovaWdKkFGI1GQTcghK70eaotX3Lj7QUytCJ2JcLY,11522
|
|
315
316
|
reflex/components/sonner/toast.pyi,sha256=qUQVdvY5_wC8ng8CJQJnZO--6zhcjw8dEx5TKIyaDZk,7557
|
|
316
317
|
reflex/components/suneditor/__init__.py,sha256=htkPzy0O_1ro1nw8w8gFPjYhg5xywMpsUfc4Dl3OHuw,109
|
|
317
318
|
reflex/components/suneditor/editor.py,sha256=ySisZYaoxBpVjw7MA91UW5wuEwWrD-YaxQAqITZIgnQ,8063
|
|
@@ -322,11 +323,11 @@ reflex/components/tags/iter_tag.py,sha256=kdJeQbCJ02Cn5VPDRERywu8bJNrTgreIi3ZyOA
|
|
|
322
323
|
reflex/components/tags/match_tag.py,sha256=mqQF6fHhOSGSMdiaJ7YlwXSMhRtDmmIBu1Gw-VQQ324,586
|
|
323
324
|
reflex/components/tags/tag.py,sha256=5nlh1SU6Mwod8vyGCsV-iixd4xa_4cqU2vsBxHEA5ak,3084
|
|
324
325
|
reflex/components/tags/tagless.py,sha256=qO7Gm4V0ITDyymHkyltfz53155ZBt-W_WIPDYy93ca0,587
|
|
325
|
-
reflex/config.py,sha256=
|
|
326
|
+
reflex/config.py,sha256=7orSOze40tIuqqF56ScekC26iVztYkzwq4XvuGNX44A,27434
|
|
326
327
|
reflex/constants/__init__.py,sha256=VIF5rXe4-R_gdPX-G2dM8tw9X206GhjXAhWdOPtxctM,1974
|
|
327
|
-
reflex/constants/base.py,sha256=
|
|
328
|
+
reflex/constants/base.py,sha256=9PxiZPfU6xktVZuJYVOB3mYF7_oMsiKE7Bq0E5hU2ug,7444
|
|
328
329
|
reflex/constants/colors.py,sha256=cgLn8iEWtlpjQgbhhlCOGjbhfOULKnzqqzPph63SJoI,1613
|
|
329
|
-
reflex/constants/compiler.py,sha256=
|
|
330
|
+
reflex/constants/compiler.py,sha256=fIHDSpfkRZt6pCg6kufvYiyTpGanYXfgKgG3tWftWuE,5421
|
|
330
331
|
reflex/constants/config.py,sha256=0I1LRUH_7vBQGsfzHZuHxjxD12GMf5NJUP7zwoAJS5I,1511
|
|
331
332
|
reflex/constants/custom_components.py,sha256=joJt4CEt1yKy7wsBH6vYo7_QRW0O_fWXrrTf0VY2q14,1317
|
|
332
333
|
reflex/constants/event.py,sha256=1gKAwNoYyvZs3vNvfynF0SeFWnRGXZX0A_2iPhqUyu8,2818
|
|
@@ -337,16 +338,16 @@ reflex/constants/style.py,sha256=-LTofj8rBEAYEx8_Zj4Tda_EEPvgp2BjpLinarNOu2o,475
|
|
|
337
338
|
reflex/constants/utils.py,sha256=HGOSq9c-xGbCb1xoLAGLBdc-FOE8iuBzvuU24zSfsV0,789
|
|
338
339
|
reflex/custom_components/__init__.py,sha256=R4zsvOi4dfPmHc18KEphohXnQFBPnUCb50cMR5hSLDE,36
|
|
339
340
|
reflex/custom_components/custom_components.py,sha256=6OJMZ8AVk_DE-3UV0m9yjD_fLjyDZMasNtjrDGRy94o,33053
|
|
340
|
-
reflex/event.py,sha256=
|
|
341
|
+
reflex/event.py,sha256=qsapQ6Eowou8HIp8c91xtM5GGdxA-X7vGR9xBBhKw7o,60398
|
|
341
342
|
reflex/experimental/__init__.py,sha256=Tzh48jIncw2YzRFHh2SXWZ599TsHeY6_RrrWdK6gE2A,2085
|
|
342
343
|
reflex/experimental/assets.py,sha256=9qkhgcNo-xfpjHVZ1-lN79tB5qbWw_2nYaVliaV4Z4A,1098
|
|
343
|
-
reflex/experimental/client_state.py,sha256
|
|
344
|
+
reflex/experimental/client_state.py,sha256=-dCjtd_wINu_OFcH9i3NfagoiDwu_OMm-VQLGO20Kps,9107
|
|
344
345
|
reflex/experimental/hooks.py,sha256=fHYD4rX_f7T38gsFDqglD9E29FjPLf6jO1rN39DX7XM,2242
|
|
345
346
|
reflex/experimental/layout.py,sha256=6gxS3QIn4PFbeajbYedOv6jRrbZjAsxnXgsmxxXGGXE,7285
|
|
346
347
|
reflex/experimental/layout.pyi,sha256=7KYNdTVBqDVDA1E3aw52R_ldkW9h1e88ljF9sAaYqY8,15342
|
|
347
348
|
reflex/experimental/misc.py,sha256=Zig3AvXAWy82qbMzNB56VHHaN3fL-lJbRI6sP-TBx58,695
|
|
348
349
|
reflex/istate/__init__.py,sha256=LDu_3-31ZI1Jn9NWp4mM0--fDiXI0x8x3gR4-kdrziY,57
|
|
349
|
-
reflex/istate/data.py,sha256=
|
|
350
|
+
reflex/istate/data.py,sha256=BFqcdRqVegouoHWWMFOvMvZU_LXe9lCNSWgQEzYNWbI,4324
|
|
350
351
|
reflex/istate/dynamic.py,sha256=xOQ9upZVPf6ngqcLQZ9HdAAYmoWwJ8kRFPH34Q5HTiM,91
|
|
351
352
|
reflex/istate/proxy.py,sha256=ttfcMFBNOYnRT48U2fzkyo55Gr-Z8hkoulzPr0tD5VU,1059
|
|
352
353
|
reflex/istate/storage.py,sha256=hcuXcbJcz5k8WeB5s3VuSBvbz_OIRaAVrtFRLh_MNEM,4343
|
|
@@ -354,19 +355,20 @@ reflex/istate/wrappers.py,sha256=nxoBJd_ZvI2IyQKqvsh48OWzbJ6gJMab3ltRvky1tdg,904
|
|
|
354
355
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
355
356
|
reflex/middleware/hydrate_middleware.py,sha256=KvFppl4ca75bsjos5boy8EGwsRBZ9jI6ZHCm8J3Lt14,1485
|
|
356
357
|
reflex/middleware/middleware.py,sha256=9eASK3MrbK1AvT2Sx5GFxXNwSuNW8_LTRGvPY1JccU4,1171
|
|
357
|
-
reflex/model.py,sha256=
|
|
358
|
-
reflex/page.py,sha256=
|
|
359
|
-
reflex/
|
|
358
|
+
reflex/model.py,sha256=u19v2w-1MAeru46Hht8UscisIq5Y5EMuNo9xVbXIXEg,17352
|
|
359
|
+
reflex/page.py,sha256=2vnjP1SPRZY_l_E3uog0al3s2a_evzjCYUB4UTK8FNE,2388
|
|
360
|
+
reflex/proxy.py,sha256=VJg8pV6DKpY3Zuw4bY0wvAjYOK-21OpINMtjL7XBLDo,3730
|
|
361
|
+
reflex/reflex.py,sha256=v2rdQHfKGQ9_klXEf96NbAEmeMV3SQaORl9v0RYGxWg,17000
|
|
360
362
|
reflex/route.py,sha256=WZS7stKgO94nekFFYHaOqNgN3zZGpJb3YpGF4ViTHmw,4198
|
|
361
|
-
reflex/state.py,sha256=
|
|
363
|
+
reflex/state.py,sha256=s0f1fkBGVawbxXLdohNH-cu_YxN_7ZWYBKObhyZgseM,141647
|
|
362
364
|
reflex/style.py,sha256=Djj6TUbDORun3nSwny6IQL8vYdlCON_b8qITkbSZ5Oc,12571
|
|
363
|
-
reflex/testing.py,sha256=
|
|
365
|
+
reflex/testing.py,sha256=TMDTEOBRaznN43GGHeaXVz1bhcpOSjM5GBYrziPiMbQ,35421
|
|
364
366
|
reflex/utils/__init__.py,sha256=y-AHKiRQAhk2oAkvn7W8cRVTZVK625ff8tTwvZtO7S4,24
|
|
365
367
|
reflex/utils/build.py,sha256=gbviqfS7x8yoIA5GZyzupR30GmlxP2WF4kzMRbTVs80,8393
|
|
366
368
|
reflex/utils/codespaces.py,sha256=tKmju4aGzDMPy76_eQSzJd3RYmVmiiNZy3Yc0e3zG_w,2856
|
|
367
369
|
reflex/utils/compat.py,sha256=nYlAZqrO1Co7WJefmlIeQMzQc-KCfc9eqRX1zkpD3Ok,2527
|
|
368
|
-
reflex/utils/console.py,sha256=
|
|
369
|
-
reflex/utils/exceptions.py,sha256=
|
|
370
|
+
reflex/utils/console.py,sha256=2Yb_WM3MWhbjaBD9fMcCCcX0mjdrgtduIGhMXVIFNnk,7928
|
|
371
|
+
reflex/utils/exceptions.py,sha256=j1vlgdFhGx7L2uM4VNmhsj0kW1YYuIlVE0Uq6-mNWeo,5781
|
|
370
372
|
reflex/utils/exec.py,sha256=yrehsUXjNisQqyZr53Op2c7uwLdcFRo5iFgP-t5JB_w,16313
|
|
371
373
|
reflex/utils/export.py,sha256=7zBwzRznOlzybzSNzYZWON3YluFh-bYW79i4ZCHVbtY,2360
|
|
372
374
|
reflex/utils/format.py,sha256=BL4KgGpKcsQBQKgIupuiI9T-4xyK9BEw8GJwR1TbIEs,20750
|
|
@@ -374,23 +376,23 @@ reflex/utils/imports.py,sha256=_8TBm9TWOSwbd3uZp1KbvRvHbF-Bucv8ifBcp8ItAo0,3871
|
|
|
374
376
|
reflex/utils/lazy_loader.py,sha256=utVpUjKcz32GC1I7g0g7OlTyvVoZNFcuAjNtnxiSYww,1282
|
|
375
377
|
reflex/utils/net.py,sha256=0Yd9OLK8R_px2sqnqrDkTky6hYHtG2pEDvvilOjDfjc,1219
|
|
376
378
|
reflex/utils/path_ops.py,sha256=TgGKXGAr7GMCJJRdvZK5LljuME6oPpM5p9aJEz3_phU,5804
|
|
377
|
-
reflex/utils/prerequisites.py,sha256
|
|
378
|
-
reflex/utils/processes.py,sha256=
|
|
379
|
-
reflex/utils/pyi_generator.py,sha256=
|
|
379
|
+
reflex/utils/prerequisites.py,sha256=15BgY4u7duUwsia3TsArXmTXByf1r8BIQechEgl9Wjs,57867
|
|
380
|
+
reflex/utils/processes.py,sha256=_GeABljm4OEoRTjzxCBmm2ewuiEwChO85N6ZfEbA5eA,13260
|
|
381
|
+
reflex/utils/pyi_generator.py,sha256=aVSdLL521iQEImKjMZixKSseuzFtCQcq7vwwRPXONvQ,40582
|
|
380
382
|
reflex/utils/redir.py,sha256=bmQGAgoNWwySeLRQTpoMpmKInwIOCW77wkXT61fwcj8,1868
|
|
381
383
|
reflex/utils/registry.py,sha256=FJZ8ltG2PK4CCOfZXe4h3ruH4tXqh5q_9rQ2cGZn0Mo,1413
|
|
382
384
|
reflex/utils/serializers.py,sha256=j-Hvo-sCEEVBEuFxlDHpZLpJDeHlby9qNzhJD8DOnM4,12522
|
|
383
|
-
reflex/utils/telemetry.py,sha256=
|
|
385
|
+
reflex/utils/telemetry.py,sha256=kOxP6P9Ms717QINw453avxSbMrg4iewRK3UpcNlSQ3Q,5764
|
|
384
386
|
reflex/utils/types.py,sha256=J9wFZfjZ4uL5pbA28_Dst0m-so3T4kfBFdQ9ElQHcFI,26258
|
|
385
387
|
reflex/vars/__init__.py,sha256=2Kv6Oh9g3ISZFESjL1al8KiO7QBZUXmLKGMCBsP-DoY,1243
|
|
386
|
-
reflex/vars/base.py,sha256=
|
|
388
|
+
reflex/vars/base.py,sha256=dgYyYcHR-EbobARfhd0PaXGKANDaruJS30OtFPtE3lE,89512
|
|
387
389
|
reflex/vars/datetime.py,sha256=BnEZmxCpOjtvlPw6sfdjCoRJgefFlRFC4y-lqxC5MeA,5673
|
|
388
390
|
reflex/vars/function.py,sha256=ZxeznTQqprp4ernr8ADk5B4ztbuwqTMGnHo9zVCHDpw,14583
|
|
389
391
|
reflex/vars/number.py,sha256=3dsxSqZOxEc47Fx19YlQaD0jlqHEouxjI0z5Zx_y_7U,27484
|
|
390
392
|
reflex/vars/object.py,sha256=_wQMRaJV9IqanKLNwOLw-OX0A0fju40w74QjEdpVnoY,14310
|
|
391
|
-
reflex/vars/sequence.py,sha256=
|
|
392
|
-
reflex-0.6.
|
|
393
|
-
reflex-0.6.
|
|
394
|
-
reflex-0.6.
|
|
395
|
-
reflex-0.6.
|
|
396
|
-
reflex-0.6.
|
|
393
|
+
reflex/vars/sequence.py,sha256=i3wMyAxe63fxkvIK9MSLHc772ACHJUpbWp9qRY-VBok,50829
|
|
394
|
+
reflex-0.6.8a1.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
395
|
+
reflex-0.6.8a1.dist-info/METADATA,sha256=KKTRc21nD4Z-dgssxlSZm1-wvbXAyip49eeVuf53680,12178
|
|
396
|
+
reflex-0.6.8a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
397
|
+
reflex-0.6.8a1.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
398
|
+
reflex-0.6.8a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|