Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #1492

Merged
merged 2 commits into from
Nov 21, 2024
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
20 changes: 20 additions & 0 deletions .changeset/nine-dingos-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
"@launchpad-ui/inline-edit": patch
"@launchpad-ui/components": patch
"@launchpad-ui/focus-trap": patch
"@launchpad-ui/navigation": patch
"@launchpad-ui/pagination": patch
"@launchpad-ui/clipboard": patch
"@launchpad-ui/dropdown": patch
"@launchpad-ui/tab-list": patch
"@launchpad-ui/drawer": patch
"@launchpad-ui/filter": patch
"@launchpad-ui/alert": patch
"@launchpad-ui/modal": patch
"@launchpad-ui/form": patch
"@launchpad-ui/menu": patch
"@launchpad-ui/tag": patch
"@launchpad-ui/core": patch
---

Update dependencies
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"vite": "^5.4.0",
"vitest": "^2.1.1"
},
"packageManager": "pnpm@9.13.2",
"packageManager": "pnpm@9.14.2",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
Expand Down
2 changes: 1 addition & 1 deletion packages/alert/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@launchpad-ui/button": "workspace:~",
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-stately/utils": "3.10.4",
"@react-stately/utils": "3.10.5",
"classix": "2.2.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/clipboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/live-announcer": "3.4.0",
"@react-aria/live-announcer": "3.4.1",
"@radix-ui/react-slot": "1.1.0",
"classix": "2.2.0"
},
Expand Down
20 changes: 10 additions & 10 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
"test": "vitest run --coverage"
},
"dependencies": {
"@internationalized/date": "3.5.6",
"@internationalized/date": "3.6.0",
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/focus": "3.18.4",
"@react-aria/toast": "3.0.0-beta.17",
"@react-aria/utils": "3.25.3",
"@react-stately/toast": "3.0.0-beta.6",
"@react-stately/utils": "3.10.4",
"@react-types/shared": "3.25.0",
"@react-aria/focus": "3.19.0",
"@react-aria/toast": "3.0.0-beta.18",
"@react-aria/utils": "3.26.0",
"@react-stately/toast": "3.0.0-beta.7",
"@react-stately/utils": "3.10.5",
"@react-types/shared": "3.26.0",
"class-variance-authority": "0.7.0",
"react-aria": "3.35.1",
"react-aria-components": "1.4.1",
"react-aria": "3.36.0",
"react-aria-components": "1.5.0",
"react-router-dom": "6.16.0"
},
"peerDependencies": {
Expand All @@ -54,6 +54,6 @@
"devDependencies": {
"react": "18.3.1",
"react-dom": "18.3.1",
"react-stately": "3.33.0"
"react-stately": "3.34.0"
}
}
4 changes: 2 additions & 2 deletions packages/components/src/Disclosure.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import type { DisclosurePanelProps, DisclosureProps } from 'react-aria-component
import { cva } from 'class-variance-authority';
import { forwardRef } from 'react';
import {
UNSTABLE_Disclosure as AriaDisclosure,
UNSTABLE_DisclosurePanel as AriaDisclosurePanel,
Disclosure as AriaDisclosure,
DisclosurePanel as AriaDisclosurePanel,
} from 'react-aria-components';

import styles from './styles/Disclosure.module.css';
Expand Down
2 changes: 1 addition & 1 deletion packages/components/stories/GridList.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const DragAndDrop: Story = {
});

