Skip to content

Commit 0dfbaf4

Browse files
authored
089dev (#5736)
1 parent 817b8b4 commit 0dfbaf4

File tree

5 files changed

+163
-160
lines changed

5 files changed

+163
-160
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": "e3f299e59bb8ff87aa949c6b606551c9",
4040
"reflex/components/el/elements/typography.pyi": "b4ec4ffb448f7a9b5f94712404448d9e",
4141
"reflex/components/gridjs/datatable.pyi": "98a7e1b3f3b60cafcdfcd8879750ee42",
42-
"reflex/components/lucide/icon.pyi": "9ac28107e4f03fbdee21864b022325d2",
42+
"reflex/components/lucide/icon.pyi": "ed7837cbba335845e4a44fbb5948f2d8",
4343
"reflex/components/markdown/markdown.pyi": "2f84254a548e908020949564fc289339",
4444
"reflex/components/moment/moment.pyi": "93fa4c6009390fe9400197ab52735b84",
4545
"reflex/components/plotly/plotly.pyi": "4311a0aae2abcc9226abb6a273f96372",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.8dev1"
3+
version = "0.8.9dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -232,7 +232,7 @@ fail_fast = true
232232

233233
[[tool.pre-commit.repos]]
234234
repo = "https://github.com/astral-sh/ruff-pre-commit"
235-
rev = "v0.12.9"
235+
rev = "v0.12.10"
236236
hooks = [
237237
{ id = "ruff-format", args = [
238238
"reflex",

reflex/components/lucide/icon.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,7 @@ def _get_imports(self):
453453
"chevrons_up_down",
454454
"chevrons_up",
455455
"chrome",
456+
"chromium",
456457
"church",
457458
"cigarette_off",
458459
"cigarette",
@@ -1198,11 +1199,13 @@ def _get_imports(self):
11981199
"panel_left_close",
11991200
"panel_left_dashed",
12001201
"panel_left_open",
1202+
"panel_left_right_dashed",
12011203
"panel_left",
12021204
"panel_right_close",
12031205
"panel_right_dashed",
12041206
"panel_right_open",
12051207
"panel_right",
1208+
"panel_top_bottom_dashed",
12061209
"panel_top_close",
12071210
"panel_top_dashed",
12081211
"panel_top_open",

reflex/constants/installer.py

Lines changed: 4 additions & 4 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.2.20"
17+
VERSION = "1.2.21"
1818

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

7676

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

@@ -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].3",
146+
"vite": "npm:[email protected].5",
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].3",
152+
"vite": "npm:[email protected].5",
153153
}

0 commit comments

Comments
 (0)