Skip to content

Commit d1a8152

Browse files
authored
feat: bump react-aria, react-aria-components, copy to devDependencies (#1769)
1 parent 18f8643 commit d1a8152

File tree

6 files changed

+592
-944
lines changed

6 files changed

+592
-944
lines changed

.changeset/many-mammals-shout.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@launchpad-ui/components": patch
3+
---
4+
5+
bump react-aria, react-aria-components, copy to devDependencies

packages/components/package.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,17 @@
3636
"class-variance-authority": "0.7.0"
3737
},
3838
"devDependencies": {
39+
"@react-aria/focus": "3.21.1",
40+
"@react-aria/interactions": "3.25.5",
41+
"@react-aria/utils": "3.30.1",
42+
"@react-stately/utils": "3.10.8",
43+
"@react-types/shared": "3.32.0",
3944
"copyfiles": "2.4.1",
40-
"react-hook-form": "7.59.0",
41-
"react-stately": "3.39.0"
45+
"react": "19.1.1",
46+
"react-aria": "3.43.1",
47+
"react-aria-components": "1.12.1",
48+
"react-dom": "19.1.1",
49+
"react-router": "7.5.2"
4250
},
4351
"peerDependencies": {
4452
"@react-aria/focus": "3.21.1",
@@ -47,10 +55,12 @@
4755
"@react-stately/utils": "3.10.8",
4856
"@react-types/shared": "3.32.0",
4957
"react": "19.1.1",
50-
"react-aria": "3.42.0",
51-
"react-aria-components": "1.11.0",
58+
"react-aria": "3.43.1",
59+
"react-aria-components": "1.12.1",
5260
"react-dom": "19.1.1",
53-
"react-router": "7.5.2"
61+
"react-hook-form": "7.59.0",
62+
"react-router": "7.5.2",
63+
"react-stately": "3.39.0"
5464
},
5565
"exports": {
5666
".": {

packages/components/src/GridList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ interface GridListProps<T extends object> extends AriaGridListProps<T> {
2626
}
2727

2828
interface GridListItemProps<T extends object> extends AriaGridListItemProps<T> {
29-
ref?: Ref<HTMLDivElement>;
29+
ref?: Ref<T>;
3030
}
3131

3232
// biome-ignore lint/suspicious/noExplicitAny: ignore

packages/components/src/ListBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface ListBoxProps<T> extends AriaListBoxProps<T> {
2525
ref?: Ref<HTMLDivElement>;
2626
}
2727
interface ListBoxItemProps<T> extends AriaListBoxItemProps<T> {
28-
ref?: Ref<HTMLDivElement>;
28+
ref?: Ref<T>;
2929
}
3030

3131
// biome-ignore lint/suspicious/noExplicitAny: ignore

packages/components/src/Menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ interface MenuProps<T> extends AriaMenuProps<T> {
4040
ref?: Ref<HTMLDivElement>;
4141
}
4242
interface MenuItemProps<T> extends AriaMenuItemProps<T>, VariantProps<typeof menuItemStyles> {
43-
ref?: Ref<HTMLDivElement>;
43+
ref?: Ref<T>;
4444
}
4545

4646
// biome-ignore lint/suspicious/noExplicitAny: ignore

0 commit comments

Comments
 (0)