const { dragAndDropHooks } = useDragAndDrop({
getItems: (keys) => [...keys].map((key) => ({ 'text/plain': list.getItem(key).name })),
getItems: (keys) => [...keys].map((key) => ({ 'text/plain': list.getItem(key)?.name ?? '' })),
onReorder(e) {
if (e.target.dropPosition === 'before') {
list.moveBefore(e.target.key, e.keys);
Expand Down
2 changes: 1 addition & 1 deletion packages/components/stories/Modal.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const renderModal = (args: Story['args']) => (
</div>
<div slot="body">Body text</div>
<div slot="footer">
<Button onPress={close}>Cancel</Button>
<Button slot="close">Cancel</Button>
<Button variant="primary">Confirm</Button>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion packages/components/stories/Table.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const DragAndDrop: Story = {
const { dragAndDropHooks } = useDragAndDrop({
getItems: (keys) =>
[...keys].map((key) => ({
'text/plain': list.getItem(key).name,
'text/plain': list.getItem(key)?.name ?? '',
})),
onReorder(e) {
if (e.target.dropPosition === 'before') {
Expand Down
4 changes: 2 additions & 2 deletions packages/drawer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"@launchpad-ui/portal": "workspace:~",
"@launchpad-ui/progress": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/interactions": "3.22.4",
"@react-aria/overlays": "3.23.4",
"@react-aria/interactions": "3.22.5",
"@react-aria/overlays": "3.24.0",
"classix": "2.2.0",
"framer-motion": "11.11.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/dropdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/popover": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/utils": "3.25.3",
"@react-aria/utils": "3.26.0",
"classix": "2.2.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/filter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@launchpad-ui/menu": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/visually-hidden": "3.8.17",
"@react-aria/visually-hidden": "3.8.18",
"classix": "2.2.0"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/focus-trap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"test": "vitest run --coverage"
},
"dependencies": {
"@react-aria/focus": "3.18.4"
"@react-aria/focus": "3.19.0"
},
"peerDependencies": {
"react": "18.3.1",
Expand Down
10 changes: 5 additions & 5 deletions packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/button": "3.10.1",
"@react-aria/i18n": "3.12.3",
"@react-aria/numberfield": "3.11.8",
"@react-aria/visually-hidden": "3.8.17",
"@react-stately/numberfield": "3.9.7",
"@react-aria/button": "3.11.0",
"@react-aria/i18n": "3.12.4",
"@react-aria/numberfield": "3.11.9",
"@react-aria/visually-hidden": "3.8.18",
"@react-stately/numberfield": "3.9.8",
"classix": "2.2.0"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/inline-edit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"test": "vitest run --coverage"
},
"dependencies": {
"@react-aria/button": "3.10.1",
"@react-aria/focus": "3.18.4",
"@react-aria/interactions": "3.22.4",
"@react-aria/utils": "3.25.3",
"@react-aria/button": "3.11.0",
"@react-aria/focus": "3.19.0",
"@react-aria/interactions": "3.22.5",
"@react-aria/utils": "3.26.0",
"@launchpad-ui/button": "workspace:~",
"@launchpad-ui/form": "workspace:~",
"@launchpad-ui/icons": "workspace:~",
Expand Down
4 changes: 2 additions & 2 deletions packages/menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@radix-ui/react-slot": "1.1.0",
"@react-aria/focus": "3.18.4",
"@react-aria/separator": "3.4.3",
"@react-aria/focus": "3.19.0",
"@react-aria/separator": "3.4.4",
"classix": "2.2.0",
"react-virtual": "2.10.4"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/portal": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/interactions": "3.22.4",
"@react-aria/overlays": "3.23.4",
"@react-aria/interactions": "3.22.5",
"@react-aria/overlays": "3.24.0",
"classix": "2.2.0",
"framer-motion": "11.11.1"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/navigation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
"@launchpad-ui/popover": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/utils": "3.25.3",
"@react-stately/list": "3.11.0",
"@react-types/shared": "3.25.0",
"@react-aria/utils": "3.26.0",
"@react-stately/list": "3.11.1",
"@react-types/shared": "3.26.0",
"classix": "2.2.0",
"react-router-dom": "6.16.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/pagination/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/progress": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/visually-hidden": "3.8.17",
"@react-aria/visually-hidden": "3.8.18",
"classix": "2.2.0"
},
"peerDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions packages/tab-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@
"test": "vitest run --coverage"
},
"dependencies": {
"@react-aria/tabs": "3.9.7",
"@react-stately/tabs": "3.6.10",
"@react-types/shared": "3.25.0",
"@react-types/tabs": "3.3.10",
"@react-aria/tabs": "3.9.8",
"@react-stately/tabs": "3.7.0",
"@react-types/shared": "3.26.0",
"@react-types/tabs": "3.3.11",
"@launchpad-ui/tokens": "workspace:~",
"classix": "2.2.0"
},
"peerDependencies": {
"@react-stately/collections": "3.11.0",
"@react-stately/collections": "3.12.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@react-stately/collections": "3.11.0",
"@react-stately/collections": "3.12.0",
"react": "18.3.1",
"react-dom": "18.3.1"
}
Expand Down
14 changes: 7 additions & 7 deletions packages/tag/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/focus": "3.18.4",
"@react-aria/interactions": "3.22.4",
"@react-aria/tag": "3.4.7",
"@react-aria/utils": "3.25.3",
"@react-stately/list": "3.11.0",
"@react-aria/selection": "3.20.1",
"@react-types/shared": "3.25.0",
"@react-aria/focus": "3.19.0",
"@react-aria/interactions": "3.22.5",
"@react-aria/tag": "3.4.8",
"@react-aria/utils": "3.26.0",
"@react-stately/list": "3.11.1",
"@react-aria/selection": "3.21.0",
"@react-types/shared": "3.26.0",
"classix": "2.2.0"
},
"peerDependencies": {
Expand Down
Loading
Loading