Skip to content

Commit f4ce079

Browse files
committed
0817dev
1 parent fb19fb4 commit f4ce079

File tree

8 files changed

+218
-193
lines changed

8 files changed

+218
-193
lines changed

pyi_hashes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"reflex/components/el/elements/tables.pyi": "686eb70ea7d8c4dafb0cc5c284e76184",
4040
"reflex/components/el/elements/typography.pyi": "684e83dde887dba12badd0fb75c87c04",
4141
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
42-
"reflex/components/lucide/icon.pyi": "ecaa40d72315ff4b8577f22c1537c0f3",
42+
"reflex/components/lucide/icon.pyi": "192a344136e24796145b9f17a9841708",
4343
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
4444
"reflex/components/moment/moment.pyi": "e1952f1c2c82cef85d91e970d1be64ab",
4545
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.16dev1"
3+
version = "0.8.17dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -31,12 +31,12 @@ dependencies = [
3131
"python-multipart >=0.0.20,<1.0",
3232
"python-socketio >=5.12.0,<6.0",
3333
"redis >=5.2.1,<7.0",
34-
"reflex-hosting-cli >=0.1.55",
34+
"reflex-hosting-cli >=0.1.57",
3535
"rich >=13,<15",
3636
"sqlmodel >=0.0.27,<0.1",
3737
"starlette >=0.47.0",
3838
"typing_extensions >=4.13.0",
39-
"wrapt >=1.17.0,<2.0",
39+
"wrapt >=1.17.0,<3.0",
4040
]
4141

