Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/accordion.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _inherited_variant_selector(
class AccordionComponent(RadixPrimitiveComponent):
"""Base class for all @radix-ui/accordion components."""

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

# The color scheme of the component.
color_scheme: Var[LiteralAccentColor]
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/form.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class FormComponent(RadixPrimitiveComponentWithClassName):
"""Base class for all @radix-ui/react-form components."""

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


class FormRoot(FormComponent, HTMLForm):
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class ProgressComponent(RadixPrimitiveComponentWithClassName):
"""A Progress component."""

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


class ProgressRoot(ProgressComponent):
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/radix/primitives/slider.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class SliderComponent(RadixPrimitiveComponentWithClassName):
"""Base class for all @radix-ui/react-slider components."""

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


def on_value_event_spec(
Expand Down
4 changes: 2 additions & 2 deletions reflex/components/recharts/recharts.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class Recharts(Component):
"""A component that wraps a recharts lib."""

library = "recharts@2.15.1"
library = "recharts@2.15.3"

def _get_style(self) -> dict:
return {"wrapperStyle": self.style}
Expand All @@ -17,7 +17,7 @@ def _get_style(self) -> dict:
class RechartsCharts(NoSSRComponent, MemoizationLeaf):
"""A component that wraps a recharts lib."""

library = "recharts@2.15.1"
library = "recharts@2.15.3"


LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]
Expand Down
2 changes: 1 addition & 1 deletion reflex/components/sonner/toast.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def dict(self, *args: Any, **kwargs: Any) -> dict[str, Any]:
class Toaster(Component):
"""A Toaster Component for displaying toast notifications."""

library: str | None = "sonner@2.0.1"
library: str | None = "sonner@2.0.3"

tag = "Toaster"

Expand Down
12 changes: 6 additions & 6 deletions reflex/constants/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
"""Bun constants."""

# The Bun version.
VERSION = "1.2.8"
VERSION = "1.2.10"

# Min Bun Version
MIN_VERSION = "1.2.8"
Expand Down Expand Up @@ -75,7 +75,7 @@ class Node(SimpleNamespace):


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

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

DEPENDENCIES = {
"@emotion/react": "11.14.0",
"axios": "1.8.3",
"axios": "1.8.4",
"json5": "2.2.3",
"next": _determine_nextjs_version(),
"next-sitemap": "4.2.3",
"next-themes": "0.4.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-focus-lock": "2.13.6",
"socket.io-client": "4.8.1",
"universal-cookie": "7.2.2",
Expand All @@ -119,5 +119,5 @@ class Commands(SimpleNamespace):
}
OVERRIDES = {
# This should always match the `react` version in DEPENDENCIES for recharts compatibility.
"react-is": "19.0.0"
"react-is": "19.1.0"
}
Loading