Skip to content

Commit c63c361

Browse files
authored
bump frontend deps and bun (#5162)
1 parent f2565e0 commit c63c361

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

reflex/components/radix/primitives/accordion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _inherited_variant_selector(
5454
class AccordionComponent(RadixPrimitiveComponent):
5555
"""Base class for all @radix-ui/accordion components."""
5656

57-
library = "@radix-ui/react-accordion@^1.2.3"
57+
library = "@radix-ui/react-accordion@^1.2.8"
5858

5959
# The color scheme of the component.
6060
color_scheme: Var[LiteralAccentColor]

reflex/components/radix/primitives/form.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class FormComponent(RadixPrimitiveComponentWithClassName):
1818
"""Base class for all @radix-ui/react-form components."""
1919

20-
library = "@radix-ui/react-form@^0.1.2"
20+
library = "@radix-ui/react-form@^0.1.4"
2121

2222

2323
class FormRoot(FormComponent, HTMLForm):

reflex/components/radix/primitives/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class ProgressComponent(RadixPrimitiveComponentWithClassName):
1616
"""A Progress component."""
1717

18-
library = "@radix-ui/react-progress@^1.1.2"
18+
library = "@radix-ui/react-progress@^1.1.4"
1919

2020

2121
class ProgressRoot(ProgressComponent):

reflex/components/radix/primitives/slider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
class SliderComponent(RadixPrimitiveComponentWithClassName):
1818
"""Base class for all @radix-ui/react-slider components."""
1919

20-
library = "@radix-ui/react-slider@^1.2.3"
20+
library = "@radix-ui/react-slider@^1.3.2"
2121

2222

2323
def on_value_event_spec(

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.15.1"
11+
library = "recharts@2.15.3"
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.15.1"
20+
library = "recharts@2.15.3"
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
@@ -172,7 +172,7 @@ def dict(self, *args: Any, **kwargs: Any) -> dict[str, Any]:
172172
class Toaster(Component):
173173
"""A Toaster Component for displaying toast notifications."""
174174

175-
library: str | None = "sonner@2.0.1"
175+
library: str | None = "sonner@2.0.3"
176176

177177
tag = "Toaster"
178178

reflex/constants/installer.py

Lines changed: 6 additions & 6 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.8"
17+
VERSION = "1.2.10"
1818

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

7676

7777
def _determine_nextjs_version() -> str:
78-
default_version = "15.3.0"
78+
default_version = "15.3.1"
7979
if (version := os.getenv("NEXTJS_VERSION")) and version != default_version:
8080
from reflex.utils import console
8181

@@ -101,13 +101,13 @@ class Commands(SimpleNamespace):
101101

102102
DEPENDENCIES = {
103103
"@emotion/react": "11.14.0",
104-
"axios": "1.8.3",
104+
"axios": "1.8.4",
105105
"json5": "2.2.3",
106106
"next": _determine_nextjs_version(),
107107
"next-sitemap": "4.2.3",
108108
"next-themes": "0.4.6",
109-
"react": "19.0.0",
110-
"react-dom": "19.0.0",
109+
"react": "19.1.0",
110+
"react-dom": "19.1.0",
111111
"react-focus-lock": "2.13.6",
112112
"socket.io-client": "4.8.1",
113113
"universal-cookie": "7.2.2",
@@ -119,5 +119,5 @@ class Commands(SimpleNamespace):
119119
}
120120
OVERRIDES = {
121121
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
122-
"react-is": "19.0.0"
122+
"react-is": "19.1.0"
123123
}

0 commit comments

Comments
 (0)