Khaleel Al-Adhami 3 недель назад
Родитель
Сommit
c63c361079

+ 1 - 1
reflex/components/radix/primitives/accordion.py

@@ -54,7 +54,7 @@ def _inherited_variant_selector(
 class AccordionComponent(RadixPrimitiveComponent):
 class AccordionComponent(RadixPrimitiveComponent):
     """Base class for all @radix-ui/accordion components."""
     """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.
     # The color scheme of the component.
     color_scheme: Var[LiteralAccentColor]
     color_scheme: Var[LiteralAccentColor]

+ 1 - 1
reflex/components/radix/primitives/form.py

@@ -17,7 +17,7 @@ from .base import RadixPrimitiveComponentWithClassName
 class FormComponent(RadixPrimitiveComponentWithClassName):
 class FormComponent(RadixPrimitiveComponentWithClassName):
     """Base class for all @radix-ui/react-form components."""
     """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):
 class FormRoot(FormComponent, HTMLForm):

+ 1 - 1
reflex/components/radix/primitives/progress.py

@@ -15,7 +15,7 @@ from reflex.vars.base import Var
 class ProgressComponent(RadixPrimitiveComponentWithClassName):
 class ProgressComponent(RadixPrimitiveComponentWithClassName):
     """A Progress component."""
     """A Progress component."""
 
 
-    library = "@radix-ui/react-progress@^1.1.2"
+    library = "@radix-ui/react-progress@^1.1.4"
 
 
 
 
 class ProgressRoot(ProgressComponent):
 class ProgressRoot(ProgressComponent):

+ 1 - 1
reflex/components/radix/primitives/slider.py

@@ -17,7 +17,7 @@ LiteralSliderDir = Literal["ltr", "rtl"]
 class SliderComponent(RadixPrimitiveComponentWithClassName):
 class SliderComponent(RadixPrimitiveComponentWithClassName):
     """Base class for all @radix-ui/react-slider components."""
     """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(
 def on_value_event_spec(

+ 2 - 2
reflex/components/recharts/recharts.py

@@ -8,7 +8,7 @@ from reflex.components.component import Component, MemoizationLeaf, NoSSRCompone
 class Recharts(Component):
 class Recharts(Component):
     """A component that wraps a recharts lib."""
     """A component that wraps a recharts lib."""
 
 
-    library = "recharts@2.15.1"
+    library = "recharts@2.15.3"
 
 
     def _get_style(self) -> dict:
     def _get_style(self) -> dict:
         return {"wrapperStyle": self.style}
         return {"wrapperStyle": self.style}
@@ -17,7 +17,7 @@ class Recharts(Component):
 class RechartsCharts(NoSSRComponent, MemoizationLeaf):
 class RechartsCharts(NoSSRComponent, MemoizationLeaf):
     """A component that wraps a recharts lib."""
     """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"]
 LiteralAnimationEasing = Literal["ease", "ease-in", "ease-out", "ease-in-out", "linear"]

+ 1 - 1
reflex/components/sonner/toast.py

@@ -172,7 +172,7 @@ class ToastProps(PropsBase, NoExtrasAllowedProps):
 class Toaster(Component):
 class Toaster(Component):
     """A Toaster Component for displaying toast notifications."""
     """A Toaster Component for displaying toast notifications."""
 
 
-    library: str | None = "sonner@2.0.1"
+    library: str | None = "sonner@2.0.3"
 
 
     tag = "Toaster"
     tag = "Toaster"
 
 

+ 6 - 6
reflex/constants/installer.py

@@ -14,7 +14,7 @@ class Bun(SimpleNamespace):
     """Bun constants."""
     """Bun constants."""
 
 
     # The Bun version.
     # The Bun version.
-    VERSION = "1.2.8"
+    VERSION = "1.2.10"
 
 
     # Min Bun Version
     # Min Bun Version
     MIN_VERSION = "1.2.8"
     MIN_VERSION = "1.2.8"
@@ -75,7 +75,7 @@ fetch-retries=0
 
 
 
 
 def _determine_nextjs_version() -> str:
 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:
     if (version := os.getenv("NEXTJS_VERSION")) and version != default_version:
         from reflex.utils import console
         from reflex.utils import console
 
 
@@ -101,13 +101,13 @@ class PackageJson(SimpleNamespace):
 
 
     DEPENDENCIES = {
     DEPENDENCIES = {
         "@emotion/react": "11.14.0",
         "@emotion/react": "11.14.0",
-        "axios": "1.8.3",
+        "axios": "1.8.4",
         "json5": "2.2.3",
         "json5": "2.2.3",
         "next": _determine_nextjs_version(),
         "next": _determine_nextjs_version(),
         "next-sitemap": "4.2.3",
         "next-sitemap": "4.2.3",
         "next-themes": "0.4.6",
         "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",
         "react-focus-lock": "2.13.6",
         "socket.io-client": "4.8.1",
         "socket.io-client": "4.8.1",
         "universal-cookie": "7.2.2",
         "universal-cookie": "7.2.2",
@@ -119,5 +119,5 @@ class PackageJson(SimpleNamespace):
     }
     }
     OVERRIDES = {
     OVERRIDES = {
         # This should always match the `react` version in DEPENDENCIES for recharts compatibility.
         # This should always match the `react` version in DEPENDENCIES for recharts compatibility.
-        "react-is": "19.0.0"
+        "react-is": "19.1.0"
     }
     }