Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#1392)
Browse files Browse the repository at this point in the history
* chore(deps): update all non-major dependencies

* chore: add changeset

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Robb Niznik <rniznik@launchdarkly.com>
  • Loading branch information
renovate[bot] and Niznikr authored Aug 26, 2024
1 parent 3eb9c95 commit 3e49dc6
Show file tree
Hide file tree
Showing 24 changed files with 802 additions and 783 deletions.
24 changes: 24 additions & 0 deletions .changeset/three-moles-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
"@launchpad-ui/inline-edit": patch
"@launchpad-ui/components": patch
"@launchpad-ui/data-table": patch
"@launchpad-ui/focus-trap": patch
"@launchpad-ui/navigation": patch
"@launchpad-ui/pagination": patch
"@launchpad-ui/dropdown": patch
"@launchpad-ui/markdown": patch
"@launchpad-ui/tab-list": patch
"@launchpad-ui/drawer": patch
"@launchpad-ui/filter": patch
"@launchpad-ui/select": patch
"@launchpad-ui/toggle": patch
"@launchpad-ui/tokens": 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 .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.16.0
20.17.0
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"homepage": "https://github.com/launchdarkly/launchpad-ui#readme",
"devDependencies": {
"@axe-core/playwright": "^4.9.0",
"@axe-core/playwright": "^4.10.0",
"@biomejs/biome": "1.8.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
Expand All @@ -57,7 +57,7 @@
"@storybook/theming": "^8.2.1",
"@storybook/types": "^8.2.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/css-modules": "^1.0.5",
Expand Down Expand Up @@ -92,7 +92,7 @@
"vite": "^5.4.0",
"vitest": "^2.0.0"
},
"packageManager": "pnpm@9.7.0",
"packageManager": "pnpm@9.8.0",
"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 @@ -36,7 +36,7 @@
"@launchpad-ui/button": "workspace:~",
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-stately/utils": "3.10.2",
"@react-stately/utils": "3.10.3",
"classix": "2.1.17"
},
"peerDependencies": {
Expand Down
12 changes: 6 additions & 6 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
"dependencies": {
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/toast": "3.0.0-beta.14",
"@react-aria/utils": "3.25.1",
"@react-aria/toast": "3.0.0-beta.15",
"@react-aria/utils": "3.25.2",
"@react-stately/toast": "3.0.0-beta.5",
"@react-stately/utils": "3.10.2",
"@react-stately/utils": "3.10.3",
"@react-types/shared": "3.24.1",
"class-variance-authority": "0.7.0",
"react-aria": "3.34.1",
"react-aria-components": "1.3.1",
"react-aria": "3.34.3",
"react-aria-components": "1.3.3",
"react-router-dom": "6.16.0"
},
"peerDependencies": {
Expand All @@ -54,6 +54,6 @@
"@internationalized/date": "3.5.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-stately": "3.32.1"
"react-stately": "3.32.2"
}
}
6 changes: 4 additions & 2 deletions packages/components/src/Breadcrumbs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const _Breadcrumbs = <T extends object>(
*/
const Breadcrumbs = (forwardRef as forwardRefType)(_Breadcrumbs);

const _Breadcrumb = ({ children, ...props }: BreadcrumbProps, ref: ForwardedRef<HTMLLIElement>) => {
const _Breadcrumb = (props: BreadcrumbProps, ref: ForwardedRef<HTMLLIElement>) => {
return (
<AriaBreadcrumb
{...props}
Expand All @@ -42,7 +42,9 @@ const _Breadcrumb = ({ children, ...props }: BreadcrumbProps, ref: ForwardedRef<
crumb({ ...renderProps, className }),
)}
>
<Provider values={[[LinkContext, { variant: 'subtle' }]]}>{children}</Provider>
{composeRenderProps(props.children, (children) => (
<Provider values={[[LinkContext, { variant: 'subtle' }]]}>{children}</Provider>
))}
</AriaBreadcrumb>
);
};
Expand Down
16 changes: 8 additions & 8 deletions packages/data-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@
"dependencies": {
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/vars": "workspace:~",
"@react-aria/checkbox": "3.14.5",
"@react-aria/focus": "3.18.1",
"@react-aria/table": "3.15.1",
"@react-aria/utils": "3.25.1",
"@react-aria/visually-hidden": "3.8.14",
"@react-stately/table": "3.12.1",
"@react-stately/toggle": "3.7.6",
"@react-aria/checkbox": "3.14.6",
"@react-aria/focus": "3.18.2",
"@react-aria/table": "3.15.3",
"@react-aria/utils": "3.25.2",
"@react-aria/visually-hidden": "3.8.15",
"@react-stately/table": "3.12.2",
"@react-stately/toggle": "3.7.7",
"@react-types/grid": "3.2.8",
"@vanilla-extract/recipes": "^0.5.0",
"classix": "2.1.17"
},
"peerDependencies": {
"@react-stately/table": "3.12.1",
"@react-stately/table": "3.12.2",
"@vanilla-extract/css": "^1.14.0",
"react": "18.3.1",
"react-dom": "18.3.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/drawer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"@launchpad-ui/portal": "workspace:~",
"@launchpad-ui/progress": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/interactions": "3.22.1",
"@react-aria/overlays": "3.23.1",
"@react-aria/interactions": "3.22.2",
"@react-aria/overlays": "3.23.2",
"classix": "2.1.17",
"framer-motion": "11.3.0"
},
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.1",
"@react-aria/utils": "3.25.2",
"classix": "2.1.17"
},
"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 @@ -39,7 +39,7 @@
"@launchpad-ui/menu": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/visually-hidden": "3.8.14",
"@react-aria/visually-hidden": "3.8.15",
"classix": "2.1.17"
},
"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.1"
"@react-aria/focus": "3.18.2"
},
"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 @@ -37,11 +37,11 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/button": "3.9.7",
"@react-aria/i18n": "3.12.1",
"@react-aria/numberfield": "3.11.5",
"@react-aria/visually-hidden": "3.8.14",
"@react-stately/numberfield": "3.9.5",
"@react-aria/button": "3.9.8",
"@react-aria/i18n": "3.12.2",
"@react-aria/numberfield": "3.11.6",
"@react-aria/visually-hidden": "3.8.15",
"@react-stately/numberfield": "3.9.6",
"classix": "2.1.17"
},
"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.9.7",
"@react-aria/focus": "3.18.1",
"@react-aria/interactions": "3.22.1",
"@react-aria/utils": "3.25.1",
"@react-aria/button": "3.9.8",
"@react-aria/focus": "3.18.2",
"@react-aria/interactions": "3.22.2",
"@react-aria/utils": "3.25.2",
"@launchpad-ui/button": "workspace:~",
"@launchpad-ui/form": "workspace:~",
"@launchpad-ui/icons": "workspace:~",
Expand Down
2 changes: 1 addition & 1 deletion packages/markdown/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"@launchpad-ui/tokens": "workspace:~",
"classix": "2.1.17",
"isomorphic-dompurify": "^2.14.0",
"marked": "^14.0.0"
"marked": "^14.1.0"
},
"peerDependencies": {
"react": "18.3.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@radix-ui/react-slot": "1.1.0",
"@react-aria/focus": "3.18.1",
"@react-aria/separator": "3.4.1",
"@react-aria/focus": "3.18.2",
"@react-aria/separator": "3.4.2",
"classix": "2.1.17",
"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 @@ -38,8 +38,8 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/portal": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/interactions": "3.22.1",
"@react-aria/overlays": "3.23.1",
"@react-aria/interactions": "3.22.2",
"@react-aria/overlays": "3.23.2",
"classix": "2.1.17",
"framer-motion": "11.3.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/navigation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"@launchpad-ui/popover": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/utils": "3.25.1",
"@react-stately/list": "3.10.7",
"@react-aria/utils": "3.25.2",
"@react-stately/list": "3.10.8",
"@react-types/shared": "3.24.1",
"classix": "2.1.17",
"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 @@ -37,7 +37,7 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/progress": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/visually-hidden": "3.8.14",
"@react-aria/visually-hidden": "3.8.15",
"classix": "2.1.17"
},
"peerDependencies": {
Expand Down
44 changes: 22 additions & 22 deletions packages/select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,30 +39,30 @@
"@launchpad-ui/popover": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/button": "3.9.7",
"@react-aria/combobox": "3.10.1",
"@react-aria/interactions": "3.22.1",
"@react-aria/label": "3.7.10",
"@react-aria/listbox": "3.13.1",
"@react-aria/menu": "3.15.1",
"@react-aria/overlays": "3.23.1",
"@react-aria/utils": "3.25.1",
"@react-aria/focus": "3.18.1",
"@react-aria/gridlist": "3.9.1",
"@react-aria/select": "3.14.7",
"@react-aria/selection": "3.19.1",
"@react-aria/separator": "3.4.1",
"@react-aria/textfield": "3.14.7",
"@react-aria/visually-hidden": "3.8.14",
"@react-stately/combobox": "3.9.1",
"@react-aria/button": "3.9.8",
"@react-aria/combobox": "3.10.3",
"@react-aria/interactions": "3.22.2",
"@react-aria/label": "3.7.11",
"@react-aria/listbox": "3.13.3",
"@react-aria/menu": "3.15.3",
"@react-aria/overlays": "3.23.2",
"@react-aria/utils": "3.25.2",
"@react-aria/focus": "3.18.2",
"@react-aria/gridlist": "3.9.3",
"@react-aria/select": "3.14.9",
"@react-aria/selection": "3.19.3",
"@react-aria/separator": "3.4.2",
"@react-aria/textfield": "3.14.8",
"@react-aria/visually-hidden": "3.8.15",
"@react-stately/combobox": "3.9.2",
"@react-stately/collections": "3.10.9",
"@react-stately/data": "3.11.6",
"@react-stately/list": "3.10.7",
"@react-stately/menu": "3.8.1",
"@react-stately/overlays": "3.6.9",
"@react-stately/select": "3.6.6",
"@react-stately/selection": "3.16.1",
"@react-stately/utils": "3.10.2",
"@react-stately/list": "3.10.8",
"@react-stately/menu": "3.8.2",
"@react-stately/overlays": "3.6.10",
"@react-stately/select": "3.6.7",
"@react-stately/selection": "3.16.2",
"@react-stately/utils": "3.10.3",
"@react-types/button": "3.9.6",
"@react-types/combobox": "3.12.1",
"@react-types/overlays": "3.8.9",
Expand Down
4 changes: 2 additions & 2 deletions packages/tab-list/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
"test": "vitest run --coverage"
},
"dependencies": {
"@react-aria/tabs": "3.9.3",
"@react-stately/tabs": "3.6.8",
"@react-aria/tabs": "3.9.5",
"@react-stately/tabs": "3.6.9",
"@react-types/shared": "3.24.1",
"@react-types/tabs": "3.3.9",
"@launchpad-ui/tokens": "workspace:~",
Expand Down
12 changes: 6 additions & 6 deletions packages/tag/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
"@launchpad-ui/icons": "workspace:~",
"@launchpad-ui/tokens": "workspace:~",
"@launchpad-ui/tooltip": "workspace:~",
"@react-aria/focus": "3.18.1",
"@react-aria/interactions": "3.22.1",
"@react-aria/tag": "3.4.3",
"@react-aria/utils": "3.25.1",
"@react-stately/list": "3.10.7",
"@react-aria/selection": "3.19.1",
"@react-aria/focus": "3.18.2",
"@react-aria/interactions": "3.22.2",
"@react-aria/tag": "3.4.5",
"@react-aria/utils": "3.25.2",
"@react-stately/list": "3.10.8",
"@react-aria/selection": "3.19.3",
"@react-types/shared": "3.24.1",
"classix": "2.1.17"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/toggle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
},
"dependencies": {
"@launchpad-ui/tokens": "workspace:~",
"@react-aria/focus": "3.18.1",
"@react-aria/switch": "3.6.6",
"@react-stately/toggle": "3.7.6",
"@react-aria/focus": "3.18.2",
"@react-aria/switch": "3.6.7",
"@react-stately/toggle": "3.7.7",
"classix": "2.1.17"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/tokens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@
"devDependencies": {
"json-to-ts": "^2.1.0",
"style-dictionary": "^4.0.1",
"tsx": "^4.17.0"
"tsx": "^4.18.0"
}
}
Loading

0 comments on commit 3e49dc6

Please sign in to comment.