Skip to content

Commit 38d85b8

Browse files
committed
bump frontend library versions
1 parent 6bf0aef commit 38d85b8

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

reflex/components/core/upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ class GhostUpload(Fragment):
192192
class Upload(MemoizationLeaf):
193193
"""A file upload component."""
194194

195-
library = "react-dropzone@14.2.10"
195+
library = "react-dropzone@14.3.5"
196196

197197
tag = ""
198198

reflex/components/datadisplay/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ class Theme:
382382
class CodeBlock(Component, MarkdownComponentMap):
383383
"""A code block."""
384384

385-
library = "[email protected].0"
385+
library = "[email protected].1"
386386

387387
tag = "PrismAsyncLight"
388388

reflex/components/plotly/plotly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Plotly(NoSSRComponent):
9595

9696
library = "[email protected]"
9797

98-
lib_dependencies: List[str] = ["[email protected].2"]
98+
lib_dependencies: List[str] = ["[email protected].3"]
9999

100100
tag = "Plot"
101101

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@2.13.0"
11+
library = "recharts@2.15.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@2.13.0"
20+
library = "recharts@2.15.0"
2121

2222

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

reflex/components/sonner/toast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def dict(self, *args, **kwargs) -> dict[str, Any]:
167167
class Toaster(Component):
168168
"""A Toaster Component for displaying toast notifications."""
169169

170-
library: str = "[email protected].1"
170+
library: str = "[email protected].2"
171171

172172
tag = "Toaster"
173173

reflex/constants/installer.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -178,21 +178,21 @@ class Commands(SimpleNamespace):
178178
PATH = "package.json"
179179

180180
DEPENDENCIES = {
181-
"@babel/standalone": "7.26.0",
182-
"@emotion/react": "11.13.3",
183-
"axios": "1.7.7",
181+
"@babel/standalone": "7.26.6",
182+
"@emotion/react": "11.14.0",
183+
"axios": "1.7.9",
184184
"json5": "2.2.3",
185-
"next": "15.1.4",
185+
"next": "15.1.5",
186186
"next-sitemap": "4.2.3",
187-
"next-themes": "0.4.3",
188-
"react": "18.3.1",
189-
"react-dom": "18.3.1",
190-
"react-focus-lock": "2.13.2",
187+
"next-themes": "0.4.4",
188+
"react": "19.0.0",
189+
"react-dom": "19.0.0",
190+
"react-focus-lock": "2.13.5",
191191
"socket.io-client": "4.8.1",
192192
"universal-cookie": "7.2.2",
193193
}
194194
DEV_DEPENDENCIES = {
195195
"autoprefixer": "10.4.20",
196-
"postcss": "8.4.49",
196+
"postcss": "8.5.1",
197197
"postcss-import": "16.1.0",
198198
}

reflex/constants/style.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class Tailwind(SimpleNamespace):
77
"""Tailwind constants."""
88

99
# The Tailwindcss version
10-
VERSION = "[email protected].15"
10+
VERSION = "[email protected].17"
1111
# The Tailwind config.
1212
CONFIG = "tailwind.config.js"
1313
# Default Tailwind content paths

0 commit comments

Comments
 (0)