Skip to content

Commit 625e6a6

Browse files
committed
0813dev
1 parent 47f3ee4 commit 625e6a6

File tree

5 files changed

+238
-223
lines changed

5 files changed

+238
-223
lines changed

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.12dev1"
3+
version = "0.8.13dev1"
44
description = "Web apps in pure Python."
55
license.text = "Apache-2.0"
66
authors = [
@@ -229,7 +229,7 @@ fail_fast = true
229229

230230
[[tool.pre-commit.repos]]
231231
repo = "https://github.com/astral-sh/ruff-pre-commit"
232-
rev = "v0.13.0"
232+
rev = "v0.13.1"
233233
hooks = [
234234
{ id = "ruff-format", args = [
235235
"reflex",

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 = "[email protected].0"
11+
library = "[email protected].1"
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 = "[email protected].0"
20+
library = "[email protected].1"
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].9",
146+
"vite": "npm:[email protected].12",
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].9",
152+
"vite": "npm:[email protected].12",
153153
}

reflex/plugins/shared_tailwind.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class TailwindPlugin(PluginBase):
179179
config: TailwindConfig = dataclasses.field(
180180
default_factory=lambda: TailwindConfig(
181181
plugins=[
182-
"@tailwindcss/[email protected].16",
182+
"@tailwindcss/[email protected].18",
183183
],
184184
)
185185
)

0 commit comments

Comments
 (0)