Skip to content

Commit 5b3aa27

Browse files
authored
0825dev (#6065)
1 parent 3c82a7e commit 5b3aa27

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
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": "1bf66d3b03c0cedbf3b65806525fed84",
42+
"reflex/components/lucide/icon.pyi": "9cdd1107295f5c4b6d5d6516f487f237",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.24dev1"
3+
version = "0.8.25dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [

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.561.0"
9+
LUCIDE_LIBRARY = "lucide-react@0.562.0"
1010

1111

1212
class LucideIconComponent(Component):
@@ -1655,6 +1655,7 @@ def _get_imports(self):
16551655
"toggle_right",
16561656
"toilet",
16571657
"tool_case",
1658+
"toolbox",
16581659
"tornado",
16591660
"torus",
16601661
"touchpad_off",

reflex/constants/installer.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
1414
"""Bun constants."""
1515

1616
# The Bun version.
17-
VERSION = "1.3.4"
17+
VERSION = "1.3.5"
1818

1919
# Min Bun Version
2020
MIN_VERSION = "1.3.0"
@@ -75,7 +75,7 @@ class Node(SimpleNamespace):
7575

7676

7777
def _determine_react_router_version() -> str:
78-
default_version = "7.10.1"
78+
default_version = "7.11.0"
7979
if (version := os.getenv("REACT_ROUTER_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

@@ -132,7 +132,7 @@ def DEPENDENCIES(cls) -> dict[str, str]:
132132
"react-helmet": "6.1.0",
133133
"react-dom": cls._react_version,
134134
"isbot": "5.1.32",
135-
"socket.io-client": "4.8.1",
135+
"socket.io-client": "4.8.2",
136136
"universal-cookie": "7.2.2",
137137
}
138138

@@ -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:rolldown-vite@7.2.11",
146+
"vite": "npm:rolldown-vite@7.3.0",
147147
}
148148
OVERRIDES = {
149149
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
150150
"react-is": _react_version,
151151
"cookie": "1.1.1",
152-
"vite": "npm:rolldown-vite@7.2.11",
152+
"vite": "npm:rolldown-vite@7.3.0",
153153
}

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)