reflex 0.3.0a1__py3-none-any.whl → 0.3.0a3__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/web/pages/_app.js +1 -1
- reflex/app.py +2 -2
- reflex/components/base/script.py +2 -2
- reflex/components/component.py +3 -3
- reflex/components/datadisplay/code.py +1 -1
- reflex/components/datadisplay/datatable.py +2 -2
- reflex/components/forms/debounce.py +1 -1
- reflex/components/forms/upload.py +1 -1
- reflex/components/graphing/plotly.py +2 -2
- reflex/components/graphing/recharts/recharts.py +2 -2
- reflex/components/libs/react_player.py +1 -1
- reflex/components/media/icon.py +1 -1
- reflex/components/overlay/menu.py +14 -5
- reflex/components/typography/markdown.py +7 -11
- reflex/constants/base.py +2 -0
- reflex/constants/installer.py +17 -16
- reflex/constants/style.py +1 -1
- reflex/event.py +5 -5
- reflex/testing.py +1 -2
- reflex/utils/console.py +0 -1
- reflex/utils/exec.py +2 -2
- reflex/vars.py +2 -2
- {reflex-0.3.0a1.dist-info → reflex-0.3.0a3.dist-info}/METADATA +2 -2
- {reflex-0.3.0a1.dist-info → reflex-0.3.0a3.dist-info}/RECORD +27 -27
- {reflex-0.3.0a1.dist-info → reflex-0.3.0a3.dist-info}/LICENSE +0 -0
- {reflex-0.3.0a1.dist-info → reflex-0.3.0a3.dist-info}/WHEEL +0 -0
- {reflex-0.3.0a1.dist-info → reflex-0.3.0a3.dist-info}/entry_points.txt +0 -0
|
@@ -2,7 +2,7 @@ import { ChakraProvider, extendTheme } from "@chakra-ui/react";
|
|
|
2
2
|
import { Global, css } from "@emotion/react";
|
|
3
3
|
import theme from "/utils/theme";
|
|
4
4
|
import { clientStorage, initialEvents, initialState, StateContext, EventLoopContext } from "/utils/context.js";
|
|
5
|
-
import { useEventLoop } from "utils/state";
|
|
5
|
+
import { useEventLoop } from "/utils/state";
|
|
6
6
|
|
|
7
7
|
import '/styles/styles.css'
|
|
8
8
|
|
reflex/app.py
CHANGED
|
@@ -407,8 +407,8 @@ class App(Base):
|
|
|
407
407
|
console.deprecate(
|
|
408
408
|
feature_name="Passing script tags to add_page",
|
|
409
409
|
reason="Add script components as children to the page component instead",
|
|
410
|
-
deprecation_version="
|
|
411
|
-
removal_version="
|
|
410
|
+
deprecation_version="0.3.0",
|
|
411
|
+
removal_version="0.3.2",
|
|
412
412
|
)
|
|
413
413
|
component.children.extend(script_tags)
|
|
414
414
|
|
reflex/components/base/script.py
CHANGED
|
@@ -91,7 +91,7 @@ def client_side(javascript_code) -> Var[EventChain]:
|
|
|
91
91
|
console.deprecate(
|
|
92
92
|
feature_name="rx.client_side",
|
|
93
93
|
reason="and has been replaced by rx.call_script, which can be used from backend EventHandler too",
|
|
94
|
-
deprecation_version="0.
|
|
95
|
-
removal_version="0.
|
|
94
|
+
deprecation_version="0.3.0",
|
|
95
|
+
removal_version="0.3.1",
|
|
96
96
|
)
|
|
97
97
|
return BaseVar(name=f"...args => {{{javascript_code}}}", type_=EventChain)
|
reflex/components/component.py
CHANGED
|
@@ -241,7 +241,7 @@ class Component(Base, ABC):
|
|
|
241
241
|
feature_name="EventChain",
|
|
242
242
|
reason="to avoid confusion, only use yield API",
|
|
243
243
|
deprecation_version="0.2.8",
|
|
244
|
-
removal_version="0.
|
|
244
|
+
removal_version="0.3.1",
|
|
245
245
|
)
|
|
246
246
|
events = []
|
|
247
247
|
for v in value:
|
|
@@ -296,7 +296,7 @@ class Component(Base, ABC):
|
|
|
296
296
|
feature_name=f"get_triggers ({self.__class__.__name__})",
|
|
297
297
|
reason="replaced by get_event_triggers",
|
|
298
298
|
deprecation_version="0.2.8",
|
|
299
|
-
removal_version="0.
|
|
299
|
+
removal_version="0.3.1",
|
|
300
300
|
)
|
|
301
301
|
deprecated_triggers = {
|
|
302
302
|
trigger: lambda: [] for trigger in deprecated_triggers
|
|
@@ -310,7 +310,7 @@ class Component(Base, ABC):
|
|
|
310
310
|
feature_name=f"get_controlled_triggers ({self.__class__.__name__})",
|
|
311
311
|
reason="replaced by get_event_triggers",
|
|
312
312
|
deprecation_version="0.2.8",
|
|
313
|
-
removal_version="0.
|
|
313
|
+
removal_version="0.3.1",
|
|
314
314
|
)
|
|
315
315
|
|
|
316
316
|
return {
|
|
@@ -14,9 +14,9 @@ from reflex.vars import BaseVar, ComputedVar, ImportVar, Var
|
|
|
14
14
|
class Gridjs(Component):
|
|
15
15
|
"""A component that wraps a nivo bar component."""
|
|
16
16
|
|
|
17
|
-
library = "gridjs-react
|
|
17
|
+
library = "gridjs-react@6.0.1"
|
|
18
18
|
|
|
19
|
-
lib_dependencies: List[str] = ["gridjs
|
|
19
|
+
lib_dependencies: List[str] = ["gridjs@6.0.6"]
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
class DataTable(Gridjs):
|
|
@@ -16,9 +16,9 @@ except ImportError:
|
|
|
16
16
|
class PlotlyLib(NoSSRComponent):
|
|
17
17
|
"""A component that wraps a plotly lib."""
|
|
18
18
|
|
|
19
|
-
library = "react-plotly.js
|
|
19
|
+
library = "react-plotly.js@2.6.0"
|
|
20
20
|
|
|
21
|
-
lib_dependencies: List[str] = ["plotly.js
|
|
21
|
+
lib_dependencies: List[str] = ["plotly.js@2.22.0"]
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
class Plotly(PlotlyLib):
|
|
@@ -10,7 +10,7 @@ class Recharts(Component):
|
|
|
10
10
|
|
|
11
11
|
library = "recharts"
|
|
12
12
|
|
|
13
|
-
lib_dependencies: List[str] = ["recharts
|
|
13
|
+
lib_dependencies: List[str] = ["recharts@2.8.0"]
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class RechartsCharts(NoSSRComponent):
|
|
@@ -18,4 +18,4 @@ class RechartsCharts(NoSSRComponent):
|
|
|
18
18
|
|
|
19
19
|
library = "recharts"
|
|
20
20
|
|
|
21
|
-
lib_dependencies: List[str] = ["recharts
|
|
21
|
+
lib_dependencies: List[str] = ["recharts@2.8.0"]
|
reflex/components/media/icon.py
CHANGED
|
@@ -4,6 +4,7 @@ from __future__ import annotations
|
|
|
4
4
|
from typing import Any, List, Optional, Union
|
|
5
5
|
|
|
6
6
|
from reflex.components.component import Component
|
|
7
|
+
from reflex.components.forms.button import Button
|
|
7
8
|
from reflex.components.libs.chakra import ChakraComponent
|
|
8
9
|
from reflex.vars import Var
|
|
9
10
|
|
|
@@ -96,10 +97,13 @@ class Menu(ChakraComponent):
|
|
|
96
97
|
children = []
|
|
97
98
|
|
|
98
99
|
if button:
|
|
99
|
-
|
|
100
|
+
if not isinstance(button, (MenuButton, Button)):
|
|
101
|
+
children.append(MenuButton.create(button))
|
|
102
|
+
else:
|
|
103
|
+
children.append(button)
|
|
100
104
|
if not items:
|
|
101
105
|
items = []
|
|
102
|
-
children.append(MenuList.create(
|
|
106
|
+
children.append(MenuList.create(items=items))
|
|
103
107
|
return super().create(*children, **props)
|
|
104
108
|
|
|
105
109
|
|
|
@@ -124,20 +128,25 @@ class MenuList(ChakraComponent):
|
|
|
124
128
|
tag = "MenuList"
|
|
125
129
|
|
|
126
130
|
@classmethod
|
|
127
|
-
def create(
|
|
131
|
+
def create(
|
|
132
|
+
cls, *children, items: Optional[list] = None, **props
|
|
133
|
+
) -> ChakraComponent:
|
|
128
134
|
"""Create a MenuList component, and automatically wrap in MenuItem if not already one.
|
|
129
135
|
|
|
130
136
|
Args:
|
|
131
137
|
*children: The children of the component.
|
|
138
|
+
items: A list of item to add as child of the component.
|
|
132
139
|
**props: The properties of the component.
|
|
133
140
|
|
|
134
141
|
Returns:
|
|
135
142
|
The MenuList component.
|
|
136
143
|
"""
|
|
137
|
-
if len(children)
|
|
144
|
+
if len(children) == 0:
|
|
145
|
+
if items is None:
|
|
146
|
+
items = []
|
|
138
147
|
children = [
|
|
139
148
|
child if isinstance(child, MenuItem) else MenuItem.create(child)
|
|
140
|
-
for child in
|
|
149
|
+
for child in items
|
|
141
150
|
]
|
|
142
151
|
return super().create(*children, **props)
|
|
143
152
|
|
|
@@ -73,7 +73,7 @@ def get_base_component_map() -> dict[str, Callable]:
|
|
|
73
73
|
class Markdown(Component):
|
|
74
74
|
"""A markdown component."""
|
|
75
75
|
|
|
76
|
-
library = "react-markdown
|
|
76
|
+
library = "react-markdown@8.0.7"
|
|
77
77
|
|
|
78
78
|
tag = "ReactMarkdown"
|
|
79
79
|
|
|
@@ -105,8 +105,8 @@ class Markdown(Component):
|
|
|
105
105
|
console.deprecate(
|
|
106
106
|
"rx.markdown custom_styles",
|
|
107
107
|
"Use the component_map prop instead.",
|
|
108
|
-
"0.
|
|
109
|
-
"0.2
|
|
108
|
+
"0.3.0",
|
|
109
|
+
"0.3.2",
|
|
110
110
|
)
|
|
111
111
|
|
|
112
112
|
# Update the base component map with the custom component map.
|
|
@@ -132,18 +132,14 @@ class Markdown(Component):
|
|
|
132
132
|
imports.update(
|
|
133
133
|
{
|
|
134
134
|
"": {ImportVar(tag="katex/dist/katex.min.css")},
|
|
135
|
-
"remark-math
|
|
135
|
+
"remark-math@5.1.1": {
|
|
136
136
|
ImportVar(tag=_REMARK_MATH.name, is_default=True)
|
|
137
137
|
},
|
|
138
|
-
"remark-gfm
|
|
139
|
-
|
|
140
|
-
},
|
|
141
|
-
"rehype-katex@==6.0.3": {
|
|
138
|
+
"remark-gfm@3.0.1": {ImportVar(tag=_REMARK_GFM.name, is_default=True)},
|
|
139
|
+
"rehype-katex@6.0.3": {
|
|
142
140
|
ImportVar(tag=_REHYPE_KATEX.name, is_default=True)
|
|
143
141
|
},
|
|
144
|
-
"rehype-raw
|
|
145
|
-
ImportVar(tag=_REHYPE_RAW.name, is_default=True)
|
|
146
|
-
},
|
|
142
|
+
"rehype-raw@6.1.1": {ImportVar(tag=_REHYPE_RAW.name, is_default=True)},
|
|
147
143
|
}
|
|
148
144
|
)
|
|
149
145
|
|
reflex/constants/base.py
CHANGED
|
@@ -107,6 +107,8 @@ class Next(SimpleNamespace):
|
|
|
107
107
|
NODE_MODULES = "node_modules"
|
|
108
108
|
# The package lock file.
|
|
109
109
|
PACKAGE_LOCK = "package-lock.json"
|
|
110
|
+
# Regex to check for message displayed when frontend comes up
|
|
111
|
+
FRONTEND_LISTENING_REGEX = "Local:[\\s]+(.*)"
|
|
110
112
|
|
|
111
113
|
|
|
112
114
|
# Color mode variables
|
reflex/constants/installer.py
CHANGED
|
@@ -102,22 +102,23 @@ class PackageJson(SimpleNamespace):
|
|
|
102
102
|
PATH = os.path.join(Dirs.WEB, "package.json")
|
|
103
103
|
|
|
104
104
|
DEPENDENCIES = {
|
|
105
|
-
"@chakra-ui/react": "
|
|
106
|
-
"@chakra-ui/system": "
|
|
107
|
-
"@emotion/react": "
|
|
108
|
-
"@emotion/styled": "
|
|
109
|
-
"axios": "
|
|
110
|
-
"chakra-react-select": "
|
|
111
|
-
"focus-visible": "
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"next
|
|
115
|
-
"
|
|
116
|
-
"react
|
|
117
|
-
"
|
|
118
|
-
"
|
|
105
|
+
"@chakra-ui/react": "2.6.0",
|
|
106
|
+
"@chakra-ui/system": "2.5.6",
|
|
107
|
+
"@emotion/react": "11.10.6",
|
|
108
|
+
"@emotion/styled": "11.10.6",
|
|
109
|
+
"axios": "1.4.0",
|
|
110
|
+
"chakra-react-select": "4.6.0",
|
|
111
|
+
"focus-visible": "5.2.0",
|
|
112
|
+
"framer-motion": "10.16.4",
|
|
113
|
+
"json5": "2.2.3",
|
|
114
|
+
"next": "13.5.4",
|
|
115
|
+
"next-sitemap": "4.1.8",
|
|
116
|
+
"react": "18.2.0",
|
|
117
|
+
"react-dom": "18.2.0",
|
|
118
|
+
"socket.io-client": "4.6.1",
|
|
119
|
+
"universal-cookie": "4.0.4",
|
|
119
120
|
}
|
|
120
121
|
DEV_DEPENDENCIES = {
|
|
121
|
-
"autoprefixer": "
|
|
122
|
-
"postcss": "
|
|
122
|
+
"autoprefixer": "10.4.14",
|
|
123
|
+
"postcss": "8.4.24",
|
|
123
124
|
}
|
reflex/constants/style.py
CHANGED
|
@@ -13,7 +13,7 @@ class Tailwind(SimpleNamespace):
|
|
|
13
13
|
"""Tailwind constants."""
|
|
14
14
|
|
|
15
15
|
# The Tailwindcss version
|
|
16
|
-
VERSION = "tailwindcss
|
|
16
|
+
VERSION = "tailwindcss@3.3.2"
|
|
17
17
|
# The Tailwind config.
|
|
18
18
|
CONFIG = os.path.join(Dirs.WEB, "tailwind.config.js")
|
|
19
19
|
# Default Tailwind content paths
|
reflex/event.py
CHANGED
|
@@ -333,8 +333,8 @@ def set_cookie(key: str, value: str) -> EventSpec:
|
|
|
333
333
|
console.deprecate(
|
|
334
334
|
feature_name=f"rx.set_cookie",
|
|
335
335
|
reason="and has been replaced by rx.Cookie, which can be used as a state var",
|
|
336
|
-
deprecation_version="0.
|
|
337
|
-
removal_version="0.
|
|
336
|
+
deprecation_version="0.3.0",
|
|
337
|
+
removal_version="0.3.1",
|
|
338
338
|
)
|
|
339
339
|
return server_side(
|
|
340
340
|
"_set_cookie",
|
|
@@ -375,8 +375,8 @@ def set_local_storage(key: str, value: str) -> EventSpec:
|
|
|
375
375
|
console.deprecate(
|
|
376
376
|
feature_name=f"rx.set_local_storage",
|
|
377
377
|
reason="and has been replaced by rx.LocalStorage, which can be used as a state var",
|
|
378
|
-
deprecation_version="0.
|
|
379
|
-
removal_version="0.
|
|
378
|
+
deprecation_version="0.3.0",
|
|
379
|
+
removal_version="0.3.1",
|
|
380
380
|
)
|
|
381
381
|
return server_side(
|
|
382
382
|
"_set_local_storage",
|
|
@@ -537,7 +537,7 @@ def call_event_handler(
|
|
|
537
537
|
feature_name="EVENT_ARG API for triggers",
|
|
538
538
|
reason="Replaced by new API using lambda allow arbitrary number of args",
|
|
539
539
|
deprecation_version="0.2.8",
|
|
540
|
-
removal_version="0.
|
|
540
|
+
removal_version="0.3.1",
|
|
541
541
|
)
|
|
542
542
|
if len(args) == 1:
|
|
543
543
|
return event_handler()
|
reflex/testing.py
CHANGED
|
@@ -57,7 +57,6 @@ except ImportError:
|
|
|
57
57
|
|
|
58
58
|
DEFAULT_TIMEOUT = 10
|
|
59
59
|
POLL_INTERVAL = 0.25
|
|
60
|
-
FRONTEND_LISTENING_MESSAGE = re.compile(r"ready started server on.*, url: (.*:[0-9]+)$")
|
|
61
60
|
FRONTEND_POPEN_ARGS = {}
|
|
62
61
|
T = TypeVar("T")
|
|
63
62
|
TimeoutType = Optional[Union[int, float]]
|
|
@@ -224,7 +223,7 @@ class AppHarness:
|
|
|
224
223
|
if not line:
|
|
225
224
|
break
|
|
226
225
|
print(line) # for pytest diagnosis
|
|
227
|
-
m =
|
|
226
|
+
m = re.search(reflex.constants.Next.FRONTEND_LISTENING_REGEX, line)
|
|
228
227
|
if m is not None:
|
|
229
228
|
self.frontend_url = m.group(1)
|
|
230
229
|
break
|
reflex/utils/console.py
CHANGED
reflex/utils/exec.py
CHANGED
|
@@ -85,10 +85,10 @@ def run_process_and_launch_url(run_command: list[str]):
|
|
|
85
85
|
)
|
|
86
86
|
if process.stdout:
|
|
87
87
|
for line in processes.stream_logs("Starting frontend", process):
|
|
88
|
-
match = re.search(
|
|
88
|
+
match = re.search(constants.Next.FRONTEND_LISTENING_REGEX, line)
|
|
89
89
|
if match:
|
|
90
90
|
if first_run:
|
|
91
|
-
url = match.group(
|
|
91
|
+
url = match.group(1)
|
|
92
92
|
if get_config().frontend_path != "":
|
|
93
93
|
url = urljoin(url, get_config().frontend_path)
|
|
94
94
|
console.print(f"App running at: [bold green]{url}")
|
reflex/vars.py
CHANGED
|
@@ -1464,8 +1464,8 @@ def get_local_storage(key: Var | str | None = None) -> BaseVar:
|
|
|
1464
1464
|
console.deprecate(
|
|
1465
1465
|
feature_name=f"rx.get_local_storage",
|
|
1466
1466
|
reason="and has been replaced by rx.LocalStorage, which can be used as a state var",
|
|
1467
|
-
deprecation_version="0.
|
|
1468
|
-
removal_version="0.
|
|
1467
|
+
deprecation_version="0.3.0",
|
|
1468
|
+
removal_version="0.3.1",
|
|
1469
1469
|
)
|
|
1470
1470
|
if key is not None:
|
|
1471
1471
|
if not (isinstance(key, Var) and key.type_ == str) and not isinstance(key, str):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: reflex
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.0a3
|
|
4
4
|
Summary: Web apps in pure Python.
|
|
5
5
|
Home-page: https://reflex.dev
|
|
6
6
|
License: Apache-2.0
|
|
@@ -64,7 +64,7 @@ Description-Content-Type: text/markdown
|
|
|
64
64
|
</div>
|
|
65
65
|
|
|
66
66
|
---
|
|
67
|
-
[English](https://github.com/reflex-dev/reflex/blob/main/README.md) | [简体中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_cn/README.md) | [繁體中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_tw/README.md)
|
|
67
|
+
[English](https://github.com/reflex-dev/reflex/blob/main/README.md) | [简体中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_cn/README.md) | [繁體中文](https://github.com/reflex-dev/reflex/blob/main/docs/zh/zh_tw/README.md) | [Türkçe](https://github.com/reflex-dev/reflex/blob/main/docs/tr/README.md)
|
|
68
68
|
---
|
|
69
69
|
## ⚙️ Installation
|
|
70
70
|
|
|
@@ -18,7 +18,7 @@ reflex/.templates/jinja/web/utils/theme.js.jinja2,sha256=FJeHR2B-ZkuzH29OgHp2cVg
|
|
|
18
18
|
reflex/.templates/web/.gitignore,sha256=3tT0CtVkCL09D_Y3Hd4myUgGcBuESeavCa0WHU5ifJ4,417
|
|
19
19
|
reflex/.templates/web/jsconfig.json,sha256=Y9sEhjJcpk-ZDj-sxHYCvF9UZF4fyBL4oUlphb9X9Hk,97
|
|
20
20
|
reflex/.templates/web/next.config.js,sha256=SxCb51nQkDsicnR-d4-Yys5TRISpSQ__TF_CHj0nLek,104
|
|
21
|
-
reflex/.templates/web/pages/_app.js,sha256=
|
|
21
|
+
reflex/.templates/web/pages/_app.js,sha256=NBVsD50KszT41zsOu5cmsK1Sy815rveK5U8Mbm0HVaU,1176
|
|
22
22
|
reflex/.templates/web/postcss.config.js,sha256=JR7N3UZyyc9GdUfj3FNd4ArSEp3ybn565yj6TlrEX8U,82
|
|
23
23
|
reflex/.templates/web/styles/code/prism.js,sha256=J0_iOSEvPRj9MjFXIV45UFe8xiyccO6KD0sGauV9bHU,29404
|
|
24
24
|
reflex/.templates/web/styles/tailwind.css,sha256=zBp60NAZ3bHTLQ7LWIugrCbOQdhiXdbDZjSLJfg6KOw,59
|
|
@@ -27,7 +27,7 @@ reflex/.templates/web/utils/state.js,sha256=yQ5oUP8uIQ2lkAx9Oa3o6aKBphuBaY1AfrOf
|
|
|
27
27
|
reflex/__init__.py,sha256=2Wr6SHgPb1U9T0od3-jT_VQ5xRdh4VFyAMQbR9S4iDA,2073
|
|
28
28
|
reflex/__main__.py,sha256=6cVrGEyT3j3tEvlEVUatpaYfbB5EF3UVY-6vc_Z7-hw,108
|
|
29
29
|
reflex/admin.py,sha256=-bTxFUEoHo4X9FzmcSa6KSVVPpF7wh38lBvF67GhSvQ,373
|
|
30
|
-
reflex/app.py,sha256=
|
|
30
|
+
reflex/app.py,sha256=PZO3Xk7qgkyv0HcqeMerjYx-hmm-zORx_wJvsd6jJgk,33196
|
|
31
31
|
reflex/app.pyi,sha256=2MwXdTi2MhefZVhB59EBC8p6drWbuJEKbe4przNWqvk,4703
|
|
32
32
|
reflex/base.py,sha256=25j-9Wy6JM2DK7__N4HBxBWIW3GSAT2_vbXGeqFGMAU,2432
|
|
33
33
|
reflex/compiler/__init__.py,sha256=r8jqmDSFf09iV2lHlNhfc9XrTLjNxfDNwPYlxS4cmHE,27
|
|
@@ -47,15 +47,15 @@ reflex/components/base/link.py,sha256=y26QGX8QERS-vWjFggvYt_xKxJAfrpKmU0FGJMi3mh
|
|
|
47
47
|
reflex/components/base/link.pyi,sha256=Kvy8aS80jN4fsbeF4IBa4i7Gv_T7uthcfdsZi3XXMTI,4815
|
|
48
48
|
reflex/components/base/meta.py,sha256=RWITTQTA_35-FbaVGhjkAWDOmU65rzJ-WedENRJk-3k,1438
|
|
49
49
|
reflex/components/base/meta.pyi,sha256=kkNj-Dn-mKdFinSi8mGM72KbzahWf-UX2H63pa7U7Fg,7858
|
|
50
|
-
reflex/components/base/script.py,sha256=
|
|
50
|
+
reflex/components/base/script.py,sha256=3zkY-Qg83QgP_bTZsw27QEoNN_twjLea91873aIFrWA,3222
|
|
51
51
|
reflex/components/base/script.pyi,sha256=8Y9SV_vq9oBBSGma73SKg19bs8Ixcxz_GDcfsgTItMs,3183
|
|
52
|
-
reflex/components/component.py,sha256=
|
|
52
|
+
reflex/components/component.py,sha256=RJ7-xJJh2Cq0JY0iXZz5WcUFOuMzSGJwSdQlMg8syIM,30267
|
|
53
53
|
reflex/components/datadisplay/__init__.py,sha256=He8vj6DL88dSoPQzw3l_tp_C54PWsq3qai8V3d5pcy8,496
|
|
54
54
|
reflex/components/datadisplay/badge.py,sha256=Zp1fPtvm7qCSOB7OWuraptDtt_OVqixyz7i34IQcMH0,330
|
|
55
55
|
reflex/components/datadisplay/badge.pyi,sha256=XIGXkP-A_Q5Oinrglx4t2xo_skB9ThSREh2T1Zuqmjk,2421
|
|
56
|
-
reflex/components/datadisplay/code.py,sha256=
|
|
56
|
+
reflex/components/datadisplay/code.py,sha256=7vvT13AxN4174EBjFqcHuz06VrjIwJ2UtTgr4TotJQg,3588
|
|
57
57
|
reflex/components/datadisplay/code.pyi,sha256=gCtz_L97c2U8WRgVMLgJT_2tkMHjxtkIiIhe_xtjK2I,4998
|
|
58
|
-
reflex/components/datadisplay/datatable.py,sha256=
|
|
58
|
+
reflex/components/datadisplay/datatable.py,sha256=ki_1yoLkqMxQQP4Q1Uibun33CSqT91d7KC6nO7SQk_4,4975
|
|
59
59
|
reflex/components/datadisplay/datatable.pyi,sha256=V3U25YAGg6_QCuqh6BxwP-th3t67cDt6uqvKzAWMvU0,4830
|
|
60
60
|
reflex/components/datadisplay/divider.py,sha256=ErCjdp7sQHLuRO9U9vPTQZEUlleSSS2oNQ6nMm8T1cc,533
|
|
61
61
|
reflex/components/datadisplay/divider.pyi,sha256=USH2Pj5y7oPRviLagfGcmdCBvEgLMg0tThQfoYRk5K0,2556
|
|
@@ -100,7 +100,7 @@ reflex/components/forms/date_picker.py,sha256=wOlAp5buIhMNroqtqjuH5iI2QToOyoBtSk
|
|
|
100
100
|
reflex/components/forms/date_picker.pyi,sha256=_kHtwG8gmHQTn3zBOaMjF_GZ1uIBGX7djxK5gZVZ2lg,2472
|
|
101
101
|
reflex/components/forms/date_time_picker.py,sha256=qyLigyL5g7SSOYqX9COflULtdMIyD1WyWoSvIuvk6cE,273
|
|
102
102
|
reflex/components/forms/date_time_picker.pyi,sha256=qNHIncJ8xsKEz3pgQ8kFMtrb3rUUn7-HeDJN3sf_BeE,2485
|
|
103
|
-
reflex/components/forms/debounce.py,sha256=
|
|
103
|
+
reflex/components/forms/debounce.py,sha256=2-qTKfiEt-2f7w5BY9pYbAHPqPcSUwRdZIjLQIImgXo,4077
|
|
104
104
|
reflex/components/forms/debounce.pyi,sha256=Mj2nZyJaNCJ8EwBuilGc89f3EfGScFCzoMBOvqyE1oM,2988
|
|
105
105
|
reflex/components/forms/editable.py,sha256=mx0mFYyXAU9SjEFZGlVZAEEFTkz6AeFVXKAL4pGE6oc,2115
|
|
106
106
|
reflex/components/forms/editable.pyi,sha256=DKvMsoLajdlRqN0XOSCkvG9iKdm_gwKkOuBqgv0fAnw,8967
|
|
@@ -133,17 +133,17 @@ reflex/components/forms/switch.py,sha256=mxO4xSx8abijthqeHsrEJL2vIv4k4T3o5oUmGoA
|
|
|
133
133
|
reflex/components/forms/switch.pyi,sha256=auVa_BplTfUdgstEMUdbUv2t02vHCe7cvt3YsyP8itk,3678
|
|
134
134
|
reflex/components/forms/textarea.py,sha256=5hknb0UcTkCBAYqNuOvnj4w0z2onjcHIGvJqSAR2gmc,2656
|
|
135
135
|
reflex/components/forms/textarea.pyi,sha256=PwAT2iHFbOBxR0Pv9UXO0y3pf_QJyiLaSN8hGHu4-GM,3592
|
|
136
|
-
reflex/components/forms/upload.py,sha256=
|
|
136
|
+
reflex/components/forms/upload.py,sha256=CbUHrpx0LlIQhO5C2zLEvdPP5og81cEq4y2qSFzv8zs,3521
|
|
137
137
|
reflex/components/forms/upload.pyi,sha256=dKaOLxGG8BNUqhjcXeb-NUMH-eaLECgRVV2A9K5xp7c,3678
|
|
138
138
|
reflex/components/graphing/__init__.py,sha256=9I3VrJqQ5zmqpu7f4HW8dxk4A9kpWOY4-nD3YRDk3is,173
|
|
139
|
-
reflex/components/graphing/plotly.py,sha256=
|
|
139
|
+
reflex/components/graphing/plotly.py,sha256=PvQzc5Mgsi7Giq9r1tzgRwOabGfC9vQgPi4T36u-aCE,1355
|
|
140
140
|
reflex/components/graphing/plotly.pyi,sha256=KEoY3l1PHPJFoslFaHvwcgq_6tFHjJPaYUGFQcypB2Y,4591
|
|
141
141
|
reflex/components/graphing/recharts/__init__.py,sha256=5UR_YCZeDQvZe_8WMDvxo-mjoaSSiuUCvWtjjCHkBog,659
|
|
142
142
|
reflex/components/graphing/recharts/cartesian.py,sha256=nwUUXciaUKE7Xth7IyaIUoqJonncyB6cZlBF_xLuLTE,18582
|
|
143
143
|
reflex/components/graphing/recharts/charts.py,sha256=7T6jYNqUf-8gxHGuhA3bhXrLvjguwjVWKfIzXdLS-Tk,16470
|
|
144
144
|
reflex/components/graphing/recharts/general.py,sha256=RgeY2_Hid-5XhyzB69gBh27dL5lqt6_G6Pk_2IGpeeU,5184
|
|
145
145
|
reflex/components/graphing/recharts/polar.py,sha256=0IB9cTT7uYMwiiJfr8GrctRmSUy4Iffe8XV0G4PyJk8,10042
|
|
146
|
-
reflex/components/graphing/recharts/recharts.py,sha256=
|
|
146
|
+
reflex/components/graphing/recharts/recharts.py,sha256=B047CqND1-N5RWr3GIsJOv2Mhy_QdYOq5NDN25Z3jzs,462
|
|
147
147
|
reflex/components/layout/__init__.py,sha256=p6k9RBI6wF37vE0CjZ2Ptr0eWZ8FxmMtJhClNy2rTUM,872
|
|
148
148
|
reflex/components/layout/aspect_ratio.py,sha256=8ulf9WvYZ2hGzZk0TCZMORU_exC-yH_lDhUamA4ftCY,320
|
|
149
149
|
reflex/components/layout/aspect_ratio.pyi,sha256=q1o4mpaIVP4iOYVSpAALOkqGpJmqz0MB3282X2GQjdQ,2312
|
|
@@ -175,14 +175,14 @@ reflex/components/layout/wrap.pyi,sha256=BVzDpEy8IfAxhsUrAJsKZmBxFqU6f60enmbs9Jq
|
|
|
175
175
|
reflex/components/libs/__init__.py,sha256=ILfrKagsp_vFw_L1PUnbooPTD6VD9N1e2reMUw8A1IM,33
|
|
176
176
|
reflex/components/libs/chakra.py,sha256=DOhGL4bGb8LKrzbF3I93-H6hrgHpo0W5hGk8Gi29EQo,220
|
|
177
177
|
reflex/components/libs/chakra.pyi,sha256=we5yoEnIuKfHzhAQaKFIBGFJQrnimRYXWcnuw4N-OO4,2153
|
|
178
|
-
reflex/components/libs/react_player.py,sha256=
|
|
178
|
+
reflex/components/libs/react_player.py,sha256=lA64nvHY5pOb1WLvdwjOP87-Qmjyj8prkzK8OFVRSXY,1095
|
|
179
179
|
reflex/components/libs/react_player.pyi,sha256=WrepeBD2p0tbTYGFZVWpumtGVM9s9PWsdwPQjv-Hibs,3235
|
|
180
180
|
reflex/components/media/__init__.py,sha256=Uz-J7NJ8Cc4blZ1yGYJxAaJ8w9YJH0OaakkHGSbZQlo,240
|
|
181
181
|
reflex/components/media/audio.py,sha256=dLV0w_zIBBJccj8b3cOfZnx2QVhVCSxOlNcpwRVOCD0,195
|
|
182
182
|
reflex/components/media/audio.pyi,sha256=D9dFW8caFpLqESouCxIqE_xiUsys1VdGdd3cY2Fl024,2212
|
|
183
183
|
reflex/components/media/avatar.py,sha256=C7a7_31UQDvPaRffVpnrzDOBlrVaZjgyMi23Ed3g-bw,1640
|
|
184
184
|
reflex/components/media/avatar.pyi,sha256=p4BXm_5mEI_eZ2FaBjNZk7G_J_a1xHxhfonMn01Z5EA,6988
|
|
185
|
-
reflex/components/media/icon.py,sha256=
|
|
185
|
+
reflex/components/media/icon.py,sha256=qXmxGa151kVUJR05X5Wt-XevIGzy1VzhnD8PwPE21ZY,2432
|
|
186
186
|
reflex/components/media/icon.pyi,sha256=P8SGyoWeRLwxIY8MgiGApcaanazsu91lf-koFz-qEP8,4058
|
|
187
187
|
reflex/components/media/image.py,sha256=lf02_y1w4VVmZplVWpPku-W0V86zSXdnftwxUcBEzYQ,2936
|
|
188
188
|
reflex/components/media/image.pyi,sha256=lOg4_Hoqd7MsZtrowFUt94j1CD05HVnVMVUuhjVPJMU,4123
|
|
@@ -208,7 +208,7 @@ reflex/components/overlay/banner.py,sha256=V_j3f-dAF4LC8pMC0j3slStZf0r1zHnObzsLB
|
|
|
208
208
|
reflex/components/overlay/banner.pyi,sha256=OurZ6Cc3fQnyyo96Rbt2vhdnxZZN55myy2g_LUo--v4,3916
|
|
209
209
|
reflex/components/overlay/drawer.py,sha256=9QwziTq4NUgXM0lbUS0p8Qr9GvXyD-EM_ClFBCRFDqg,4809
|
|
210
210
|
reflex/components/overlay/drawer.pyi,sha256=pXofLoKiLs3nhzurBcigQ6hte6YZNGag06foPSmqJhM,15881
|
|
211
|
-
reflex/components/overlay/menu.py,sha256=
|
|
211
|
+
reflex/components/overlay/menu.py,sha256=fT3W4GR1jXv7SpEDyFk8TeK29t3tcU54498aijiP9rk,6843
|
|
212
212
|
reflex/components/overlay/menu.pyi,sha256=N5CsXZSvkTIKqNnF5OG31qzt0d_4AoLShTUP5XnDaec,19544
|
|
213
213
|
reflex/components/overlay/modal.py,sha256=6fKdlp0cR5Ujbskr4zfbwhbvf1aVdVOPM1OJX8HZ5TY,5232
|
|
214
214
|
reflex/components/overlay/modal.pyi,sha256=DfVLdRW1AUPn6UD_Pmr2P0JMzlxZOARYjTXB2F8K7AM,15791
|
|
@@ -226,7 +226,7 @@ reflex/components/typography/heading.py,sha256=F3n_etjoU_i6EqlTFIifDnS2OgRQjtBUV
|
|
|
226
226
|
reflex/components/typography/heading.pyi,sha256=p_c99pEhxoXOSzEXyjqzk6pkUswe-qm3_LA2Sca94BA,2428
|
|
227
227
|
reflex/components/typography/highlight.py,sha256=DYWJ3JrVnWHgkU_qaljyPpgfzyaieS4jSaCT_HD39X4,676
|
|
228
228
|
reflex/components/typography/highlight.pyi,sha256=7UXUY3NSeUlUGO9obVjO9k2vR9rgSL2OZ2LIB6QHGKE,2579
|
|
229
|
-
reflex/components/typography/markdown.py,sha256=
|
|
229
|
+
reflex/components/typography/markdown.py,sha256=NQahFPwm16KunSiEomZRdyj_yT4jrQALSK8eQpxwLs4,8224
|
|
230
230
|
reflex/components/typography/markdown.pyi,sha256=2fhdRUmH7shC5hZmIYFuK1SjY_Utliue3HOs0sF-GRo,2442
|
|
231
231
|
reflex/components/typography/span.py,sha256=kvIj5UAEvzhRpvXkAEZ_JxBRSt-LNBiEz9Arlj5m7jo,333
|
|
232
232
|
reflex/components/typography/span.pyi,sha256=bdsp2kov8dJHr48Ihc3Lu_cSF_r6VV6P2XnP2V78p3M,2301
|
|
@@ -235,13 +235,13 @@ reflex/components/typography/text.pyi,sha256=YHIEHAX2p8QbXW7DXRDO-ph-U4Ski5dzGP6
|
|
|
235
235
|
reflex/config.py,sha256=8rtYrCvTnSESFEZpw4DAfdJl8LWjoqJwqcwsqtS0yBM,8043
|
|
236
236
|
reflex/config.pyi,sha256=wpYBKCht2UKhAV-b45G0FRyeHYf6WSuxVzW-bgOu__I,3009
|
|
237
237
|
reflex/constants/__init__.py,sha256=LE1Y4yA0Q_M68ydcVf56tJW1MabbH07LUmfpaWI0jYw,1461
|
|
238
|
-
reflex/constants/base.py,sha256=
|
|
238
|
+
reflex/constants/base.py,sha256=Exy0hzR2alX0z0ltr6fcop_hjf75a1ma7QU8aXcw1og,4987
|
|
239
239
|
reflex/constants/compiler.py,sha256=g3c_PSai5adA5PObXkLbY22Q6nxo6FCbrAMAG_qCrpU,1994
|
|
240
240
|
reflex/constants/config.py,sha256=NC7Hmb20Y6Tco_rhpYLXHH_Fg2weiCNcNISgeedhu4E,1058
|
|
241
241
|
reflex/constants/event.py,sha256=JtzG62kIgFat_qbYbdTatkGKrUxuiKML8LZEeAUHPR8,2222
|
|
242
|
-
reflex/constants/installer.py,sha256=
|
|
242
|
+
reflex/constants/installer.py,sha256=UCQ0__Vv1NSqOzxHAC9Sne35zbVBEshvAIUiKg9UVis,3418
|
|
243
243
|
reflex/constants/route.py,sha256=EHbAcyiHU-mqiPkI3DuClYWLeTZRinawUMnqFqhxZiQ,1792
|
|
244
|
-
reflex/constants/style.py,sha256=
|
|
244
|
+
reflex/constants/style.py,sha256=cHQ7SzX5ag8Q7rqW462pUSkF5UZLCldSVmvNaIypGic,604
|
|
245
245
|
reflex/el/__init__.py,sha256=3QR9GuYBnFvtxLQm_aeSUzGJsqJBUjeTt6tcHyCqAcQ,73
|
|
246
246
|
reflex/el/constants/__init__.py,sha256=9h2hdnOSltQLDEM6w1nGmv1B8Bf0tMquTCi5RhvBT6c,113
|
|
247
247
|
reflex/el/constants/html.py,sha256=hIebFwWritMmd3VCMYBNg0k_2UM1QDIhT_Q-EQsCWEA,7175
|
|
@@ -250,7 +250,7 @@ reflex/el/constants/reflex.py,sha256=SJidKWxPv0bwjPbeo57KFuEQNGyd8XUJrV-HfzX3tnE
|
|
|
250
250
|
reflex/el/element.py,sha256=Go8tt1GwBUt7dJKPLZNaaNdW7uDAiUbiWlR_XtaV8wM,1318
|
|
251
251
|
reflex/el/elements/__init__.py,sha256=TTctaX_5zEGS9pd48HPSGeSem8T-Yw5O-nBlJDsyTe4,106323
|
|
252
252
|
reflex/el/precompile.py,sha256=p-F3L7_cGdFjh0YRFyqu0ZRjcquOEkflymkkd6WzJRQ,2655
|
|
253
|
-
reflex/event.py,sha256=
|
|
253
|
+
reflex/event.py,sha256=ScG8wO_dOzGitdbmXSqwe5NB2We6rJPoQEsAP-h8gY8,18897
|
|
254
254
|
reflex/middleware/__init__.py,sha256=x7xTeDuc73Hjj43k1J63naC9x8vzFxl4sq7cCFBX7sk,111
|
|
255
255
|
reflex/middleware/hydrate_middleware.py,sha256=s7HQ4V_5k4hqxxbJO5jpFk36YXuG26NiNpe7nx2hMnQ,2389
|
|
256
256
|
reflex/middleware/middleware.py,sha256=BJM_3GGLUi6oRf753vxRJueOUDm3eLC2pdY2hl1ez-4,1157
|
|
@@ -260,12 +260,12 @@ reflex/reflex.py,sha256=0LLKrunY7JQu_mM2E2TIjzYn-s1rDY082EGKpO7wjcw,10381
|
|
|
260
260
|
reflex/route.py,sha256=eVi2TSk9uM7DDGBy6rDYe6Gq4iuHZFK00Vmoq9IbIjk,2732
|
|
261
261
|
reflex/state.py,sha256=iOIe4uJZnITvmn73KKIpZp5ioNnFOduXesH0XT_Mxh8,62202
|
|
262
262
|
reflex/style.py,sha256=DD1BbeZ7_8T6n_TmzjTzztn0vp22BdtxYMiZ4FtbEXk,1120
|
|
263
|
-
reflex/testing.py,sha256=
|
|
263
|
+
reflex/testing.py,sha256=_IPUJZi-Cwmb_FfATHCm9L1Iu-ObzjjieA7Yapsq35k,24764
|
|
264
264
|
reflex/utils/__init__.py,sha256=HBHF4X2_i1ugEYNgCvRXuT_NmQRzFAtIxSMKFSMIp18,24
|
|
265
265
|
reflex/utils/build.py,sha256=TnkaK06NZAGFxNzAzGmrxXutDZ3E0sBjrpYWVPG5Frs,6767
|
|
266
|
-
reflex/utils/console.py,sha256=
|
|
266
|
+
reflex/utils/console.py,sha256=fPInKD--A_furGdk6MSRgsPRfOoW_ZSKA7VBrb25ZgA,4441
|
|
267
267
|
reflex/utils/exceptions.py,sha256=tDY0Bu1bmNzcozM_-dGaiYWudVCIO8Qo00_4klIbHCg,390
|
|
268
|
-
reflex/utils/exec.py,sha256=
|
|
268
|
+
reflex/utils/exec.py,sha256=8KzhSD2ozzJQe0KcGif5uwYzETh-EhsEK_JlIp4eNW0,8216
|
|
269
269
|
reflex/utils/format.py,sha256=hq2apCw2Xyb18at-cLJnEGNPi9bVIsOLNICEyS4UV5E,16489
|
|
270
270
|
reflex/utils/imports.py,sha256=f2bBFa9ZLVK6Lb3usEZ5Oj-kP9xJBQLfomUwDExbkFU,626
|
|
271
271
|
reflex/utils/path_ops.py,sha256=0HMFULgzOqpUwOyjD3gxAyCTVzX-uCBBwAU4qqMojSQ,4098
|
|
@@ -275,10 +275,10 @@ reflex/utils/serializers.py,sha256=nby0epu68pKvJ3XScJCEdXXDQNhuaJEtQgqJBKkNpCk,5
|
|
|
275
275
|
reflex/utils/telemetry.py,sha256=ZwlAPK7ccbgiiFvrsh40n7amfv4kiFSe_OZI0LUiMRY,2733
|
|
276
276
|
reflex/utils/types.py,sha256=YyuU9q5o4Ij52sIbfgoUnErlvFP-4bRB0YSglRfg460,5077
|
|
277
277
|
reflex/utils/watch.py,sha256=HzGrHQIZ_62Di0BO46kd2AZktNA3A6nFIBuf8c6ip30,2609
|
|
278
|
-
reflex/vars.py,sha256=
|
|
278
|
+
reflex/vars.py,sha256=nULCGS4ATw2OGlIYX2lQC3tptB3VhXiR6HfEK3YPXaE,45897
|
|
279
279
|
reflex/vars.pyi,sha256=3PTtneutS5mzv3u7MW8S9YHfN7nfz-mssCBNECGi3hI,4345
|
|
280
|
-
reflex-0.3.
|
|
281
|
-
reflex-0.3.
|
|
282
|
-
reflex-0.3.
|
|
283
|
-
reflex-0.3.
|
|
284
|
-
reflex-0.3.
|
|
280
|
+
reflex-0.3.0a3.dist-info/LICENSE,sha256=dw3zLrp9f5ObD7kqS32vWfhcImfO52PMmRqvtxq_YEE,11358
|
|
281
|
+
reflex-0.3.0a3.dist-info/METADATA,sha256=j7fZjisMvmr4MhMhmxBWMFZj_vUJYzb6xMR6kf_65Ug,10246
|
|
282
|
+
reflex-0.3.0a3.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
283
|
+
reflex-0.3.0a3.dist-info/entry_points.txt,sha256=H1Z5Yat_xJfy0dRT1Frk2PkO_p41Xy7fCKlj4FcdL9o,44
|
|
284
|
+
reflex-0.3.0a3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|