Skip to content

Commit 7a2cbc2

Browse files
authored
0811dev (#5775)
* 0811dev * precom
1 parent caab8ba commit 7a2cbc2

File tree

7 files changed

+267
-240
lines changed

7 files changed

+267
-240
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": "534579236b24656bd37e82c9ee76c3ef",
42+
"reflex/components/lucide/icon.pyi": "c25feb9a25f30fbc53c1a075b696698a",
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "reflex"
3-
version = "0.8.10dev1"
3+
version = "0.8.11dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -230,7 +230,7 @@ fail_fast = true
230230

231231
[[tool.pre-commit.repos]]
232232
repo = "https://github.com/astral-sh/ruff-pre-commit"
233-
rev = "v0.12.11"
233+
rev = "v0.12.12"
234234
hooks = [
235235
{ id = "ruff-format", args = [
236236
"reflex",
@@ -262,7 +262,7 @@ hooks = [
262262

263263
[[tool.pre-commit.repos]]
264264
repo = "https://github.com/RobertCraigie/pyright-python"
265-
rev = "v1.1.404"
265+
rev = "v1.1.405"
266266
hooks = [{ id = "pyright", args = ["reflex", "tests"], language = "system" }]
267267

268268
[[tool.pre-commit.repos]]

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

1111

1212
class LucideIconComponent(Component):
@@ -921,6 +921,7 @@ def _get_imports(self):
921921
"hospital",
922922
"hotel",
923923
"hourglass",
924+
"house_heart",
924925
"house_plug",
925926
"house_plus",
926927
"house_wifi",

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.1.2"
11+
library = "recharts@3.2.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.1.2"
20+
library = "recharts@3.2.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].5",
146+
"vite": "npm:[email protected].8",
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].5",
152+
"vite": "npm:[email protected].8",
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].12"
20+
VERSION = "[email protected].13"
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].12",
159+
"@tailwindcss/[email protected].13",
160160
]
161161

162162
def pre_compile(self, **context):

0 commit comments

Comments
 (0)