diff --git a/apps/docs/app/examples/table/custom-styles/page.tsx b/apps/docs/app/examples/table/custom-styles/page.tsx index cd02d809b3..29c7bcd7c4 100644 --- a/apps/docs/app/examples/table/custom-styles/page.tsx +++ b/apps/docs/app/examples/table/custom-styles/page.tsx @@ -360,9 +360,9 @@ export default function Page() { - View - Edit - Delete + View + Edit + Delete diff --git a/apps/docs/app/examples/table/use-case/page.tsx b/apps/docs/app/examples/table/use-case/page.tsx index c79650090a..f186179d81 100644 --- a/apps/docs/app/examples/table/use-case/page.tsx +++ b/apps/docs/app/examples/table/use-case/page.tsx @@ -352,9 +352,9 @@ export default function Page() { - View - Edit - Delete + View + Edit + Delete diff --git a/apps/docs/content/components/calendar/controlled-focused-value.raw.tsx b/apps/docs/content/components/calendar/controlled-focused-value.raw.tsx index 00f2666b84..8ac0d2f799 100644 --- a/apps/docs/content/components/calendar/controlled-focused-value.raw.tsx +++ b/apps/docs/content/components/calendar/controlled-focused-value.raw.tsx @@ -6,7 +6,7 @@ import {today, getLocalTimeZone} from "@internationalized/date"; export default function App() { let defaultDate = today(getLocalTimeZone()); - let [focusedDate, setFocusedDate] = React.useState(defaultDate); + let [focusedDate, setFocusedDate] = React.useState(defaultDate); return ( (parseDate("2024-03-07")); + let [value, setValue] = React.useState(parseDate("2024-03-07")); return ; } diff --git a/apps/docs/content/components/calendar/invalid-date.raw.tsx b/apps/docs/content/components/calendar/invalid-date.raw.tsx index d9276c52e6..6e682fbd22 100644 --- a/apps/docs/content/components/calendar/invalid-date.raw.tsx +++ b/apps/docs/content/components/calendar/invalid-date.raw.tsx @@ -6,9 +6,9 @@ import {today, getLocalTimeZone, isWeekend} from "@internationalized/date"; import {useLocale} from "@react-aria/i18n"; export default function App() { - let [date, setDate] = React.useState(today(getLocalTimeZone())); + let [date, setDate] = React.useState(today(getLocalTimeZone())); let {locale} = useLocale(); - let isInvalid = isWeekend(date, locale); + let isInvalid = isWeekend(date!, locale); return ( (defaultDate); + let [value, setValue] = React.useState(defaultDate); let {locale} = useLocale(); let now = today(getLocalTimeZone()); diff --git a/apps/docs/content/components/date-input/controlled.raw.tsx b/apps/docs/content/components/date-input/controlled.raw.tsx index bb4fae7fab..dde40ef0f0 100644 --- a/apps/docs/content/components/date-input/controlled.raw.tsx +++ b/apps/docs/content/components/date-input/controlled.raw.tsx @@ -4,7 +4,7 @@ import {DateValue, parseDate, getLocalTimeZone} from "@internationalized/date"; import {useDateFormatter} from "@react-aria/i18n"; export default function App() { - const [value, setValue] = React.useState(parseDate("2024-04-04")); + const [value, setValue] = React.useState(parseDate("2024-04-04")); let formatter = useDateFormatter({dateStyle: "full"}); diff --git a/apps/docs/content/components/date-input/granularity.raw.tsx b/apps/docs/content/components/date-input/granularity.raw.tsx index d186cfdb91..dfc2718dfa 100644 --- a/apps/docs/content/components/date-input/granularity.raw.tsx +++ b/apps/docs/content/components/date-input/granularity.raw.tsx @@ -3,7 +3,9 @@ import {DateInput} from "@nextui-org/react"; import {DateValue, now, parseAbsoluteToLocal} from "@internationalized/date"; export default function App() { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
diff --git a/apps/docs/content/components/date-input/international-calendar.raw.tsx b/apps/docs/content/components/date-input/international-calendar.raw.tsx index 5f088ad832..7a589f4086 100644 --- a/apps/docs/content/components/date-input/international-calendar.raw.tsx +++ b/apps/docs/content/components/date-input/international-calendar.raw.tsx @@ -4,7 +4,9 @@ import {DateValue, parseAbsoluteToLocal} from "@internationalized/date"; import {I18nProvider} from "@react-aria/i18n"; export default function App() { - const [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + const [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
diff --git a/apps/docs/content/components/date-picker/controlled.raw.tsx b/apps/docs/content/components/date-picker/controlled.raw.tsx index 389bfa5323..da10678035 100644 --- a/apps/docs/content/components/date-picker/controlled.raw.tsx +++ b/apps/docs/content/components/date-picker/controlled.raw.tsx @@ -4,7 +4,7 @@ import {DateValue, parseDate, getLocalTimeZone} from "@internationalized/date"; import {useDateFormatter} from "@react-aria/i18n"; export default function App() { - const [value, setValue] = React.useState(parseDate("2024-04-04")); + const [value, setValue] = React.useState(parseDate("2024-04-04")); let formatter = useDateFormatter({dateStyle: "full"}); diff --git a/apps/docs/content/components/date-picker/granularity.raw.tsx b/apps/docs/content/components/date-picker/granularity.raw.tsx index 47db9bc44e..f735659402 100644 --- a/apps/docs/content/components/date-picker/granularity.raw.tsx +++ b/apps/docs/content/components/date-picker/granularity.raw.tsx @@ -3,7 +3,9 @@ import {DatePicker} from "@nextui-org/react"; import {DateValue, now, parseAbsoluteToLocal} from "@internationalized/date"; export default function App() { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
diff --git a/apps/docs/content/components/date-picker/granularity.ts b/apps/docs/content/components/date-picker/granularity.ts index 96e6a6656c..e7da07261b 100644 --- a/apps/docs/content/components/date-picker/granularity.ts +++ b/apps/docs/content/components/date-picker/granularity.ts @@ -35,7 +35,7 @@ const AppTs = `import {DatePicker} from "@nextui-org/react"; import {DateValue, now, parseAbsoluteToLocal} from "@internationalized/date"; export default function App() { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); return (
diff --git a/apps/docs/content/components/date-picker/international-calendar.raw.tsx b/apps/docs/content/components/date-picker/international-calendar.raw.tsx index 8b9e570dd8..4fbe6708fd 100644 --- a/apps/docs/content/components/date-picker/international-calendar.raw.tsx +++ b/apps/docs/content/components/date-picker/international-calendar.raw.tsx @@ -4,7 +4,9 @@ import {DateValue, parseAbsoluteToLocal} from "@internationalized/date"; import {I18nProvider} from "@react-aria/i18n"; export default function App() { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
diff --git a/apps/docs/content/components/date-picker/preset.raw.tsx b/apps/docs/content/components/date-picker/preset.raw.tsx index de9dd853d6..5cc7bad93a 100644 --- a/apps/docs/content/components/date-picker/preset.raw.tsx +++ b/apps/docs/content/components/date-picker/preset.raw.tsx @@ -12,7 +12,7 @@ import {useLocale, useDateFormatter} from "@react-aria/i18n"; export default function App() { let defaultDate = today(getLocalTimeZone()); - const [value, setValue] = React.useState(defaultDate); + const [value, setValue] = React.useState(defaultDate); let {locale} = useLocale(); let formatter = useDateFormatter({dateStyle: "full"}); diff --git a/apps/docs/content/components/date-range-picker/controlled.raw.tsx b/apps/docs/content/components/date-range-picker/controlled.raw.tsx index 868b5440f2..0370419aeb 100644 --- a/apps/docs/content/components/date-range-picker/controlled.raw.tsx +++ b/apps/docs/content/components/date-range-picker/controlled.raw.tsx @@ -7,7 +7,7 @@ import {parseDate, getLocalTimeZone} from "@internationalized/date"; import {useDateFormatter} from "@react-aria/i18n"; export default function App() { - const [value, setValue] = React.useState>({ + const [value, setValue] = React.useState | null>({ start: parseDate("2024-04-01"), end: parseDate("2024-04-08"), }); diff --git a/apps/docs/content/components/date-range-picker/granularity.raw.tsx b/apps/docs/content/components/date-range-picker/granularity.raw.tsx index e1ec7fb919..673c685bb5 100644 --- a/apps/docs/content/components/date-range-picker/granularity.raw.tsx +++ b/apps/docs/content/components/date-range-picker/granularity.raw.tsx @@ -6,7 +6,7 @@ import {DateRangePicker} from "@nextui-org/react"; import {parseAbsoluteToLocal} from "@internationalized/date"; export default function App() { - let [date, setDate] = React.useState>({ + let [date, setDate] = React.useState | null>({ start: parseAbsoluteToLocal("2024-04-01T18:45:22Z"), end: parseAbsoluteToLocal("2024-04-08T19:15:22Z"), }); diff --git a/apps/docs/content/components/date-range-picker/international-calendar.raw.tsx b/apps/docs/content/components/date-range-picker/international-calendar.raw.tsx index c6eca23922..a9f8236a79 100644 --- a/apps/docs/content/components/date-range-picker/international-calendar.raw.tsx +++ b/apps/docs/content/components/date-range-picker/international-calendar.raw.tsx @@ -7,7 +7,7 @@ import {parseAbsoluteToLocal} from "@internationalized/date"; import {I18nProvider} from "@react-aria/i18n"; export default function App() { - let [date, setDate] = React.useState>({ + let [date, setDate] = React.useState | null>({ start: parseAbsoluteToLocal("2021-04-01T18:45:22Z"), end: parseAbsoluteToLocal("2021-04-14T19:15:22Z"), }); diff --git a/apps/docs/content/components/range-calendar/presets.raw.tsx b/apps/docs/content/components/range-calendar/presets.raw.tsx index 51aced67b2..605d7ed0a2 100644 --- a/apps/docs/content/components/range-calendar/presets.raw.tsx +++ b/apps/docs/content/components/range-calendar/presets.raw.tsx @@ -19,7 +19,7 @@ export default function App() { end: today(getLocalTimeZone()).add({weeks: 1, days: 3}), }); - let [focusedValue, setFocusedValue] = React.useState(today(getLocalTimeZone())); + let [focusedValue, setFocusedValue] = React.useState(today(getLocalTimeZone())); let {locale} = useLocale(); diff --git a/apps/docs/content/components/table/custom-styles.raw.jsx b/apps/docs/content/components/table/custom-styles.raw.jsx index f00049bb6f..783f29a68c 100644 --- a/apps/docs/content/components/table/custom-styles.raw.jsx +++ b/apps/docs/content/components/table/custom-styles.raw.jsx @@ -449,9 +449,9 @@ export default function App() { - View - Edit - Delete + View + Edit + Delete
diff --git a/apps/docs/content/components/table/custom-styles.raw.tsx b/apps/docs/content/components/table/custom-styles.raw.tsx index 4529846f56..eac1abfc4b 100644 --- a/apps/docs/content/components/table/custom-styles.raw.tsx +++ b/apps/docs/content/components/table/custom-styles.raw.tsx @@ -461,9 +461,9 @@ export default function App() { - View - Edit - Delete + View + Edit + Delete
diff --git a/apps/docs/content/components/table/use-case.raw.jsx b/apps/docs/content/components/table/use-case.raw.jsx index b1bbeaf73c..f4b318f7b9 100644 --- a/apps/docs/content/components/table/use-case.raw.jsx +++ b/apps/docs/content/components/table/use-case.raw.jsx @@ -441,9 +441,9 @@ export default function App() { - View - Edit - Delete + View + Edit + Delete
diff --git a/apps/docs/content/components/table/use-case.raw.tsx b/apps/docs/content/components/table/use-case.raw.tsx index e5c0113e35..a71b24a012 100644 --- a/apps/docs/content/components/table/use-case.raw.tsx +++ b/apps/docs/content/components/table/use-case.raw.tsx @@ -454,9 +454,9 @@ export default function App() { - View - Edit - Delete + View + Edit + Delete
diff --git a/apps/docs/content/components/time-input/controlled.raw.tsx b/apps/docs/content/components/time-input/controlled.raw.tsx index ebdaebaf7e..b5c18ef70d 100644 --- a/apps/docs/content/components/time-input/controlled.raw.tsx +++ b/apps/docs/content/components/time-input/controlled.raw.tsx @@ -6,7 +6,7 @@ import {parseAbsoluteToLocal, Time, ZonedDateTime} from "@internationalized/date import {useDateFormatter} from "@react-aria/i18n"; export default function App() { - let [value, setValue] = React.useState( + let [value, setValue] = React.useState( parseAbsoluteToLocal("2024-04-08T18:45:22Z"), ); diff --git a/apps/docs/content/components/time-input/granularity.raw.tsx b/apps/docs/content/components/time-input/granularity.raw.tsx index 963745608a..6b5e4895dd 100644 --- a/apps/docs/content/components/time-input/granularity.raw.tsx +++ b/apps/docs/content/components/time-input/granularity.raw.tsx @@ -5,7 +5,7 @@ import {TimeInput} from "@nextui-org/react"; import {parseAbsoluteToLocal} from "@internationalized/date"; export default function App() { - let [date, setDate] = React.useState( + let [date, setDate] = React.useState( parseAbsoluteToLocal("2021-04-07T18:45:22Z"), ); diff --git a/apps/docs/content/docs/components/date-input.mdx b/apps/docs/content/docs/components/date-input.mdx index c2616b2e54..5e41b89c06 100644 --- a/apps/docs/content/docs/components/date-input.mdx +++ b/apps/docs/content/docs/components/date-input.mdx @@ -104,9 +104,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -129,9 +129,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -153,9 +153,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -177,9 +177,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -200,9 +200,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -223,9 +223,9 @@ in multiple formats into `ZonedDateTime` objects. diff --git a/apps/docs/content/docs/components/date-picker.mdx b/apps/docs/content/docs/components/date-picker.mdx index d7d85b46bd..b0d09ff4c1 100644 --- a/apps/docs/content/docs/components/date-picker.mdx +++ b/apps/docs/content/docs/components/date-picker.mdx @@ -119,9 +119,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -144,9 +144,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -168,9 +168,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -192,9 +192,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -214,9 +214,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -246,9 +246,9 @@ in multiple formats into `ZonedDateTime` objects. diff --git a/apps/docs/content/docs/components/date-range-picker.mdx b/apps/docs/content/docs/components/date-range-picker.mdx index 8dbaddd5cd..c4abf9bc64 100644 --- a/apps/docs/content/docs/components/date-range-picker.mdx +++ b/apps/docs/content/docs/components/date-range-picker.mdx @@ -136,9 +136,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -161,9 +161,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -185,9 +185,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -209,9 +209,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -231,9 +231,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -256,9 +256,9 @@ in multiple formats into `ZonedDateTime` objects. @@ -276,9 +276,9 @@ in multiple formats into `ZonedDateTime` objects. diff --git a/apps/docs/package.json b/apps/docs/package.json index 0709addb79..946c30471e 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -20,7 +20,7 @@ "@emotion/is-prop-valid": "^1.3.1", "@iconify/icons-solar": "1.2.3", "@iconify/react": "5.0.2", - "@internationalized/date": "3.5.6", + "@internationalized/date": "3.6.0", "@mapbox/rehype-prism": "^0.6.0", "@nextui-org/aria-utils": "workspace:*", "@nextui-org/badge": "workspace:*", @@ -40,17 +40,17 @@ "@nextui-org/use-infinite-scroll": "workspace:*", "@nextui-org/use-is-mobile": "workspace:*", "@radix-ui/react-scroll-area": "^1.0.5", - "@react-aria/focus": "3.18.4", - "@react-aria/i18n": "3.12.3", - "@react-aria/interactions": "3.22.4", - "@react-aria/selection": "3.20.1", - "@react-aria/ssr": "3.9.6", + "@react-aria/focus": "3.19.0", + "@react-aria/i18n": "3.12.4", + "@react-aria/interactions": "3.22.5", + "@react-aria/selection": "3.21.0", + "@react-aria/ssr": "3.9.7", "@react-aria/utils": "3.26.0", - "@react-aria/virtualizer": "3.10.1", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/data": "3.11.4", - "@react-stately/layout": "3.13.9", - "@react-stately/tree": "3.8.1", + "@react-aria/virtualizer": "4.1.0", + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/data": "3.12.0", + "@react-stately/layout": "4.1.0", + "@react-stately/tree": "3.8.6", "@rehooks/local-storage": "^2.4.5", "@tanstack/react-virtual": "3.10.9", "canvas-confetti": "^1.9.2", @@ -104,9 +104,9 @@ "@docusaurus/utils": "2.0.0-beta.3", "@next/bundle-analyzer": "14.3.0-canary.43", "@next/env": "14.3.0-canary.43", - "@react-types/calendar": "3.4.10", - "@react-types/datepicker": "3.8.3", - "@react-types/shared": "3.25.0", + "@react-types/calendar": "3.5.0", + "@react-types/datepicker": "3.9.0", + "@react-types/shared": "3.26.0", "@tailwindcss/typography": "^0.5.9", "@types/canvas-confetti": "^1.4.2", "@types/marked": "^5.0.0", diff --git a/package.json b/package.json index 1ccb570fec..aedb782009 100644 --- a/package.json +++ b/package.json @@ -70,8 +70,8 @@ "@commitlint/cli": "^17.2.0", "@commitlint/config-conventional": "^17.2.0", "@react-bootstrap/babel-preset": "^2.1.0", - "@react-types/link": "3.5.7", - "@react-types/shared": "3.25.0", + "@react-types/link": "3.5.9", + "@react-types/shared": "3.26.0", "@storybook/react": "^8.4.5", "@swc/core": "^1.3.35", "@swc/jest": "^0.2.24", diff --git a/packages/components/accordion/CHANGELOG.md b/packages/components/accordion/CHANGELOG.md index a8101ac7b8..c878d49c08 100644 --- a/packages/components/accordion/CHANGELOG.md +++ b/packages/components/accordion/CHANGELOG.md @@ -1,5 +1,17 @@ # @nextui-org/accordion +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-accordion@2.2.2 + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/divider@2.2.4 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/accordion/package.json b/packages/components/accordion/package.json index 7f1ce5fe9b..0545cc6c3b 100644 --- a/packages/components/accordion/package.json +++ b/packages/components/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/accordion", - "version": "2.2.3", + "version": "2.2.4", "description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.", "keywords": [ "react", @@ -55,13 +55,13 @@ "@nextui-org/divider": "workspace:*", "@nextui-org/use-aria-accordion": "workspace:*", "@nextui-org/dom-animation": "workspace:*", - "@react-aria/interactions": "3.22.4", - "@react-aria/focus": "3.18.4", + "@react-aria/interactions": "3.22.5", + "@react-aria/focus": "3.19.0", "@react-aria/utils": "3.26.0", - "@react-stately/tree": "3.8.5", - "@react-aria/button": "3.10.1", - "@react-types/accordion": "3.0.0-alpha.24", - "@react-types/shared": "3.25.0" + "@react-stately/tree": "3.8.6", + "@react-aria/button": "3.11.0", + "@react-types/accordion": "3.0.0-alpha.25", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/alert/CHANGELOG.md b/packages/components/alert/CHANGELOG.md index 86e2fb8f84..5696ec9a54 100644 --- a/packages/components/alert/CHANGELOG.md +++ b/packages/components/alert/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/alert +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/button@2.2.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json index 11fc21bee6..e239b75d8a 100644 --- a/packages/components/alert/package.json +++ b/packages/components/alert/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/alert", - "version": "2.2.3", + "version": "2.2.4", "description": "Alerts are temporary notifications that provide concise feedback about an action or event.", "keywords": [ "alert" @@ -47,7 +47,7 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", - "@react-stately/utils": "3.10.4", + "@react-stately/utils": "3.10.5", "@react-aria/utils": "3.26.0", "@nextui-org/button": "workspace:*" }, diff --git a/packages/components/autocomplete/CHANGELOG.md b/packages/components/autocomplete/CHANGELOG.md index 783e66b546..a7b906af4f 100644 --- a/packages/components/autocomplete/CHANGELOG.md +++ b/packages/components/autocomplete/CHANGELOG.md @@ -1,5 +1,22 @@ # @nextui-org/autocomplete +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/listbox@2.3.4 + - @nextui-org/popover@2.3.4 + - @nextui-org/button@2.2.4 + - @nextui-org/input@2.4.4 + - @nextui-org/spinner@2.2.4 + - @nextui-org/scroll-shadow@2.3.3 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/autocomplete/package.json b/packages/components/autocomplete/package.json index 8c7d7db695..1182626e04 100644 --- a/packages/components/autocomplete/package.json +++ b/packages/components/autocomplete/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/autocomplete", - "version": "2.3.3", + "version": "2.3.4", "description": "An autocomplete combines a text input with a listbox, allowing users to filter a list of options to items matching a query.", "keywords": [ "autocomplete" @@ -54,15 +54,15 @@ "@nextui-org/spinner": "workspace:*", "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", - "@react-aria/combobox": "3.10.5", - "@react-aria/focus": "3.18.4", - "@react-aria/i18n": "3.12.3", - "@react-aria/interactions": "3.22.4", + "@react-aria/combobox": "3.11.0", + "@react-aria/focus": "3.19.0", + "@react-aria/i18n": "3.12.4", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/combobox": "3.10.0", - "@react-types/combobox": "3.13.0", - "@react-types/shared": "3.25.0" + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/combobox": "3.10.1", + "@react-types/combobox": "3.13.1", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/avatar": "workspace:*", @@ -71,7 +71,7 @@ "@nextui-org/system": "workspace:*", "@nextui-org/theme": "workspace:*", "@nextui-org/use-infinite-scroll": "workspace:*", - "@react-stately/data": "3.11.7", + "@react-stately/data": "3.12.0", "clean-package": "2.2.0", "framer-motion": "11.9.0", "react": "^18.0.0", diff --git a/packages/components/avatar/CHANGELOG.md b/packages/components/avatar/CHANGELOG.md index 8e3978941a..14b125c5c1 100644 --- a/packages/components/avatar/CHANGELOG.md +++ b/packages/components/avatar/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/avatar +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.3 ### Patch Changes diff --git a/packages/components/avatar/package.json b/packages/components/avatar/package.json index 30703c893c..34f2d245c1 100644 --- a/packages/components/avatar/package.json +++ b/packages/components/avatar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/avatar", - "version": "2.2.3", + "version": "2.2.4", "description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.", "keywords": [ "avatar" @@ -43,8 +43,8 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-image": "workspace:*", - "@react-aria/interactions": "3.22.4", - "@react-aria/focus": "3.18.4", + "@react-aria/interactions": "3.22.5", + "@react-aria/focus": "3.19.0", "@react-aria/utils": "3.26.0" }, "devDependencies": { diff --git a/packages/components/breadcrumbs/CHANGELOG.md b/packages/components/breadcrumbs/CHANGELOG.md index d7972d76bb..6a8d0ccde1 100644 --- a/packages/components/breadcrumbs/CHANGELOG.md +++ b/packages/components/breadcrumbs/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/breadcrumbs +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.3 ### Patch Changes diff --git a/packages/components/breadcrumbs/package.json b/packages/components/breadcrumbs/package.json index c30a5aef8b..66ecd9ae1a 100644 --- a/packages/components/breadcrumbs/package.json +++ b/packages/components/breadcrumbs/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/breadcrumbs", - "version": "2.2.3", + "version": "2.2.4", "description": "Breadcrumbs display a hierarchy of links to the current page or resource in an application.", "keywords": [ "breadcrumbs" @@ -43,11 +43,11 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/breadcrumbs": "3.5.18", + "@react-aria/focus": "3.19.0", + "@react-aria/breadcrumbs": "3.5.19", "@react-aria/utils": "3.26.0", - "@react-types/breadcrumbs": "3.7.8", - "@react-types/shared": "3.25.0" + "@react-types/breadcrumbs": "3.7.9", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/button/CHANGELOG.md b/packages/components/button/CHANGELOG.md index 80cba75bd4..bf668239d8 100644 --- a/packages/components/button/CHANGELOG.md +++ b/packages/components/button/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/button +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/spinner@2.2.4 + - @nextui-org/ripple@2.2.3 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/button/package.json b/packages/components/button/package.json index 87c7218693..727a64c028 100644 --- a/packages/components/button/package.json +++ b/packages/components/button/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/button", - "version": "2.2.3", + "version": "2.2.4", "description": "Buttons allow users to perform actions and choose with a single tap.", "keywords": [ "button" @@ -46,12 +46,12 @@ "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/ripple": "workspace:*", "@nextui-org/spinner": "workspace:*", - "@react-aria/button": "3.10.1", - "@react-aria/interactions": "3.22.4", + "@react-aria/button": "3.11.0", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-aria/focus": "3.18.4", - "@react-types/shared": "3.25.0", - "@react-types/button": "3.10.0" + "@react-aria/focus": "3.19.0", + "@react-types/shared": "3.26.0", + "@react-types/button": "3.10.1" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/calendar/CHANGELOG.md b/packages/components/calendar/CHANGELOG.md index d3b3d482b3..b526f9e667 100644 --- a/packages/components/calendar/CHANGELOG.md +++ b/packages/components/calendar/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/calendar +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/button@2.2.4 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/calendar/package.json b/packages/components/calendar/package.json index da5e19d2be..6249fd7a21 100644 --- a/packages/components/calendar/package.json +++ b/packages/components/calendar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/calendar", - "version": "2.2.3", + "version": "2.2.4", "description": "A calendar displays one or more date grids and allows users to select a single date.", "keywords": [ "calendar" @@ -48,18 +48,18 @@ "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/button": "workspace:*", "@nextui-org/dom-animation": "workspace:*", - "@internationalized/date": "3.5.6", - "@react-aria/calendar": "3.5.13", - "@react-aria/focus": "3.18.4", - "@react-aria/i18n": "3.12.3", - "@react-stately/calendar": "3.5.5", - "@react-types/button": "3.10.0", - "@react-aria/visually-hidden": "3.8.17", + "@internationalized/date": "3.6.0", + "@react-aria/calendar": "3.6.0", + "@react-aria/focus": "3.19.0", + "@react-aria/i18n": "3.12.4", + "@react-stately/calendar": "3.6.0", + "@react-types/button": "3.10.1", + "@react-aria/visually-hidden": "3.8.18", "@react-aria/utils": "3.26.0", - "@react-stately/utils": "3.10.4", - "@react-types/calendar": "3.4.10", - "@react-aria/interactions": "3.22.4", - "@react-types/shared": "3.25.0", + "@react-stately/utils": "3.10.5", + "@react-types/calendar": "3.5.0", + "@react-aria/interactions": "3.22.5", + "@react-types/shared": "3.26.0", "scroll-into-view-if-needed": "3.0.10", "@types/lodash.debounce": "^4.0.7" }, diff --git a/packages/components/calendar/stories/calendar.stories.tsx b/packages/components/calendar/stories/calendar.stories.tsx index cf8f410c76..b1cac5789f 100644 --- a/packages/components/calendar/stories/calendar.stories.tsx +++ b/packages/components/calendar/stories/calendar.stories.tsx @@ -55,7 +55,7 @@ const defaultProps = { const Template = (args: CalendarProps) => ; const ControlledTemplate = (args: CalendarProps) => { - let [value, setValue] = React.useState(parseDate("2024-03-07")); + let [value, setValue] = React.useState(parseDate("2024-03-07")); return (
@@ -110,7 +110,7 @@ const UnavailableDatesTemplate = (args: CalendarProps) => { const ControlledFocusedValueTemplate = (args: CalendarProps) => { let defaultDate = today(getLocalTimeZone()); - let [focusedDate, setFocusedDate] = React.useState(defaultDate); + let [focusedDate, setFocusedDate] = React.useState(defaultDate); return (
@@ -133,7 +133,7 @@ const ControlledFocusedValueTemplate = (args: CalendarProps) => { }; const InvalidDateTemplate = (args: CalendarProps) => { - let [date, setDate] = React.useState(today(getLocalTimeZone())); + let [date, setDate] = React.useState(today(getLocalTimeZone())); let {locale} = useLocale(); let isInvalid = isWeekend(date, locale); @@ -161,7 +161,7 @@ const InternationalCalendarsTemplate = (args: CalendarProps) => { const PresetsTemplate = (args: CalendarProps) => { let defaultDate = today(getLocalTimeZone()); - let [value, setValue] = React.useState(defaultDate); + let [value, setValue] = React.useState(defaultDate); let {locale} = useLocale(); let now = today(getLocalTimeZone()); diff --git a/packages/components/calendar/stories/range-calendar.stories.tsx b/packages/components/calendar/stories/range-calendar.stories.tsx index 44f3398531..7d12f0ce81 100644 --- a/packages/components/calendar/stories/range-calendar.stories.tsx +++ b/packages/components/calendar/stories/range-calendar.stories.tsx @@ -141,7 +141,7 @@ const ControlledFocusedValueTemplate = (args: RangeCalendarProps) => { }; const InvalidDatesTemplate = (args: RangeCalendarProps) => { - let [date, setDate] = React.useState>({ + let [date, setDate] = React.useState | null>({ start: today(getLocalTimeZone()), end: today(getLocalTimeZone()).add({weeks: 1}), }); @@ -172,12 +172,12 @@ const InternationalCalendarsTemplate = (args: RangeCalendarProps) => { }; const PresetsTemplate = (args: RangeCalendarProps) => { - let [value, setValue] = React.useState>({ + let [value, setValue] = React.useState | null>({ start: today(getLocalTimeZone()), end: today(getLocalTimeZone()).add({weeks: 1, days: 3}), }); - let [focusedValue, setFocusedValue] = React.useState(today(getLocalTimeZone())); + let [focusedValue, setFocusedValue] = React.useState(today(getLocalTimeZone())); let {locale} = useLocale(); diff --git a/packages/components/card/CHANGELOG.md b/packages/components/card/CHANGELOG.md index 7eea239cfd..50214ebaaf 100644 --- a/packages/components/card/CHANGELOG.md +++ b/packages/components/card/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/card +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/ripple@2.2.3 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/card/package.json b/packages/components/card/package.json index cccd3791a0..585f47ffc5 100644 --- a/packages/components/card/package.json +++ b/packages/components/card/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/card", - "version": "2.2.3", + "version": "2.2.4", "description": "Card is a container for text, photos, and actions in the context of a single subject.", "keywords": [ "card" @@ -45,11 +45,11 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/ripple": "workspace:*", - "@react-aria/focus": "3.18.4", + "@react-aria/focus": "3.19.0", "@react-aria/utils": "3.26.0", - "@react-aria/interactions": "3.22.4", - "@react-aria/button": "3.10.1", - "@react-types/shared": "3.25.0" + "@react-aria/interactions": "3.22.5", + "@react-aria/button": "3.11.0", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/checkbox/CHANGELOG.md b/packages/components/checkbox/CHANGELOG.md index f6b84eb43d..b82efedcec 100644 --- a/packages/components/checkbox/CHANGELOG.md +++ b/packages/components/checkbox/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/checkbox +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/checkbox/package.json b/packages/components/checkbox/package.json index f136387c14..f778fd0e0e 100644 --- a/packages/components/checkbox/package.json +++ b/packages/components/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/checkbox", - "version": "2.3.3", + "version": "2.3.4", "description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.", "keywords": [ "checkbox" @@ -45,15 +45,15 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/use-callback-ref": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", - "@react-aria/checkbox": "3.14.8", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", + "@react-aria/checkbox": "3.15.0", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/checkbox": "3.6.9", - "@react-stately/toggle": "3.7.8", - "@react-types/checkbox": "3.8.4", - "@react-types/shared": "3.25.0" + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/checkbox": "3.6.10", + "@react-stately/toggle": "3.8.0", + "@react-types/checkbox": "3.9.0", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/chip": "workspace:*", diff --git a/packages/components/chip/CHANGELOG.md b/packages/components/chip/CHANGELOG.md index 40c43846fa..f85733f352 100644 --- a/packages/components/chip/CHANGELOG.md +++ b/packages/components/chip/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/chip +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.3 ### Patch Changes diff --git a/packages/components/chip/package.json b/packages/components/chip/package.json index ef6c483abf..e43e08b89b 100644 --- a/packages/components/chip/package.json +++ b/packages/components/chip/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/chip", - "version": "2.2.3", + "version": "2.2.4", "description": "Chips help people enter information, make selections, filter content, or trigger actions.", "keywords": [ "chip" @@ -43,10 +43,10 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-types/checkbox": "3.8.4" + "@react-types/checkbox": "3.9.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/code/CHANGELOG.md b/packages/components/code/CHANGELOG.md index 8c0fbef8db..a8acc3e874 100644 --- a/packages/components/code/CHANGELOG.md +++ b/packages/components/code/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/code +## 2.2.4 + +### Patch Changes + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/system-rsc@2.3.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/code/package.json b/packages/components/code/package.json index abc24ac1d9..b3681b9a45 100644 --- a/packages/components/code/package.json +++ b/packages/components/code/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/code", - "version": "2.2.3", + "version": "2.2.4", "description": "Code is a component used to display inline code.", "keywords": [ "code" diff --git a/packages/components/date-input/CHANGELOG.md b/packages/components/date-input/CHANGELOG.md index 52fc614c2a..c9592e74f6 100644 --- a/packages/components/date-input/CHANGELOG.md +++ b/packages/components/date-input/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/date-input +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/date-input/__tests__/date-input.test.tsx b/packages/components/date-input/__tests__/date-input.test.tsx index fc6e34fee3..b143e991ed 100644 --- a/packages/components/date-input/__tests__/date-input.test.tsx +++ b/packages/components/date-input/__tests__/date-input.test.tsx @@ -294,7 +294,7 @@ describe("DateInput", () => { it("supports form reset", async () => { function Test() { - let [value, setValue] = React.useState(new CalendarDate(2020, 2, 3)); + let [value, setValue] = React.useState(new CalendarDate(2020, 2, 3)); return (
diff --git a/packages/components/date-input/package.json b/packages/components/date-input/package.json index bb35aa3ce0..3925824465 100644 --- a/packages/components/date-input/package.json +++ b/packages/components/date-input/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/date-input", - "version": "2.3.3", + "version": "2.3.4", "description": "A date input allows users to enter and edit date and time values using a keyboard.", "keywords": [ "date-field" @@ -43,12 +43,12 @@ "@nextui-org/form": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-utils": "workspace:*", - "@internationalized/date": "3.5.6", - "@react-aria/datepicker": "3.11.4", - "@react-aria/i18n": "3.12.3", - "@react-stately/datepicker": "3.10.3", - "@react-types/datepicker": "3.8.3", - "@react-types/shared": "3.25.0", + "@internationalized/date": "3.6.0", + "@react-aria/datepicker": "3.12.0", + "@react-aria/i18n": "3.12.4", + "@react-stately/datepicker": "3.11.0", + "@react-types/datepicker": "3.9.0", + "@react-types/shared": "3.26.0", "@react-aria/utils": "3.26.0" }, "devDependencies": { diff --git a/packages/components/date-input/stories/date-input.stories.tsx b/packages/components/date-input/stories/date-input.stories.tsx index af0cc936f5..0439046786 100644 --- a/packages/components/date-input/stories/date-input.stories.tsx +++ b/packages/components/date-input/stories/date-input.stories.tsx @@ -98,7 +98,7 @@ const LabelPlacementTemplate = (args: DateInputProps) => ( ); const ControlledTemplate = (args: DateInputProps) => { - const [value, setValue] = React.useState(parseDate("2024-04-04")); + const [value, setValue] = React.useState(parseDate("2024-04-04")); let formatter = useDateFormatter({dateStyle: "full"}); @@ -131,7 +131,9 @@ const TimeZonesTemplate = (args: DateInputProps) => ( ); const GranularityTemplate = (args: DateInputProps) => { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
@@ -155,7 +157,9 @@ const GranularityTemplate = (args: DateInputProps) => { }; const InternationalCalendarsTemplate = (args: DateInputProps) => { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
diff --git a/packages/components/date-picker/CHANGELOG.md b/packages/components/date-picker/CHANGELOG.md index 899836829a..0b7987ab0f 100644 --- a/packages/components/date-picker/CHANGELOG.md +++ b/packages/components/date-picker/CHANGELOG.md @@ -1,5 +1,19 @@ # @nextui-org/date-picker +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + - @nextui-org/date-input@2.3.4 + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/calendar@2.2.4 + - @nextui-org/popover@2.3.4 + - @nextui-org/button@2.2.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/date-picker/package.json b/packages/components/date-picker/package.json index 5f81bdcfa8..cfb8ce97e2 100644 --- a/packages/components/date-picker/package.json +++ b/packages/components/date-picker/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/date-picker", - "version": "2.3.3", + "version": "2.3.4", "description": "A date picker combines a DateInput and a Calendar popover to allow users to enter or select a date and time value.", "keywords": [ "date-picker" @@ -41,7 +41,7 @@ "react-dom": ">=18 || >=19.0.0-rc.0" }, "dependencies": { - "@internationalized/date": "3.5.6", + "@internationalized/date": "3.6.0", "@nextui-org/aria-utils": "workspace:*", "@nextui-org/button": "workspace:*", "@nextui-org/calendar": "workspace:*", @@ -51,14 +51,14 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", - "@react-aria/datepicker": "3.11.4", - "@react-aria/i18n": "3.12.3", + "@react-aria/datepicker": "3.12.0", + "@react-aria/i18n": "3.12.4", "@react-aria/utils": "3.26.0", - "@react-stately/datepicker": "3.10.3", - "@react-stately/overlays": "3.6.11", - "@react-stately/utils": "3.10.4", - "@react-types/datepicker": "3.8.3", - "@react-types/shared": "3.25.0" + "@react-stately/datepicker": "3.11.0", + "@react-stately/overlays": "3.6.12", + "@react-stately/utils": "3.10.5", + "@react-types/datepicker": "3.9.0", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/radio": "workspace:*", diff --git a/packages/components/date-picker/src/use-date-picker.ts b/packages/components/date-picker/src/use-date-picker.ts index 93ba648e24..638544a62d 100644 --- a/packages/components/date-picker/src/use-date-picker.ts +++ b/packages/components/date-picker/src/use-date-picker.ts @@ -1,5 +1,5 @@ import type {DateValue} from "@internationalized/date"; -import type {DateInputProps, TimeInputProps} from "@nextui-org/date-input"; +import type {DateInputProps} from "@nextui-org/date-input"; import type {DatePickerState} from "@react-stately/datepicker"; import type {ButtonProps} from "@nextui-org/button"; import type {CalendarProps} from "@nextui-org/calendar"; @@ -163,7 +163,7 @@ export function useDatePicker({ } as DateInputProps; }; - const getTimeInputProps = (): TimeInputProps => { + const getTimeInputProps = () => { if (!showTimeField) return {}; return { diff --git a/packages/components/date-picker/stories/date-picker.stories.tsx b/packages/components/date-picker/stories/date-picker.stories.tsx index 49a72bb301..ca697a5cd6 100644 --- a/packages/components/date-picker/stories/date-picker.stories.tsx +++ b/packages/components/date-picker/stories/date-picker.stories.tsx @@ -114,7 +114,7 @@ const LabelPlacementTemplate = (args: DatePickerProps) => ( ); const ControlledTemplate = (args: DatePickerProps) => { - const [value, setValue] = React.useState(parseDate("2024-04-04")); + const [value, setValue] = React.useState(parseDate("2024-04-04")); let formatter = useDateFormatter({dateStyle: "full"}); @@ -149,7 +149,9 @@ const TimeZonesTemplate = (args: DatePickerProps) => ( ); const GranularityTemplate = (args: DatePickerProps) => { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
@@ -182,7 +184,9 @@ const GranularityTemplate = (args: DatePickerProps) => { }; const InternationalCalendarsTemplate = (args: DatePickerProps) => { - let [date, setDate] = React.useState(parseAbsoluteToLocal("2021-04-07T18:45:22Z")); + let [date, setDate] = React.useState( + parseAbsoluteToLocal("2021-04-07T18:45:22Z"), + ); return (
@@ -202,7 +206,7 @@ const InternationalCalendarsTemplate = (args: DatePickerProps) => { const PresetsTemplate = (args: DatePickerProps) => { let defaultDate = today(getLocalTimeZone()); - const [value, setValue] = React.useState(defaultDate); + const [value, setValue] = React.useState(defaultDate); let {locale} = useLocale(); let formatter = useDateFormatter({dateStyle: "full"}); diff --git a/packages/components/date-picker/stories/date-range-picker.stories.tsx b/packages/components/date-picker/stories/date-range-picker.stories.tsx index 1dcac5ac4d..cd573ad0d1 100644 --- a/packages/components/date-picker/stories/date-range-picker.stories.tsx +++ b/packages/components/date-picker/stories/date-range-picker.stories.tsx @@ -114,7 +114,7 @@ const LabelPlacementTemplate = (args: DateRangePickerProps) => ( ); const ControlledTemplate = (args: DateRangePickerProps) => { - const [value, setValue] = React.useState>({ + const [value, setValue] = React.useState | null>({ start: parseDate("2024-04-01"), end: parseDate("2024-04-08"), }); @@ -177,7 +177,7 @@ const TimeZonesTemplate = (args: DateRangePickerProps) => ( ); const GranularityTemplate = (args: DateRangePickerProps) => { - let [date, setDate] = React.useState>({ + let [date, setDate] = React.useState | null>({ start: parseAbsoluteToLocal("2024-04-01T18:45:22Z"), end: parseAbsoluteToLocal("2024-04-08T19:15:22Z"), }); @@ -205,7 +205,7 @@ const GranularityTemplate = (args: DateRangePickerProps) => { }; const InternationalCalendarsTemplate = (args: DateRangePickerProps) => { - let [date, setDate] = React.useState>({ + let [date, setDate] = React.useState | null>({ start: parseAbsoluteToLocal("2021-04-01T18:45:22Z"), end: parseAbsoluteToLocal("2021-04-14T19:15:22Z"), }); @@ -271,7 +271,7 @@ const PresetsTemplate = (args: DateRangePickerProps) => { end: today(getLocalTimeZone()).add({days: 7}), }; - const [value, setValue] = React.useState>(defaultDate); + const [value, setValue] = React.useState | null>(defaultDate); let {locale} = useLocale(); let formatter = useDateFormatter({dateStyle: "full"}); diff --git a/packages/components/divider/CHANGELOG.md b/packages/components/divider/CHANGELOG.md index 0c588f13c6..29deda6884 100644 --- a/packages/components/divider/CHANGELOG.md +++ b/packages/components/divider/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/divider +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/system-rsc@2.3.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/divider/package.json b/packages/components/divider/package.json index 31680cd352..969a18b94b 100644 --- a/packages/components/divider/package.json +++ b/packages/components/divider/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/divider", - "version": "2.2.3", + "version": "2.2.4", "description": ". A separator is a visual divider between two groups of content", "keywords": [ "divider" @@ -42,7 +42,7 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-rsc-utils": "workspace:*", "@nextui-org/system-rsc": "workspace:*", - "@react-types/shared": "3.25.0" + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/drawer/CHANGELOG.md b/packages/components/drawer/CHANGELOG.md index d25799c5ff..49b80f2522 100644 --- a/packages/components/drawer/CHANGELOG.md +++ b/packages/components/drawer/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/drawer +## 2.2.4 + +### Patch Changes + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/modal@2.2.4 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/drawer/package.json b/packages/components/drawer/package.json index 5f4e4a84d9..185369c4c2 100644 --- a/packages/components/drawer/package.json +++ b/packages/components/drawer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/drawer", - "version": "2.2.3", + "version": "2.2.4", "description": "Used to render a content that slides in from the side of the screen.", "keywords": [ "drawer" diff --git a/packages/components/dropdown/CHANGELOG.md b/packages/components/dropdown/CHANGELOG.md index be0c63a1c6..eae239d45b 100644 --- a/packages/components/dropdown/CHANGELOG.md +++ b/packages/components/dropdown/CHANGELOG.md @@ -1,5 +1,18 @@ # @nextui-org/dropdown +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- [#4278](https://github.com/nextui-org/nextui/pull/4278) [`26b33a5`](https://github.com/nextui-org/nextui/commit/26b33a51f0ae9d0bb1146277a8b61b839aa52393) Thanks [@wingkwong](https://github.com/wingkwong)! - fix unnecessary ref in dropdown (#4245) + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/popover@2.3.4 + - @nextui-org/menu@2.2.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/dropdown/package.json b/packages/components/dropdown/package.json index 530a37d8e1..de9882bb41 100644 --- a/packages/components/dropdown/package.json +++ b/packages/components/dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/dropdown", - "version": "2.3.3", + "version": "2.3.4", "description": "A dropdown displays a list of actions or options that a user can choose.", "keywords": [ "dropdown" @@ -46,11 +46,11 @@ "@nextui-org/popover": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-utils": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/menu": "3.15.5", + "@react-aria/focus": "3.19.0", + "@react-aria/menu": "3.16.0", "@react-aria/utils": "3.26.0", - "@react-stately/menu": "3.8.3", - "@react-types/menu": "3.9.12" + "@react-stately/menu": "3.9.0", + "@react-types/menu": "3.9.13" }, "devDependencies": { "@nextui-org/avatar": "workspace:*", diff --git a/packages/components/dropdown/src/use-dropdown.ts b/packages/components/dropdown/src/use-dropdown.ts index fa78241ab3..4deb06b42b 100644 --- a/packages/components/dropdown/src/use-dropdown.ts +++ b/packages/components/dropdown/src/use-dropdown.ts @@ -51,7 +51,7 @@ const getMenuItem = (props: Partial> | undefined, if (mergedChildren && mergedChildren.length) { const item = ((mergedChildren as CollectionElement[]).find((item) => { - if (item.key === key) { + if (item && item.key === key) { return item; } }) || {}) as {props: MenuProps}; @@ -164,18 +164,12 @@ export function useDropdown(props: UseDropdownProps): UseDropdownReturn { }; }; - const getMenuTriggerProps: PropGetter = ( - originalProps = {}, - _ref: Ref | null | undefined = null, - ) => { + const getMenuTriggerProps: PropGetter = (originalProps = {}) => { // These props are not needed for the menu trigger since it is handled by the popover trigger. // eslint-disable-next-line @typescript-eslint/no-unused-vars const {onPress, onPressStart, ...otherMenuTriggerProps} = menuTriggerProps; - return { - ...mergeProps(otherMenuTriggerProps, {isDisabled}, originalProps), - ref: mergeRefs(_ref, triggerRef), - }; + return mergeProps(otherMenuTriggerProps, {isDisabled}, originalProps); }; const getMenuProps = ( @@ -225,5 +219,5 @@ export type UseDropdownReturn = { disableAnimation: boolean; getPopoverProps: PropGetter; getMenuProps: (props?: Partial>, ref?: Ref) => MenuProps; - getMenuTriggerProps: (props?: any, ref?: Ref) => any; + getMenuTriggerProps: (props?: any) => any; }; diff --git a/packages/components/form/CHANGELOG.md b/packages/components/form/CHANGELOG.md index 6a32be1a56..4564469973 100644 --- a/packages/components/form/CHANGELOG.md +++ b/packages/components/form/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/form +## 2.1.4 + +### Patch Changes + +- [#4279](https://github.com/nextui-org/nextui/pull/4279) [`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Add ref support to Form component + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3), [`455556e`](https://github.com/nextui-org/nextui/commit/455556e14278dd933b4acd1a136ea29879b49545)]: + - @nextui-org/system@2.4.4 + ## 2.1.3 ### Patch Changes diff --git a/packages/components/form/__tests__/form.test.tsx b/packages/components/form/__tests__/form.test.tsx new file mode 100644 index 0000000000..d98aa2de09 --- /dev/null +++ b/packages/components/form/__tests__/form.test.tsx @@ -0,0 +1,19 @@ +import * as React from "react"; +import {render} from "@testing-library/react"; + +import {Form} from "../src"; + +describe("Form", () => { + it("should render correctly", () => { + const wrapper = render(); + + expect(() => wrapper.unmount()).not.toThrow(); + }); + + it("ref should be forwarded", () => { + const ref = React.createRef(); + + render(); + expect(ref.current).not.toBeNull(); + }); +}); diff --git a/packages/components/form/package.json b/packages/components/form/package.json index 48aaa68201..b86522853e 100644 --- a/packages/components/form/package.json +++ b/packages/components/form/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/form", - "version": "2.1.3", + "version": "2.1.4", "description": "A form is a group of inputs that allows users submit data to a server and supports field validation errors.", "keywords": [ "form" @@ -45,9 +45,9 @@ "@nextui-org/system": "workspace:*", "@nextui-org/theme": "workspace:*", "@react-aria/utils": "3.26.0", - "@react-types/shared": "3.25.0", - "@react-stately/form": "3.0.6", - "@react-types/form": "^3.7.8" + "@react-types/shared": "3.26.0", + "@react-stately/form": "3.1.0", + "@react-types/form": "3.7.8" }, "devDependencies": { "@nextui-org/button": "workspace:*", diff --git a/packages/components/form/src/form.tsx b/packages/components/form/src/form.tsx index f5bae8a497..bfa900f157 100644 --- a/packages/components/form/src/form.tsx +++ b/packages/components/form/src/form.tsx @@ -1,11 +1,14 @@ +import type {ForwardedRef} from "react"; + import {useProviderContext} from "@nextui-org/system"; +import {forwardRef} from "react"; import {Form as AriaForm, FormProps} from "./base-form"; -export const Form = (props: FormProps) => { +export const Form = forwardRef(function Form(props: FormProps, ref: ForwardedRef) { const globalContext = useProviderContext(); const validationBehavior = props.validationBehavior ?? globalContext?.validationBehavior ?? "aria"; - return ; -}; + return ; +}); diff --git a/packages/components/input-otp/CHANGELOG.md b/packages/components/input-otp/CHANGELOG.md index 3ed96e0f29..966c3fa520 100644 --- a/packages/components/input-otp/CHANGELOG.md +++ b/packages/components/input-otp/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/input-otp +## 2.1.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + ## 2.1.3 ### Patch Changes diff --git a/packages/components/input-otp/package.json b/packages/components/input-otp/package.json index 445d63d252..ed609b4fd5 100644 --- a/packages/components/input-otp/package.json +++ b/packages/components/input-otp/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/input-otp", - "version": "2.1.3", + "version": "2.1.4", "description": "", "keywords": [ "input-otp" @@ -43,13 +43,13 @@ "@nextui-org/form": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/utils": "3.24.1", - "@react-aria/form": "3.0.8", - "@react-stately/utils": "3.10.1", - "@react-stately/form": "3.0.5", - "@react-types/textfield": "3.9.3", + "@react-aria/utils": "3.26.0", + "@react-aria/form": "3.0.11", + "@react-stately/utils": "3.10.5", + "@react-stately/form": "3.1.0", + "@react-types/textfield": "3.10.0", "input-otp": "1.4.1", - "@react-aria/focus": "3.18.4" + "@react-aria/focus": "3.19.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/input/CHANGELOG.md b/packages/components/input/CHANGELOG.md index df24a7a797..89e795327c 100644 --- a/packages/components/input/CHANGELOG.md +++ b/packages/components/input/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/input +## 2.4.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + ## 2.4.3 ### Patch Changes diff --git a/packages/components/input/package.json b/packages/components/input/package.json index 16c946de77..ab84b9892f 100644 --- a/packages/components/input/package.json +++ b/packages/components/input/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/input", - "version": "2.4.3", + "version": "2.4.4", "description": "The input component is designed for capturing user input within a text field.", "keywords": [ "input" @@ -45,13 +45,13 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/textfield": "3.14.10", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/textfield": "3.15.0", "@react-aria/utils": "3.26.0", - "@react-stately/utils": "3.10.4", - "@react-types/shared": "3.25.0", - "@react-types/textfield": "3.9.7", + "@react-stately/utils": "3.10.5", + "@react-types/shared": "3.26.0", + "@react-types/textfield": "3.10.0", "react-textarea-autosize": "^8.5.3" }, "devDependencies": { diff --git a/packages/components/input/src/use-input.ts b/packages/components/input/src/use-input.ts index 7d5e751d46..d8cae3c3d7 100644 --- a/packages/components/input/src/use-input.ts +++ b/packages/components/input/src/use-input.ts @@ -178,7 +178,7 @@ export function useInput( { ...originalProps, validationBehavior, diff --git a/packages/components/kbd/CHANGELOG.md b/packages/components/kbd/CHANGELOG.md index f490dde5f4..d6628679b9 100644 --- a/packages/components/kbd/CHANGELOG.md +++ b/packages/components/kbd/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/kbd +## 2.2.4 + +### Patch Changes + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/system-rsc@2.3.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/kbd/package.json b/packages/components/kbd/package.json index 476580f3c7..febbd03f4a 100644 --- a/packages/components/kbd/package.json +++ b/packages/components/kbd/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/kbd", - "version": "2.2.3", + "version": "2.2.4", "description": "The keyboard key components indicates which key or set of keys used to execute a specificv action", "keywords": [ "kbd" diff --git a/packages/components/link/CHANGELOG.md b/packages/components/link/CHANGELOG.md index 49ff6f869d..6aaa8c8650 100644 --- a/packages/components/link/CHANGELOG.md +++ b/packages/components/link/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/link +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-link@2.2.2 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/link/package.json b/packages/components/link/package.json index f6148befc7..39db730e3b 100644 --- a/packages/components/link/package.json +++ b/packages/components/link/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/link", - "version": "2.2.3", + "version": "2.2.4", "description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an <a>", "keywords": [ "link" @@ -44,10 +44,10 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-aria-link": "workspace:*", - "@react-aria/link": "3.7.6", + "@react-aria/link": "3.7.7", "@react-aria/utils": "3.26.0", - "@react-aria/focus": "3.18.4", - "@react-types/link": "3.5.8" + "@react-aria/focus": "3.19.0", + "@react-types/link": "3.5.9" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/listbox/CHANGELOG.md b/packages/components/listbox/CHANGELOG.md index fc3c688432..edb03cf742 100644 --- a/packages/components/listbox/CHANGELOG.md +++ b/packages/components/listbox/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/listbox +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/use-is-mobile@2.2.2 + - @nextui-org/divider@2.2.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/listbox/package.json b/packages/components/listbox/package.json index 6e3a677032..2c9e17300c 100644 --- a/packages/components/listbox/package.json +++ b/packages/components/listbox/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/listbox", - "version": "2.3.3", + "version": "2.3.4", "description": "A listbox displays a list of options and allows a user to select one or more of them.", "keywords": [ "listbox" @@ -47,12 +47,12 @@ "@nextui-org/use-is-mobile": "workspace:*", "@tanstack/react-virtual": "3.10.9", "@react-aria/utils": "3.26.0", - "@react-aria/listbox": "3.13.5", - "@react-stately/list": "3.11.0", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-types/menu": "3.9.12", - "@react-types/shared": "3.25.0" + "@react-aria/listbox": "3.13.6", + "@react-stately/list": "3.11.1", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-types/menu": "3.9.13", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/avatar": "workspace:*", diff --git a/packages/components/menu/CHANGELOG.md b/packages/components/menu/CHANGELOG.md index 3d2f7fde6a..51a3af5b93 100644 --- a/packages/components/menu/CHANGELOG.md +++ b/packages/components/menu/CHANGELOG.md @@ -1,5 +1,17 @@ # @nextui-org/menu +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/use-aria-menu@2.2.2 + - @nextui-org/use-is-mobile@2.2.2 + - @nextui-org/divider@2.2.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/menu/package.json b/packages/components/menu/package.json index cb552b9451..fc37c47eab 100644 --- a/packages/components/menu/package.json +++ b/packages/components/menu/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/menu", - "version": "2.2.3", + "version": "2.2.4", "description": "A menu displays a list of options and allows a user to select one or more of them.", "keywords": [ "menu" @@ -46,14 +46,14 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-aria-menu": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/menu": "3.15.5", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/menu": "3.16.0", "@react-aria/utils": "3.26.0", - "@react-stately/menu": "3.8.3", - "@react-stately/tree": "3.8.5", - "@react-types/menu": "3.9.12", - "@react-types/shared": "3.25.0" + "@react-stately/menu": "3.9.0", + "@react-stately/tree": "3.8.6", + "@react-types/menu": "3.9.13", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/modal/CHANGELOG.md b/packages/components/modal/CHANGELOG.md index c4d5755f31..ec1f268ef5 100644 --- a/packages/components/modal/CHANGELOG.md +++ b/packages/components/modal/CHANGELOG.md @@ -1,5 +1,18 @@ # @nextui-org/modal +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-modal-overlay@2.2.2 + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/use-disclosure@2.2.2 + - @nextui-org/use-draggable@2.1.2 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/modal/package.json b/packages/components/modal/package.json index ddbccbcdf3..bee8a59b4a 100644 --- a/packages/components/modal/package.json +++ b/packages/components/modal/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/modal", - "version": "2.2.3", + "version": "2.2.4", "description": "Displays a dialog with a custom content that requires attention or provides additional information.", "keywords": [ "modal" @@ -50,13 +50,13 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/use-aria-modal-overlay": "workspace:*", "@nextui-org/dom-animation": "workspace:*", - "@react-aria/dialog": "3.5.19", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/overlays": "3.23.4", + "@react-aria/dialog": "3.5.20", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/overlays": "3.24.0", "@react-aria/utils": "3.26.0", - "@react-stately/overlays": "3.6.11", - "@react-types/overlays": "3.8.10" + "@react-stately/overlays": "3.6.12", + "@react-types/overlays": "3.8.11" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/navbar/CHANGELOG.md b/packages/components/navbar/CHANGELOG.md index 34287b3b83..b8dfddf2bc 100644 --- a/packages/components/navbar/CHANGELOG.md +++ b/packages/components/navbar/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/navbar +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-toggle-button@2.2.2 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/navbar/package.json b/packages/components/navbar/package.json index 304040ec46..6cc43ec278 100644 --- a/packages/components/navbar/package.json +++ b/packages/components/navbar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/navbar", - "version": "2.2.3", + "version": "2.2.4", "description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.", "keywords": [ "navbar" @@ -47,12 +47,12 @@ "@nextui-org/use-aria-toggle-button": "workspace:*", "@nextui-org/use-scroll-position": "workspace:*", "@nextui-org/dom-animation": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/overlays": "3.23.4", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/overlays": "3.24.0", "@react-aria/utils": "3.26.0", - "@react-stately/toggle": "3.7.8", - "@react-stately/utils": "3.10.4" + "@react-stately/toggle": "3.8.0", + "@react-stately/utils": "3.10.5" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/pagination/CHANGELOG.md b/packages/components/pagination/CHANGELOG.md index b7ede9fb3a..580dd4f295 100644 --- a/packages/components/pagination/CHANGELOG.md +++ b/packages/components/pagination/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/pagination +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-intersection-observer@2.2.2 + - @nextui-org/use-pagination@2.2.2 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/pagination/package.json b/packages/components/pagination/package.json index 947b311017..4286358707 100644 --- a/packages/components/pagination/package.json +++ b/packages/components/pagination/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/pagination", - "version": "2.2.3", + "version": "2.2.4", "description": "The Pagination component allows you to display active page and navigate between multiple pages.", "keywords": [ "pagination" @@ -45,9 +45,9 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/use-intersection-observer": "workspace:*", "@nextui-org/use-pagination": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/i18n": "3.12.3", - "@react-aria/interactions": "3.22.4", + "@react-aria/focus": "3.19.0", + "@react-aria/i18n": "3.12.4", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", "scroll-into-view-if-needed": "3.0.10" }, diff --git a/packages/components/popover/CHANGELOG.md b/packages/components/popover/CHANGELOG.md index 0c2cb40623..20d4e879f5 100644 --- a/packages/components/popover/CHANGELOG.md +++ b/packages/components/popover/CHANGELOG.md @@ -1,5 +1,17 @@ # @nextui-org/popover +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/button@2.2.4 + - @nextui-org/framer-utils@2.1.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/popover/package.json b/packages/components/popover/package.json index aaf9a51fc2..7f1f5d8f24 100644 --- a/packages/components/popover/package.json +++ b/packages/components/popover/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/popover", - "version": "2.3.3", + "version": "2.3.4", "description": "A popover is an overlay element positioned relative to a trigger.", "keywords": [ "popover" @@ -49,14 +49,14 @@ "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", "@nextui-org/dom-animation": "workspace:*", - "@react-aria/dialog": "3.5.19", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/overlays": "3.23.4", + "@react-aria/dialog": "3.5.20", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/overlays": "3.24.0", "@react-aria/utils": "3.26.0", - "@react-stately/overlays": "3.6.11", - "@react-types/button": "3.10.0", - "@react-types/overlays": "3.8.10" + "@react-stately/overlays": "3.6.12", + "@react-types/button": "3.10.1", + "@react-types/overlays": "3.8.11" }, "devDependencies": { "@nextui-org/card": "workspace:*", diff --git a/packages/components/popover/src/use-popover.ts b/packages/components/popover/src/use-popover.ts index f3ac340d78..bc12cb14f4 100644 --- a/packages/components/popover/src/use-popover.ts +++ b/packages/components/popover/src/use-popover.ts @@ -208,7 +208,7 @@ export function usePopover(originalProps: UsePopoverProps) { "data-focus": dataAttr(isFocused), "data-arrow": dataAttr(showArrow), "data-focus-visible": dataAttr(isFocusVisible), - "data-placement": getArrowPlacement(ariaPlacement, placementProp), + "data-placement": getArrowPlacement(ariaPlacement || "top", placementProp), ...mergeProps(focusProps, dialogPropsProp, props), className: slots.base({class: clsx(baseStyles)}), style: { @@ -222,7 +222,7 @@ export function usePopover(originalProps: UsePopoverProps) { "data-slot": "content", "data-open": dataAttr(state.isOpen), "data-arrow": dataAttr(showArrow), - "data-placement": getArrowPlacement(ariaPlacement, placementProp), + "data-placement": getArrowPlacement(ariaPlacement || "top", placementProp), className: slots.content({class: clsx(classNames?.content, props.className)}), }), [slots, state.isOpen, showArrow, ariaPlacement, placementProp, classNames], @@ -230,7 +230,7 @@ export function usePopover(originalProps: UsePopoverProps) { const placement = useMemo( () => - getShouldUseAxisPlacement(ariaPlacement, placementProp) + getShouldUseAxisPlacement(ariaPlacement || "top", placementProp) ? ariaPlacement || placementProp : placementProp, [ariaPlacement, placementProp], diff --git a/packages/components/progress/CHANGELOG.md b/packages/components/progress/CHANGELOG.md index 55f03ab726..14099416c4 100644 --- a/packages/components/progress/CHANGELOG.md +++ b/packages/components/progress/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/progress +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.3 ### Patch Changes diff --git a/packages/components/progress/package.json b/packages/components/progress/package.json index e4a4973068..b23d4f9c77 100644 --- a/packages/components/progress/package.json +++ b/packages/components/progress/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/progress", - "version": "2.2.3", + "version": "2.2.4", "description": "Progress bars show either determinate or indeterminate progress of an operation over time.", "keywords": [ "progress" @@ -43,10 +43,10 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-is-mounted": "workspace:*", - "@react-aria/i18n": "3.12.3", - "@react-aria/progress": "3.4.17", + "@react-aria/i18n": "3.12.4", + "@react-aria/progress": "3.4.18", "@react-aria/utils": "3.26.0", - "@react-types/progress": "3.5.7" + "@react-types/progress": "3.5.8" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/radio/CHANGELOG.md b/packages/components/radio/CHANGELOG.md index d655ff9750..4b4c52d5d8 100644 --- a/packages/components/radio/CHANGELOG.md +++ b/packages/components/radio/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/radio +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + ## 2.3.3 ### Patch Changes diff --git a/packages/components/radio/package.json b/packages/components/radio/package.json index 3391f1655b..246de414d6 100644 --- a/packages/components/radio/package.json +++ b/packages/components/radio/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/radio", - "version": "2.3.3", + "version": "2.3.4", "description": "Radios allow users to select a single option from a list of mutually exclusive options.", "keywords": [ "radio" @@ -43,14 +43,14 @@ "@nextui-org/form": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/radio": "3.10.9", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/radio": "3.10.10", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/radio": "3.10.8", - "@react-types/radio": "3.8.4", - "@react-types/shared": "3.25.0" + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/radio": "3.10.9", + "@react-types/radio": "3.8.5", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/select/CHANGELOG.md b/packages/components/select/CHANGELOG.md index 0392b655e3..deb0d0f907 100644 --- a/packages/components/select/CHANGELOG.md +++ b/packages/components/select/CHANGELOG.md @@ -1,5 +1,21 @@ # @nextui-org/select +## 2.4.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/form@2.1.4 + - @nextui-org/use-aria-multiselect@2.4.2 + - @nextui-org/use-aria-button@2.2.2 + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/listbox@2.3.4 + - @nextui-org/popover@2.3.4 + - @nextui-org/spinner@2.2.4 + - @nextui-org/scroll-shadow@2.3.3 + ## 2.4.3 ### Patch Changes diff --git a/packages/components/select/package.json b/packages/components/select/package.json index e61b052a80..ddc2035a36 100644 --- a/packages/components/select/package.json +++ b/packages/components/select/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/select", - "version": "2.4.3", + "version": "2.4.4", "description": "A select displays a collapsible list of options and allows a user to select one of them.", "keywords": [ "select" @@ -53,12 +53,12 @@ "@nextui-org/use-aria-multiselect": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", "@nextui-org/form": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/form": "3.0.10", - "@react-aria/interactions": "3.22.4", + "@react-aria/focus": "3.19.0", + "@react-aria/form": "3.0.11", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-types/shared": "3.25.0", + "@react-aria/visually-hidden": "3.8.18", + "@react-types/shared": "3.26.0", "@tanstack/react-virtual": "3.10.9" }, "devDependencies": { @@ -70,8 +70,8 @@ "@nextui-org/system": "workspace:*", "@nextui-org/theme": "workspace:*", "@nextui-org/use-infinite-scroll": "workspace:*", - "@react-aria/i18n": "3.12.3", - "@react-stately/data": "3.11.7", + "@react-aria/i18n": "3.12.4", + "@react-stately/data": "3.12.0", "clean-package": "2.2.0", "framer-motion": "11.9.0", "react": "^18.0.0", diff --git a/packages/components/slider/CHANGELOG.md b/packages/components/slider/CHANGELOG.md index cf2ab05ec2..9fd7b69012 100644 --- a/packages/components/slider/CHANGELOG.md +++ b/packages/components/slider/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/slider +## 2.4.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/tooltip@2.2.4 + ## 2.4.3 ### Patch Changes diff --git a/packages/components/slider/package.json b/packages/components/slider/package.json index 70386a17fa..494ad73c70 100644 --- a/packages/components/slider/package.json +++ b/packages/components/slider/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/slider", - "version": "2.4.3", + "version": "2.4.4", "description": "A slider allows a user to select one or more values within a range.", "keywords": [ "slider" @@ -43,13 +43,13 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/tooltip": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/i18n": "3.12.3", - "@react-aria/interactions": "3.22.4", - "@react-aria/slider": "3.7.13", + "@react-aria/focus": "3.19.0", + "@react-aria/i18n": "3.12.4", + "@react-aria/interactions": "3.22.5", + "@react-aria/slider": "3.7.14", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/slider": "3.5.8" + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/slider": "3.6.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/snippet/CHANGELOG.md b/packages/components/snippet/CHANGELOG.md index b0ed9e4311..d4b16c3e78 100644 --- a/packages/components/snippet/CHANGELOG.md +++ b/packages/components/snippet/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/snippet +## 2.2.5 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/tooltip@2.2.4 + - @nextui-org/button@2.2.4 + ## 2.2.4 ### Patch Changes diff --git a/packages/components/snippet/package.json b/packages/components/snippet/package.json index 36c0450f8c..912ee26999 100644 --- a/packages/components/snippet/package.json +++ b/packages/components/snippet/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/snippet", - "version": "2.2.4", + "version": "2.2.5", "description": "Display a snippet of copyable code for the command line.", "keywords": [ "snippet" @@ -47,7 +47,7 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/use-clipboard": "workspace:*", "@nextui-org/tooltip": "workspace:*", - "@react-aria/focus": "3.18.4", + "@react-aria/focus": "3.19.0", "@react-aria/utils": "3.26.0" }, "devDependencies": { diff --git a/packages/components/spacer/CHANGELOG.md b/packages/components/spacer/CHANGELOG.md index 79c8993dc5..d8d7276aef 100644 --- a/packages/components/spacer/CHANGELOG.md +++ b/packages/components/spacer/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/spacer +## 2.2.4 + +### Patch Changes + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/system-rsc@2.3.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/spacer/package.json b/packages/components/spacer/package.json index 4c90e33227..166b286377 100644 --- a/packages/components/spacer/package.json +++ b/packages/components/spacer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/spacer", - "version": "2.2.3", + "version": "2.2.4", "description": "A flexible spacer component designed to create consistent spacing and maintain alignment in your layout.", "keywords": [ "spacer" diff --git a/packages/components/spinner/CHANGELOG.md b/packages/components/spinner/CHANGELOG.md index 0df9ca9d93..a49f0771c3 100644 --- a/packages/components/spinner/CHANGELOG.md +++ b/packages/components/spinner/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/spinner +## 2.2.4 + +### Patch Changes + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/system-rsc@2.3.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/spinner/package.json b/packages/components/spinner/package.json index 2a7d2b1627..83940d75ea 100644 --- a/packages/components/spinner/package.json +++ b/packages/components/spinner/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/spinner", - "version": "2.2.3", + "version": "2.2.4", "description": "Loaders express an unspecified wait time or display the length of a process.", "keywords": [ "loading", diff --git a/packages/components/switch/CHANGELOG.md b/packages/components/switch/CHANGELOG.md index 4e06aba81a..9aab978da8 100644 --- a/packages/components/switch/CHANGELOG.md +++ b/packages/components/switch/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/switch +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.3 ### Patch Changes diff --git a/packages/components/switch/package.json b/packages/components/switch/package.json index d75f60d587..0961a790ae 100644 --- a/packages/components/switch/package.json +++ b/packages/components/switch/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/switch", - "version": "2.2.3", + "version": "2.2.4", "description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.", "keywords": [ "switch" @@ -43,13 +43,13 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/switch": "3.6.9", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/switch": "3.6.10", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/toggle": "3.7.8", - "@react-types/shared": "3.25.0" + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/toggle": "3.8.0", + "@react-types/shared": "3.26.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/table/CHANGELOG.md b/packages/components/table/CHANGELOG.md index 807ef7a090..d2c9ec1a7d 100644 --- a/packages/components/table/CHANGELOG.md +++ b/packages/components/table/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/table +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/checkbox@2.3.4 + - @nextui-org/spacer@2.2.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/table/package.json b/packages/components/table/package.json index d34ffc18e2..fc4200b2c2 100644 --- a/packages/components/table/package.json +++ b/packages/components/table/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/table", - "version": "2.2.3", + "version": "2.2.4", "description": "Tables are used to display tabular data using rows and columns. ", "keywords": [ "table" @@ -45,15 +45,15 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/spacer": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/table": "3.15.5", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/table": "3.16.0", "@react-aria/utils": "3.26.0", - "@react-aria/visually-hidden": "3.8.17", - "@react-stately/table": "3.12.3", - "@react-stately/virtualizer": "4.1.0", - "@react-types/grid": "3.2.9", - "@react-types/table": "3.10.2" + "@react-aria/visually-hidden": "3.8.18", + "@react-stately/table": "3.13.0", + "@react-stately/virtualizer": "4.2.0", + "@react-types/grid": "3.2.10", + "@react-types/table": "3.10.3" }, "devDependencies": { "@nextui-org/theme": "workspace:*", @@ -65,7 +65,7 @@ "@nextui-org/tooltip": "workspace:*", "@nextui-org/use-infinite-scroll": "workspace:*", "@nextui-org/user": "workspace:*", - "@react-stately/data": "3.11.7", + "@react-stately/data": "3.12.0", "clean-package": "2.2.0", "react": "^18.0.0", "react-dom": "^18.0.0", diff --git a/packages/components/tabs/CHANGELOG.md b/packages/components/tabs/CHANGELOG.md index 34c1942969..d9d61a9145 100644 --- a/packages/components/tabs/CHANGELOG.md +++ b/packages/components/tabs/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/tabs +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/tabs/package.json b/packages/components/tabs/package.json index 766fcddd0f..beece6f0a9 100644 --- a/packages/components/tabs/package.json +++ b/packages/components/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/tabs", - "version": "2.2.3", + "version": "2.2.4", "description": "Tabs organize content into multiple sections and allow users to navigate between them.", "keywords": [ "tabs" @@ -47,13 +47,13 @@ "@nextui-org/framer-utils": "workspace:*", "@nextui-org/use-is-mounted": "workspace:*", "@nextui-org/use-update-effect": "workspace:*", - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", - "@react-aria/tabs": "3.9.7", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", + "@react-aria/tabs": "3.9.8", "@react-aria/utils": "3.26.0", - "@react-stately/tabs": "3.6.10", - "@react-types/shared": "3.25.0", - "@react-types/tabs": "3.3.10", + "@react-stately/tabs": "3.7.0", + "@react-types/shared": "3.26.0", + "@react-types/tabs": "3.3.11", "scroll-into-view-if-needed": "3.0.10" }, "devDependencies": { diff --git a/packages/components/tooltip/CHANGELOG.md b/packages/components/tooltip/CHANGELOG.md index 5f6686a204..bbd9c43c7a 100644 --- a/packages/components/tooltip/CHANGELOG.md +++ b/packages/components/tooltip/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/tooltip +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/aria-utils@2.2.4 + - @nextui-org/framer-utils@2.1.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/tooltip/package.json b/packages/components/tooltip/package.json index a5f518ee81..d2556a0134 100644 --- a/packages/components/tooltip/package.json +++ b/packages/components/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/tooltip", - "version": "2.2.3", + "version": "2.2.4", "description": "A React Component for rendering dynamically positioned Tooltips", "keywords": [ "tooltip" @@ -47,13 +47,13 @@ "@nextui-org/framer-utils": "workspace:*", "@nextui-org/use-safe-layout-effect": "workspace:*", "@nextui-org/dom-animation": "workspace:*", - "@react-aria/interactions": "3.22.4", - "@react-aria/overlays": "3.23.4", - "@react-aria/tooltip": "3.7.9", + "@react-aria/interactions": "3.22.5", + "@react-aria/overlays": "3.24.0", + "@react-aria/tooltip": "3.7.10", "@react-aria/utils": "3.26.0", - "@react-stately/tooltip": "3.4.13", - "@react-types/overlays": "3.8.10", - "@react-types/tooltip": "3.4.12" + "@react-stately/tooltip": "3.5.0", + "@react-types/overlays": "3.8.11", + "@react-types/tooltip": "3.4.13" }, "devDependencies": { "@nextui-org/button": "workspace:*", diff --git a/packages/components/tooltip/src/use-tooltip.ts b/packages/components/tooltip/src/use-tooltip.ts index bbee183ef3..293867c8ee 100644 --- a/packages/components/tooltip/src/use-tooltip.ts +++ b/packages/components/tooltip/src/use-tooltip.ts @@ -242,7 +242,7 @@ export function useTooltip(originalProps: UseTooltipProps) { "data-open": dataAttr(isOpen), "data-arrow": dataAttr(showArrow), "data-disabled": dataAttr(isDisabled), - "data-placement": getArrowPlacement(placement, placementProp), + "data-placement": getArrowPlacement(placement || "top", placementProp), ...mergeProps(tooltipProps, overlayProps, otherProps), style: mergeProps(positionProps.style, otherProps.style, props.style), className: slots.base({class: classNames?.base}), @@ -270,7 +270,7 @@ export function useTooltip(originalProps: UseTooltipProps) { "data-open": dataAttr(isOpen), "data-arrow": dataAttr(showArrow), "data-disabled": dataAttr(isDisabled), - "data-placement": getArrowPlacement(placement, placementProp), + "data-placement": getArrowPlacement(placement || "top", placementProp), className: slots.content({class: clsx(classNames?.content, className)}), }), [slots, isOpen, showArrow, isDisabled, placement, placementProp, classNames], diff --git a/packages/components/user/CHANGELOG.md b/packages/components/user/CHANGELOG.md index eec88f258f..5fa7cb122a 100644 --- a/packages/components/user/CHANGELOG.md +++ b/packages/components/user/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/user +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/avatar@2.2.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/components/user/package.json b/packages/components/user/package.json index dc09736f5b..90bd3b3c9c 100644 --- a/packages/components/user/package.json +++ b/packages/components/user/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/user", - "version": "2.2.3", + "version": "2.2.4", "description": "Flexible User Profile Component.", "keywords": [ "user" @@ -43,7 +43,7 @@ "@nextui-org/avatar": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/focus": "3.18.4", + "@react-aria/focus": "3.19.0", "@react-aria/utils": "3.26.0" }, "devDependencies": { diff --git a/packages/core/react/CHANGELOG.md b/packages/core/react/CHANGELOG.md index 84be1360cd..1aa944a635 100644 --- a/packages/core/react/CHANGELOG.md +++ b/packages/core/react/CHANGELOG.md @@ -1,5 +1,59 @@ # @nextui-org/react +## 2.6.5 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`b16291b`](https://github.com/nextui-org/nextui/commit/b16291b2200229f0d0a9ea910e38f3f100f7931f), [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3), [`455556e`](https://github.com/nextui-org/nextui/commit/455556e14278dd933b4acd1a136ea29879b49545), [`26b33a5`](https://github.com/nextui-org/nextui/commit/26b33a51f0ae9d0bb1146277a8b61b839aa52393)]: + - @nextui-org/form@2.1.4 + - @nextui-org/autocomplete@2.3.4 + - @nextui-org/breadcrumbs@2.2.4 + - @nextui-org/date-picker@2.3.4 + - @nextui-org/date-input@2.3.4 + - @nextui-org/pagination@2.2.4 + - @nextui-org/accordion@2.2.4 + - @nextui-org/input-otp@2.1.4 + - @nextui-org/calendar@2.2.4 + - @nextui-org/checkbox@2.3.4 + - @nextui-org/dropdown@2.3.4 + - @nextui-org/progress@2.2.4 + - @nextui-org/divider@2.2.4 + - @nextui-org/listbox@2.3.4 + - @nextui-org/popover@2.3.4 + - @nextui-org/snippet@2.2.5 + - @nextui-org/tooltip@2.2.4 + - @nextui-org/avatar@2.2.4 + - @nextui-org/button@2.2.4 + - @nextui-org/navbar@2.2.4 + - @nextui-org/select@2.4.4 + - @nextui-org/slider@2.4.4 + - @nextui-org/switch@2.2.4 + - @nextui-org/alert@2.2.4 + - @nextui-org/input@2.4.4 + - @nextui-org/modal@2.2.4 + - @nextui-org/radio@2.3.4 + - @nextui-org/table@2.2.4 + - @nextui-org/card@2.2.4 + - @nextui-org/chip@2.2.4 + - @nextui-org/link@2.2.4 + - @nextui-org/menu@2.2.4 + - @nextui-org/tabs@2.2.4 + - @nextui-org/user@2.2.4 + - @nextui-org/system@2.4.4 + - @nextui-org/drawer@2.2.4 + - @nextui-org/badge@2.2.3 + - @nextui-org/skeleton@2.2.3 + - @nextui-org/code@2.2.4 + - @nextui-org/kbd@2.2.4 + - @nextui-org/spacer@2.2.4 + - @nextui-org/spinner@2.2.4 + - @nextui-org/image@2.2.3 + - @nextui-org/ripple@2.2.3 + - @nextui-org/scroll-shadow@2.3.3 + - @nextui-org/framer-utils@2.1.4 + ## 2.6.4 ### Patch Changes diff --git a/packages/core/react/package.json b/packages/core/react/package.json index 4a5aa5580f..a6b181fc49 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react", - "version": "2.6.4", + "version": "2.6.5", "description": "🚀 Beautiful and modern React UI library.", "author": "Junior Garcia ", "homepage": "https://nextui.org", @@ -88,7 +88,7 @@ "@nextui-org/drawer": "workspace:*", "@nextui-org/form": "workspace:*", "@nextui-org/alert": "workspace:*", - "@react-aria/visually-hidden": "3.8.17" + "@react-aria/visually-hidden": "3.8.18" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0", diff --git a/packages/core/system-rsc/CHANGELOG.md b/packages/core/system-rsc/CHANGELOG.md index 427166e8bd..8a87a69bf2 100644 --- a/packages/core/system-rsc/CHANGELOG.md +++ b/packages/core/system-rsc/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/system-rsc +## 2.3.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.3.3 ### Patch Changes diff --git a/packages/core/system-rsc/package.json b/packages/core/system-rsc/package.json index 242bafd33c..89636128d8 100644 --- a/packages/core/system-rsc/package.json +++ b/packages/core/system-rsc/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/system-rsc", - "version": "2.3.3", + "version": "2.3.4", "description": "NextUI system primitives compatibles with RSC imports", "keywords": [ "system-rsc" @@ -46,7 +46,7 @@ "clean-package": "2.2.0" }, "dependencies": { - "@react-types/shared": "3.25.0", + "@react-types/shared": "3.26.0", "clsx": "^1.2.1" }, "clean-package": "../../../clean-package.config.json", diff --git a/packages/core/system/CHANGELOG.md b/packages/core/system/CHANGELOG.md index f470371b94..e5b9086888 100644 --- a/packages/core/system/CHANGELOG.md +++ b/packages/core/system/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/system +## 2.4.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- [#4264](https://github.com/nextui-org/nextui/pull/4264) [`455556e`](https://github.com/nextui-org/nextui/commit/455556e14278dd933b4acd1a136ea29879b49545) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Fix, mising react-types package added to the system package + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/system-rsc@2.3.4 + ## 2.4.3 ### Patch Changes diff --git a/packages/core/system/package.json b/packages/core/system/package.json index 2cb7d75452..b1378ec85a 100644 --- a/packages/core/system/package.json +++ b/packages/core/system/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/system", - "version": "2.4.3", + "version": "2.4.4", "description": "NextUI system primitives", "keywords": [ "system" @@ -54,13 +54,13 @@ ] }, "dependencies": { - "@internationalized/date": "3.5.6", + "@internationalized/date": "3.6.0", "@nextui-org/react-utils": "workspace:*", - "@react-aria/i18n": "3.12.3", + "@react-aria/i18n": "3.12.4", "@nextui-org/system-rsc": "workspace:*", - "@react-aria/overlays": "3.23.4", + "@react-aria/overlays": "3.24.0", "@react-aria/utils": "3.26.0", - "@react-stately/utils": "3.10.4", - "@react-types/datepicker": "3.8.3" + "@react-stately/utils": "3.10.5", + "@react-types/datepicker": "3.9.0" } } diff --git a/packages/hooks/use-aria-accordion-item/CHANGELOG.md b/packages/hooks/use-aria-accordion-item/CHANGELOG.md index a027fea0e8..5ecd59c5ae 100644 --- a/packages/hooks/use-aria-accordion-item/CHANGELOG.md +++ b/packages/hooks/use-aria-accordion-item/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-accordion-item +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-accordion-item/package.json b/packages/hooks/use-aria-accordion-item/package.json index 9811752ee7..6b0a4e8fc5 100644 --- a/packages/hooks/use-aria-accordion-item/package.json +++ b/packages/hooks/use-aria-accordion-item/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-accordion-item", - "version": "2.2.1", + "version": "2.2.2", "description": "Internal impl for react aria accordion item", "keywords": [ "use-aria-accordion-item" @@ -34,10 +34,10 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/button": "3.10.1", - "@react-aria/focus": "3.18.4", - "@react-stately/tree": "3.8.5", - "@react-types/shared": "3.25.0" + "@react-aria/button": "3.11.0", + "@react-aria/focus": "3.19.0", + "@react-stately/tree": "3.8.6", + "@react-types/shared": "3.26.0" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0" diff --git a/packages/hooks/use-aria-accordion/CHANGELOG.md b/packages/hooks/use-aria-accordion/CHANGELOG.md index ec53a7ca48..d867ae5a59 100644 --- a/packages/hooks/use-aria-accordion/CHANGELOG.md +++ b/packages/hooks/use-aria-accordion/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-accordion +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-accordion/package.json b/packages/hooks/use-aria-accordion/package.json index 0a2ab90071..12eef7c24b 100644 --- a/packages/hooks/use-aria-accordion/package.json +++ b/packages/hooks/use-aria-accordion/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-accordion", - "version": "2.2.1", + "version": "2.2.2", "description": "React-aria useAccordion hooks with custom implementations", "keywords": [ "use-aria-accordion" @@ -34,13 +34,13 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/button": "3.10.1", - "@react-aria/focus": "3.18.4", - "@react-aria/selection": "3.20.1", + "@react-aria/button": "3.11.0", + "@react-aria/focus": "3.19.0", + "@react-aria/selection": "3.21.0", "@react-aria/utils": "3.26.0", - "@react-stately/tree": "3.8.5", - "@react-types/accordion": "3.0.0-alpha.24", - "@react-types/shared": "3.25.0" + "@react-stately/tree": "3.8.6", + "@react-types/accordion": "3.0.0-alpha.25", + "@react-types/shared": "3.26.0" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0" diff --git a/packages/hooks/use-aria-button/CHANGELOG.md b/packages/hooks/use-aria-button/CHANGELOG.md index 2912c2e23c..31a99248ac 100644 --- a/packages/hooks/use-aria-button/CHANGELOG.md +++ b/packages/hooks/use-aria-button/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-button +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-button/package.json b/packages/hooks/use-aria-button/package.json index 2fe177e316..468a67b9a8 100644 --- a/packages/hooks/use-aria-button/package.json +++ b/packages/hooks/use-aria-button/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-button", - "version": "2.2.1", + "version": "2.2.2", "description": "Internal hook to handle button a11y and events, this is based on react-aria button hook but without the onClick warning", "keywords": [ "use-aria-button" @@ -37,11 +37,11 @@ "react": ">=18 || >=19.0.0-rc.0" }, "dependencies": { - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-types/button": "3.10.0", - "@react-types/shared": "3.25.0" + "@react-types/button": "3.10.1", + "@react-types/shared": "3.26.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-aria-link/CHANGELOG.md b/packages/hooks/use-aria-link/CHANGELOG.md index 673c233bcd..96fc841734 100644 --- a/packages/hooks/use-aria-link/CHANGELOG.md +++ b/packages/hooks/use-aria-link/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-link +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-link/package.json b/packages/hooks/use-aria-link/package.json index cf37e52fb9..fcfd368965 100644 --- a/packages/hooks/use-aria-link/package.json +++ b/packages/hooks/use-aria-link/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-link", - "version": "2.2.1", + "version": "2.2.2", "description": "Internal hook to handle link a11y and events, this is based on react-aria link hook but without the onClick warning", "keywords": [ "use-aria-link" @@ -37,11 +37,11 @@ "react": ">=18 || >=19.0.0-rc.0" }, "dependencies": { - "@react-aria/focus": "3.18.4", - "@react-aria/interactions": "3.22.4", + "@react-aria/focus": "3.19.0", + "@react-aria/interactions": "3.22.5", "@react-aria/utils": "3.26.0", - "@react-types/link": "3.5.8", - "@react-types/shared": "3.25.0" + "@react-types/link": "3.5.9", + "@react-types/shared": "3.26.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-aria-menu/CHANGELOG.md b/packages/hooks/use-aria-menu/CHANGELOG.md index 5435cc072b..2a3878fef4 100644 --- a/packages/hooks/use-aria-menu/CHANGELOG.md +++ b/packages/hooks/use-aria-menu/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-menu +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-menu/package.json b/packages/hooks/use-aria-menu/package.json index 84dbc403ad..cbeabbd6fe 100644 --- a/packages/hooks/use-aria-menu/package.json +++ b/packages/hooks/use-aria-menu/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-menu", - "version": "2.2.1", + "version": "2.2.2", "description": "React-aria useMenu hooks with custom implementations", "keywords": [ "use-aria-menu" @@ -39,14 +39,14 @@ }, "dependencies": { "@react-aria/utils": "3.26.0", - "@react-types/shared": "3.25.0", - "@react-aria/menu": "3.15.5", - "@react-aria/interactions": "3.22.4", - "@react-stately/tree": "3.8.5", - "@react-aria/i18n": "3.12.3", - "@react-aria/selection": "3.20.1", - "@react-stately/collections": "3.11.0", - "@react-types/menu": "3.9.12" + "@react-types/shared": "3.26.0", + "@react-aria/menu": "3.16.0", + "@react-aria/interactions": "3.22.5", + "@react-stately/tree": "3.8.6", + "@react-aria/i18n": "3.12.4", + "@react-aria/selection": "3.21.0", + "@react-stately/collections": "3.12.0", + "@react-types/menu": "3.9.13" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-aria-modal-overlay/CHANGELOG.md b/packages/hooks/use-aria-modal-overlay/CHANGELOG.md index de13b7f330..ea6e77774f 100644 --- a/packages/hooks/use-aria-modal-overlay/CHANGELOG.md +++ b/packages/hooks/use-aria-modal-overlay/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-modal-overlay +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-modal-overlay/package.json b/packages/hooks/use-aria-modal-overlay/package.json index b17d1fa3da..4691981b12 100644 --- a/packages/hooks/use-aria-modal-overlay/package.json +++ b/packages/hooks/use-aria-modal-overlay/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-modal-overlay", - "version": "2.2.1", + "version": "2.2.2", "description": "A custom implementation of react aria modal overlay, this removes the prevent scroll", "keywords": [ "use-aria-modal-overlay" @@ -34,10 +34,10 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/overlays": "3.23.4", + "@react-aria/overlays": "3.24.0", "@react-aria/utils": "3.26.0", - "@react-stately/overlays": "3.6.11", - "@react-types/shared": "3.25.0" + "@react-stately/overlays": "3.6.12", + "@react-types/shared": "3.26.0" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0", diff --git a/packages/hooks/use-aria-multiselect/CHANGELOG.md b/packages/hooks/use-aria-multiselect/CHANGELOG.md index 489b10e1f1..8606c7d246 100644 --- a/packages/hooks/use-aria-multiselect/CHANGELOG.md +++ b/packages/hooks/use-aria-multiselect/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-aria-multiselect +## 2.4.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.4.1 ### Patch Changes diff --git a/packages/hooks/use-aria-multiselect/package.json b/packages/hooks/use-aria-multiselect/package.json index 88f0023089..6f9882e48b 100644 --- a/packages/hooks/use-aria-multiselect/package.json +++ b/packages/hooks/use-aria-multiselect/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-multiselect", - "version": "2.4.1", + "version": "2.4.2", "description": "Provides the behavior and accessibility implementation for a multi-select component.", "keywords": [ "use-aria-multiselect" @@ -34,20 +34,20 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/i18n": "3.12.3", - "@react-aria/interactions": "3.22.4", - "@react-aria/label": "3.7.12", - "@react-aria/listbox": "3.13.5", - "@react-aria/menu": "3.15.5", - "@react-aria/selection": "3.20.1", + "@react-aria/i18n": "3.12.4", + "@react-aria/interactions": "3.22.5", + "@react-aria/label": "3.7.13", + "@react-aria/listbox": "3.13.6", + "@react-aria/menu": "3.16.0", + "@react-aria/selection": "3.21.0", "@react-aria/utils": "3.26.0", - "@react-stately/form": "3.0.6", - "@react-stately/list": "3.11.0", - "@react-stately/menu": "3.8.3", - "@react-types/button": "3.10.0", - "@react-types/overlays": "3.8.10", - "@react-types/select": "3.9.7", - "@react-types/shared": "3.25.0" + "@react-stately/form": "3.1.0", + "@react-stately/list": "3.11.1", + "@react-stately/menu": "3.9.0", + "@react-types/button": "3.10.1", + "@react-types/overlays": "3.8.11", + "@react-types/select": "3.9.8", + "@react-types/shared": "3.26.0" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0", diff --git a/packages/hooks/use-aria-toggle-button/CHANGELOG.md b/packages/hooks/use-aria-toggle-button/CHANGELOG.md index 23920362e9..7094e10cb5 100644 --- a/packages/hooks/use-aria-toggle-button/CHANGELOG.md +++ b/packages/hooks/use-aria-toggle-button/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/use-aria-toggle-button +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3)]: + - @nextui-org/use-aria-button@2.2.2 + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-aria-toggle-button/package.json b/packages/hooks/use-aria-toggle-button/package.json index 5cff369809..69a93ff39a 100644 --- a/packages/hooks/use-aria-toggle-button/package.json +++ b/packages/hooks/use-aria-toggle-button/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-aria-toggle-button", - "version": "2.2.1", + "version": "2.2.2", "description": "Internal hook to handle button a11y and events, this is based on react-aria button hook but without the onClick warning", "keywords": [ "use-aria-toggle-button" @@ -39,9 +39,9 @@ "dependencies": { "@nextui-org/use-aria-button": "workspace:*", "@react-aria/utils": "3.26.0", - "@react-stately/toggle": "3.7.8", - "@react-types/button": "3.10.0", - "@react-types/shared": "3.25.0" + "@react-stately/toggle": "3.8.0", + "@react-types/button": "3.10.1", + "@react-types/shared": "3.26.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-disclosure/CHANGELOG.md b/packages/hooks/use-disclosure/CHANGELOG.md index 3cab8cba1d..89207dcc21 100644 --- a/packages/hooks/use-disclosure/CHANGELOG.md +++ b/packages/hooks/use-disclosure/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-disclosure +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-disclosure/package.json b/packages/hooks/use-disclosure/package.json index 0d63265ffd..d22cdacca6 100644 --- a/packages/hooks/use-disclosure/package.json +++ b/packages/hooks/use-disclosure/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-disclosure", - "version": "2.2.1", + "version": "2.2.2", "description": "The hook in charge of managing modals", "keywords": [ "use-disclosure" @@ -39,7 +39,7 @@ "dependencies": { "@nextui-org/use-callback-ref": "workspace:*", "@react-aria/utils": "3.26.0", - "@react-stately/utils": "3.10.4" + "@react-stately/utils": "3.10.5" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-draggable/CHANGELOG.md b/packages/hooks/use-draggable/CHANGELOG.md index b27cd8c434..b9407db46c 100644 --- a/packages/hooks/use-draggable/CHANGELOG.md +++ b/packages/hooks/use-draggable/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-draggable +## 2.1.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.1.1 ### Patch Changes diff --git a/packages/hooks/use-draggable/package.json b/packages/hooks/use-draggable/package.json index 717c0014d3..e6de85061b 100644 --- a/packages/hooks/use-draggable/package.json +++ b/packages/hooks/use-draggable/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-draggable", - "version": "2.1.1", + "version": "2.1.2", "description": "This hook can provide drag and drop interaction", "keywords": [ "use-draggable" @@ -50,6 +50,6 @@ ] }, "dependencies": { - "@react-aria/interactions": "3.22.4" + "@react-aria/interactions": "3.22.5" } } diff --git a/packages/hooks/use-intersection-observer/CHANGELOG.md b/packages/hooks/use-intersection-observer/CHANGELOG.md index 74ec5ea1f4..e4c391915d 100644 --- a/packages/hooks/use-intersection-observer/CHANGELOG.md +++ b/packages/hooks/use-intersection-observer/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-intersection-observer +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-intersection-observer/package.json b/packages/hooks/use-intersection-observer/package.json index 624baf2cee..46cbb2e6be 100644 --- a/packages/hooks/use-intersection-observer/package.json +++ b/packages/hooks/use-intersection-observer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-intersection-observer", - "version": "2.2.1", + "version": "2.2.2", "description": "Tracks the intersection of a DOM element and its containing element or the viewport.", "keywords": [ "use-intersection-observer" @@ -35,9 +35,9 @@ }, "dependencies": { "@react-aria/utils": "3.26.0", - "@react-aria/ssr": "3.9.6", - "@react-types/shared": "3.25.0", - "@react-aria/interactions": "3.22.4" + "@react-aria/ssr": "3.9.7", + "@react-types/shared": "3.26.0", + "@react-aria/interactions": "3.22.5" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0" diff --git a/packages/hooks/use-is-mobile/CHANGELOG.md b/packages/hooks/use-is-mobile/CHANGELOG.md index 4a1e7cd827..69c0bbb28e 100644 --- a/packages/hooks/use-is-mobile/CHANGELOG.md +++ b/packages/hooks/use-is-mobile/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-is-mobile +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-is-mobile/package.json b/packages/hooks/use-is-mobile/package.json index 6b8fd7ae39..7c3017b5f0 100644 --- a/packages/hooks/use-is-mobile/package.json +++ b/packages/hooks/use-is-mobile/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-is-mobile", - "version": "2.2.1", + "version": "2.2.2", "description": "A hook that returns whether the device is mobile or not", "keywords": [ "use-is-mobile" @@ -34,7 +34,7 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/ssr": "3.9.6" + "@react-aria/ssr": "3.9.7" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0" diff --git a/packages/hooks/use-pagination/CHANGELOG.md b/packages/hooks/use-pagination/CHANGELOG.md index 4d01f29e80..b6497663b2 100644 --- a/packages/hooks/use-pagination/CHANGELOG.md +++ b/packages/hooks/use-pagination/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/use-pagination +## 2.2.2 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + ## 2.2.1 ### Patch Changes diff --git a/packages/hooks/use-pagination/package.json b/packages/hooks/use-pagination/package.json index e6af9c2cd2..12954c9f8e 100644 --- a/packages/hooks/use-pagination/package.json +++ b/packages/hooks/use-pagination/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-pagination", - "version": "2.2.1", + "version": "2.2.2", "description": "State management hook for Pagination component, it lets you manage pagination with controlled and uncontrolled state", "keywords": [ "use-pagination" @@ -35,7 +35,7 @@ }, "dependencies": { "@nextui-org/shared-utils": "workspace:*", - "@react-aria/i18n": "3.12.3" + "@react-aria/i18n": "3.12.4" }, "peerDependencies": { "react": ">=18 || >=19.0.0-rc.0" diff --git a/packages/utilities/aria-utils/CHANGELOG.md b/packages/utilities/aria-utils/CHANGELOG.md index 9237cde293..841c4902a4 100644 --- a/packages/utilities/aria-utils/CHANGELOG.md +++ b/packages/utilities/aria-utils/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/aria-utils +## 2.2.4 + +### Patch Changes + +- [#4258](https://github.com/nextui-org/nextui/pull/4258) [`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3) Thanks [@wingkwong](https://github.com/wingkwong)! - sync with upstream RA versions + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3), [`455556e`](https://github.com/nextui-org/nextui/commit/455556e14278dd933b4acd1a136ea29879b49545)]: + - @nextui-org/system@2.4.4 + ## 2.2.3 ### Patch Changes diff --git a/packages/utilities/aria-utils/package.json b/packages/utilities/aria-utils/package.json index 0d0ff84be6..bb03e54c0d 100644 --- a/packages/utilities/aria-utils/package.json +++ b/packages/utilities/aria-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/aria-utils", - "version": "2.2.3", + "version": "2.2.4", "description": "A package for managing @react-aria nextui utils.", "keywords": [ "aria-utils" @@ -42,10 +42,10 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-rsc-utils": "workspace:*", "@react-aria/utils": "3.26.0", - "@react-stately/collections": "3.11.0", - "@react-stately/overlays": "3.6.11", - "@react-types/overlays": "3.8.10", - "@react-types/shared": "3.25.0" + "@react-stately/collections": "3.12.0", + "@react-stately/overlays": "3.6.12", + "@react-types/overlays": "3.8.11", + "@react-types/shared": "3.26.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/utilities/framer-utils/CHANGELOG.md b/packages/utilities/framer-utils/CHANGELOG.md index 1089eeaf5a..734b0bf240 100644 --- a/packages/utilities/framer-utils/CHANGELOG.md +++ b/packages/utilities/framer-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/framer-utils +## 2.1.4 + +### Patch Changes + +- Updated dependencies [[`1031e98`](https://github.com/nextui-org/nextui/commit/1031e985b71e69b8a7189ea049b9616257f820b3), [`455556e`](https://github.com/nextui-org/nextui/commit/455556e14278dd933b4acd1a136ea29879b49545)]: + - @nextui-org/system@2.4.4 + ## 2.1.3 ### Patch Changes diff --git a/packages/utilities/framer-utils/package.json b/packages/utilities/framer-utils/package.json index 93601e03d1..da46591de5 100644 --- a/packages/utilities/framer-utils/package.json +++ b/packages/utilities/framer-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/framer-utils", - "version": "2.1.3", + "version": "2.1.4", "description": "A set of framer motion transitions for react", "keywords": [ "framer-utils" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 60197ce5ea..ca6a3560d6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -59,11 +59,11 @@ importers: specifier: ^2.1.0 version: 2.2.0 '@react-types/link': - specifier: 3.5.7 - version: 3.5.7(react@18.2.0) + specifier: 3.5.9 + version: 3.5.9(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@storybook/react': specifier: ^8.4.5 version: 8.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.4.5(prettier@2.8.8))(typescript@4.9.5) @@ -281,8 +281,8 @@ importers: specifier: 5.0.2 version: 5.0.2(react@18.2.0) '@internationalized/date': - specifier: 3.5.6 - version: 3.5.6 + specifier: 3.6.0 + version: 3.6.0 '@mapbox/rehype-prism': specifier: ^0.6.0 version: 0.6.0 @@ -341,38 +341,38 @@ importers: specifier: ^1.0.5 version: 1.2.1(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/selection': - specifier: 3.20.1 - version: 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.21.0 + version: 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/ssr': - specifier: 3.9.6 - version: 3.9.6(react@18.2.0) + specifier: 3.9.7 + version: 3.9.7(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/virtualizer': - specifier: 3.10.1 - version: 3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 4.1.0 + version: 4.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/data': - specifier: 3.11.4 - version: 3.11.4(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react@18.2.0) '@react-stately/layout': - specifier: 3.13.9 - version: 3.13.9(react@18.2.0) + specifier: 4.1.0 + version: 4.1.0(react@18.2.0) '@react-stately/tree': - specifier: 3.8.1 - version: 3.8.1(react@18.2.0) + specifier: 3.8.6 + version: 3.8.6(react@18.2.0) '@rehooks/local-storage': specifier: ^2.4.5 version: 2.4.5(react@18.2.0) @@ -528,14 +528,14 @@ importers: specifier: 14.3.0-canary.43 version: 14.3.0-canary.43 '@react-types/calendar': - specifier: 3.4.10 - version: 3.4.10(react@18.2.0) + specifier: 3.5.0 + version: 3.5.0(react@18.2.0) '@react-types/datepicker': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@tailwindcss/typography': specifier: ^0.5.9 version: 0.5.15(tailwindcss@3.4.14(ts-node@10.9.2(@swc/core@1.9.2(@swc/helpers@0.5.15))(@types/node@20.2.5)(typescript@5.6.3))) @@ -648,26 +648,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-accordion '@react-aria/button': - specifier: 3.10.1 - version: 3.10.1(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/tree': - specifier: 3.8.5 - version: 3.8.5(react@18.2.0) + specifier: 3.8.6 + version: 3.8.6(react@18.2.0) '@react-types/accordion': - specifier: 3.0.0-alpha.24 - version: 3.0.0-alpha.24(react@18.2.0) + specifier: 3.0.0-alpha.25 + version: 3.0.0-alpha.25(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -718,8 +718,8 @@ importers: specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) devDependencies: '@nextui-org/system': specifier: workspace:* @@ -779,32 +779,32 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/combobox': - specifier: 3.10.5 - version: 3.10.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/combobox': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/combobox': - specifier: 3.13.0 - version: 3.13.0(react@18.2.0) + specifier: 3.13.1 + version: 3.13.1(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -825,8 +825,8 @@ importers: specifier: workspace:* version: link:../../hooks/use-infinite-scroll '@react-stately/data': - specifier: 3.11.7 - version: 3.11.7(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react@18.2.0) clean-package: specifier: 2.2.0 version: 2.2.0 @@ -855,11 +855,11 @@ importers: specifier: workspace:* version: link:../../hooks/use-image '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) @@ -932,20 +932,20 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/breadcrumbs': - specifier: 3.5.18 - version: 3.5.18(react@18.2.0) + specifier: 3.5.19 + version: 3.5.19(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/breadcrumbs': - specifier: 3.7.8 - version: 3.7.8(react@18.2.0) + specifier: 3.7.9 + version: 3.7.9(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -990,23 +990,23 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/button': - specifier: 3.10.1 - version: 3.10.1(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/button': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -1033,8 +1033,8 @@ importers: packages/components/calendar: dependencies: '@internationalized/date': - specifier: 3.5.6 - version: 3.5.6 + specifier: 3.6.0 + version: 3.6.0 '@nextui-org/button': specifier: workspace:* version: link:../button @@ -1057,38 +1057,38 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/calendar': - specifier: 3.5.13 - version: 3.5.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.6.0 + version: 3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/calendar': - specifier: 3.5.5 - version: 3.5.5(react@18.2.0) + specifier: 3.6.0 + version: 3.6.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) '@react-types/button': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/calendar': - specifier: 3.4.10 - version: 3.4.10(react@18.2.0) + specifier: 3.5.0 + version: 3.5.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@types/lodash.debounce': specifier: ^4.0.7 version: 4.0.9 @@ -1136,20 +1136,20 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/button': - specifier: 3.10.1 - version: 3.10.1(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1203,32 +1203,32 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/checkbox': - specifier: 3.14.8 - version: 3.14.8(react@18.2.0) + specifier: 3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/checkbox': - specifier: 3.6.9 - version: 3.6.9(react@18.2.0) + specifier: 3.6.10 + version: 3.6.10(react@18.2.0) '@react-stately/toggle': - specifier: 3.7.8 - version: 3.7.8(react@18.2.0) + specifier: 3.8.0 + version: 3.8.0(react@18.2.0) '@react-types/checkbox': - specifier: 3.8.4 - version: 3.8.4(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/chip': specifier: workspace:* @@ -1273,17 +1273,17 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/checkbox': - specifier: 3.8.4 - version: 3.8.4(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1332,8 +1332,8 @@ importers: packages/components/date-input: dependencies: '@internationalized/date': - specifier: 3.5.6 - version: 3.5.6 + specifier: 3.6.0 + version: 3.6.0 '@nextui-org/form': specifier: workspace:* version: link:../form @@ -1344,23 +1344,23 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/datepicker': - specifier: 3.11.4 - version: 3.11.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/datepicker': - specifier: 3.10.3 - version: 3.10.3(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-types/datepicker': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -1387,8 +1387,8 @@ importers: packages/components/date-picker: dependencies: '@internationalized/date': - specifier: 3.5.6 - version: 3.5.6 + specifier: 3.6.0 + version: 3.6.0 '@nextui-org/aria-utils': specifier: workspace:* version: link:../../utilities/aria-utils @@ -1417,29 +1417,29 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/datepicker': - specifier: 3.11.4 - version: 3.11.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/datepicker': - specifier: 3.10.3 - version: 3.10.3(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-stately/overlays': - specifier: 3.6.11 - version: 3.6.11(react@18.2.0) + specifier: 3.6.12 + version: 3.6.12(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) '@react-types/datepicker': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/radio': specifier: workspace:* @@ -1478,8 +1478,8 @@ importers: specifier: workspace:* version: link:../../core/system-rsc '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/theme': specifier: workspace:* @@ -1576,20 +1576,20 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/menu': - specifier: 3.15.5 - version: 3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.16.0 + version: 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/menu': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/menu': - specifier: 3.9.12 - version: 3.9.12(react@18.2.0) + specifier: 3.9.13 + version: 3.9.13(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1646,14 +1646,14 @@ importers: specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/form': - specifier: 3.0.6 - version: 3.0.6(react@18.2.0) + specifier: 3.1.0 + version: 3.1.0(react@18.2.0) '@react-types/form': - specifier: ^3.7.8 + specifier: 3.7.8 version: 3.7.8(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -1714,26 +1714,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/textfield': - specifier: 3.14.10 - version: 3.14.10(react@18.2.0) + specifier: 3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@react-types/textfield': - specifier: 3.9.7 - version: 3.9.7(react@18.2.0) + specifier: 3.10.0 + version: 3.10.0(react@18.2.0) react-textarea-autosize: specifier: ^8.5.3 version: 8.5.5(@types/react@18.2.8)(react@18.2.0) @@ -1769,23 +1769,23 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/form': - specifier: 3.0.8 - version: 3.0.8(react@18.2.0) + specifier: 3.0.11 + version: 3.0.11(react@18.2.0) '@react-aria/utils': - specifier: 3.24.1 - version: 3.24.1(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@react-stately/form': - specifier: 3.0.5 - version: 3.0.5(react@18.2.0) + specifier: 3.1.0 + version: 3.1.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.1 - version: 3.10.1(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) '@react-types/textfield': - specifier: 3.9.3 - version: 3.9.3(react@18.2.0) + specifier: 3.10.0 + version: 3.10.0(react@18.2.0) input-otp: specifier: 1.4.1 version: 1.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -1855,17 +1855,17 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-link '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/link': - specifier: 3.7.6 - version: 3.7.6(react@18.2.0) + specifier: 3.7.7 + version: 3.7.7(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/link': - specifier: 3.5.8 - version: 3.5.8(react@18.2.0) + specifier: 3.5.9 + version: 3.5.9(react@18.2.0) devDependencies: '@nextui-org/system': specifier: workspace:* @@ -1901,26 +1901,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-is-mobile '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/listbox': - specifier: 3.13.5 - version: 3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.13.6 + version: 3.13.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/list': - specifier: 3.11.0 - version: 3.11.0(react@18.2.0) + specifier: 3.11.1 + version: 3.11.1(react@18.2.0) '@react-types/menu': - specifier: 3.9.12 - version: 3.9.12(react@18.2.0) + specifier: 3.9.13 + version: 3.9.13(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@tanstack/react-virtual': specifier: 3.10.9 version: 3.10.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -1977,29 +1977,29 @@ importers: specifier: workspace:* version: link:../../hooks/use-is-mobile '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/menu': - specifier: 3.15.5 - version: 3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.16.0 + version: 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/menu': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-stately/tree': - specifier: 3.8.5 - version: 3.8.5(react@18.2.0) + specifier: 3.8.6 + version: 3.8.6(react@18.2.0) '@react-types/menu': - specifier: 3.9.12 - version: 3.9.12(react@18.2.0) + specifier: 3.9.13 + version: 3.9.13(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -2053,26 +2053,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-draggable '@react-aria/dialog': - specifier: 3.5.19 - version: 3.5.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.5.20 + version: 3.5.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/overlays': - specifier: 3.23.4 - version: 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.24.0 + version: 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/overlays': - specifier: 3.6.11 - version: 3.6.11(react@18.2.0) + specifier: 3.6.12 + version: 3.6.12(react@18.2.0) '@react-types/overlays': - specifier: 3.8.10 - version: 3.8.10(react@18.2.0) + specifier: 3.8.11 + version: 3.8.11(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -2132,23 +2132,23 @@ importers: specifier: workspace:* version: link:../../hooks/use-scroll-position '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/overlays': - specifier: 3.23.4 - version: 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.24.0 + version: 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/toggle': - specifier: 3.7.8 - version: 3.7.8(react@18.2.0) + specifier: 3.8.0 + version: 3.8.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -2208,14 +2208,14 @@ importers: specifier: workspace:* version: link:../../hooks/use-pagination '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) @@ -2266,29 +2266,29 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/dialog': - specifier: 3.5.19 - version: 3.5.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.5.20 + version: 3.5.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/overlays': - specifier: 3.23.4 - version: 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.24.0 + version: 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/overlays': - specifier: 3.6.11 - version: 3.6.11(react@18.2.0) + specifier: 3.6.12 + version: 3.6.12(react@18.2.0) '@react-types/button': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/overlays': - specifier: 3.8.10 - version: 3.8.10(react@18.2.0) + specifier: 3.8.11 + version: 3.8.11(react@18.2.0) devDependencies: '@nextui-org/card': specifier: workspace:* @@ -2327,17 +2327,17 @@ importers: specifier: workspace:* version: link:../../hooks/use-is-mounted '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/progress': - specifier: 3.4.17 - version: 3.4.17(react@18.2.0) + specifier: 3.4.18 + version: 3.4.18(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/progress': - specifier: 3.5.7 - version: 3.5.7(react@18.2.0) + specifier: 3.5.8 + version: 3.5.8(react@18.2.0) devDependencies: '@nextui-org/card': specifier: workspace:* @@ -2373,29 +2373,29 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/radio': - specifier: 3.10.9 - version: 3.10.9(react@18.2.0) + specifier: 3.10.10 + version: 3.10.10(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/radio': - specifier: 3.10.8 - version: 3.10.8(react@18.2.0) + specifier: 3.10.9 + version: 3.10.9(react@18.2.0) '@react-types/radio': - specifier: 3.8.4 - version: 3.8.4(react@18.2.0) + specifier: 3.8.5 + version: 3.8.5(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -2517,23 +2517,23 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/form': - specifier: 3.0.10 - version: 3.0.10(react@18.2.0) + specifier: 3.0.11 + version: 3.0.11(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@tanstack/react-virtual': specifier: 3.10.9 version: 3.10.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -2563,11 +2563,11 @@ importers: specifier: workspace:* version: link:../../hooks/use-infinite-scroll '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-stately/data': - specifier: 3.11.7 - version: 3.11.7(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react@18.2.0) clean-package: specifier: 2.2.0 version: 2.2.0 @@ -2627,26 +2627,26 @@ importers: specifier: workspace:* version: link:../tooltip '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/slider': - specifier: 3.7.13 - version: 3.7.13(react@18.2.0) + specifier: 3.7.14 + version: 3.7.14(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/slider': - specifier: 3.5.8 - version: 3.5.8(react@18.2.0) + specifier: 3.6.0 + version: 3.6.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -2691,8 +2691,8 @@ importers: specifier: workspace:* version: link:../../hooks/use-clipboard '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) @@ -2778,26 +2778,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/switch': - specifier: 3.6.9 - version: 3.6.9(react@18.2.0) + specifier: 3.6.10 + version: 3.6.10(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/toggle': - specifier: 3.7.8 - version: 3.7.8(react@18.2.0) + specifier: 3.8.0 + version: 3.8.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -2839,32 +2839,32 @@ importers: specifier: workspace:* version: link:../spacer '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/table': - specifier: 3.15.5 - version: 3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.16.0 + version: 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) '@react-stately/table': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.13.0 + version: 3.13.0(react@18.2.0) '@react-stately/virtualizer': - specifier: 4.1.0 - version: 4.1.0(react@18.2.0) + specifier: 4.2.0 + version: 4.2.0(react@18.2.0) '@react-types/grid': - specifier: 3.2.9 - version: 3.2.9(react@18.2.0) + specifier: 3.2.10 + version: 3.2.10(react@18.2.0) '@react-types/table': - specifier: 3.10.2 - version: 3.10.2(react@18.2.0) + specifier: 3.10.3 + version: 3.10.3(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -2894,8 +2894,8 @@ importers: specifier: workspace:* version: link:../user '@react-stately/data': - specifier: 3.11.7 - version: 3.11.7(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react@18.2.0) clean-package: specifier: 2.2.0 version: 2.2.0 @@ -2930,26 +2930,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-update-effect '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/tabs': - specifier: 3.9.7 - version: 3.9.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.9.8 + version: 3.9.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/tabs': - specifier: 3.6.10 - version: 3.6.10(react@18.2.0) + specifier: 3.7.0 + version: 3.7.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) '@react-types/tabs': - specifier: 3.3.10 - version: 3.3.10(react@18.2.0) + specifier: 3.3.11 + version: 3.3.11(react@18.2.0) scroll-into-view-if-needed: specifier: 3.0.10 version: 3.0.10 @@ -3012,26 +3012,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-safe-layout-effect '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/overlays': - specifier: 3.23.4 - version: 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.24.0 + version: 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/tooltip': - specifier: 3.7.9 - version: 3.7.9(react@18.2.0) + specifier: 3.7.10 + version: 3.7.10(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/tooltip': - specifier: 3.4.13 - version: 3.4.13(react@18.2.0) + specifier: 3.5.0 + version: 3.5.0(react@18.2.0) '@react-types/overlays': - specifier: 3.8.10 - version: 3.8.10(react@18.2.0) + specifier: 3.8.11 + version: 3.8.11(react@18.2.0) '@react-types/tooltip': - specifier: 3.4.12 - version: 3.4.12(react@18.2.0) + specifier: 3.4.13 + version: 3.4.13(react@18.2.0) react: specifier: 18.2.0 version: 18.2.0 @@ -3067,8 +3067,8 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) @@ -3236,8 +3236,8 @@ importers: specifier: workspace:* version: link:../../components/user '@react-aria/visually-hidden': - specifier: 3.8.17 - version: 3.8.17(react@18.2.0) + specifier: 3.8.18 + version: 3.8.18(react@18.2.0) framer-motion: specifier: '>=11.5.6 || >=12.0.0-alpha.1' version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -3255,8 +3255,8 @@ importers: packages/core/system: dependencies: '@internationalized/date': - specifier: 3.5.6 - version: 3.5.6 + specifier: 3.6.0 + version: 3.6.0 '@nextui-org/react-utils': specifier: workspace:* version: link:../../utilities/react-utils @@ -3264,20 +3264,20 @@ importers: specifier: workspace:* version: link:../system-rsc '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/overlays': - specifier: 3.23.4 - version: 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.24.0 + version: 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) '@react-types/datepicker': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3295,8 +3295,8 @@ importers: packages/core/system-rsc: dependencies: '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) clsx: specifier: ^1.2.1 version: 1.2.1 @@ -3363,26 +3363,26 @@ importers: packages/hooks/use-aria-accordion: dependencies: '@react-aria/button': - specifier: 3.10.1 - version: 3.10.1(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/selection': - specifier: 3.20.1 - version: 3.20.1(react-dom@18.3.1(react@18.2.0))(react@18.2.0) + specifier: 3.21.0 + version: 3.21.0(react-dom@18.3.1(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/tree': - specifier: 3.8.5 - version: 3.8.5(react@18.2.0) + specifier: 3.8.6 + version: 3.8.6(react@18.2.0) '@react-types/accordion': - specifier: 3.0.0-alpha.24 - version: 3.0.0-alpha.24(react@18.2.0) + specifier: 3.0.0-alpha.25 + version: 3.0.0-alpha.25(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3394,17 +3394,17 @@ importers: packages/hooks/use-aria-accordion-item: dependencies: '@react-aria/button': - specifier: 3.10.1 - version: 3.10.1(react@18.2.0) + specifier: 3.11.0 + version: 3.11.0(react@18.2.0) '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-stately/tree': - specifier: 3.8.5 - version: 3.8.5(react@18.2.0) + specifier: 3.8.6 + version: 3.8.6(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3416,20 +3416,20 @@ importers: packages/hooks/use-aria-button: dependencies: '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/button': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3441,20 +3441,20 @@ importers: packages/hooks/use-aria-link: dependencies: '@react-aria/focus': - specifier: 3.18.4 - version: 3.18.4(react@18.2.0) + specifier: 3.19.0 + version: 3.19.0(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/link': - specifier: 3.5.8 - version: 3.5.8(react@18.2.0) + specifier: 3.5.9 + version: 3.5.9(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3466,32 +3466,32 @@ importers: packages/hooks/use-aria-menu: dependencies: '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/menu': - specifier: 3.15.5 - version: 3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.16.0 + version: 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': - specifier: 3.20.1 - version: 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.21.0 + version: 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/collections': - specifier: 3.11.0 - version: 3.11.0(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react@18.2.0) '@react-stately/tree': - specifier: 3.8.5 - version: 3.8.5(react@18.2.0) + specifier: 3.8.6 + version: 3.8.6(react@18.2.0) '@react-types/menu': - specifier: 3.9.12 - version: 3.9.12(react@18.2.0) + specifier: 3.9.13 + version: 3.9.13(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) react-dom: specifier: 18.2.0 version: 18.2.0(react@18.2.0) @@ -3506,17 +3506,17 @@ importers: packages/hooks/use-aria-modal-overlay: dependencies: '@react-aria/overlays': - specifier: 3.23.4 - version: 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.24.0 + version: 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/overlays': - specifier: 3.6.11 - version: 3.6.11(react@18.2.0) + specifier: 3.6.12 + version: 3.6.12(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3531,47 +3531,47 @@ importers: packages/hooks/use-aria-multiselect: dependencies: '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/label': - specifier: 3.7.12 - version: 3.7.12(react@18.2.0) + specifier: 3.7.13 + version: 3.7.13(react@18.2.0) '@react-aria/listbox': - specifier: 3.13.5 - version: 3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.13.6 + version: 3.13.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/menu': - specifier: 3.15.5 - version: 3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.16.0 + version: 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': - specifier: 3.20.1 - version: 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 3.21.0 + version: 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/form': - specifier: 3.0.6 - version: 3.0.6(react@18.2.0) + specifier: 3.1.0 + version: 3.1.0(react@18.2.0) '@react-stately/list': - specifier: 3.11.0 - version: 3.11.0(react@18.2.0) + specifier: 3.11.1 + version: 3.11.1(react@18.2.0) '@react-stately/menu': - specifier: 3.8.3 - version: 3.8.3(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/button': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/overlays': - specifier: 3.8.10 - version: 3.8.10(react@18.2.0) + specifier: 3.8.11 + version: 3.8.11(react@18.2.0) '@react-types/select': - specifier: 3.9.7 - version: 3.9.7(react@18.2.0) + specifier: 3.9.8 + version: 3.9.8(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3592,14 +3592,14 @@ importers: specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/toggle': - specifier: 3.7.8 - version: 3.7.8(react@18.2.0) + specifier: 3.8.0 + version: 3.8.0(react@18.2.0) '@react-types/button': - specifier: 3.10.0 - version: 3.10.0(react@18.2.0) + specifier: 3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3652,8 +3652,8 @@ importers: specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/utils': - specifier: 3.10.4 - version: 3.10.4(react@18.2.0) + specifier: 3.10.5 + version: 3.10.5(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3665,8 +3665,8 @@ importers: packages/hooks/use-draggable: dependencies: '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3707,17 +3707,17 @@ importers: packages/hooks/use-intersection-observer: dependencies: '@react-aria/interactions': - specifier: 3.22.4 - version: 3.22.4(react@18.2.0) + specifier: 3.22.5 + version: 3.22.5(react@18.2.0) '@react-aria/ssr': - specifier: 3.9.6 - version: 3.9.6(react@18.2.0) + specifier: 3.9.7 + version: 3.9.7(react@18.2.0) '@react-aria/utils': specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3729,8 +3729,8 @@ importers: packages/hooks/use-is-mobile: dependencies: '@react-aria/ssr': - specifier: 3.9.6 - version: 3.9.6(react@18.2.0) + specifier: 3.9.7 + version: 3.9.7(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3763,8 +3763,8 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/i18n': - specifier: 3.12.3 - version: 3.12.3(react@18.2.0) + specifier: 3.12.4 + version: 3.12.4(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3937,17 +3937,17 @@ importers: specifier: 3.26.0 version: 3.26.0(react@18.2.0) '@react-stately/collections': - specifier: 3.11.0 - version: 3.11.0(react@18.2.0) + specifier: 3.12.0 + version: 3.12.0(react@18.2.0) '@react-stately/overlays': - specifier: 3.6.11 - version: 3.6.11(react@18.2.0) + specifier: 3.6.12 + version: 3.6.12(react@18.2.0) '@react-types/overlays': - specifier: 3.8.10 - version: 3.8.10(react@18.2.0) + specifier: 3.8.11 + version: 3.8.11(react@18.2.0) '@react-types/shared': - specifier: 3.25.0 - version: 3.25.0(react@18.2.0) + specifier: 3.26.0 + version: 3.26.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -5545,17 +5545,17 @@ packages: cpu: [x64] os: [win32] - '@internationalized/date@3.5.6': - resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==} + '@internationalized/date@3.6.0': + resolution: {integrity: sha512-+z6ti+CcJnRlLHok/emGEsWQhe7kfSmEW+/6qCzvKY67YPh7YOBfvc7+/+NXq+zJlbArg30tYpqLjNgcAYv2YQ==} - '@internationalized/message@3.1.5': - resolution: {integrity: sha512-hjEpLKFlYA3m5apldLqzHqw531qqfOEq0HlTWdfyZmcloWiUbWsYXD6YTiUmQmOtarthzhdjCAwMVrB8a4E7uA==} + '@internationalized/message@3.1.6': + resolution: {integrity: sha512-JxbK3iAcTIeNr1p0WIFg/wQJjIzJt9l/2KNY/48vXV7GRGZSv3zMxJsce008fZclk2cDC8y0Ig3odceHO7EfNQ==} - '@internationalized/number@3.5.4': - resolution: {integrity: sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==} + '@internationalized/number@3.6.0': + resolution: {integrity: sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==} - '@internationalized/string@3.2.4': - resolution: {integrity: sha512-BcyadXPn89Ae190QGZGDUZPqxLj/xsP4U1Br1oSy8yfIjmpJ8cJtGYleaodqW/EmzFjwELtwDojLkf3FhV6SjA==} + '@internationalized/string@3.2.5': + resolution: {integrity: sha512-rKs71Zvl2OKOHM+mzAFMIyqR5hI1d1O6BBkMK2/lkfg3fkmVh9Eeg0awcA8W2WqYqDOv6a86DIOlFpggwLtbuw==} '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} @@ -6585,78 +6585,63 @@ packages: '@types/react': optional: true - '@react-aria/breadcrumbs@3.5.18': - resolution: {integrity: sha512-JRc6nAwQsjqsPw/3MlGwJcVo9ACZDbCOwWNNEnj8mR0fQopJO5xliq3qVzxDRZjdYrVUfTTyKXuepv/jMB1Y6Q==} + '@react-aria/breadcrumbs@3.5.19': + resolution: {integrity: sha512-mVngOPFYVVhec89rf/CiYQGTfaLRfHFtX+JQwY7sNYNqSA+gO8p4lNARe3Be6bJPgH+LUQuruIY9/ZDL6LT3HA==} peerDependencies: react: 18.2.0 - '@react-aria/button@3.10.1': - resolution: {integrity: sha512-1vkRsjdvJrJleK73u7ClrW4Fw3mtr2hIs8M2yLZUpLoqHXnIYJwmeEMtzwyPFYKBc5jaHcGXw45any7Puy1aFA==} + '@react-aria/button@3.11.0': + resolution: {integrity: sha512-b37eIV6IW11KmNIAm65F3SEl2/mgj5BrHIysW6smZX3KoKWTGYsYfcQkmtNgY0GOSFfDxMCoolsZ6mxC00nSDA==} peerDependencies: react: 18.2.0 - '@react-aria/calendar@3.5.13': - resolution: {integrity: sha512-BJV5IwIH4UPDa6/HRTOBcM1wC+/6p823VrbocV9mr+rt5cCnuh+cqcCQKqUSEbfaTMPrmabjBuEaQIvqjLRYUA==} + '@react-aria/calendar@3.6.0': + resolution: {integrity: sha512-tZ3nd5DP8uxckbj83Pt+4RqgcTWDlGi7njzc7QqFOG2ApfnYDUXbIpb/Q4KY6JNlJskG8q33wo0XfOwNy8J+eg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/checkbox@3.14.8': - resolution: {integrity: sha512-0qPJ3fiQQm7tiMHmIhR9iokr/MhhI2h6OWX/pDeIy/Gj63WSVk+Cka3NUhgMRGkguHKDZPKaFjK1oZQsXhCThQ==} + '@react-aria/checkbox@3.15.0': + resolution: {integrity: sha512-z/8xd4em7o0MroBXwkkwv7QRwiJaA1FwqMhRUb7iqtBGP2oSytBEDf0N7L09oci32a1P4ZPz2rMK5GlLh/PD6g==} peerDependencies: react: 18.2.0 - '@react-aria/combobox@3.10.5': - resolution: {integrity: sha512-1cjBJXWYuR0de+9IEU1MOer3H5FSlbrdaqlWo+M6vvMymBL2OjjwXiG3LY1mR65ZwHoTswXzt6/mujUKaxk5vw==} + '@react-aria/combobox@3.11.0': + resolution: {integrity: sha512-s88YMmPkMO1WSoiH1KIyZDLJqUwvM2wHXXakj3cYw1tBHGo4rOUFq+JWQIbM5EDO4HOR4AUUqzIUd0NO7t3zyg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/datepicker@3.11.4': - resolution: {integrity: sha512-TXe1TB/pSwrIQ5BIDr6NCAYjBaKgLN6cP5DlAihywHzqxbM6vO8GU6qbrZNSBrtfzZnrR/4z66Vlw6rhznLnqQ==} + '@react-aria/datepicker@3.12.0': + resolution: {integrity: sha512-VYNXioLfddIHpwQx211+rTYuunDmI7VHWBRetCpH3loIsVFuhFSRchTQpclAzxolO3g0vO7pMVj9VYt7Swp6kg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/dialog@3.5.19': - resolution: {integrity: sha512-I3AJWpAWCajj8Ama8qLQ18Tc37ODyk+Ym3haYEl5L4QnuFc0dU1sMJr15fppDGIxYjwvTTfctyhaSCz+S+wpkw==} + '@react-aria/dialog@3.5.20': + resolution: {integrity: sha512-l0GZVLgeOd3kL3Yj8xQW7wN3gn9WW3RLd/SGI9t7ciTq+I/FhftjXCWzXLlOCCTLMf+gv7eazecECtmoWUaZWQ==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/focus@3.18.4': - resolution: {integrity: sha512-91J35077w9UNaMK1cpMUEFRkNNz0uZjnSwiyBCFuRdaVuivO53wNC9XtWSDNDdcO5cGy87vfJRVAiyoCn/mjqA==} - peerDependencies: - react: 18.2.0 - '@react-aria/focus@3.19.0': resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==} peerDependencies: react: 18.2.0 - '@react-aria/form@3.0.10': - resolution: {integrity: sha512-hWBrqEXxBxcpYTJv0telQKaiu2728EUFHta8/RGBqJ4+MhKKxI7+PnLoms78IuiK0MCYvukHfun1fuQvK+8jsg==} - peerDependencies: - react: 18.2.0 - - '@react-aria/form@3.0.8': - resolution: {integrity: sha512-8S2QiyUdAgK43M3flohI0R+2rTyzH088EmgeRArA8euvJTL16cj/oSOKMEgWVihjotJ9n6awPb43ZhKboyNsMg==} + '@react-aria/form@3.0.11': + resolution: {integrity: sha512-oXzjTiwVuuWjZ8muU0hp3BrDH5qjVctLOF50mjPvqUbvXQTHhoDxWweyIXPQjGshaqBd2w4pWaE4A2rG2O/apw==} peerDependencies: react: 18.2.0 - '@react-aria/grid@3.10.5': - resolution: {integrity: sha512-9sLa+rpLgRZk7VX+tvdSudn1tdVgolVzhDLGWd95yS4UtPVMihTMGBrRoByY57Wxvh1V+7Ptw8kc6tsRSotYKg==} + '@react-aria/grid@3.11.0': + resolution: {integrity: sha512-lN5FpQgu2Rq0CzTPWmzRpq6QHcMmzsXYeClsgO3108uVp1/genBNAObYVTxGOKe/jb9q99trz8EtIn05O6KN1g==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/i18n@3.12.3': - resolution: {integrity: sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==} - peerDependencies: - react: 18.2.0 - - '@react-aria/interactions@3.22.4': - resolution: {integrity: sha512-E0vsgtpItmknq/MJELqYJwib+YN18Qag8nroqwjk1qOnBa9ROIkUhWJerLi1qs5diXq9LHKehZDXRlwPvdEFww==} + '@react-aria/i18n@3.12.4': + resolution: {integrity: sha512-j9+UL3q0Ls8MhXV9gtnKlyozq4aM95YywXqnmJtzT1rYeBx7w28hooqrWkCYLfqr4OIryv1KUnPiCSLwC2OC7w==} peerDependencies: react: 18.2.0 @@ -6665,95 +6650,89 @@ packages: peerDependencies: react: 18.2.0 - '@react-aria/label@3.7.12': - resolution: {integrity: sha512-u9xT90lAlgb7xiv+p0md9QwCHz65XL7tjS5e29e88Rs3ptkv3aQubTqxVOUTEwzbNUT4A1QqTjUm1yfHewIRUw==} + '@react-aria/label@3.7.13': + resolution: {integrity: sha512-brSAXZVTey5RG/Ex6mTrV/9IhGSQFU4Al34qmjEDho+Z2qT4oPwf8k7TRXWWqzOU0ugYxekYbsLd2zlN3XvWcg==} peerDependencies: react: 18.2.0 - '@react-aria/link@3.7.6': - resolution: {integrity: sha512-8buJznRWoOud8ApygUAz7TsshXNs6HDGB6YOYEJxy0WTKILn0U5NUymw2PWC14+bWRPelHMKmi6vbFBrJWzSzQ==} + '@react-aria/link@3.7.7': + resolution: {integrity: sha512-eVBRcHKhNSsATYWv5wRnZXRqPVcKAWWakyvfrYePIKpC3s4BaHZyTGYdefk8ZwZdEOuQZBqLMnjW80q1uhtkuA==} peerDependencies: react: 18.2.0 - '@react-aria/listbox@3.13.5': - resolution: {integrity: sha512-tn32L/PIELIPYfDWCJ3OBRvvb/jCEvIzs6IYs8xCISV5W4853Je/WnA8wumWnz07U9sODYFmHUx2ThO7Z7dH7Q==} + '@react-aria/listbox@3.13.6': + resolution: {integrity: sha512-6hEXEXIZVau9lgBZ4VVjFR3JnGU+fJaPmV3HP0UZ2ucUptfG0MZo24cn+ZQJsWiuaCfNFv5b8qribiv+BcO+Kg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/live-announcer@3.4.0': - resolution: {integrity: sha512-VBxEdMq2SbtRbNTQNcDR2G6E3lEl5cJSBiHTTO8Ln1AL76LiazrylIXGgoktqzCfRQmyq0v8CHk1cNKDU9mvJg==} + '@react-aria/live-announcer@3.4.1': + resolution: {integrity: sha512-4X2mcxgqLvvkqxv2l1n00jTzUxxe0kkLiapBGH1LHX/CxA1oQcHDqv8etJ2ZOwmS/MSBBiWnv3DwYHDOF6ubig==} - '@react-aria/menu@3.15.5': - resolution: {integrity: sha512-ygfS032hJSZCYYbMHnUSmUTVMaz99L9AUZ9kMa6g+k2X1t92K1gXfhYYkoClQD6+G0ch7zm0SwYFlUmRf9yOEA==} + '@react-aria/menu@3.16.0': + resolution: {integrity: sha512-TNk+Vd3TbpBPUxEloAdHRTaRxf9JBK7YmkHYiq0Yj5Lc22KS0E2eTyhpPM9xJvEWN2TlC5TEvNfdyui2kYWFFQ==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/overlays@3.23.4': - resolution: {integrity: sha512-MZUW6SUlTWOwKuFTqUTxW5BnvdW3Y9cEwanWuz98NX3ST7JYe/3ZcZhb37/fGW4uoGHnQ9icEwVf0rbMrK2STg==} + '@react-aria/overlays@3.24.0': + resolution: {integrity: sha512-0kAXBsMNTc/a3M07tK9Cdt/ea8CxTAEJ223g8YgqImlmoBBYAL7dl5G01IOj67TM64uWPTmZrOklBchHWgEm3A==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/progress@3.4.17': - resolution: {integrity: sha512-5+01WNibLoNS5KcfU5p6vg7Lhz17plqqzv/uITx28zzj3saaj0VLR7n57Ig2fXe8ZEQoUS89BS3sIEsIf96S1A==} + '@react-aria/progress@3.4.18': + resolution: {integrity: sha512-FOLgJ9t9i1u3oAAimybJG6r7/soNPBnJfWo4Yr6MmaUv90qVGa1h6kiuM5m9H/bm5JobAebhdfHit9lFlgsCmg==} peerDependencies: react: 18.2.0 - '@react-aria/radio@3.10.9': - resolution: {integrity: sha512-XnU7zGTEku1mPvJweX4I3ifwEBtglEWYoO4CZGvA3eXj39X8iGwNZXUst1pdk2ykWUKbtwrmsWA6zG2OAGODYw==} + '@react-aria/radio@3.10.10': + resolution: {integrity: sha512-NVdeOVrsrHgSfwL2jWCCXFsWZb+RMRZErj5vthHQW4nkHECGOzeX56VaLWTSvdoCPqi9wdIX8A6K9peeAIgxzA==} peerDependencies: react: 18.2.0 - '@react-aria/selection@3.20.1': - resolution: {integrity: sha512-My0w8UC/7PAkz/1yZUjr2VRuzDZz1RrbgTqP36j5hsJx8RczDTjI4TmKtQNKG0ggaP4w83G2Og5JPTq3w3LMAw==} + '@react-aria/selection@3.21.0': + resolution: {integrity: sha512-52JJ6hlPcM+gt0VV3DBmz6Kj1YAJr13TfutrKfGWcK36LvNCBm1j0N+TDqbdnlp8Nue6w0+5FIwZq44XPYiBGg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/slider@3.7.13': - resolution: {integrity: sha512-yGlIpoOUKUoP0M3iI8ZHU001NASBOeZJSIQNfoS7HiqSR3bz+6BX7DRAM6B+CPHJleUtrdQ6JjO/8V8ZUV2kNQ==} + '@react-aria/slider@3.7.14': + resolution: {integrity: sha512-7rOiKjLkEZ0j7mPMlwrqivc+K4OSfL14slaQp06GHRiJkhiWXh2/drPe15hgNq55HmBQBpA0umKMkJcqVgmXPA==} peerDependencies: react: 18.2.0 - '@react-aria/spinbutton@3.6.9': - resolution: {integrity: sha512-m+uVJdiIc2LrLVDGjU7p8P2O2gUvTN26GR+NgH4rl+tUSuAB0+T1rjls/C+oXEqQjCpQihEB9Bt4M+VHpzmyjA==} + '@react-aria/spinbutton@3.6.10': + resolution: {integrity: sha512-nhYEYk7xUNOZDaqiQ5w/nHH9ouqjJbabTWXH+KK7UR1oVGfo4z1wG94l8KWF3Z6SGGnBxzLJyTBguZ4g9aYTSg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/ssr@3.9.6': - resolution: {integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==} - engines: {node: '>= 12'} - peerDependencies: - react: 18.2.0 - '@react-aria/ssr@3.9.7': resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==} engines: {node: '>= 12'} peerDependencies: react: 18.2.0 - '@react-aria/switch@3.6.9': - resolution: {integrity: sha512-w7xIywpR6llm22DXYOObZ2Uqvsw+gNmxdJ86h8+YRtpSkFnPMhXtTMv3RXpEGYhPTt/YDIqfxiluF1E2IHGwIA==} + '@react-aria/switch@3.6.10': + resolution: {integrity: sha512-FtaI9WaEP1tAmra1sYlAkYXg9x75P5UtgY8pSbe9+1WRyWbuE1QZT+RNCTi3IU4fZ7iJQmXH6+VaMyzPlSUagw==} peerDependencies: react: 18.2.0 - '@react-aria/table@3.15.5': - resolution: {integrity: sha512-bdNZF0ZoNOfyOEIK/ctv0llacaCNk8mv+GGy8mwh5bZeJjd8KuDIpYQtZJYvf2YVvPYRWyXRhF0/B229m65f/g==} + '@react-aria/table@3.16.0': + resolution: {integrity: sha512-9xF9S3CJ7XRiiK92hsIKxPedD0kgcQWwqTMtj3IBynpQ4vsnRiW3YNIzrn9C3apjknRZDTSta8O2QPYCUMmw2A==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/tabs@3.9.7': - resolution: {integrity: sha512-f78P2Y9ZCYtwOnteku9mPVIk21xSSREYWaQPtA9ebSgVbeR5ya6RpaX9ISc9cd0HEF3Av+hZYyS1pNXXWymv9g==} + '@react-aria/tabs@3.9.8': + resolution: {integrity: sha512-Nur/qRFBe+Zrt4xcCJV/ULXCS3Mlae+B89bp1Gl20vSDqk6uaPtGk+cS5k03eugOvas7AQapqNJsJgKd66TChw==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/textfield@3.14.10': - resolution: {integrity: sha512-vG44FgxwfJUF2S6tRG+Sg646DDEgs0CO9RYniafEOHz8rwcNIH3lML7n8LAfzQa+BjBY28+UF0wmqEvd6VCzCQ==} + '@react-aria/textfield@3.15.0': + resolution: {integrity: sha512-V5mg7y1OR6WXYHdhhm4FC7QyGc9TideVRDFij1SdOJrIo5IFB7lvwpOS0GmgwkVbtr71PTRMjZnNbrJUFU6VNA==} peerDependencies: react: 18.2.0 @@ -6762,18 +6741,13 @@ packages: peerDependencies: react: 18.2.0 - '@react-aria/toggle@3.10.9': - resolution: {integrity: sha512-dtfnyIU2/kcH9rFAiB48diSmaXDv45K7UCuTkMQLjbQa3QHC1oYNbleVN/VdGyAMBsIWtfl8L4uuPrAQmDV/bg==} - peerDependencies: - react: 18.2.0 - - '@react-aria/tooltip@3.7.9': - resolution: {integrity: sha512-TqVJ7YqaP/enxNyA1QGr43w4nBZmOs6Hb/pROMS5afbX7gHgMVFn0lTRc6DC2cvcfgYc4WICs2QiQMniZt/E7A==} + '@react-aria/toolbar@3.0.0-beta.11': + resolution: {integrity: sha512-LM3jTRFNDgoEpoL568WaiuqiVM7eynSQLJis1hV0vlVnhTd7M7kzt7zoOjzxVb5Uapz02uCp1Fsm4wQMz09qwQ==} peerDependencies: react: 18.2.0 - '@react-aria/utils@3.24.1': - resolution: {integrity: sha512-O3s9qhPMd6n42x9sKeJ3lhu5V1Tlnzhu6Yk8QOvDuXf7UGuUjXf9mzfHJt1dYzID4l9Fwm8toczBzPM9t0jc8Q==} + '@react-aria/tooltip@3.7.10': + resolution: {integrity: sha512-Udi3XOnrF/SYIz72jw9bgB74MG/yCOzF5pozHj2FH2HiJlchYv/b6rHByV/77IZemdlkmL/uugrv/7raPLSlnw==} peerDependencies: react: 18.2.0 @@ -6782,14 +6756,14 @@ packages: peerDependencies: react: 18.2.0 - '@react-aria/virtualizer@3.10.1': - resolution: {integrity: sha512-y34w+n/B3nwwj18QHIZlkNj5Fn2rt5CbQE4BBWAM8jYZ5ypwF77i2toxhGTuk1Oo1/hgTX7JYIgDIAQbNraBcg==} + '@react-aria/virtualizer@4.1.0': + resolution: {integrity: sha512-ziSq3Y7iuaAMJWGZU1RRs/TykuPapQfx8dyH2eyKPLgEjBUoXRGWE7n6jklBwal14b0lPK0wkCzRoQbkUvX3cg==} peerDependencies: react: 18.2.0 react-dom: 18.2.0 - '@react-aria/visually-hidden@3.8.17': - resolution: {integrity: sha512-WFgny1q2CbxxU6gu46TGQXf1DjsnuSk+RBDP4M7bm1mUVZzoCp7U7AtjNmsBrWg0NejxUdgD7+7jkHHCQ91qRA==} + '@react-aria/visually-hidden@3.8.18': + resolution: {integrity: sha512-l/0igp+uub/salP35SsNWq5mGmg3G5F5QMS1gDZ8p28n7CgjvzyiGhJbbca7Oxvaw1HRFzVl9ev+89I7moNnFQ==} peerDependencies: react: 18.2.0 @@ -6806,121 +6780,96 @@ packages: peerDependencies: react: 18.2.0 - '@react-stately/calendar@3.5.5': - resolution: {integrity: sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==} - peerDependencies: - react: 18.2.0 - - '@react-stately/checkbox@3.6.9': - resolution: {integrity: sha512-JrY3ecnK/SSJPxw+qhGhg3YV4e0CpUcPDrVwY3mSiAE932DPd19xr+qVCknJ34H7JYYt/q0l2z0lmgPnl96RTg==} - peerDependencies: - react: 18.2.0 - - '@react-stately/collections@3.10.9': - resolution: {integrity: sha512-plyrng6hOQMG8LrjArMA6ts/DgWyXln3g90/hFNbqe/hdVYF53sDVsj8Jb+5LtoYTpiAlV6eOvy1XR0vPZUf8w==} - peerDependencies: - react: 18.2.0 - - '@react-stately/collections@3.11.0': - resolution: {integrity: sha512-TiJeJjHMPSbbeAhmCXLJNSCk0fa5XnCvEuYw6HtQzDnYiq1AD7KAwkpjC5NfKkjqF3FLXs/v9RDm/P69q6rYzw==} + '@react-stately/calendar@3.6.0': + resolution: {integrity: sha512-GqUtOtGnwWjtNrJud8nY/ywI4VBP5byToNVRTnxbMl+gYO1Qe/uc5NG7zjwMxhb2kqSBHZFdkF0DXVqG2Ul+BA==} peerDependencies: react: 18.2.0 - '@react-stately/combobox@3.10.0': - resolution: {integrity: sha512-4W4HCCjjoddW/LZM3pSSeLoV7ncYXlaICKmqlBcbtLR5jY4U5Kx+pPpy3oJ1vCdjDHatIxZ0tVKEBP7vBQVeGQ==} + '@react-stately/checkbox@3.6.10': + resolution: {integrity: sha512-LHm7i4YI8A/RdgWAuADrnSAYIaYYpQeZqsp1a03Og0pJHAlZL0ymN3y2IFwbZueY0rnfM+yF+kWNXjJqbKrFEQ==} peerDependencies: react: 18.2.0 - '@react-stately/data@3.11.4': - resolution: {integrity: sha512-PbnUQxeE6AznSuEWYnRmrYQ9t5z1Asx98Jtrl96EeA6Iapt9kOjTN9ySqCxtPxMKleb1NIqG3+uHU3veIqmLsg==} + '@react-stately/collections@3.12.0': + resolution: {integrity: sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==} peerDependencies: react: 18.2.0 - '@react-stately/data@3.11.7': - resolution: {integrity: sha512-2YJ+Lmca18f/h7jiZiU9j2IhBJl6BFO1BWlwvcCAH/eCWTdveX8gzsUdW++0szzpJaoCilTCYoi8z7QWyVH9jQ==} + '@react-stately/combobox@3.10.1': + resolution: {integrity: sha512-Rso+H+ZEDGFAhpKWbnRxRR/r7YNmYVtt+Rn0eNDNIUp3bYaxIBCdCySyAtALs4I8RZXZQ9zoUznP7YeVwG3cLg==} peerDependencies: react: 18.2.0 - '@react-stately/datepicker@3.10.3': - resolution: {integrity: sha512-6PJW1QMwk6BQMktV9L6DA4f2rfAdLfbq3iTNLy4qxd5IfNPLMUZiJGGTj+cuqx0WcEl+q5irp+YhKBpbmhPZHg==} + '@react-stately/data@3.12.0': + resolution: {integrity: sha512-6PiW2oA56lcH1CVjDcajutzsv91w/PER8K61/OGxtNFFUWaIZH80RWmK4kjU/Lf0vygzXCxout3kEb388lUk0w==} peerDependencies: react: 18.2.0 - '@react-stately/flags@3.0.4': - resolution: {integrity: sha512-RNJEkOALwKg+JeYsfNlfPc4GXm7hiBLX0yuHOkRapWEyDOfi0cinkV/TZG4goOZdQ5tBpHmemf2qqiHAxqHlzQ==} - - '@react-stately/form@3.0.5': - resolution: {integrity: sha512-J3plwJ63HQz109OdmaTqTA8Qhvl3gcYYK7DtgKyNP6mc/Me2Q4tl2avkWoA+22NRuv5m+J8TpBk4AVHUEOwqeQ==} - peerDependencies: - react: 18.2.0 - - '@react-stately/form@3.0.6': - resolution: {integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==} + '@react-stately/datepicker@3.11.0': + resolution: {integrity: sha512-d9MJF34A0VrhL5y5S8mAISA8uwfNCQKmR2k4KoQJm3De1J8SQeNzSjLviAwh1faDow6FXGlA6tVbTrHyDcBgBg==} peerDependencies: react: 18.2.0 - '@react-stately/grid@3.9.3': - resolution: {integrity: sha512-P5KgCNYwm/n8bbLx6527li89RQWoESikrsg2MMyUpUd6IJ321t2pGONGRRQzxE0SBMolPRDJKV0Do2OlsjYKhQ==} - peerDependencies: - react: 18.2.0 + '@react-stately/flags@3.0.5': + resolution: {integrity: sha512-6wks4csxUwPCp23LgJSnkBRhrWpd9jGd64DjcCTNB2AHIFu7Ab1W59pJpUL6TW7uAxVxdNKjgn6D1hlBy8qWsA==} - '@react-stately/layout@3.13.9': - resolution: {integrity: sha512-JCj2cnvRbBjah9LFZbBXMdKkoKuEpzn6hvYBw7h0fNIhNGISpiI1TW4ya1X34kD2vcv/3dc31KV/UqmI4hJCQw==} + '@react-stately/form@3.1.0': + resolution: {integrity: sha512-E2wxNQ0QaTyDHD0nJFtTSnEH9A3bpJurwxhS4vgcUmESHgjFEMLlC9irUSZKgvOgb42GAq+fHoWBsgKeTp9Big==} peerDependencies: react: 18.2.0 - '@react-stately/list@3.11.0': - resolution: {integrity: sha512-O+BxXcbtoLZWn4QIT54RoFUaM+QaJQm6s0ZBJ3Jv4ILIhukVOc55ra+aWMVlXFQSpbf6I3hyVP6cz1yyvd5Rtw==} + '@react-stately/grid@3.10.0': + resolution: {integrity: sha512-ii+DdsOBvCnHMgL0JvUfFwO1kiAPP19Bpdpl6zn/oOltk6F5TmnoyNrzyz+2///1hCiySI3FE1O7ujsAQs7a6Q==} peerDependencies: react: 18.2.0 - '@react-stately/menu@3.8.3': - resolution: {integrity: sha512-sV63V+cMgzipx/N7dq5GaXoItfXIfFEpCtlk3PM2vKstlCJalszXrdo+x996bkeU96h0plB7znAlhlXOeTKzUg==} + '@react-stately/layout@4.1.0': + resolution: {integrity: sha512-pSBqn+4EeOaf2QMK+w2SHgsWKYHdgMZWY3qgJijdzWGZ4JpYmHuiD0yOq80qFdUwxcexPW3vFg3hqIQlMpXeCw==} peerDependencies: react: 18.2.0 - '@react-stately/overlays@3.6.11': - resolution: {integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==} + '@react-stately/list@3.11.1': + resolution: {integrity: sha512-UCOpIvqBOjwLtk7zVTYWuKU1m1Oe61Q5lNar/GwHaV1nAiSQ8/yYlhr40NkBEs9X3plEfsV28UIpzOrYnu1tPg==} peerDependencies: react: 18.2.0 - '@react-stately/radio@3.10.8': - resolution: {integrity: sha512-VRq6Gzsbk3jzX6hdrSoDoSra9vLRsOi2pLkvW/CMrJ0GSgMwr8jjvJKnNFvYJ3eYQb20EwkarsOAfk7vPSIt/Q==} + '@react-stately/menu@3.9.0': + resolution: {integrity: sha512-++sm0fzZeUs9GvtRbj5RwrP+KL9KPANp9f4SvtI3s+MP+Y/X3X7LNNePeeccGeyikB5fzMsuyvd82bRRW9IhDQ==} peerDependencies: react: 18.2.0 - '@react-stately/select@3.6.8': - resolution: {integrity: sha512-fLAVzGeYSdYdBdrEVws6Pb1ywFPdapA0eWphoW5s3fS0/pKcVWwbCHeHlaBEi1ISyqEubQZFGQdeFKm/M46Hew==} + '@react-stately/overlays@3.6.12': + resolution: {integrity: sha512-QinvZhwZgj8obUyPIcyURSCjTZlqZYRRCS60TF8jH8ZpT0tEAuDb3wvhhSXuYA3Xo9EHLwvLjEf3tQKKdAQArw==} peerDependencies: react: 18.2.0 - '@react-stately/selection@3.17.0': - resolution: {integrity: sha512-It3LRTaFOavybuDBvBH2mvCh73OL4awqvN4tZ0JzLzMtaYSBe9+YmFasYrzB0o7ca17B2q1tpUmsNWaAgIqbLA==} + '@react-stately/radio@3.10.9': + resolution: {integrity: sha512-kUQ7VdqFke8SDRCatw2jW3rgzMWbvw+n2imN2THETynI47NmNLzNP11dlGO2OllRtTrsLhmBNlYHa3W62pFpAw==} peerDependencies: react: 18.2.0 - '@react-stately/slider@3.5.8': - resolution: {integrity: sha512-EDgbrxMq1w3+XTN72MGl3YtAG/j65EYX1Uc3Fh56K00+inJbTdRWyYTrb3NA310fXCd0WFBbzExuH2ohlKQycg==} + '@react-stately/select@3.6.9': + resolution: {integrity: sha512-vASUDv7FhEYQURzM+JIwcusPv7/x/l3zHc/oKJPvoCl3aa9pwS8hZwS82SC00o2iFnrDscfDJju4IE/cd4hucg==} peerDependencies: react: 18.2.0 - '@react-stately/table@3.12.2': - resolution: {integrity: sha512-dUcsrdALylhWz6exqIoqtR/dnrzjIAptMyAUPT378Y/mCYs4PxKkHSvtPEQrZhdQS1ALIIgfeg9KUVIempoXPw==} + '@react-stately/selection@3.18.0': + resolution: {integrity: sha512-6EaNNP3exxBhW2LkcRR4a3pg+3oDguZlBSqIVVR7lyahv/D8xXHRC4dX+m0mgGHJpsgjs7664Xx6c8v193TFxg==} peerDependencies: react: 18.2.0 - '@react-stately/table@3.12.3': - resolution: {integrity: sha512-8uGrLcNJYeMbFtzRQZFWCBj5kV+7v3jzwoKIL1j9TmYUKow1PTDMQbPJpAZLQhnC2wVMlaFVgDbedSlbBij7Zg==} + '@react-stately/slider@3.6.0': + resolution: {integrity: sha512-w5vJxVh267pmD1X+Ppd9S3ZzV1hcg0cV8q5P4Egr160b9WMcWlUspZPtsthwUlN7qQe/C8y5IAhtde4s29eNag==} peerDependencies: react: 18.2.0 - '@react-stately/tabs@3.6.10': - resolution: {integrity: sha512-F7wfoiNsrBy7c02AYHyE1USGgj05HQ0hp7uXmQjp2LEa+AA0NKKi3HdswTHHySxb0ZRuoEE7E7vp/gXQYx2/Ow==} + '@react-stately/table@3.13.0': + resolution: {integrity: sha512-mRbNYrwQIE7xzVs09Lk3kPteEVFVyOc20vA8ph6EP54PiUf/RllJpxZe/WUYLf4eom9lUkRYej5sffuUBpxjCA==} peerDependencies: react: 18.2.0 - '@react-stately/toggle@3.7.8': - resolution: {integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==} + '@react-stately/tabs@3.7.0': + resolution: {integrity: sha512-ox4hTkfZCoR4Oyr3Op3rBlWNq2Wxie04vhEYpTZQ2hobR3l4fYaOkd7CPClILktJ3TC104j8wcb0knWxIBRx9w==} peerDependencies: react: 18.2.0 @@ -6929,33 +6878,13 @@ packages: peerDependencies: react: 18.2.0 - '@react-stately/tooltip@3.4.13': - resolution: {integrity: sha512-zQ+8FQ7Pi0Cz852dltXb6yaryjE18K3byK4tIO3e5vnrZHEGvfdxowc+v9ak5UV93kVrYoOVmfZHRcEaTXTBNA==} - peerDependencies: - react: 18.2.0 - - '@react-stately/tree@3.8.1': - resolution: {integrity: sha512-LOdkkruJWch3W89h4B/bXhfr0t0t1aRfEp+IMrrwdRAl23NaPqwl5ILHs4Xu5XDHqqhg8co73pHrJwUyiTWEjw==} - peerDependencies: - react: 18.2.0 - - '@react-stately/tree@3.8.5': - resolution: {integrity: sha512-0/tYhsKWQQJTOZFDwh8hY3Qk6ejNFRldGrLeK5kS22UZdvsMFyh7WAi40FTCJy561/VoB0WqQI4oyNPOa9lYWg==} - peerDependencies: - react: 18.2.0 - - '@react-stately/utils@3.10.1': - resolution: {integrity: sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==} - peerDependencies: - react: 18.2.0 - - '@react-stately/utils@3.10.3': - resolution: {integrity: sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==} + '@react-stately/tooltip@3.5.0': + resolution: {integrity: sha512-+xzPNztJDd2XJD0X3DgWKlrgOhMqZpSzsIssXeJgO7uCnP8/Z513ESaipJhJCFC8fxj5caO/DK4Uu8hEtlB8cQ==} peerDependencies: react: 18.2.0 - '@react-stately/utils@3.10.4': - resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==} + '@react-stately/tree@3.8.6': + resolution: {integrity: sha512-lblUaxf1uAuIz5jm6PYtcJ+rXNNVkqyFWTIMx6g6gW/mYvm8GNx1G/0MLZE7E6CuDGaO9dkLSY2bB1uqyKHidA==} peerDependencies: react: 18.2.0 @@ -6964,38 +6893,28 @@ packages: peerDependencies: react: 18.2.0 - '@react-stately/virtualizer@3.7.1': - resolution: {integrity: sha512-voHgE6EQ+oZaLv6u2umKxakvIKNkCQuUihqKACTjdslp7SJh4Mvs3oLBI0hf0JOh+rCcFIKDvQtFwy1fXFRYBA==} - peerDependencies: - react: 18.2.0 - - '@react-stately/virtualizer@4.1.0': - resolution: {integrity: sha512-MOaqpY3NloXrpCBvVUb3HL1p3Bh4YRtUq8D2ufC909u5vM6n6G5Swk1XPJ9KHfaftGhb5serwLkm2/Aha5CTbA==} - peerDependencies: - react: 18.2.0 - - '@react-types/accordion@3.0.0-alpha.24': - resolution: {integrity: sha512-hwDT4TJH7aHCG8m9QsTP+7xgW7x7k2TY+WHlMRr6qDS6WhTCwd41dCdagxC0SZtulzZuWqISBxZifVrh4Tynew==} + '@react-stately/virtualizer@4.2.0': + resolution: {integrity: sha512-aTMpa9AQoz/xLqn8AI1BR/caUUY7/OUo9GbuF434w2u5eGCL7+SAn3Fmq7WSCwqYyDsO+jEIERek4JTX7pEW0A==} peerDependencies: react: 18.2.0 - '@react-types/breadcrumbs@3.7.8': - resolution: {integrity: sha512-+BW2a+PrY8ArZ+pKecz13oJFrUAhthvXx17o3x0BhWUhRpAdtmTYt2hjw8zNanm2j0Kvgo1HYKgvtskCRxYcOA==} + '@react-types/accordion@3.0.0-alpha.25': + resolution: {integrity: sha512-nPTRrMA5jS4QcwQ0H8J9Tzzw7+yq+KbwsPNA1ukVIfOGIB45by/1ke/eiZAXGqXxkElxi2fQuaXuWm79BWZ8zg==} peerDependencies: react: 18.2.0 - '@react-types/button@3.10.0': - resolution: {integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==} + '@react-types/breadcrumbs@3.7.9': + resolution: {integrity: sha512-eARYJo8J+VfNV8vP4uw3L2Qliba9wLV2bx9YQCYf5Lc/OE5B/y4gaTLz+Y2P3Rtn6gBPLXY447zCs5i7gf+ICg==} peerDependencies: react: 18.2.0 - '@react-types/calendar@3.4.10': - resolution: {integrity: sha512-PyjqxwJxSW2IpQx6y0D9O34fRCWn1gv9q0qFhgaIigIQrPg8zTE/CC7owHLxAtgCnnCt8exJ5rqi414csaHKlA==} + '@react-types/button@3.10.1': + resolution: {integrity: sha512-XTtap8o04+4QjPNAshFWOOAusUTxQlBjU2ai0BTVLShQEjHhRVDBIWsI2B2FKJ4KXT6AZ25llaxhNrreWGonmA==} peerDependencies: react: 18.2.0 - '@react-types/checkbox@3.8.4': - resolution: {integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==} + '@react-types/calendar@3.5.0': + resolution: {integrity: sha512-O3IRE7AGwAWYnvJIJ80cOy7WwoJ0m8GtX/qSmvXQAjC4qx00n+b5aFNBYAQtcyc3RM5QpW6obs9BfwGetFiI8w==} peerDependencies: react: 18.2.0 @@ -7004,18 +6923,18 @@ packages: peerDependencies: react: 18.2.0 - '@react-types/combobox@3.13.0': - resolution: {integrity: sha512-kH/a+Fjpr54M2JbHg9RXwMjZ9O+XVsdOuE5JCpWRibJP1Mfl1md8gY6y6zstmVY8COrSqFvMZWB+PzwaTWjTGw==} + '@react-types/combobox@3.13.1': + resolution: {integrity: sha512-7xr+HknfhReN4QPqKff5tbKTe2kGZvH+DGzPYskAtb51FAAiZsKo+WvnNAvLwg3kRoC9Rkn4TAiVBp/HgymRDw==} peerDependencies: react: 18.2.0 - '@react-types/datepicker@3.8.3': - resolution: {integrity: sha512-Y4qfPRBB6uzocosCOWSYMuwiZ3YXwLWQYiFB4KCglkvHyltbNz76LgoBEnclYA5HjwosIk4XywiXvHSYry8JnQ==} + '@react-types/datepicker@3.9.0': + resolution: {integrity: sha512-dbKL5Qsm2MQwOTtVQdOcKrrphcXAqDD80WLlSQrBLg+waDuuQ7H+TrvOT0thLKloNBlFUGnZZfXGRHINpih/0g==} peerDependencies: react: 18.2.0 - '@react-types/dialog@3.5.13': - resolution: {integrity: sha512-9k8daVcAqQsySkzDY6NIVlyGxtpEip4TKuLyzAehthbv78GQardD5fHdjQ6eXPRS4I2qZrmytrFFrlOnwWVGHw==} + '@react-types/dialog@3.5.14': + resolution: {integrity: sha512-OXWMjrALwrlgw8aHD8SeRm/s3tbAssdaEh2h73KUSeFau3fU3n5mfKv+WnFqsEaOtN261o48l7hTlS6615H9AA==} peerDependencies: react: 18.2.0 @@ -7024,63 +6943,43 @@ packages: peerDependencies: react: 18.2.0 - '@react-types/grid@3.2.8': - resolution: {integrity: sha512-6PJrpukwMqlv3IhJSDkJuVbhHM8Oe6hd2supWqd9adMXrlSP7QHt9a8SgFcFblCCTx8JzUaA0PvY5sTudcEtOQ==} - peerDependencies: - react: 18.2.0 - - '@react-types/grid@3.2.9': - resolution: {integrity: sha512-eMw0d2UIZ4QTzGgD1wGGPw0cv67KjAOCp4TcwWjgDV7Wa5SVV/UvOmpnIVDyfhkG/4KRI5OR9h+isy76B726qA==} - peerDependencies: - react: 18.2.0 - - '@react-types/link@3.5.7': - resolution: {integrity: sha512-2WyaVmm1qr9UrSG3Dq6iz+2ziuVp+DH8CsYZ9CA6aNNb6U18Hxju3LTPb4a5gM0eC7W0mQGNBmrgGlAdDZEJOw==} - peerDependencies: - react: 18.2.0 - - '@react-types/link@3.5.8': - resolution: {integrity: sha512-l/YGXddgAbLnIT7ekftXrK1D4n8NlLQwx0d4usyZpaxP1KwPzuwng20DxynamLc1atoKBqbUtZAnz32pe7vYgw==} - peerDependencies: - react: 18.2.0 - - '@react-types/listbox@3.5.2': - resolution: {integrity: sha512-ML/Bt/MeO0FiixcuFQ+smpu1WguxTOqHDjSnhc1vcNxVQFWQOhyVy01LAY2J/T9TjfjyYGD41vyMTI0f6fcLEQ==} + '@react-types/grid@3.2.10': + resolution: {integrity: sha512-Z5cG0ITwqjUE4kWyU5/7VqiPl4wqMJ7kG/ZP7poAnLmwRsR8Ai0ceVn+qzp5nTA19cgURi8t3LsXn3Ar1FBoog==} peerDependencies: react: 18.2.0 - '@react-types/menu@3.9.12': - resolution: {integrity: sha512-1SPnkHKJdvOfwv9fEgK1DI6DYRs4D3hW2XcWlLhVXSjaC68CzOHGwFhKIKvZiDTW/11L770PRSEloIxHR09uFQ==} + '@react-types/link@3.5.9': + resolution: {integrity: sha512-JcKDiDMqrq/5Vpn+BdWQEuXit4KN4HR/EgIi3yKnNbYkLzxBoeQZpQgvTaC7NEQeZnSqkyXQo3/vMUeX/ZNIKw==} peerDependencies: react: 18.2.0 - '@react-types/overlays@3.8.10': - resolution: {integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==} + '@react-types/listbox@3.5.3': + resolution: {integrity: sha512-v1QXd9/XU3CCKr2Vgs7WLcTr6VMBur7CrxHhWZQQFExsf9bgJ/3wbUdjy4aThY/GsYHiaS38EKucCZFr1QAfqA==} peerDependencies: react: 18.2.0 - '@react-types/progress@3.5.7': - resolution: {integrity: sha512-EqMDHmlpoZUZzTjdejGIkSM0pS2LBI9NdadHf3bDNTycHv+5L1xpMHUg8RGOW8a3sRVLRvfN1aO9l75QZkyj+w==} + '@react-types/menu@3.9.13': + resolution: {integrity: sha512-7SuX6E2tDsqQ+HQdSvIda1ji/+ujmR86dtS9CUu5yWX91P25ufRjZ72EvLRqClWNQsj1Xl4+2zBDLWlceznAjw==} peerDependencies: react: 18.2.0 - '@react-types/radio@3.8.4': - resolution: {integrity: sha512-GCuOwQL19iwKa74NAIk9hv4ivyI8oW1+ZCuc2fzyDdeQjzTIlv3qrIyShwpVy1IoI7/4DYTMZm/YXPoKhu5TTA==} + '@react-types/overlays@3.8.11': + resolution: {integrity: sha512-aw7T0rwVI3EuyG5AOaEIk8j7dZJQ9m34XAztXJVZ/W2+4pDDkLDbJ/EAPnuo2xGYRGhowuNDn4tDju01eHYi+w==} peerDependencies: react: 18.2.0 - '@react-types/select@3.9.7': - resolution: {integrity: sha512-Jva4ixfB4EEdy+WmZkUoLiQI7vVfHPxM73VuL7XDxvAO+YKiIztDTcU720QVNhxTMmQvCxfRBXWar8aodCjLiw==} + '@react-types/progress@3.5.8': + resolution: {integrity: sha512-PR0rN5mWevfblR/zs30NdZr+82Gka/ba7UHmYOW9/lkKlWeD7PHgl1iacpd/3zl/jUF22evAQbBHmk1mS6Mpqw==} peerDependencies: react: 18.2.0 - '@react-types/shared@3.24.1': - resolution: {integrity: sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==} + '@react-types/radio@3.8.5': + resolution: {integrity: sha512-gSImTPid6rsbJmwCkTliBIU/npYgJHOFaI3PNJo7Y0QTAnFelCtYeFtBiWrFodSArSv7ASqpLLUEj9hZu/rxIg==} peerDependencies: react: 18.2.0 - '@react-types/shared@3.25.0': - resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==} + '@react-types/select@3.9.8': + resolution: {integrity: sha512-RGsYj2oFjXpLnfcvWMBQnkcDuKkwT43xwYWZGI214/gp/B64tJiIUgTM5wFTRAeGDX23EePkhCQF+9ctnqFd6g==} peerDependencies: react: 18.2.0 @@ -7089,43 +6988,33 @@ packages: peerDependencies: react: 18.2.0 - '@react-types/slider@3.7.6': - resolution: {integrity: sha512-z72wnEzSge6qTD9TUoUPp1A4j4jXk/MVii6rGE78XeE/Pq7HyyjU5bCagryMr9PC9MKa/oTiHcshKqWBDf57GA==} - peerDependencies: - react: 18.2.0 - - '@react-types/switch@3.5.6': - resolution: {integrity: sha512-gJ8t2yTCgcitz4ON4ELcLLmtlDkn2MUjjfu3ez/cwA1X/NUluPYkhXj5Z6H+KOlnveqrKCZDRoTgK74cQ6Cvfg==} - peerDependencies: - react: 18.2.0 - - '@react-types/table@3.10.1': - resolution: {integrity: sha512-xsNh0Gm4GtNeSknZqkMsfGvc94fycmfhspGO+FzQKim2hB5k4yILwd+lHYQ2UKW6New9GVH/zN2Pd3v67IeZ2g==} + '@react-types/slider@3.7.7': + resolution: {integrity: sha512-lYTR9zXQV2fSEm/G3gwDENWiki1IXd/oorsgf0zu1DBi2SQDbOsLsGUXiwvD24Xy6OkUuhAqjLPPexezo7+u9g==} peerDependencies: react: 18.2.0 - '@react-types/table@3.10.2': - resolution: {integrity: sha512-YzA4hcsYfnFFpA2UyGb1KKhLpWgaj5daApqjp126tCIosl8k1KxZmhKD50cwH0Jm19lALJseqo5VdlcJtcr4qg==} + '@react-types/switch@3.5.7': + resolution: {integrity: sha512-1IKiq510rPTHumEZuhxuazuXBa2Cuxz6wBIlwf3NCVmgWEvU+uk1ETG0sH2yymjwCqhtJDKXi+qi9HSgPEDwAg==} peerDependencies: react: 18.2.0 - '@react-types/tabs@3.3.10': - resolution: {integrity: sha512-s/Bw/HCIdWJPBw4O703ghKqhjGsIerRMIDxA88hbQYzfTDD6bkFDjCnsP2Tyy1G8Dg2rSPFUEE+k+PpLzqeEfQ==} + '@react-types/table@3.10.3': + resolution: {integrity: sha512-Ac+W+m/zgRzlTU8Z2GEg26HkuJFswF9S6w26r+R3MHwr8z2duGPvv37XRtE1yf3dbpRBgHEAO141xqS2TqGwNg==} peerDependencies: react: 18.2.0 - '@react-types/textfield@3.9.3': - resolution: {integrity: sha512-DoAY6cYOL0pJhgNGI1Rosni7g72GAt4OVr2ltEx2S9ARmFZ0DBvdhA9lL2nywcnKMf27PEJcKMXzXc10qaHsJw==} + '@react-types/tabs@3.3.11': + resolution: {integrity: sha512-BjF2TqBhZaIcC4lc82R5pDJd1F7kstj1K0Nokhz99AGYn8C0ITdp6lR+DPVY9JZRxKgP9R2EKfWGI90Lo7NQdA==} peerDependencies: react: 18.2.0 - '@react-types/textfield@3.9.7': - resolution: {integrity: sha512-vU5+QCOF9HgWGjAmmy+cpJibVW5voFomC5POmYHokm7kivYcMMjlonsgWwg/0xXrqE2qosH3tpz4jFoEuig1NQ==} + '@react-types/textfield@3.10.0': + resolution: {integrity: sha512-ShU3d6kLJGQjPXccVFjM3KOXdj3uyhYROqH9YgSIEVxgA9W6LRflvk/IVBamD9pJYTPbwmVzuP0wQkTDupfZ1w==} peerDependencies: react: 18.2.0 - '@react-types/tooltip@3.4.12': - resolution: {integrity: sha512-FwsdSQ3UDIDORanQMGMLyzSUabw4AkKhwcRdPv4d5OT8GmJr7mBdZynfcsrKLJ0fzskIypMqspoutZidsI0MQg==} + '@react-types/tooltip@3.4.13': + resolution: {integrity: sha512-KPekFC17RTT8kZlk7ZYubueZnfsGTDOpLw7itzolKOXGddTXsrJGBzSB4Bb060PBVllaDO0MOrhPap8OmrIl1Q==} peerDependencies: react: 18.2.0 @@ -16943,20 +16832,20 @@ snapshots: '@img/sharp-win32-x64@0.33.5': optional: true - '@internationalized/date@3.5.6': + '@internationalized/date@3.6.0': dependencies: '@swc/helpers': 0.5.15 - '@internationalized/message@3.1.5': + '@internationalized/message@3.1.6': dependencies: '@swc/helpers': 0.5.15 intl-messageformat: 10.7.7 - '@internationalized/number@3.5.4': + '@internationalized/number@3.6.0': dependencies: '@swc/helpers': 0.5.15 - '@internationalized/string@3.2.4': + '@internationalized/string@3.2.5': dependencies: '@swc/helpers': 0.5.15 @@ -18398,119 +18287,111 @@ snapshots: optionalDependencies: '@types/react': 18.2.8 - '@react-aria/breadcrumbs@3.5.18(react@18.2.0)': + '@react-aria/breadcrumbs@3.5.19(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/link': 3.7.6(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/link': 3.7.7(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/breadcrumbs': 3.7.8(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/breadcrumbs': 3.7.9(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/button@3.10.1(react@18.2.0)': + '@react-aria/button@3.11.0(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/toolbar': 3.0.0-beta.11(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/toggle': 3.7.8(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/toggle': 3.8.0(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/calendar@3.5.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/calendar@3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.6 - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/live-announcer': 3.4.0 + '@internationalized/date': 3.6.0 + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/live-announcer': 3.4.1 '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/calendar': 3.5.5(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/calendar': 3.4.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/calendar': 3.6.0(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/calendar': 3.5.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/checkbox@3.14.8(react@18.2.0)': + '@react-aria/checkbox@3.15.0(react@18.2.0)': dependencies: - '@react-aria/form': 3.0.10(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/form': 3.0.11(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) '@react-aria/toggle': 3.10.10(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/checkbox': 3.6.9(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/toggle': 3.7.8(react@18.2.0) - '@react-types/checkbox': 3.8.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/checkbox': 3.6.10(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/toggle': 3.8.0(react@18.2.0) + '@react-types/checkbox': 3.9.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/combobox@3.10.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/combobox@3.11.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/listbox': 3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.10(react@18.2.0) - '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/combobox': 3.10.0(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/combobox': 3.13.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/datepicker@3.11.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/number': 3.5.4 - '@internationalized/string': 3.2.4 - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/form': 3.0.10(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) - '@react-aria/spinbutton': 3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/listbox': 3.13.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/live-announcer': 3.4.1 + '@react-aria/menu': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/overlays': 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/selection': 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/textfield': 3.15.0(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/datepicker': 3.10.3(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/calendar': 3.4.10(react@18.2.0) - '@react-types/datepicker': 3.8.3(react@18.2.0) - '@react-types/dialog': 3.5.13(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/combobox': 3.10.1(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/combobox': 3.13.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/dialog@3.5.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/datepicker@3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/overlays': 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@internationalized/date': 3.6.0 + '@internationalized/number': 3.6.0 + '@internationalized/string': 3.2.5 + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/form': 3.0.11(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) + '@react-aria/spinbutton': 3.6.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/dialog': 3.5.13(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/datepicker': 3.11.0(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/calendar': 3.5.0(react@18.2.0) + '@react-types/datepicker': 3.9.0(react@18.2.0) + '@react-types/dialog': 3.5.14(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/focus@3.18.4(react@18.2.0)': + '@react-aria/dialog@3.5.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/overlays': 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/dialog': 3.5.14(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 - clsx: 2.1.1 react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) '@react-aria/focus@3.19.0(react@18.2.0)': dependencies: @@ -18521,59 +18402,42 @@ snapshots: clsx: 2.1.1 react: 18.2.0 - '@react-aria/form@3.0.10(react@18.2.0)': - dependencies: - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/form@3.0.8(react@18.2.0)': + '@react-aria/form@3.0.11(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/grid@3.10.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/grid@3.11.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/selection': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/live-announcer': 3.4.1 + '@react-aria/selection': 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/grid': 3.9.3(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-types/checkbox': 3.8.4(react@18.2.0) - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/grid': 3.10.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-types/checkbox': 3.9.0(react@18.2.0) + '@react-types/grid': 3.2.10(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/i18n@3.12.3(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/message': 3.1.5 - '@internationalized/number': 3.5.4 - '@internationalized/string': 3.2.4 - '@react-aria/ssr': 3.9.6(react@18.2.0) - '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/interactions@3.22.4(react@18.2.0)': + '@react-aria/i18n@3.12.4(react@18.2.0)': dependencies: - '@react-aria/ssr': 3.9.6(react@18.2.0) + '@internationalized/date': 3.6.0 + '@internationalized/message': 3.1.6 + '@internationalized/number': 3.6.0 + '@internationalized/string': 3.2.5 + '@react-aria/ssr': 3.9.7(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -18585,209 +18449,205 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/label@3.7.12(react@18.2.0)': + '@react-aria/label@3.7.13(react@18.2.0)': dependencies: '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/link@3.7.6(react@18.2.0)': + '@react-aria/link@3.7.7(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/link': 3.5.8(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/link': 3.5.9(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/listbox@3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/listbox@3.13.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) - '@react-aria/selection': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) + '@react-aria/selection': 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/list': 3.11.0(react@18.2.0) - '@react-types/listbox': 3.5.2(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/list': 3.11.1(react@18.2.0) + '@react-types/listbox': 3.5.3(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/live-announcer@3.4.0': + '@react-aria/live-announcer@3.4.1': dependencies: '@swc/helpers': 0.5.15 - '@react-aria/menu@3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/menu@3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/overlays': 3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/overlays': 3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/selection': 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/menu': 3.8.3(react@18.2.0) - '@react-stately/tree': 3.8.5(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/menu': 3.9.12(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/menu': 3.9.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-stately/tree': 3.8.6(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/menu': 3.9.13(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/overlays@3.23.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/overlays@3.24.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/ssr': 3.9.7(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.17(react@18.2.0) - '@react-stately/overlays': 3.6.11(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/overlays': 3.8.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-aria/visually-hidden': 3.8.18(react@18.2.0) + '@react-stately/overlays': 3.6.12(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/overlays': 3.8.11(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/progress@3.4.17(react@18.2.0)': + '@react-aria/progress@3.4.18(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/progress': 3.5.7(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/progress': 3.5.8(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/radio@3.10.9(react@18.2.0)': + '@react-aria/radio@3.10.10(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/form': 3.0.10(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/form': 3.0.11(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/radio': 3.10.8(react@18.2.0) - '@react-types/radio': 3.8.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/radio': 3.10.9(react@18.2.0) + '@react-types/radio': 3.8.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/selection@3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/selection@3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/selection@3.20.1(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': + '@react-aria/selection@3.21.0(react-dom@18.3.1(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.3.1(react@18.2.0) - '@react-aria/slider@3.7.13(react@18.2.0)': + '@react-aria/slider@3.7.14(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/slider': 3.5.8(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/slider': 3.7.6(react@18.2.0) + '@react-stately/slider': 3.6.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/slider': 3.7.7(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/spinbutton@3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/spinbutton@3.6.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/live-announcer': 3.4.0 + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/live-announcer': 3.4.1 '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/button': 3.10.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/button': 3.10.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/ssr@3.9.6(react@18.2.0)': - dependencies: - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-aria/ssr@3.9.7(react@18.2.0)': dependencies: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/switch@3.6.9(react@18.2.0)': + '@react-aria/switch@3.6.10(react@18.2.0)': dependencies: - '@react-aria/toggle': 3.10.9(react@18.2.0) - '@react-stately/toggle': 3.7.8(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/switch': 3.5.6(react@18.2.0) + '@react-aria/toggle': 3.10.10(react@18.2.0) + '@react-stately/toggle': 3.8.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/switch': 3.5.7(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/table@3.15.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/table@3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/grid': 3.10.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) - '@react-aria/live-announcer': 3.4.0 + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/grid': 3.11.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) + '@react-aria/live-announcer': 3.4.1 '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.17(react@18.2.0) - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/flags': 3.0.4 - '@react-stately/table': 3.12.3(react@18.2.0) - '@react-types/checkbox': 3.8.4(react@18.2.0) - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/table': 3.10.2(react@18.2.0) + '@react-aria/visually-hidden': 3.8.18(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/flags': 3.0.5 + '@react-stately/table': 3.13.0(react@18.2.0) + '@react-types/checkbox': 3.9.0(react@18.2.0) + '@react-types/grid': 3.2.10(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/table': 3.10.3(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/tabs@3.9.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/tabs@3.9.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/selection': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/selection': 3.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/tabs': 3.6.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/tabs': 3.3.10(react@18.2.0) + '@react-stately/tabs': 3.7.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/tabs': 3.3.11(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/textfield@3.14.10(react@18.2.0)': + '@react-aria/textfield@3.15.0(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/form': 3.0.10(react@18.2.0) - '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/form': 3.0.11(react@18.2.0) + '@react-aria/label': 3.7.13(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/textfield': 3.9.7(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/textfield': 3.10.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -18802,35 +18662,24 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/toggle@3.10.9(react@18.2.0)': + '@react-aria/toolbar@3.0.0-beta.11(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/toggle': 3.7.8(react@18.2.0) - '@react-types/checkbox': 3.8.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/tooltip@3.7.9(react@18.2.0)': + '@react-aria/tooltip@3.7.10(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.4(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/focus': 3.19.0(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/tooltip': 3.4.13(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/tooltip': 3.4.12(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/utils@3.24.1(react@18.2.0)': - dependencies: - '@react-aria/ssr': 3.9.6(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/tooltip': 3.5.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/tooltip': 3.4.13(react@18.2.0) '@swc/helpers': 0.5.15 - clsx: 2.1.1 react: 18.2.0 '@react-aria/utils@3.26.0(react@18.2.0)': @@ -18842,22 +18691,22 @@ snapshots: clsx: 2.1.1 react: 18.2.0 - '@react-aria/virtualizer@3.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/virtualizer@4.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.2.0) - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/i18n': 3.12.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-stately/virtualizer': 3.7.1(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/virtualizer': 4.2.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/visually-hidden@3.8.17(react@18.2.0)': + '@react-aria/visually-hidden@3.8.18(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.2.0) + '@react-aria/interactions': 3.22.5(react@18.2.0) '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -18889,206 +18738,168 @@ snapshots: dependencies: react: 18.2.0 - '@react-stately/calendar@3.5.5(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.6 - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/calendar': 3.4.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/checkbox@3.6.9(react@18.2.0)': - dependencies: - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/checkbox': 3.8.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/collections@3.10.9(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/collections@3.11.0(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/combobox@3.10.0(react@18.2.0)': + '@react-stately/calendar@3.6.0(react@18.2.0)': dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/list': 3.11.0(react@18.2.0) - '@react-stately/overlays': 3.6.11(react@18.2.0) - '@react-stately/select': 3.6.8(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/combobox': 3.13.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@internationalized/date': 3.6.0 + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/calendar': 3.5.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/data@3.11.4(react@18.2.0)': + '@react-stately/checkbox@3.6.10(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/checkbox': 3.9.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/data@3.11.7(react@18.2.0)': + '@react-stately/collections@3.12.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/datepicker@3.10.3(react@18.2.0)': + '@react-stately/combobox@3.10.1(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/string': 3.2.4 - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/overlays': 3.6.11(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/datepicker': 3.8.3(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/list': 3.11.1(react@18.2.0) + '@react-stately/overlays': 3.6.12(react@18.2.0) + '@react-stately/select': 3.6.9(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/combobox': 3.13.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/flags@3.0.4': - dependencies: - '@swc/helpers': 0.5.15 - - '@react-stately/form@3.0.5(react@18.2.0)': + '@react-stately/data@3.12.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/form@3.0.6(react@18.2.0)': + '@react-stately/datepicker@3.11.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@internationalized/date': 3.6.0 + '@internationalized/string': 3.2.5 + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/overlays': 3.6.12(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/datepicker': 3.9.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/grid@3.9.3(react@18.2.0)': + '@react-stately/flags@3.0.5': dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/layout@3.13.9(react@18.2.0)': + '@react-stately/form@3.1.0(react@18.2.0)': dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/table': 3.12.2(react@18.2.0) - '@react-stately/virtualizer': 3.7.1(react@18.2.0) - '@react-types/grid': 3.2.8(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/table': 3.10.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/list@3.11.0(react@18.2.0)': + '@react-stately/grid@3.10.0(react@18.2.0)': dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-types/grid': 3.2.10(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/menu@3.8.3(react@18.2.0)': + '@react-stately/layout@4.1.0(react@18.2.0)': dependencies: - '@react-stately/overlays': 3.6.11(react@18.2.0) - '@react-types/menu': 3.9.12(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/table': 3.13.0(react@18.2.0) + '@react-stately/virtualizer': 4.2.0(react@18.2.0) + '@react-types/grid': 3.2.10(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/table': 3.10.3(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/overlays@3.6.11(react@18.2.0)': + '@react-stately/list@3.11.1(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/overlays': 3.8.10(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/radio@3.10.8(react@18.2.0)': + '@react-stately/menu@3.9.0(react@18.2.0)': dependencies: - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/radio': 3.8.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/overlays': 3.6.12(react@18.2.0) + '@react-types/menu': 3.9.13(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/select@3.6.8(react@18.2.0)': + '@react-stately/overlays@3.6.12(react@18.2.0)': dependencies: - '@react-stately/form': 3.0.6(react@18.2.0) - '@react-stately/list': 3.11.0(react@18.2.0) - '@react-stately/overlays': 3.6.11(react@18.2.0) - '@react-types/select': 3.9.7(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/overlays': 3.8.11(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/selection@3.17.0(react@18.2.0)': + '@react-stately/radio@3.10.9(react@18.2.0)': dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/radio': 3.8.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/slider@3.5.8(react@18.2.0)': + '@react-stately/select@3.6.9(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/slider': 3.7.6(react@18.2.0) + '@react-stately/form': 3.1.0(react@18.2.0) + '@react-stately/list': 3.11.1(react@18.2.0) + '@react-stately/overlays': 3.6.12(react@18.2.0) + '@react-types/select': 3.9.8(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/table@3.12.2(react@18.2.0)': + '@react-stately/selection@3.18.0(react@18.2.0)': dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/flags': 3.0.4 - '@react-stately/grid': 3.9.3(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/table': 3.10.2(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/table@3.12.3(react@18.2.0)': + '@react-stately/slider@3.6.0(react@18.2.0)': dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/flags': 3.0.4 - '@react-stately/grid': 3.9.3(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/table': 3.10.2(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/slider': 3.7.7(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/tabs@3.6.10(react@18.2.0)': + '@react-stately/table@3.13.0(react@18.2.0)': dependencies: - '@react-stately/list': 3.11.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@react-types/tabs': 3.3.10(react@18.2.0) + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/flags': 3.0.5 + '@react-stately/grid': 3.10.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/grid': 3.2.10(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/table': 3.10.3(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/toggle@3.7.8(react@18.2.0)': + '@react-stately/tabs@3.7.0(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/checkbox': 3.8.4(react@18.2.0) + '@react-stately/list': 3.11.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) + '@react-types/tabs': 3.3.11(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -19100,43 +18911,19 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/tooltip@3.4.13(react@18.2.0)': + '@react-stately/tooltip@3.5.0(react@18.2.0)': dependencies: - '@react-stately/overlays': 3.6.11(react@18.2.0) - '@react-types/tooltip': 3.4.12(react@18.2.0) + '@react-stately/overlays': 3.6.12(react@18.2.0) + '@react-types/tooltip': 3.4.13(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/tree@3.8.1(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/tree@3.8.5(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.11.0(react@18.2.0) - '@react-stately/selection': 3.17.0(react@18.2.0) - '@react-stately/utils': 3.10.4(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/utils@3.10.1(react@18.2.0)': - dependencies: - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/utils@3.10.3(react@18.2.0)': - dependencies: - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/utils@3.10.4(react@18.2.0)': + '@react-stately/tree@3.8.6(react@18.2.0)': dependencies: + '@react-stately/collections': 3.12.0(react@18.2.0) + '@react-stately/selection': 3.18.0(react@18.2.0) + '@react-stately/utils': 3.10.5(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -19145,45 +18932,33 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/virtualizer@3.7.1(react@18.2.0)': - dependencies: - '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/virtualizer@4.1.0(react@18.2.0)': + '@react-stately/virtualizer@4.2.0(react@18.2.0)': dependencies: '@react-aria/utils': 3.26.0(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-types/accordion@3.0.0-alpha.24(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/breadcrumbs@3.7.8(react@18.2.0)': + '@react-types/accordion@3.0.0-alpha.25(react@18.2.0)': dependencies: - '@react-types/link': 3.5.8(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/button@3.10.0(react@18.2.0)': + '@react-types/breadcrumbs@3.7.9(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/link': 3.5.9(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/calendar@3.4.10(react@18.2.0)': + '@react-types/button@3.10.1(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.6 - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/checkbox@3.8.4(react@18.2.0)': + '@react-types/calendar@3.5.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@internationalized/date': 3.6.0 + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 '@react-types/checkbox@3.9.0(react@18.2.0)': @@ -19191,23 +18966,23 @@ snapshots: '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/combobox@3.13.0(react@18.2.0)': + '@react-types/combobox@3.13.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/datepicker@3.8.3(react@18.2.0)': + '@react-types/datepicker@3.9.0(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.6 - '@react-types/calendar': 3.4.10(react@18.2.0) - '@react-types/overlays': 3.8.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@internationalized/date': 3.6.0 + '@react-types/calendar': 3.5.0(react@18.2.0) + '@react-types/overlays': 3.8.11(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/dialog@3.5.13(react@18.2.0)': + '@react-types/dialog@3.5.14(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/overlays': 3.8.11(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 '@react-types/form@3.7.8(react@18.2.0)': @@ -19215,110 +18990,81 @@ snapshots: '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/grid@3.2.8(react@18.2.0)': + '@react-types/grid@3.2.10(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/grid@3.2.9(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/link@3.5.7(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/link@3.5.8(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/listbox@3.5.2(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/menu@3.9.12(react@18.2.0)': + '@react-types/link@3.5.9(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/overlays@3.8.10(react@18.2.0)': + '@react-types/listbox@3.5.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/progress@3.5.7(react@18.2.0)': + '@react-types/menu@3.9.13(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/overlays': 3.8.11(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/radio@3.8.4(react@18.2.0)': + '@react-types/overlays@3.8.11(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/select@3.9.7(react@18.2.0)': + '@react-types/progress@3.5.8(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/shared@3.24.1(react@18.2.0)': + '@react-types/radio@3.8.5(react@18.2.0)': dependencies: + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/shared@3.25.0(react@18.2.0)': + '@react-types/select@3.9.8(react@18.2.0)': dependencies: + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 '@react-types/shared@3.26.0(react@18.2.0)': dependencies: react: 18.2.0 - '@react-types/slider@3.7.6(react@18.2.0)': - dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/switch@3.5.6(react@18.2.0)': + '@react-types/slider@3.7.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) - react: 18.2.0 - - '@react-types/table@3.10.1(react@18.2.0)': - dependencies: - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/table@3.10.2(react@18.2.0)': + '@react-types/switch@3.5.7(react@18.2.0)': dependencies: - '@react-types/grid': 3.2.9(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/tabs@3.3.10(react@18.2.0)': + '@react-types/table@3.10.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/grid': 3.2.10(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/textfield@3.9.3(react@18.2.0)': + '@react-types/tabs@3.3.11(react@18.2.0)': dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/textfield@3.9.7(react@18.2.0)': + '@react-types/textfield@3.10.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 - '@react-types/tooltip@3.4.12(react@18.2.0)': + '@react-types/tooltip@3.4.13(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.10(react@18.2.0) - '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/overlays': 3.8.11(react@18.2.0) + '@react-types/shared': 3.26.0(react@18.2.0) react: 18.2.0 '@rehooks/local-storage@2.4.5(react@18.2.0)':