浏览代码

update all radix deps (#4886)

Co-authored-by: Masen Furer <m_github@0x26.net>
Khaleel Al-Adhami 2 月之前
父节点
当前提交
3905df51b4

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

@@ -53,7 +53,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.1.2"
+    library = "@radix-ui/react-accordion@^1.2.3"
 
 
     # 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/drawer.py

@@ -20,7 +20,7 @@ class DrawerComponent(RadixPrimitiveComponent):
 
 
     library = "vaul"
     library = "vaul"
 
 
-    lib_dependencies: list[str] = ["@radix-ui/react-dialog@^1.0.5"]
+    lib_dependencies: list[str] = ["@radix-ui/react-dialog@^1.1.6"]
 
 
 
 
 LiteralDirectionType = Literal["top", "bottom", "left", "right"]
 LiteralDirectionType = Literal["top", "bottom", "left", "right"]

+ 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.0"
+    library = "@radix-ui/react-form@^0.1.2"
 
 
 
 
 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.0.3"
+    library = "@radix-ui/react-progress@^1.1.2"
 
 
 
 
 class ProgressRoot(ProgressComponent):
 class ProgressRoot(ProgressComponent):

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

@@ -16,7 +16,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.1.2"
+    library = "@radix-ui/react-slider@^1.2.3"
 
 
 
 
 def on_value_event_spec(
 def on_value_event_spec(

+ 1 - 1
reflex/components/radix/themes/base.py

@@ -110,7 +110,7 @@ class RadixLoadingProp(Component):
 class RadixThemesComponent(Component):
 class RadixThemesComponent(Component):
     """Base class for all @radix-ui/themes components."""
     """Base class for all @radix-ui/themes components."""
 
 
-    library = "@radix-ui/themes@^3.0.0"
+    library = "@radix-ui/themes@^3.2.1"
 
 
     # "Fake" prop color_scheme is used to avoid shadowing CSS prop "color".
     # "Fake" prop color_scheme is used to avoid shadowing CSS prop "color".
     _rename_props: dict[str, str] = {"colorScheme": "color"}
     _rename_props: dict[str, str] = {"colorScheme": "color"}