4242
classifiers = [
@@ -243,7 +243,7 @@ fail_fast = true
243243

244244
[[tool.pre-commit.repos]]
245245
repo = "https://github.com/astral-sh/ruff-pre-commit"
246-
rev = "v0.14.0"
246+
rev = "v0.14.1"
247247
hooks = [
248248
{ id = "ruff-format", args = [
249249
"reflex",

reflex/components/lucide/icon.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from reflex.vars.base import LiteralVar, Var
77
from reflex.vars.sequence import LiteralStringVar, StringVar
88

9-
LUCIDE_LIBRARY = "lucide-react@0.545.0"
9+
LUCIDE_LIBRARY = "lucide-react@0.546.0"
1010

1111

1212
class LucideIconComponent(Component):
@@ -1129,6 +1129,7 @@ def _get_imports(self):
11291129
"monitor",
11301130
"moon_star",
11311131
"moon",
1132+
"monitor_cloud",
11321133
"motorbike",
11331134
"mountain_snow",
11341135
"mountain",

reflex/components/plotly/plotly.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class Plotly(NoSSRComponent):
7272

7373
library = "[email protected]"
7474

75-
lib_dependencies: list[str] = ["[email protected].1"]
75+
lib_dependencies: list[str] = ["[email protected].2"]
7676

7777
tag = "Plot"
7878

@@ -303,7 +303,7 @@ class PlotlyBasic(Plotly):
303303

304304
library = "[email protected]"
305305

306-
lib_dependencies: list[str] = ["[email protected].1"]
306+
lib_dependencies: list[str] = ["[email protected].2"]
307307

308308
def add_imports(self) -> ImportDict | list[ImportDict]:
309309
"""Add imports for the plotly basic component.
@@ -329,7 +329,7 @@ class PlotlyCartesian(Plotly):
329329

330330
library = "[email protected]"
331331

332-
lib_dependencies: list[str] = ["[email protected].1"]
332+
lib_dependencies: list[str] = ["[email protected].2"]
333333

334334
def add_imports(self) -> ImportDict | list[ImportDict]:
335335
"""Add imports for the plotly cartesian component.
@@ -355,7 +355,7 @@ class PlotlyGeo(Plotly):
355355

356356
library = "[email protected]"
357357

358-
lib_dependencies: list[str] = ["[email protected].1"]
358+
lib_dependencies: list[str] = ["[email protected].2"]
359359

360360
def add_imports(self) -> ImportDict | list[ImportDict]:
361361
"""Add imports for the plotly geo component.
@@ -381,7 +381,7 @@ class PlotlyGl3d(Plotly):
381381

382382
library = "[email protected]"
383383

384-
lib_dependencies: list[str] = ["[email protected].1"]
384+
lib_dependencies: list[str] = ["[email protected].2"]
385385

386386
def add_imports(self) -> ImportDict | list[ImportDict]:
387387
"""Add imports for the plotly 3d component.
@@ -407,7 +407,7 @@ class PlotlyGl2d(Plotly):
407407

408408
library = "[email protected]"
409409

410-
lib_dependencies: list[str] = ["[email protected].1"]
410+
lib_dependencies: list[str] = ["[email protected].2"]
411411

412412
def add_imports(self) -> ImportDict | list[ImportDict]:
413413
"""Add imports for the plotly 2d component.
@@ -433,7 +433,7 @@ class PlotlyMapbox(Plotly):
433433

434434
library = "[email protected]"
435435

436-
lib_dependencies: list[str] = ["[email protected].1"]
436+
lib_dependencies: list[str] = ["[email protected].2"]
437437

438438
def add_imports(self) -> ImportDict | list[ImportDict]:
439439
"""Add imports for the plotly mapbox component.
@@ -459,7 +459,7 @@ class PlotlyFinance(Plotly):
459459

460460
library = "[email protected]"
461461

462-
lib_dependencies: list[str] = ["[email protected].1"]
462+
lib_dependencies: list[str] = ["[email protected].2"]
463463

464464
def add_imports(self) -> ImportDict | list[ImportDict]:
465465
"""Add imports for the plotly finance component.
@@ -485,7 +485,7 @@ class PlotlyStrict(Plotly):
485485

486486
library = "[email protected]"
487487

488-
lib_dependencies: list[str] = ["[email protected].1"]
488+
lib_dependencies: list[str] = ["[email protected].2"]
489489

490490
def add_imports(self) -> ImportDict | list[ImportDict]:
491491
"""Add imports for the plotly strict component.

reflex/components/recharts/recharts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
class Recharts(Component):
99
"""A component that wraps a recharts lib."""
1010

11-
library = "recharts@3.2.1"
11+
library = "recharts@3.3.0"
1212

1313
def _get_style(self) -> dict:
1414
return {"wrapperStyle": self.style}
@@ -17,7 +17,7 @@ def _get_style(self) -> dict:
1717
class RechartsCharts(NoSSRComponent, MemoizationLeaf):
1818
"""A component that wraps a recharts lib."""
1919

20-
library = "recharts@3.2.1"
20+
library = "recharts@3.3.0"
2121

2222

2323
LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]

reflex/constants/installer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ def DEPENDENCIES(cls) -> dict[str, str]:
143143
"postcss-import": "16.1.1",
144144
"@react-router/dev": _react_router_version,
145145
"@react-router/fs-routes": _react_router_version,
146-
"vite": "npm:[email protected].17",
146+
"vite": "npm:[email protected].19",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.0.2",
152-
"vite": "npm:[email protected].17",
152+
"vite": "npm:[email protected].19",
153153
}

reflex/plugins/tailwind_v4.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Constants(SimpleNamespace):
1717
"""Tailwind constants."""
1818

1919
# The Tailwindcss version
20-
VERSION = "[email protected].14"
20+
VERSION = "[email protected].15"
2121
# The Tailwind config.
2222
CONFIG = "tailwind.config.js"
2323
# Default Tailwind content paths
@@ -156,7 +156,7 @@ def get_frontend_development_dependencies(self, **context) -> list[str]:
156156
return [
157157
*super().get_frontend_development_dependencies(**context),
158158
Constants.VERSION,
159-
"@tailwindcss/[email protected].14",
159+
"@tailwindcss/[email protected].15",
160160
]
161161

162162
def pre_compile(self, **context):

0 commit comments

Comments
 (0)