Skip to content

Commit

Permalink
chore: upgrade radix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed Oct 11, 2024
1 parent 56974bb commit e5f7dc0
Show file tree
Hide file tree
Showing 5 changed files with 23,882 additions and 19,731 deletions.
5 changes: 5 additions & 0 deletions .changeset/kind-papayas-repeat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@siafoundation/design-system': minor
---

Upgraded radix libraries.
30 changes: 15 additions & 15 deletions libs/design-system/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@
"react-dropzone": "^14.2.3",
"html-to-image": "^1.11.11",
"react-number-format": "^5.3.1",
"@radix-ui/react-radio-group": "^1.0.0",
"@radix-ui/react-accordion": "^1.0.0",
"@radix-ui/react-avatar": "^1.0.0",
"@radix-ui/react-checkbox": "^1.0.0",
"framer-motion": "^7.6.5",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-hover-card": "^1.0.3",
"@radix-ui/react-label": "^1.0.0",
"@radix-ui/react-separator": "^1.0.0",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-popover": "^1.0.0",
"@radix-ui/react-progress": "^1.0.0",
"@radix-ui/react-scroll-area": "^1.0.0",
"@radix-ui/react-switch": "^1.0.0",
"@radix-ui/react-tabs": "^1.0.0",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.0.0",
"react-hot-toast": "^2.4.1"
},
Expand Down
6 changes: 3 additions & 3 deletions libs/design-system/src/core/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export const DropdownMenuSub = React.forwardRef<

export const DropdownMenuSeparator = React.forwardRef<
HTMLDivElement,
DropdownMenuPrimitive.MenuSeparatorProps
DropdownMenuPrimitive.DropdownMenuSeparatorProps
>(({ className, ...props }, ref) => {
return (
<DropdownMenuPrimitive.Separator
Expand All @@ -198,7 +198,7 @@ export const DropdownMenuSeparator = React.forwardRef<

export const DropdownMenuItem = React.forwardRef<
HTMLDivElement,
DropdownMenuPrimitive.MenuItemProps
DropdownMenuPrimitive.DropdownMenuItemProps
>(({ className, ...props }, ref) => {
return (
<DropdownMenuPrimitive.Item
Expand All @@ -211,7 +211,7 @@ export const DropdownMenuItem = React.forwardRef<

export const DropdownMenuLabel = React.forwardRef<
HTMLDivElement,
DropdownMenuPrimitive.MenuLabelProps
DropdownMenuPrimitive.DropdownMenuLabelProps
>(({ className, ...props }, ref) => {
return (
<DropdownMenuPrimitive.Label
Expand Down
Loading

0 comments on commit e5f7dc0

Please sign in to comment.