From 30bcfedc86bf0969cc5129a41e648e4137d1225e Mon Sep 17 00:00:00 2001 From: Joel Jeremy Marquez <joeljeremy.marquez@gmail.com> Date: Wed, 3 Jul 2024 09:33:57 -0700 Subject: [PATCH] React Aria Button as base of Button component (#2904) * React Aria Button as base of Button component * Release notes * AmountInput sign button * Fix tests * Comment * Fix disabled/pressed style * Update react-aria-components version * yarn.lock * Apply defaultStyle * Fix button props type --- .../e2e/page-models/schedules-page.js | 4 + packages/desktop-client/package.json | 2 +- .../src/components/common/Button2.tsx | 229 ++ .../schedules/DiscoverSchedules.tsx | 10 +- .../schedules/PostsOfflineNotification.jsx | 6 +- .../components/schedules/ScheduleDetails.jsx | 16 +- .../src/components/schedules/ScheduleLink.tsx | 6 +- .../components/schedules/SchedulesTable.tsx | 7 +- .../src/components/schedules/index.tsx | 6 +- .../src/components/util/AmountInput.tsx | 9 +- upcoming-release-notes/2904.md | 6 + yarn.lock | 1901 ++++++++++------- 12 files changed, 1367 insertions(+), 835 deletions(-) create mode 100644 packages/desktop-client/src/components/common/Button2.tsx create mode 100644 upcoming-release-notes/2904.md diff --git a/packages/desktop-client/e2e/page-models/schedules-page.js b/packages/desktop-client/e2e/page-models/schedules-page.js index 23b2fe26c..6ddb00119 100644 --- a/packages/desktop-client/e2e/page-models/schedules-page.js +++ b/packages/desktop-client/e2e/page-models/schedules-page.js @@ -84,6 +84,10 @@ export class SchedulesPage { if (data.amount) { await this.page.getByLabel('Amount').fill(String(data.amount)); + // For some readon, the input field does not trigger the change event on tests + // but it works on the browser. We can revisit this once migration to + // react aria components is complete. + await this.page.keyboard.press('Enter'); } } } diff --git a/packages/desktop-client/package.json b/packages/desktop-client/package.json index 42f0a85b1..543b53b06 100644 --- a/packages/desktop-client/package.json +++ b/packages/desktop-client/package.json @@ -49,7 +49,7 @@ "pikaday": "1.8.2", "promise-retry": "^2.0.1", "react": "18.2.0", - "react-aria-components": "^1.1.1", + "react-aria-components": "^1.2.1", "react-dnd": "^16.0.1", "react-dnd-html5-backend": "^16.0.1", "react-dom": "18.2.0", diff --git a/packages/desktop-client/src/components/common/Button2.tsx b/packages/desktop-client/src/components/common/Button2.tsx new file mode 100644 index 000000000..73d20bb5b --- /dev/null +++ b/packages/desktop-client/src/components/common/Button2.tsx @@ -0,0 +1,229 @@ +import React, { forwardRef, type ComponentPropsWithoutRef } from 'react'; +import { + Button as ReactAriaButton, + type ButtonProps as ReactAriaButtonProps, +} from 'react-aria-components'; + +import { AnimatedLoading } from '../../icons/AnimatedLoading'; +import { type CSSProperties, styles, theme } from '../../style'; + +import { View } from './View'; + +const backgroundColor: { + [key in ButtonVariant | `${ButtonVariant}Disabled`]?: string; +} = { + normal: theme.buttonNormalBackground, + normalDisabled: theme.buttonNormalDisabledBackground, + primary: theme.buttonPrimaryBackground, + primaryDisabled: theme.buttonPrimaryDisabledBackground, + bare: theme.buttonBareBackground, + bareDisabled: theme.buttonBareDisabledBackground, + menu: theme.buttonMenuBackground, + menuSelected: theme.buttonMenuSelectedBackground, +}; + +const backgroundColorHover: Record< + ButtonVariant | `${ButtonVariant}Disabled`, + CSSProperties['backgroundColor'] +> = { + normal: theme.buttonNormalBackgroundHover, + primary: theme.buttonPrimaryBackgroundHover, + bare: theme.buttonBareBackgroundHover, + menu: theme.buttonMenuBackgroundHover, + menuSelected: theme.buttonMenuSelectedBackgroundHover, + normalDisabled: 'transparent', + primaryDisabled: 'transparent', + bareDisabled: 'transparent', + menuDisabled: 'transparent', + menuSelectedDisabled: 'transparent', +}; + +const borderColor: { + [key in + | ButtonVariant + | `${ButtonVariant}Disabled`]?: CSSProperties['borderColor']; +} = { + normal: theme.buttonNormalBorder, + normalDisabled: theme.buttonNormalDisabledBorder, + primary: theme.buttonPrimaryBorder, + primaryDisabled: theme.buttonPrimaryDisabledBorder, + menu: theme.buttonMenuBorder, + menuSelected: theme.buttonMenuSelectedBorder, +}; + +const textColor: { + [key in ButtonVariant | `${ButtonVariant}Disabled`]?: CSSProperties['color']; +} = { + normal: theme.buttonNormalText, + normalDisabled: theme.buttonNormalDisabledText, + primary: theme.buttonPrimaryText, + primaryDisabled: theme.buttonPrimaryDisabledText, + bare: theme.buttonBareText, + bareDisabled: theme.buttonBareDisabledText, + menu: theme.buttonMenuText, + menuSelected: theme.buttonMenuSelectedText, +}; + +const textColorHover: { + [key in ButtonVariant]?: string; +} = { + normal: theme.buttonNormalTextHover, + primary: theme.buttonPrimaryTextHover, + bare: theme.buttonBareTextHover, + menu: theme.buttonMenuTextHover, + menuSelected: theme.buttonMenuSelectedTextHover, +}; + +const _getBorder = ( + variant: ButtonVariant, + variantWithDisabled: keyof typeof borderColor, +): string => { + switch (variant) { + case 'bare': + return 'none'; + + default: + return '1px solid ' + borderColor[variantWithDisabled]; + } +}; + +const _getPadding = (variant: ButtonVariant): string => { + switch (variant) { + case 'bare': + return '5px'; + default: + return '5px 10px'; + } +}; + +const _getActiveStyles = ( + variant: ButtonVariant, + bounce: boolean, +): CSSProperties => { + switch (variant) { + case 'bare': + return { backgroundColor: theme.buttonBareBackgroundActive }; + default: + return { + transform: bounce ? 'translateY(1px)' : undefined, + boxShadow: `0 1px 4px 0 ${ + variant === 'primary' + ? theme.buttonPrimaryShadow + : theme.buttonNormalShadow + }`, + transition: 'none', + }; + } +}; + +type ButtonProps = ComponentPropsWithoutRef<typeof ReactAriaButton> & { + variant?: ButtonVariant; + bounce?: boolean; +}; + +type ButtonVariant = 'normal' | 'primary' | 'bare' | 'menu' | 'menuSelected'; + +export const Button = forwardRef<HTMLButtonElement, ButtonProps>( + (props, ref) => { + const { + children, + variant = 'normal', + bounce = true, + style, + isDisabled, + ...restProps + } = props; + + const variantWithDisabled: ButtonVariant | `${ButtonVariant}Disabled` = + isDisabled ? `${variant}Disabled` : variant; + + const hoveredStyle = { + ...(variant !== 'bare' && styles.shadow), + backgroundColor: backgroundColorHover[variant], + color: textColorHover[variant], + }; + const pressedStyle = { + ..._getActiveStyles(variant, bounce), + }; + + const buttonStyle: ComponentPropsWithoutRef< + typeof Button + >['style'] = props => ({ + ...props.defaultStyle, + alignItems: 'center', + justifyContent: 'center', + flexShrink: 0, + padding: _getPadding(variant), + margin: 0, + overflow: 'hidden', + display: 'flex', + borderRadius: 4, + backgroundColor: backgroundColor[variantWithDisabled], + border: _getBorder(variant, variantWithDisabled), + color: textColor[variantWithDisabled], + transition: 'box-shadow .25s', + WebkitAppRegion: 'no-drag', + ...styles.smallText, + ...(props.isHovered && !isDisabled ? hoveredStyle : {}), + ...(props.isPressed && !isDisabled ? pressedStyle : {}), + ...(typeof style === 'function' ? style(props) : style), + }); + + return ( + <ReactAriaButton ref={ref} style={buttonStyle} {...restProps}> + {children} + </ReactAriaButton> + ); + }, +); + +Button.displayName = 'Button'; + +type ButtonWithLoadingProps = ButtonProps & { + isLoading?: boolean; +}; + +export const ButtonWithLoading = forwardRef< + HTMLButtonElement, + ButtonWithLoadingProps +>((props, ref) => { + const { isLoading, children, ...buttonProps } = props; + return ( + <Button + {...buttonProps} + ref={ref} + style={{ position: 'relative', ...buttonProps.style }} + > + {renderProps => ( + <> + {isLoading && ( + <View + style={{ + position: 'absolute', + top: 0, + left: 0, + right: 0, + bottom: 0, + alignItems: 'center', + justifyContent: 'center', + }} + > + <AnimatedLoading style={{ width: 20, height: 20 }} /> + </View> + )} + <View + style={{ + opacity: isLoading ? 0 : 1, + flexDirection: 'row', + alignItems: 'center', + }} + > + {typeof children === 'function' ? children(renderProps) : children} + </View> + </> + )} + </Button> + ); +}); + +ButtonWithLoading.displayName = 'ButtonWithLoading'; diff --git a/packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx b/packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx index 1f62f40c8..e3238f741 100644 --- a/packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx +++ b/packages/desktop-client/src/components/schedules/DiscoverSchedules.tsx @@ -17,7 +17,7 @@ import { } from '../../hooks/useSelected'; import { useSendPlatformRequest } from '../../hooks/useSendPlatformRequest'; import { theme } from '../../style'; -import { ButtonWithLoading } from '../common/Button'; +import { ButtonWithLoading } from '../common/Button2'; import { Modal } from '../common/Modal'; import { Paragraph } from '../common/Paragraph'; import { Stack } from '../common/Stack'; @@ -206,10 +206,10 @@ export function DiscoverSchedules({ }} > <ButtonWithLoading - type="primary" - loading={creating} - disabled={selectedInst.items.size === 0} - onClick={onCreate} + variant="primary" + isLoading={creating} + isDisabled={selectedInst.items.size === 0} + onPress={onCreate} > Create schedules </ButtonWithLoading> diff --git a/packages/desktop-client/src/components/schedules/PostsOfflineNotification.jsx b/packages/desktop-client/src/components/schedules/PostsOfflineNotification.jsx index 6073a87ba..429c5119d 100644 --- a/packages/desktop-client/src/components/schedules/PostsOfflineNotification.jsx +++ b/packages/desktop-client/src/components/schedules/PostsOfflineNotification.jsx @@ -4,7 +4,7 @@ import { useLocation } from 'react-router-dom'; import { send } from 'loot-core/src/platform/client/fetch'; import { theme } from '../../style'; -import { Button } from '../common/Button'; +import { Button } from '../common/Button2'; import { Modal } from '../common/Modal'; import { Paragraph } from '../common/Paragraph'; import { Stack } from '../common/Stack'; @@ -68,8 +68,8 @@ export function PostsOfflineNotification({ modalProps, actions }) { style={{ marginTop: 20 }} spacing={2} > - <Button onClick={actions.popModal}>Decide later</Button> - <Button type="primary" onClick={onPost}> + <Button onPress={actions.popModal}>Decide later</Button> + <Button variant="primary" onPress={onPost}> Post transactions </Button> </Stack> diff --git a/packages/desktop-client/src/components/schedules/ScheduleDetails.jsx b/packages/desktop-client/src/components/schedules/ScheduleDetails.jsx index 442676cb3..12d4b9ca4 100644 --- a/packages/desktop-client/src/components/schedules/ScheduleDetails.jsx +++ b/packages/desktop-client/src/components/schedules/ScheduleDetails.jsx @@ -15,7 +15,7 @@ import { useSelected, SelectedProvider } from '../../hooks/useSelected'; import { theme } from '../../style'; import { AccountAutocomplete } from '../autocomplete/AccountAutocomplete'; import { PayeeAutocomplete } from '../autocomplete/PayeeAutocomplete'; -import { Button } from '../common/Button'; +import { Button } from '../common/Button2'; import { Modal } from '../common/Modal'; import { Stack } from '../common/Stack'; import { Text } from '../common/Text'; @@ -676,7 +676,7 @@ export function ScheduleDetails({ modalProps, actions, id, transaction }) { This schedule has custom conditions and actions </Text> )} - <Button onClick={() => onEditRule()} disabled={adding}> + <Button onPress={() => onEditRule()} isDisabled={adding}> Edit as rule </Button> </Stack> @@ -699,7 +699,7 @@ export function ScheduleDetails({ modalProps, actions, id, transaction }) { ) : ( <View style={{ flexDirection: 'row', alignItems: 'center' }}> <Button - type="bare" + variant="bare" style={{ color: state.transactionsMode === 'linked' @@ -708,12 +708,12 @@ export function ScheduleDetails({ modalProps, actions, id, transaction }) { marginRight: 10, fontSize: 14, }} - onClick={() => onSwitchTransactions('linked')} + onPress={() => onSwitchTransactions('linked')} > Linked transactions </Button>{' '} <Button - type="bare" + variant="bare" style={{ color: state.transactionsMode === 'matched' @@ -721,7 +721,7 @@ export function ScheduleDetails({ modalProps, actions, id, transaction }) { : theme.pageTextSubdued, fontSize: 14, }} - onClick={() => onSwitchTransactions('matched')} + onPress={() => onSwitchTransactions('matched')} > Find matching transactions </Button> @@ -777,10 +777,10 @@ export function ScheduleDetails({ modalProps, actions, id, transaction }) { {state.error && ( <Text style={{ color: theme.errorText }}>{state.error}</Text> )} - <Button style={{ marginRight: 10 }} onClick={actions.popModal}> + <Button style={{ marginRight: 10 }} onPress={actions.popModal}> Cancel </Button> - <Button type="primary" onClick={onSave}> + <Button variant="primary" onPress={onSave}> {adding ? 'Add' : 'Save'} </Button> </Stack> diff --git a/packages/desktop-client/src/components/schedules/ScheduleLink.tsx b/packages/desktop-client/src/components/schedules/ScheduleLink.tsx index 5743087d3..7f989a784 100644 --- a/packages/desktop-client/src/components/schedules/ScheduleLink.tsx +++ b/packages/desktop-client/src/components/schedules/ScheduleLink.tsx @@ -10,7 +10,7 @@ import { type TransactionEntity } from 'loot-core/src/types/models'; import { type BoundActions } from '../../hooks/useActions'; import { SvgAdd } from '../../icons/v0'; -import { Button } from '../common/Button'; +import { Button } from '../common/Button2'; import { Modal } from '../common/Modal'; import { Search } from '../common/Search'; import { Text } from '../common/Text'; @@ -90,9 +90,9 @@ export function ScheduleLink({ /> {ids.length === 1 && ( <Button - type="primary" + variant="primary" style={{ marginLeft: 15, padding: '4px 10px' }} - onClick={onCreate} + onPress={onCreate} > <SvgAdd style={{ width: '20', padding: '3' }} /> Create New diff --git a/packages/desktop-client/src/components/schedules/SchedulesTable.tsx b/packages/desktop-client/src/components/schedules/SchedulesTable.tsx index a3b2edad3..aa6a560af 100644 --- a/packages/desktop-client/src/components/schedules/SchedulesTable.tsx +++ b/packages/desktop-client/src/components/schedules/SchedulesTable.tsx @@ -16,7 +16,7 @@ import { usePayees } from '../../hooks/usePayees'; import { SvgDotsHorizontalTriple } from '../../icons/v1'; import { SvgCheck } from '../../icons/v2'; import { theme } from '../../style'; -import { Button } from '../common/Button'; +import { Button } from '../common/Button2'; import { Menu } from '../common/Menu'; import { Popover } from '../common/Popover'; import { Text } from '../common/Text'; @@ -98,10 +98,9 @@ function OverflowMenu({ <View> <Button ref={triggerRef} - type="bare" + variant="bare" aria-label="Menu" - onClick={e => { - e.stopPropagation(); + onPress={() => { setOpen(true); }} > diff --git a/packages/desktop-client/src/components/schedules/index.tsx b/packages/desktop-client/src/components/schedules/index.tsx index 8f20170aa..daca57a39 100644 --- a/packages/desktop-client/src/components/schedules/index.tsx +++ b/packages/desktop-client/src/components/schedules/index.tsx @@ -6,7 +6,7 @@ import { type ScheduleEntity } from 'loot-core/src/types/models'; import { useActions } from '../../hooks/useActions'; import { theme } from '../../style'; -import { Button } from '../common/Button'; +import { Button } from '../common/Button2'; import { Search } from '../common/Search'; import { View } from '../common/View'; import { Page } from '../Page'; @@ -105,8 +105,8 @@ export function Schedules() { flexShrink: 0, }} > - <Button onClick={onDiscover}>Find schedules</Button> - <Button type="primary" onClick={onAdd}> + <Button onPress={onDiscover}>Find schedules</Button> + <Button variant="primary" onPress={onAdd}> Add new schedule </Button> </View> diff --git a/packages/desktop-client/src/components/util/AmountInput.tsx b/packages/desktop-client/src/components/util/AmountInput.tsx index ae385f28f..af947f622 100644 --- a/packages/desktop-client/src/components/util/AmountInput.tsx +++ b/packages/desktop-client/src/components/util/AmountInput.tsx @@ -15,7 +15,7 @@ import { useLocalPref } from '../../hooks/useLocalPref'; import { useMergedRefs } from '../../hooks/useMergedRefs'; import { SvgAdd, SvgSubtract } from '../../icons/v1'; import { type CSSProperties, theme } from '../../style'; -import { Button } from '../common/Button'; +import { Button } from '../common/Button2'; import { InputWithContent } from '../common/InputWithContent'; import { View } from '../common/View'; import { useFormat } from '../spreadsheet/useFormat'; @@ -104,12 +104,11 @@ export function AmountInput({ inputMode="decimal" leftContent={ <Button - type="bare" - disabled={disabled} + variant="bare" + isDisabled={disabled} aria-label={`Make ${negative ? 'positive' : 'negative'}`} style={{ padding: '0 7px' }} - onPointerUp={onSwitch} - onPointerDown={e => e.preventDefault()} + onPress={onSwitch} ref={buttonRef} > {negative ? ( diff --git a/upcoming-release-notes/2904.md b/upcoming-release-notes/2904.md new file mode 100644 index 000000000..1759da041 --- /dev/null +++ b/upcoming-release-notes/2904.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [joel-jeremy] +--- + +Use react-aria-components's Button as base of the builtin Button component. diff --git a/yarn.lock b/yarn.lock index b8b91f59e..3827e0d88 100644 --- a/yarn.lock +++ b/yarn.lock @@ -102,7 +102,7 @@ __metadata: pikaday: "npm:1.8.2" promise-retry: "npm:^2.0.1" react: "npm:18.2.0" - react-aria-components: "npm:^1.1.1" + react-aria-components: "npm:^1.2.1" react-dnd: "npm:^16.0.1" react-dnd-html5-backend: "npm:^16.0.1" react-dom: "npm:18.2.0" @@ -2211,6 +2211,15 @@ __metadata: languageName: node linkType: hard +"@internationalized/date@npm:^3.5.4": + version: 3.5.4 + resolution: "@internationalized/date@npm:3.5.4" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 0e38a3be70fbbbce291ec5a977fadb5f3a7dc2ca9a921494bd892e9ff6c8bba9cd44cd8767e5f50cf2d7e422ab2d5323da2eb7595142d8b487c83500ab135abe + languageName: node + linkType: hard + "@internationalized/message@npm:^3.1.2": version: 3.1.2 resolution: "@internationalized/message@npm:3.1.2" @@ -2221,6 +2230,16 @@ __metadata: languageName: node linkType: hard +"@internationalized/message@npm:^3.1.4": + version: 3.1.4 + resolution: "@internationalized/message@npm:3.1.4" + dependencies: + "@swc/helpers": "npm:^0.5.0" + intl-messageformat: "npm:^10.1.0" + checksum: 1b895871cbf81cab360046aca07d7d1433aed5f8904abed03fb5e581516403c7b9b075a0e497d1095368329a5980e0ff38a14103b6d9fdb0621fbeeded8b71aa + languageName: node + linkType: hard + "@internationalized/number@npm:^3.5.1": version: 3.5.1 resolution: "@internationalized/number@npm:3.5.1" @@ -2230,6 +2249,15 @@ __metadata: languageName: node linkType: hard +"@internationalized/number@npm:^3.5.3": + version: 3.5.3 + resolution: "@internationalized/number@npm:3.5.3" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: 2b154a82f1150224ce0ae0e97a87e3eff5c60111342a89f0360d3146f8ca3b482b704d25d370a7233e4ff21eeb62cff8fb6e9594dc79984d05459f03a0d348f7 + languageName: node + linkType: hard + "@internationalized/string@npm:^3.2.1": version: 3.2.1 resolution: "@internationalized/string@npm:3.2.1" @@ -2239,6 +2267,15 @@ __metadata: languageName: node linkType: hard +"@internationalized/string@npm:^3.2.3": + version: 3.2.3 + resolution: "@internationalized/string@npm:3.2.3" + dependencies: + "@swc/helpers": "npm:^0.5.0" + checksum: d7ff86646e8cd10696fadd43f59eae767b7bcced652ecc70afaddcea396d6cebc34f8e08af274a32324a923f9a88f1ecf477b1cd2a64954fed8bc1111808f0d7 + languageName: node + linkType: hard + "@isaacs/cliui@npm:^8.0.2": version: 8.0.2 resolution: "@isaacs/cliui@npm:8.0.2" @@ -2889,171 +2926,195 @@ __metadata: languageName: node linkType: hard -"@react-aria/breadcrumbs@npm:^3.5.11": - version: 3.5.11 - resolution: "@react-aria/breadcrumbs@npm:3.5.11" +"@react-aria/breadcrumbs@npm:^3.5.13": + version: 3.5.13 + resolution: "@react-aria/breadcrumbs@npm:3.5.13" dependencies: - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/link": "npm:^3.6.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/breadcrumbs": "npm:^3.7.3" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/link": "npm:^3.7.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/breadcrumbs": "npm:^3.7.5" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: baf8ce4c8a5c85dca93463349fb45a151c91ae90475d28cda119083c45588f28a2e043108bc66d8f9d936eb93829743427b026f31f986069e009f0749c70ae10 + checksum: 9bb2797fcfca7706aa391bbdef6a5775baa18b5e28d9545e4ac2723517c2e7b9f620d0c0ef833bfb4b04f7257a00dcd20573aeb8ca4dc15af5e382377b9c5e83 languageName: node linkType: hard -"@react-aria/button@npm:^3.9.3": - version: 3.9.3 - resolution: "@react-aria/button@npm:3.9.3" +"@react-aria/button@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-aria/button@npm:3.9.5" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/toggle": "npm:^3.7.2" - "@react-types/button": "npm:^3.9.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/toggle": "npm:^3.7.4" + "@react-types/button": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: e3c535f00109d7409e1b42e4fc02313f28c7236d3689eb6de2861050c193f51a73dc27b512c8c3c733da7ec4329a7c6ace5a5ea8d75629215e63a9bf625c9db7 + checksum: 044eace71b00039336d5282481f38476da662d243404ef35ea5648641a297f65141e889b982d4b59c3e1f34bf1b9e422da0c04310eac1b86df51ff5774365a77 languageName: node linkType: hard -"@react-aria/calendar@npm:^3.5.6": - version: 3.5.6 - resolution: "@react-aria/calendar@npm:3.5.6" - dependencies: - "@internationalized/date": "npm:^3.5.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/live-announcer": "npm:^3.3.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/calendar": "npm:^3.4.4" - "@react-types/button": "npm:^3.9.2" - "@react-types/calendar": "npm:^3.4.4" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/calendar@npm:^3.5.8": + version: 3.5.8 + resolution: "@react-aria/calendar@npm:3.5.8" + dependencies: + "@internationalized/date": "npm:^3.5.4" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/live-announcer": "npm:^3.3.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/calendar": "npm:^3.5.1" + "@react-types/button": "npm:^3.9.4" + "@react-types/calendar": "npm:^3.4.6" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 85612ff6bcc20150ee33a5e690e581c636435cdab1c48a56e867207b24e64df464bbec87287a2c912aeffd9a43f9dbb4049ac211900f9fe98f4b33ea42cf0489 + checksum: af8365cda1e6afaa527df4a9872ce4c1e2702b49e8375f0fe2610d5e9c67dee068df949aa5a5f2d0060b5f505258e8c17a521fc22dbb20bf2b6bf30d8d6d1723 languageName: node linkType: hard -"@react-aria/checkbox@npm:^3.14.1": - version: 3.14.1 - resolution: "@react-aria/checkbox@npm:3.14.1" - dependencies: - "@react-aria/form": "npm:^3.0.3" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/toggle": "npm:^3.10.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/checkbox": "npm:^3.6.3" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/toggle": "npm:^3.7.2" - "@react-types/checkbox": "npm:^3.7.1" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/checkbox@npm:^3.14.3": + version: 3.14.3 + resolution: "@react-aria/checkbox@npm:3.14.3" + dependencies: + "@react-aria/form": "npm:^3.0.5" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/toggle": "npm:^3.10.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/checkbox": "npm:^3.6.5" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/toggle": "npm:^3.7.4" + "@react-types/checkbox": "npm:^3.8.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 4484a177f95d1d20872592ec6edf06413517e08d8b0a406bb7b4ff697d24ea3098159b100607c73a84833e5c32b22a7d511d1008bec7543cd2127de88563148d + languageName: node + linkType: hard + +"@react-aria/color@npm:3.0.0-beta.33": + version: 3.0.0-beta.33 + resolution: "@react-aria/color@npm:3.0.0-beta.33" + dependencies: + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/numberfield": "npm:^3.11.3" + "@react-aria/slider": "npm:^3.7.8" + "@react-aria/spinbutton": "npm:^3.6.5" + "@react-aria/textfield": "npm:^3.14.5" + "@react-aria/utils": "npm:^3.24.1" + "@react-aria/visually-hidden": "npm:^3.8.12" + "@react-stately/color": "npm:^3.6.1" + "@react-stately/form": "npm:^3.0.3" + "@react-types/color": "npm:3.0.0-beta.25" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: d579d277aff110e5cfecf3f4c25b4f635d227104558af5448d18bce32c5a85663d728ac3814347ca3d5c9088a76f09a04ce858e4c2853d7cc4709e4146ab96f1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 184e7521f6de7e740e8807535fe87c80fbaeb753263cce53504c98785599a945003c48b9a419ec69d9d1848558a7a048a06e22b5b626df64ff1ad62e4a29bc2a languageName: node linkType: hard -"@react-aria/combobox@npm:^3.8.4": - version: 3.8.4 - resolution: "@react-aria/combobox@npm:3.8.4" - dependencies: - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/listbox": "npm:^3.11.5" - "@react-aria/live-announcer": "npm:^3.3.2" - "@react-aria/menu": "npm:^3.13.1" - "@react-aria/overlays": "npm:^3.21.1" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/textfield": "npm:^3.14.3" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/combobox": "npm:^3.8.2" - "@react-stately/form": "npm:^3.0.1" - "@react-types/button": "npm:^3.9.2" - "@react-types/combobox": "npm:^3.10.1" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/combobox@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/combobox@npm:3.9.1" + dependencies: + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/listbox": "npm:^3.12.1" + "@react-aria/live-announcer": "npm:^3.3.4" + "@react-aria/menu": "npm:^3.14.1" + "@react-aria/overlays": "npm:^3.22.1" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/textfield": "npm:^3.14.5" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/combobox": "npm:^3.8.4" + "@react-stately/form": "npm:^3.0.3" + "@react-types/button": "npm:^3.9.4" + "@react-types/combobox": "npm:^3.11.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: abe760b78d4b7de41131816f7939a2fceed9acb1531a2c3e471230f9d2de01661ae891faf01ffe95b426bbe5f29960d7bd7ce7f54631e3d85e51a27556775aad + checksum: a0ac563b353e2c72c2d0661bdd80a01a640bfe97bbae7294c4eecc34416cb027b5d6d8fefeed02adf3c3fb80bbbd95c02ddf107e9d0080522442a0b55ad807d0 languageName: node linkType: hard -"@react-aria/datepicker@npm:^3.9.3": - version: 3.9.3 - resolution: "@react-aria/datepicker@npm:3.9.3" - dependencies: - "@internationalized/date": "npm:^3.5.2" - "@internationalized/number": "npm:^3.5.1" - "@internationalized/string": "npm:^3.2.1" - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/form": "npm:^3.0.3" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/spinbutton": "npm:^3.6.3" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/datepicker": "npm:^3.9.2" - "@react-stately/form": "npm:^3.0.1" - "@react-types/button": "npm:^3.9.2" - "@react-types/calendar": "npm:^3.4.4" - "@react-types/datepicker": "npm:^3.7.2" - "@react-types/dialog": "npm:^3.5.8" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/datepicker@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-aria/datepicker@npm:3.10.1" + dependencies: + "@internationalized/date": "npm:^3.5.4" + "@internationalized/number": "npm:^3.5.3" + "@internationalized/string": "npm:^3.2.3" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/form": "npm:^3.0.5" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/spinbutton": "npm:^3.6.5" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/datepicker": "npm:^3.9.4" + "@react-stately/form": "npm:^3.0.3" + "@react-types/button": "npm:^3.9.4" + "@react-types/calendar": "npm:^3.4.6" + "@react-types/datepicker": "npm:^3.7.4" + "@react-types/dialog": "npm:^3.5.10" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: c6d27d3dd75e9e9fd958d0b08982e8517a49400c02bd37cb75a2e31839b024388d63cb53200cf4a654c83dd61049d5d687f716789ee6d7d915b1b9c45164e9b8 + checksum: 0e3c87063e839e24bb91ed0d852112c4872c9a580ec9f5986b5ea92bdfc787c1d9365390158bdc0a9cc8b6e76fac82be4bbefbbfa3035f789bf704f5d5de5cd7 languageName: node linkType: hard -"@react-aria/dialog@npm:^3.5.12": - version: 3.5.12 - resolution: "@react-aria/dialog@npm:3.5.12" +"@react-aria/dialog@npm:^3.5.14": + version: 3.5.14 + resolution: "@react-aria/dialog@npm:3.5.14" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/overlays": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/dialog": "npm:^3.5.8" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/overlays": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/dialog": "npm:^3.5.10" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 3de699980e8582056675fef747746c23f8875940d85bd6dafadacf9e59c0edd0d9b1dc2f011fb1cfbcbdebdf4a2796fa9bc19e953c4c809f671151975031d6bf + checksum: daae893065fe73b1c02c02572fa146ffa13280a39b4fedbab5a9581952ff021728673dd35f1e64d03413e8ace43eeef55f62aeabcc17a7600f987788895b1416 languageName: node linkType: hard -"@react-aria/dnd@npm:^3.5.3": - version: 3.5.3 - resolution: "@react-aria/dnd@npm:3.5.3" - dependencies: - "@internationalized/string": "npm:^3.2.1" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/live-announcer": "npm:^3.3.2" - "@react-aria/overlays": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/dnd": "npm:^3.2.8" - "@react-types/button": "npm:^3.9.2" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/dnd@npm:^3.6.1": + version: 3.6.1 + resolution: "@react-aria/dnd@npm:3.6.1" + dependencies: + "@internationalized/string": "npm:^3.2.3" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/live-announcer": "npm:^3.3.4" + "@react-aria/overlays": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/dnd": "npm:^3.3.1" + "@react-types/button": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 6fe1cd94956167bfc0f4aeaab6f87edec082a996d8745dde5113ae09c63d5d70e2b0648cb1357d54e0f7a62b34002f2d6a499bf2486f78ba7f7fbfac6db9aa58 + checksum: 53d44c58300f5a96d7e528c2df8cc454f9b3d558ff6e6aa2a878f68cae827321034753b2a27a717e2d8bc2888b02976697803da75a34677b541be5db7e6c61c6 languageName: node linkType: hard @@ -3072,63 +3133,80 @@ __metadata: languageName: node linkType: hard -"@react-aria/form@npm:^3.0.3": - version: 3.0.3 - resolution: "@react-aria/form@npm:3.0.3" +"@react-aria/focus@npm:^3.17.1": + version: 3.17.1 + resolution: "@react-aria/focus@npm:3.17.1" dependencies: - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/form": "npm:^3.0.1" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" + clsx: "npm:^2.0.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 2b4f6f7a33c1cfc1f82f05a2433d5bd9dfda93b2dd365c16631fe63c32d113ca11353ae2151274f6b8e1ad3885aecaf569b357b24cf7464b8436ba6785eca2ee + checksum: 4c3c7b26c983c83119a5ff1595e339b8bf68dcb6ea4349dc3b6bb26af41bbae4be50df8a96b12beea9b9f700c4508addfa4fd4626e7955bce667ec7620693af8 languageName: node linkType: hard -"@react-aria/grid@npm:^3.8.8": - version: 3.8.8 - resolution: "@react-aria/grid@npm:3.8.8" +"@react-aria/form@npm:^3.0.5": + version: 3.0.5 + resolution: "@react-aria/form@npm:3.0.5" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/live-announcer": "npm:^3.3.2" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/grid": "npm:^3.8.5" - "@react-stately/selection": "npm:^3.14.3" - "@react-stately/virtualizer": "npm:^3.6.8" - "@react-types/checkbox": "npm:^3.7.1" - "@react-types/grid": "npm:^3.2.4" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/form": "npm:^3.0.3" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: f428113530658498b143670fa775feb2839ad259b90db957ecb8f7094523e1c3f7b2357f9b4f9b26639d14b9889137566fa8ca750e053bfffb1b837b666c1eb2 + languageName: node + linkType: hard + +"@react-aria/grid@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/grid@npm:3.9.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/live-announcer": "npm:^3.3.4" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/grid": "npm:^3.8.7" + "@react-stately/selection": "npm:^3.15.1" + "@react-stately/virtualizer": "npm:^3.7.1" + "@react-types/checkbox": "npm:^3.8.1" + "@react-types/grid": "npm:^3.2.6" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 61e1d82b39c8c7638465060826f6bbf19a971294f6060fcdbc13d3b326c696b8cdc2c88d49d07b66f894cb5aaa76ab324cf8ba8e112e894122d330ab6f4b3a58 + checksum: b07dbd270ba829cca6631a8261798204ed31e6e0670e5d214f220a0dd66fa851e33729b2982aae0ab0dd5518e9ca1dfe88d8abc6051fc98e21b0d356de314e79 languageName: node linkType: hard -"@react-aria/gridlist@npm:^3.7.5": - version: 3.7.5 - resolution: "@react-aria/gridlist@npm:3.7.5" - dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/grid": "npm:^3.8.8" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/list": "npm:^3.10.3" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/gridlist@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-aria/gridlist@npm:3.8.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/grid": "npm:^3.9.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/list": "npm:^3.10.5" + "@react-stately/tree": "npm:^3.8.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: dd540ee75105a40a9a1f23dcdea6e6e54d901e823d43a18bc2c1653791cdbf41a375834e9dce6c279703657239cb9651cc9e6c61449e981c0a2d11e260d7abae + checksum: a345b3d6819c1ce1b7fe8b0cce48230c73e83e7491d402c9df11bbd5d05106ba4700b823283e05608bec24e4dd8200324b6af839355eacff92058167dd926174 languageName: node linkType: hard @@ -3150,6 +3228,24 @@ __metadata: languageName: node linkType: hard +"@react-aria/i18n@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-aria/i18n@npm:3.11.1" + dependencies: + "@internationalized/date": "npm:^3.5.4" + "@internationalized/message": "npm:^3.1.4" + "@internationalized/number": "npm:^3.5.3" + "@internationalized/string": "npm:^3.2.3" + "@react-aria/ssr": "npm:^3.9.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: b193d4b7382343c2d15510fa490c3c2f6d10f43cb8f43b29f5313a3144221e2849e93cc1d94c56c9590f398739f8bad826cc1299f23aea0ef4e974feb71d9dfa + languageName: node + linkType: hard + "@react-aria/interactions@npm:^3.21.1": version: 3.21.1 resolution: "@react-aria/interactions@npm:3.21.1" @@ -3164,6 +3260,20 @@ __metadata: languageName: node linkType: hard +"@react-aria/interactions@npm:^3.21.3": + version: 3.21.3 + resolution: "@react-aria/interactions@npm:3.21.3" + dependencies: + "@react-aria/ssr": "npm:^3.9.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 84fe368a40631f02fb9b9fcc103820a7659132b74a029a3bac3939f4a8bee05c9fe1f023f2d170760adaf3cc110793c6b8db396f016bab740922ffc823f99833 + languageName: node + linkType: hard + "@react-aria/label@npm:^3.7.6": version: 3.7.6 resolution: "@react-aria/label@npm:3.7.6" @@ -3177,23 +3287,36 @@ __metadata: languageName: node linkType: hard -"@react-aria/link@npm:^3.6.5": - version: 3.6.5 - resolution: "@react-aria/link@npm:3.6.5" +"@react-aria/label@npm:^3.7.8": + version: 3.7.8 + resolution: "@react-aria/label@npm:3.7.8" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/link": "npm:^3.5.3" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7bbbc8afe2947dcb427734b7ddc482e8e3c6df6963e5be95744942e44fcba209c87b23cc87fff753e3ff872f2796afeb35901ac48a3c89a5d6e40f41160820f0 + languageName: node + linkType: hard + +"@react-aria/link@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-aria/link@npm:3.7.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/link": "npm:^3.5.5" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: efc425d1991799c8577b2d0166def63b389dc58db7f45204bee4a86c16f127f610bf6d543a57eac7cfad5e85941400ea97bddb8e6b688c1da0c13f8893ca7c0c + checksum: 4cc2d1795308fa26728dc23863ed4863a3e70161fe8ac0f541e9a439fea54a6d3791a42ec2cf120968465ecd5f1e9ceffca3d81708604529ec4bf9b3d1a4cacf languageName: node linkType: hard -"@react-aria/listbox@npm:^3.11.3, @react-aria/listbox@npm:^3.11.5": +"@react-aria/listbox@npm:^3.11.3": version: 3.11.5 resolution: "@react-aria/listbox@npm:3.11.5" dependencies: @@ -3213,173 +3336,193 @@ __metadata: languageName: node linkType: hard -"@react-aria/live-announcer@npm:^3.3.2": - version: 3.3.2 - resolution: "@react-aria/live-announcer@npm:3.3.2" +"@react-aria/listbox@npm:^3.12.1": + version: 3.12.1 + resolution: "@react-aria/listbox@npm:3.12.1" dependencies: + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/list": "npm:^3.10.5" + "@react-types/listbox": "npm:^3.4.9" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" - checksum: 32af58277cf132970f9974bbc2adc69119be98222757a0e0538a7aa42541d28aad6c084f2b0f0d6b5e8b06727a2ffed61413e448433fbe38a5ff2ce59477f75f + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1c873b36737fccca63f19088d69f6132c8d90c16c7532200c1943e25f08f5e374a76572e590ba1b3840b96e7273bf37c761ca3985a066c2b61f6c142261b58d6 languageName: node linkType: hard -"@react-aria/menu@npm:^3.13.1": - version: 3.13.1 - resolution: "@react-aria/menu@npm:3.13.1" +"@react-aria/live-announcer@npm:^3.3.4": + version: 3.3.4 + resolution: "@react-aria/live-announcer@npm:3.3.4" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/overlays": "npm:^3.21.1" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/menu": "npm:^3.6.1" - "@react-stately/tree": "npm:^3.7.6" - "@react-types/button": "npm:^3.9.2" - "@react-types/menu": "npm:^3.9.7" - "@react-types/shared": "npm:^3.22.1" + "@swc/helpers": "npm:^0.5.0" + checksum: 8cc5d07116c0c3f088fe727df83b7847bd62b35af25e9cbf2d5373b17cd3900a751235bf69ab12d480814a92faab992e3a9d43ed4eeb57491231ce8cb6f5e6e4 + languageName: node + linkType: hard + +"@react-aria/menu@npm:^3.14.1": + version: 3.14.1 + resolution: "@react-aria/menu@npm:3.14.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/overlays": "npm:^3.22.1" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/menu": "npm:^3.7.1" + "@react-stately/tree": "npm:^3.8.1" + "@react-types/button": "npm:^3.9.4" + "@react-types/menu": "npm:^3.9.9" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 16ff5650950580688f752487126f6637f9f4fb0c44c753f205e43d676fb87dede868b013135795ca66b1a9c4e4ba70fc3a9dbcdbeb124c9231bacfa4a90d2360 + checksum: 75ba7461017de8358066a92fd7545c886dec6cf31ce7f42bf8e90228ab8c68e95747a7b6da428a3805f1a0d7fe1a4699d8891f8dae7afb6df4c036e5ab25b0a7 languageName: node linkType: hard -"@react-aria/meter@npm:^3.4.11": - version: 3.4.11 - resolution: "@react-aria/meter@npm:3.4.11" +"@react-aria/meter@npm:^3.4.13": + version: 3.4.13 + resolution: "@react-aria/meter@npm:3.4.13" dependencies: - "@react-aria/progress": "npm:^3.4.11" - "@react-types/meter": "npm:^3.3.7" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/progress": "npm:^3.4.13" + "@react-types/meter": "npm:^3.4.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 026effea67234eb8b2c424625f09af89133947b1cb00a80cddfaa0ad41b14ccb304e707b10162f2e0adfb56b0610b519b0b86ba2d4f640388b1e75db2dda7ea4 + checksum: d25fb6cc18ae4001f9e4b877cb53a79a887cb00d1bd39004c641b00d8255eaac157c85ab3a11dfc2837ae0f9f376383236e9e57335360c5e4c3fe268d517eb6f languageName: node linkType: hard -"@react-aria/numberfield@npm:^3.11.1": - version: 3.11.1 - resolution: "@react-aria/numberfield@npm:3.11.1" +"@react-aria/numberfield@npm:^3.11.3": + version: 3.11.3 + resolution: "@react-aria/numberfield@npm:3.11.3" dependencies: - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/spinbutton": "npm:^3.6.3" - "@react-aria/textfield": "npm:^3.14.3" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/numberfield": "npm:^3.9.1" - "@react-types/button": "npm:^3.9.2" - "@react-types/numberfield": "npm:^3.8.1" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/spinbutton": "npm:^3.6.5" + "@react-aria/textfield": "npm:^3.14.5" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/numberfield": "npm:^3.9.3" + "@react-types/button": "npm:^3.9.4" + "@react-types/numberfield": "npm:^3.8.3" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 2eec4cd6e19b720e4a7801a13e0c06febcd4efcf58f3b6e89fc84ffc4e72e38ed23321863caa226c3e3dd88572fec11888a6884b788a4d98c20fdfe6a4fcfa1a + checksum: 36d192b6e4ae86e0ba8b5e194aea34392018d81ecd269c0d2343f4a8c7bdc00398e4822422b27b04763bf59e4b9de994688b9dad18677f20034917d32cb3e8ff languageName: node linkType: hard -"@react-aria/overlays@npm:^3.21.1": - version: 3.21.1 - resolution: "@react-aria/overlays@npm:3.21.1" - dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/ssr": "npm:^3.9.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-aria/visually-hidden": "npm:^3.8.10" - "@react-stately/overlays": "npm:^3.6.5" - "@react-types/button": "npm:^3.9.2" - "@react-types/overlays": "npm:^3.8.5" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/overlays@npm:^3.22.1": + version: 3.22.1 + resolution: "@react-aria/overlays@npm:3.22.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/ssr": "npm:^3.9.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-aria/visually-hidden": "npm:^3.8.12" + "@react-stately/overlays": "npm:^3.6.7" + "@react-types/button": "npm:^3.9.4" + "@react-types/overlays": "npm:^3.8.7" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 3143558dfb6e266194c0581475d10827d1296bb517e3cb3b50e4fe09a5e44a5616440a8f857389ab83572bbb507d738976651fcbf8eec9df0730a93aca159eb7 + checksum: 1bcddb0c9406fdf594f164f2a465461c9e44a3cb84ccb1e640e397778ba243b755bfc4501ff8476fbe756bc43fc1aded1d61b3e7d9cdd6d9937b92c42ca82f46 languageName: node linkType: hard -"@react-aria/progress@npm:^3.4.11": - version: 3.4.11 - resolution: "@react-aria/progress@npm:3.4.11" +"@react-aria/progress@npm:^3.4.13": + version: 3.4.13 + resolution: "@react-aria/progress@npm:3.4.13" dependencies: - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/progress": "npm:^3.5.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/progress": "npm:^3.5.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 16bc8ce8a33b5bbe0152780f2d1343fb687107323b122e1602e55ac55132d21108be137e7d00f13529356e706e2d24400e78762533c33352b40c6cfc89d7b8d5 + checksum: 84cebddc9068634f0dd3ed181eaf9be3c302b6883632171796cabacac78459f68f237ac8808428682707379d1acce5ac93f4d08a4157bbd56aa03220d7b450f0 languageName: node linkType: hard -"@react-aria/radio@npm:^3.10.2": - version: 3.10.2 - resolution: "@react-aria/radio@npm:3.10.2" +"@react-aria/radio@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-aria/radio@npm:3.10.4" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/form": "npm:^3.0.3" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/radio": "npm:^3.10.2" - "@react-types/radio": "npm:^3.7.1" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/form": "npm:^3.0.5" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/radio": "npm:^3.10.4" + "@react-types/radio": "npm:^3.8.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 184287a6d54b9f3a6b7f3f4344fc8eaace617e584a29601fbd87bb96f0d732c660438201c4342900ca6fd05fc3bd29764e26c4346b7dbbd6104cd4ca17cf6150 + checksum: 5fa0d6a9858a84cfd4dce0f2d40a52dcd31fa507df489f83b5ef010f6f0de3df7f5bdb54897968f805c2da4e6121fef3f9031575f5bc80b836e9d1ce83dbeb45 languageName: node linkType: hard -"@react-aria/searchfield@npm:^3.7.3": - version: 3.7.3 - resolution: "@react-aria/searchfield@npm:3.7.3" - dependencies: - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/textfield": "npm:^3.14.3" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/searchfield": "npm:^3.5.1" - "@react-types/button": "npm:^3.9.2" - "@react-types/searchfield": "npm:^3.5.3" - "@react-types/shared": "npm:^3.22.1" +"@react-aria/searchfield@npm:^3.7.5": + version: 3.7.5 + resolution: "@react-aria/searchfield@npm:3.7.5" + dependencies: + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/textfield": "npm:^3.14.5" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/searchfield": "npm:^3.5.3" + "@react-types/button": "npm:^3.9.4" + "@react-types/searchfield": "npm:^3.5.5" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 5f85c001e2c677d7f48ffa389d054411644e2f4c584eb3a00e8eb1207d02e7d5da85f03da356670a8f335ab40385a3fcf4263dc1768372aaf9a0b8eafebbb6e3 - languageName: node - linkType: hard - -"@react-aria/select@npm:^3.14.3": - version: 3.14.3 - resolution: "@react-aria/select@npm:3.14.3" - dependencies: - "@react-aria/form": "npm:^3.0.3" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/listbox": "npm:^3.11.5" - "@react-aria/menu": "npm:^3.13.1" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-aria/visually-hidden": "npm:^3.8.10" - "@react-stately/select": "npm:^3.6.2" - "@react-types/button": "npm:^3.9.2" - "@react-types/select": "npm:^3.9.2" - "@react-types/shared": "npm:^3.22.1" + checksum: f1aeccfe38d921da8f892e12ea26ed9d83dc8d015569b64d13817f2777da1aef8fa742ca7e73bc740019b9831d19b16ff5c4ad30aa51eb40b3b1323ce1e62a34 + languageName: node + linkType: hard + +"@react-aria/select@npm:^3.14.5": + version: 3.14.5 + resolution: "@react-aria/select@npm:3.14.5" + dependencies: + "@react-aria/form": "npm:^3.0.5" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/listbox": "npm:^3.12.1" + "@react-aria/menu": "npm:^3.14.1" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-aria/visually-hidden": "npm:^3.8.12" + "@react-stately/select": "npm:^3.6.4" + "@react-types/button": "npm:^3.9.4" + "@react-types/select": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: d3ddeb22afed02ad323b94420db3b9f87a3f29f9a97a52984d198c48e2465b352897f21dcf0c29eb4f98d078822e8a3c3815c4044c1a8deed21ef87ab1aba791 + checksum: 76af6d008d72702b12eb76ebd4e0ee59aa59c2e95dae7a35c8d96fe0e4b1fe56c84f6a4ae8696e99bfd5978fdc1681a524d14b70cf08e02dc74a6447fb29b724 languageName: node linkType: hard @@ -3401,52 +3544,70 @@ __metadata: languageName: node linkType: hard -"@react-aria/separator@npm:^3.3.11": - version: 3.3.11 - resolution: "@react-aria/separator@npm:3.3.11" +"@react-aria/selection@npm:^3.18.1": + version: 3.18.1 + resolution: "@react-aria/selection@npm:3.18.1" dependencies: - "@react-aria/utils": "npm:^3.23.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/selection": "npm:^3.15.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: e11e5b60a899da3b71c3afb23c666f7ac96090fadcd12b1d03ba278c80b8124023ddcff0d9628a3679db78d315c56d533172c032d87df429e8d8f40bd45991e5 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 233ed769f9539b5e70cb0f8f81c269153386b3d6f2d15a60c331bcf9f4fc78aac2b608f539ef3772caffa8f44fd081eec46af0ec8e577633cb3c6e130509d060 languageName: node linkType: hard -"@react-aria/slider@npm:^3.7.6": - version: 3.7.6 - resolution: "@react-aria/slider@npm:3.7.6" +"@react-aria/separator@npm:^3.3.13": + version: 3.3.13 + resolution: "@react-aria/separator@npm:3.3.13" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/slider": "npm:^3.5.2" - "@react-types/shared": "npm:^3.22.1" - "@react-types/slider": "npm:^3.7.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 9cbec4465cc099192ff17075c1cf10660b1567dbfe31a674aa76e16658163cc32af0c5009ca54ed728085d277e462d44852821be166e396a9f44a7cf0a5918ad + checksum: 2938cc88047f274d898d3ec9026b2a2aebbfe3a27fbb9cec7f4444596bab4708417fabfd5388181e511fa2ee814a8fed5099031af391f55f966080e48b20b435 languageName: node linkType: hard -"@react-aria/spinbutton@npm:^3.6.3": - version: 3.6.3 - resolution: "@react-aria/spinbutton@npm:3.6.3" +"@react-aria/slider@npm:^3.7.8": + version: 3.7.8 + resolution: "@react-aria/slider@npm:3.7.8" dependencies: - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/live-announcer": "npm:^3.3.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/button": "npm:^3.9.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/slider": "npm:^3.5.4" + "@react-types/shared": "npm:^3.23.1" + "@react-types/slider": "npm:^3.7.3" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: aefa070af4241848be09cf66afef893a9279368692a1e505883a37d9630ab959b9ec65aad47e53a68cef627fe6dd25bb0f90c96d617c13bcc0006cf5a826d477 + languageName: node + linkType: hard + +"@react-aria/spinbutton@npm:^3.6.5": + version: 3.6.5 + resolution: "@react-aria/spinbutton@npm:3.6.5" + dependencies: + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/live-announcer": "npm:^3.3.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/button": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: ad39a9408cf1f8cbd7aae64161a3150bea3711b55d78b724c21e17ce46cfe3fb3bcecd31a15d4f380004e5d593c10f91a36ec3be0ff271a049792ef674cf6f0e + checksum: 5567e91640ab71cdc621d91dacacaeef4ca9d1d3bd1a9f89402de2db0eb9adf1e7ec594a6c48e432003ebacf5964186e54220f7c00bcfb975ea3e12a633f0dbc languageName: node linkType: hard @@ -3461,151 +3622,181 @@ __metadata: languageName: node linkType: hard -"@react-aria/switch@npm:^3.6.2": - version: 3.6.2 - resolution: "@react-aria/switch@npm:3.6.2" +"@react-aria/ssr@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-aria/ssr@npm:3.9.4" dependencies: - "@react-aria/toggle": "npm:^3.10.2" - "@react-stately/toggle": "npm:^3.7.2" - "@react-types/switch": "npm:^3.5.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 6eb2268652b92e3d156a1d63e5490ce3527f592b6f310ad725fa06379c5629d4db430b0f7482996ea8b0581db2e6dd083f132c84ae31401d4dcb8393806e61d3 + checksum: c55e5e0bf86bc39c7c0c9f86f4166e923cf62304903b7b5e700619bff64edc4fbeec5a66741aa39635445ff0b26d80ee03d6471c5df02ec764b9a71938dd17de languageName: node linkType: hard -"@react-aria/table@npm:^3.13.5": - version: 3.13.5 - resolution: "@react-aria/table@npm:3.13.5" +"@react-aria/switch@npm:^3.6.4": + version: 3.6.4 + resolution: "@react-aria/switch@npm:3.6.4" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/grid": "npm:^3.8.8" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/live-announcer": "npm:^3.3.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-aria/visually-hidden": "npm:^3.8.10" - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/flags": "npm:^3.0.1" - "@react-stately/table": "npm:^3.11.6" - "@react-stately/virtualizer": "npm:^3.6.8" - "@react-types/checkbox": "npm:^3.7.1" - "@react-types/grid": "npm:^3.2.4" - "@react-types/shared": "npm:^3.22.1" - "@react-types/table": "npm:^3.9.3" + "@react-aria/toggle": "npm:^3.10.4" + "@react-stately/toggle": "npm:^3.7.4" + "@react-types/switch": "npm:^3.5.3" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 97a26a41126beb4df20ff857a7e6af78242ea8ec864d86a60082826f0cbce40bc2288af50c705da237f6ef9eafc4aa9bc775e5a6b67ccd2b2dacb6754abc2fcc + languageName: node + linkType: hard + +"@react-aria/table@npm:^3.14.1": + version: 3.14.1 + resolution: "@react-aria/table@npm:3.14.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/grid": "npm:^3.9.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/live-announcer": "npm:^3.3.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-aria/visually-hidden": "npm:^3.8.12" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/flags": "npm:^3.0.3" + "@react-stately/table": "npm:^3.11.8" + "@react-stately/virtualizer": "npm:^3.7.1" + "@react-types/checkbox": "npm:^3.8.1" + "@react-types/grid": "npm:^3.2.6" + "@react-types/shared": "npm:^3.23.1" + "@react-types/table": "npm:^3.9.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 1b7bd3269f38ea745bc5e7356eb81139d6238e039d7e7fbfc43db5ecfabd27d15c6b1251b44cf1f2921ac4e5c82d0b8767ac839c5f4e724ba326c59bd1ed4c2e + checksum: 3b20885aefbecf40e76d2d594a4c6cd3894878c031041bd3c398d440cad6cc938098c9fcc112bc0a1744478d0e8e241acd2e1641129dceab54f04e9e1bd2e5b2 languageName: node linkType: hard -"@react-aria/tabs@npm:^3.8.5": - version: 3.8.5 - resolution: "@react-aria/tabs@npm:3.8.5" - dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/tabs": "npm:^3.6.4" - "@react-types/shared": "npm:^3.22.1" - "@react-types/tabs": "npm:^3.3.5" +"@react-aria/tabs@npm:^3.9.1": + version: 3.9.1 + resolution: "@react-aria/tabs@npm:3.9.1" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/tabs": "npm:^3.6.6" + "@react-types/shared": "npm:^3.23.1" + "@react-types/tabs": "npm:^3.3.7" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 9a2c569c167c378cec709d1a38cbf628f14ae152c2cfbb0160c883212dd20c03657b172c880f2db79ae5b88e145210ddd150f4920ce2179702f9ba1ea7f501f8 + checksum: 69d0f482ce94ed34a587eb9da6bf7c62911040a4c02c37fe768710d043ffcd6750bed506dc7cbe16881db2cf6b271cbef2dc91ac4e7be70965f3f8bf56ba1918 languageName: node linkType: hard -"@react-aria/tag@npm:^3.3.3": - version: 3.3.3 - resolution: "@react-aria/tag@npm:3.3.3" +"@react-aria/tag@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-aria/tag@npm:3.4.1" dependencies: - "@react-aria/gridlist": "npm:^3.7.5" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/list": "npm:^3.10.3" - "@react-types/button": "npm:^3.9.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/gridlist": "npm:^3.8.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/list": "npm:^3.10.5" + "@react-types/button": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 10aee2f83c1c5ae0a4954c50b8d3153708944ad391bdcf3f4deb0be87bb229a78834cafa9cd860988f3fc3d7a4757cff161becb7d761b4db98b2e280ba6d9e7c + checksum: d85ac6ea1dec19f51acfde677cb3fd6da799d2a022468c984b1ed3d0cb7e6820e8fc5e8b9b12a2617d9830343a232b5d39a21c268d10d7a411d5d27d06c72055 languageName: node linkType: hard -"@react-aria/textfield@npm:^3.14.3": - version: 3.14.3 - resolution: "@react-aria/textfield@npm:3.14.3" +"@react-aria/textfield@npm:^3.14.5": + version: 3.14.5 + resolution: "@react-aria/textfield@npm:3.14.5" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/form": "npm:^3.0.3" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/shared": "npm:^3.22.1" - "@react-types/textfield": "npm:^3.9.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/form": "npm:^3.0.5" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/shared": "npm:^3.23.1" + "@react-types/textfield": "npm:^3.9.3" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: db3ac87112d4da65762805247c7eace92cede25855d589e61a8e00ae0a7593ca6778ddb5d15f3499ff294153f356de6a12bb679d49f3848592df57fd8b4929d6 + checksum: db1a3270a6d7b7947567554a56748a6960a2f83f1f4b4b3649896777ef7d02ba3a6b657dba93860c89b11fa2abe0ea94b47aa499c15751be11a092e494f4c016 languageName: node linkType: hard -"@react-aria/toggle@npm:^3.10.2": - version: 3.10.2 - resolution: "@react-aria/toggle@npm:3.10.2" +"@react-aria/toggle@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-aria/toggle@npm:3.10.4" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/toggle": "npm:^3.7.2" - "@react-types/checkbox": "npm:^3.7.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/toggle": "npm:^3.7.4" + "@react-types/checkbox": "npm:^3.8.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: fd402ca7e83674dcecfb95e18075bece6dbf49250610ac8260ee6543f651d8c07042110ec368747cc1bd82a0915f5e900df5c3a5c6fc55dd244f161661eb5c5b + checksum: 66f59d898399977ed640d40c40634c9f5f95d50a1241c8a604d04b652c261353377f1a8c1a05ffbd49090ff8c120ead4f2567e4732c07c0dfc4368fa3399c2c9 languageName: node linkType: hard -"@react-aria/toolbar@npm:3.0.0-beta.3": - version: 3.0.0-beta.3 - resolution: "@react-aria/toolbar@npm:3.0.0-beta.3" +"@react-aria/toolbar@npm:3.0.0-beta.5": + version: 3.0.0-beta.5 + resolution: "@react-aria/toolbar@npm:3.0.0-beta.5" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 4d6541aa2ce3126c0705aa9edd44a305c7a37818c915ddd06efd1812f258b1d3a515225b651af4973ed2aa41268607338a9c929128fa9eaeab0510fd7b25717c + checksum: 4f9114fd900cb81b98399f917222a83f59d9012114fd198f1954a24c09c805875e502695ca69edb7f4e51f031da0649394b587bd7b83efa404fba9fcf18152a3 languageName: node linkType: hard -"@react-aria/tooltip@npm:^3.7.2": - version: 3.7.2 - resolution: "@react-aria/tooltip@npm:3.7.2" +"@react-aria/tooltip@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-aria/tooltip@npm:3.7.4" + dependencies: + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/tooltip": "npm:^3.4.9" + "@react-types/shared": "npm:^3.23.1" + "@react-types/tooltip": "npm:^3.4.9" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: b184bded727abc4b85c53de6b348bae2bada8ad1bba167ce998c1fc9ace4d2b9e9c4362352ece91e321e0ce4da88795d60c1e96298203cedfb8553a9f4e50ebc + languageName: node + linkType: hard + +"@react-aria/tree@npm:3.0.0-alpha.1": + version: 3.0.0-alpha.1 + resolution: "@react-aria/tree@npm:3.0.0-alpha.1" dependencies: - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/tooltip": "npm:^3.4.7" - "@react-types/shared": "npm:^3.22.1" - "@react-types/tooltip": "npm:^3.4.7" + "@react-aria/gridlist": "npm:^3.8.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/tree": "npm:^3.8.1" + "@react-types/button": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 2f7017b97b01c612ef9e04b10275df0f52df1eaa581910754210f3d250e369596b740befbdac117c4a1ff3df39b4a9cbc9d5c5c5397adc5f261bb4394a3e8f04 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: d21790594918886e8c3214dc666af563e8c13dd0dbe956492f251291144b3f18418dd2901df10569bc639a30c8edfcfa90d21b1fc3e6c69d4fc6d7e512531b52 languageName: node linkType: hard @@ -3624,17 +3815,32 @@ __metadata: languageName: node linkType: hard -"@react-aria/visually-hidden@npm:^3.8.10": - version: 3.8.10 - resolution: "@react-aria/visually-hidden@npm:3.8.10" +"@react-aria/utils@npm:^3.24.1": + version: 3.24.1 + resolution: "@react-aria/utils@npm:3.24.1" dependencies: - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/utils": "npm:^3.23.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/ssr": "npm:^3.9.4" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + clsx: "npm:^2.0.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 7acf52f3cdf66aaa0c55bde86959a3772bc266682389bf19865739ca8b77a652db8d9f970dc37600c69b8a7cce78b821913f3d7f066bdcb1224599e3fe35afce + languageName: node + linkType: hard + +"@react-aria/visually-hidden@npm:^3.8.12": + version: 3.8.12 + resolution: "@react-aria/visually-hidden@npm:3.8.12" + dependencies: + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: a7f9d8dccfeefb035d01ad8d9db4576f6acf7f0fcb94aad717cec177f113f6507f0dca0c7ee157abe40b358685b4cb84f9bce0c24dab2af753698ec8c1504264 + checksum: 2b3c43f713e37b5536ecd1dd4d975b98fbec5287d06ff462ac4aaea9ed5136a0939e5b6cd5857c2db57b94e41b49aa2c5cfd25d1c87c580d3e204c07fde80895 languageName: node linkType: hard @@ -3781,33 +3987,33 @@ __metadata: languageName: node linkType: hard -"@react-stately/calendar@npm:^3.4.4": - version: 3.4.4 - resolution: "@react-stately/calendar@npm:3.4.4" +"@react-stately/calendar@npm:^3.5.1": + version: 3.5.1 + resolution: "@react-stately/calendar@npm:3.5.1" dependencies: - "@internationalized/date": "npm:^3.5.2" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/calendar": "npm:^3.4.4" - "@react-types/shared": "npm:^3.22.1" + "@internationalized/date": "npm:^3.5.4" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/calendar": "npm:^3.4.6" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: c8beae06f86d52a1644eda56cdf5035ebe14c97e515c2932c101649da30e2447ec530e4de5e0ca0c18ef72c39ae6b12c1760b206d64cec27214ab001c23c4afd + checksum: b410874e1a028f889e4b98b6488be7c10d04a918df73493754a92fcae9020f0fa1891a7663d0295aee45fb010c50ed92f9379564ec1bd45479d2be2ec4bf62ca languageName: node linkType: hard -"@react-stately/checkbox@npm:^3.6.3": - version: 3.6.3 - resolution: "@react-stately/checkbox@npm:3.6.3" +"@react-stately/checkbox@npm:^3.6.5": + version: 3.6.5 + resolution: "@react-stately/checkbox@npm:3.6.5" dependencies: - "@react-stately/form": "npm:^3.0.1" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/checkbox": "npm:^3.7.1" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/checkbox": "npm:^3.8.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: ece58d7f0347e2e4df71475edd92fad38edfa247b940bac4ddac17c8baf2e670b2dd57c63201758cd2389f4ac4efcd40645ca2427463bf2ad1899619078ecbb9 + checksum: fa9c1c0376fca5ac384f6a02dfc6543945dde81458d0466fa9e788ec61a71d0e84e1f6749a12917e02638f6d887df2eb7cba597e161eacd16ae907c8c75da2f6 languageName: node linkType: hard @@ -3823,101 +4029,133 @@ __metadata: languageName: node linkType: hard -"@react-stately/combobox@npm:^3.8.2": - version: 3.8.2 - resolution: "@react-stately/combobox@npm:3.8.2" +"@react-stately/collections@npm:^3.10.7": + version: 3.10.7 + resolution: "@react-stately/collections@npm:3.10.7" dependencies: - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/list": "npm:^3.10.3" - "@react-stately/overlays": "npm:^3.6.5" - "@react-stately/select": "npm:^3.6.2" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/combobox": "npm:^3.10.1" - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: f52ee5478a4473accd828798d29a21542d9ce340eab49ce631bcb25f99963aee2696338be3798fcb5d90172759dd7dd547e73f12127a48533dd84d3f9fd7e4cf + languageName: node + linkType: hard + +"@react-stately/color@npm:^3.6.1": + version: 3.6.1 + resolution: "@react-stately/color@npm:3.6.1" + dependencies: + "@internationalized/number": "npm:^3.5.3" + "@internationalized/string": "npm:^3.2.3" + "@react-aria/i18n": "npm:^3.11.1" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/numberfield": "npm:^3.9.3" + "@react-stately/slider": "npm:^3.5.4" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/color": "npm:3.0.0-beta.25" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 41e9ff4c5d965b429a96001d845984b4a9e86fb46b4b340d590f6bfbafd91b454093b921a3eb2c1f5d8884cb59fc0408b0c867972436777b6af2b99eb13d0e44 + languageName: node + linkType: hard + +"@react-stately/combobox@npm:^3.8.4": + version: 3.8.4 + resolution: "@react-stately/combobox@npm:3.8.4" + dependencies: + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/list": "npm:^3.10.5" + "@react-stately/overlays": "npm:^3.6.7" + "@react-stately/select": "npm:^3.6.4" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/combobox": "npm:^3.11.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: e2f5801fe74abe77c72f02768dfc2e79b1c0f253b973a28ed4bf81da8c5880343ca0f8b0fc624ce64f67ba66bd9a8e725476b69c1c1fa000234d14f10204ebca + checksum: 0a5863a6d82eab95d0e08a8ffcd92cc6a3f7c35589feeb9bad615d9cbe105f4abcfe1e641898b334b1c34ab84d8d97cf7e3c942175306808eb1b291f1bbc753a languageName: node linkType: hard -"@react-stately/data@npm:^3.11.2": - version: 3.11.2 - resolution: "@react-stately/data@npm:3.11.2" +"@react-stately/data@npm:^3.11.4": + version: 3.11.4 + resolution: "@react-stately/data@npm:3.11.4" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 24f912c926d2466fd8493827b15099256d22f3a408054af832cb3b44b51cdfd96cba15e5697ec9b8b97f80e73f73d727a232b7dfe4f403dff52f54dae9b3172c + checksum: 79ae8819cac2cdf0888dbf50bac646ed1d5183b7e565d27894ca2fea8066b4b259acb04d41af21cf8abe9bbf1b96c743c6e05c5b53158888c2917fd482e8e3e2 languageName: node linkType: hard -"@react-stately/datepicker@npm:^3.9.2": - version: 3.9.2 - resolution: "@react-stately/datepicker@npm:3.9.2" +"@react-stately/datepicker@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-stately/datepicker@npm:3.9.4" dependencies: - "@internationalized/date": "npm:^3.5.2" - "@internationalized/string": "npm:^3.2.1" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/overlays": "npm:^3.6.5" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/datepicker": "npm:^3.7.2" - "@react-types/shared": "npm:^3.22.1" + "@internationalized/date": "npm:^3.5.4" + "@internationalized/string": "npm:^3.2.3" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/overlays": "npm:^3.6.7" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/datepicker": "npm:^3.7.4" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 11392885e5d7dbce2ed6df095529785133429f178d47834445211f18e62afa166be05a1a8eacd62a0fa90a87eac33dd6773e2534716c1203b606d2ada4e5ed30 + checksum: a50188bb2a15b7cddadc2bd6b5a9b81c297bba6820df874472c67fdd66c590cf4ce21fc4af8b2e02e08c3284246deb674743456c8b5d85c20490efcc6491a785 languageName: node linkType: hard -"@react-stately/dnd@npm:^3.2.8": - version: 3.2.8 - resolution: "@react-stately/dnd@npm:3.2.8" +"@react-stately/dnd@npm:^3.3.1": + version: 3.3.1 + resolution: "@react-stately/dnd@npm:3.3.1" dependencies: - "@react-stately/selection": "npm:^3.14.3" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/selection": "npm:^3.15.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 007e479c2991fe7cce41d5fecd7f6b94a003857de1e1f9baa40714607ecd12332ffd8e1ea8567f96a6a00c454256e4e0e99e764c9aa68148a455c28d21465ef1 + checksum: 100a5a32ade132ae18887354547d704c2cd78e0b8e572009e589563a1947f9c72bfcbc62c46598692106c733107a53033144f288e82db99557137d144b0465bb languageName: node linkType: hard -"@react-stately/flags@npm:^3.0.1": - version: 3.0.1 - resolution: "@react-stately/flags@npm:3.0.1" +"@react-stately/flags@npm:^3.0.3": + version: 3.0.3 + resolution: "@react-stately/flags@npm:3.0.3" dependencies: - "@swc/helpers": "npm:^0.4.14" - checksum: 9fd6731a3bb74c613d427a5457a8e1dcec1c596352d912e006005ecf9aeefa51f76b553993456dde927cdbb3237cc6d95bcd7dbd60b2917638c9cd05ad019460 + "@swc/helpers": "npm:^0.5.0" + checksum: a5e8d2ce3a2d535d96e20b8a495641b41c242bfbcec9e0c2f4fa82531654a04d4ffb709fbe2a71f1d9e3bba612f8dcd1fbb8c03888e7600549882f40f3cd1897 languageName: node linkType: hard -"@react-stately/form@npm:^3.0.1": - version: 3.0.1 - resolution: "@react-stately/form@npm:3.0.1" +"@react-stately/form@npm:^3.0.3": + version: 3.0.3 + resolution: "@react-stately/form@npm:3.0.3" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: a734c9a93320d518480114aeff35540204aaca116e64973d9c817a5a73479c0a40eee882ccc0e22979e0bc1cfbec22ab703fc4b10f5197a92a75b73ea8ea69d0 + checksum: d89c2099455e84cd0c77f6c8f3204f790aaab90a4e713f77269ab1a13229daa222906b7bf5d12188380cebb041a48c7d4c60676c920d5f2d27c577ee90a86b5e languageName: node linkType: hard -"@react-stately/grid@npm:^3.8.5": - version: 3.8.5 - resolution: "@react-stately/grid@npm:3.8.5" +"@react-stately/grid@npm:^3.8.7": + version: 3.8.7 + resolution: "@react-stately/grid@npm:3.8.7" dependencies: - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/selection": "npm:^3.14.3" - "@react-types/grid": "npm:^3.2.4" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/selection": "npm:^3.15.1" + "@react-types/grid": "npm:^3.2.6" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 5d38d707f090d5a1e84038ce0145ca72d509d12bd825407952767842f4b6db1c995f2bd95bb7206f506d4f67c35bde66b89172aaba7f2f495867d0950aaa96b8 + checksum: 9f727ef1129ec03b4ab311e56e6ea46bd042e25a4b8adec89a1177c67dbc13b67e15191d69d10d328478d1460651c6bee2afa212a3de1951fd49cbe8ee6f4231 languageName: node linkType: hard @@ -3936,89 +4174,104 @@ __metadata: languageName: node linkType: hard -"@react-stately/menu@npm:^3.6.1": - version: 3.6.1 - resolution: "@react-stately/menu@npm:3.6.1" +"@react-stately/list@npm:^3.10.5": + version: 3.10.5 + resolution: "@react-stately/list@npm:3.10.5" dependencies: - "@react-stately/overlays": "npm:^3.6.5" - "@react-types/menu": "npm:^3.9.7" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/selection": "npm:^3.15.1" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 21c7c4c1415ce78573aee4dc8e4c64bd5c500ee0203a819a6da5188e12232776eff25111c6fc76214285dcc3778a174f830606173ad08f97958cf585924f3fcb + checksum: 14ce16f56ed8614701a2eb1dd6f31b17ec1ae87775576ff9d24a80079634c706590b77de07bfa0da7d20424f83fa33e12365df749ab893680ab163fa899e68fb languageName: node linkType: hard -"@react-stately/numberfield@npm:^3.9.1": - version: 3.9.1 - resolution: "@react-stately/numberfield@npm:3.9.1" +"@react-stately/menu@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-stately/menu@npm:3.7.1" dependencies: - "@internationalized/number": "npm:^3.5.1" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/numberfield": "npm:^3.8.1" + "@react-stately/overlays": "npm:^3.6.7" + "@react-types/menu": "npm:^3.9.9" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: e8b8833cca6d524f7ea76b7d854d4b1ad5e419355502c220bab5e4bb8e45dbf2094c30c80f68471f814ebeb48bd58fa8050988edd0a48eb62421e299b44eddca + checksum: 7574fbc461ce6686650aceeec6a6af1758983938cdeb0a67e808c389b6867970da75048c5c4cdca807e3ed4c58408e569216bb1b8903a98f232e69c5ed79faf9 languageName: node linkType: hard -"@react-stately/overlays@npm:^3.6.5": - version: 3.6.5 - resolution: "@react-stately/overlays@npm:3.6.5" +"@react-stately/numberfield@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-stately/numberfield@npm:3.9.3" dependencies: - "@react-stately/utils": "npm:^3.9.1" - "@react-types/overlays": "npm:^3.8.5" + "@internationalized/number": "npm:^3.5.3" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/numberfield": "npm:^3.8.3" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 83805f078eb42290ddb9f88d8cbd7403a4d5f15177fce4c9f8cec91acf177af1d5a414472c58029fc1f8bf6730d5ca9716a8b3cd750f2afd6b57e592a7f09ef7 + checksum: e67979f4327b951b63720ae5ef00a42c2358f2c6a7ecd87aab218a891bc192a369b330f8cdb00d9d9c086e36a2eb96c3faa001225e636c68cbb5efdd865997a2 languageName: node linkType: hard -"@react-stately/radio@npm:^3.10.2": - version: 3.10.2 - resolution: "@react-stately/radio@npm:3.10.2" +"@react-stately/overlays@npm:^3.6.7": + version: 3.6.7 + resolution: "@react-stately/overlays@npm:3.6.7" dependencies: - "@react-stately/form": "npm:^3.0.1" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/radio": "npm:^3.7.1" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/overlays": "npm:^3.8.7" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 1c6d46c6342e6f96ced268bbf397aa10fcc536b22ee593af9031aea3a16be9f4876fb6b45cdb65aacfe665ad5671f3f64cf029b9c4b4698cbf157a363dddafe3 + checksum: 061f54d71de0f9c436393d48d21af7780003f48719e87e21fdbddd7b01abfb200dd91ca5a4dcce0498e9683780cd1f3f9470be9a365250aa82911ba184279bb5 languageName: node linkType: hard -"@react-stately/searchfield@npm:^3.5.1": - version: 3.5.1 - resolution: "@react-stately/searchfield@npm:3.5.1" +"@react-stately/radio@npm:^3.10.4": + version: 3.10.4 + resolution: "@react-stately/radio@npm:3.10.4" dependencies: - "@react-stately/utils": "npm:^3.9.1" - "@react-types/searchfield": "npm:^3.5.3" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/radio": "npm:^3.8.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: dfdc257a7e75e2ba81e1ca578570b14d57200472a85d58dd91cfcfb60d372c81a7f79401802a4f611d35831bbd7a619185b812afdd05e20430feb00afff5fbeb + checksum: 9be023632c4bdeeef958d0aae4cc61644bb1f2f9700dbb0d5cf0fbfced58ed2c2c449a22e95bed8830647ad4a02ebfb8695bd3c381acd6e4574ced498a92b5d8 languageName: node linkType: hard -"@react-stately/select@npm:^3.6.2": - version: 3.6.2 - resolution: "@react-stately/select@npm:3.6.2" +"@react-stately/searchfield@npm:^3.5.3": + version: 3.5.3 + resolution: "@react-stately/searchfield@npm:3.5.3" dependencies: - "@react-stately/form": "npm:^3.0.1" - "@react-stately/list": "npm:^3.10.3" - "@react-stately/overlays": "npm:^3.6.5" - "@react-types/select": "npm:^3.9.2" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/searchfield": "npm:^3.5.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 9df52dba77b4bf383ffd9ce8552442de198f6bb8ece78cdc4a9075a4bea334c4dff2d7d115b2a3258f0169c212cc0dbfa1df623207c1917af908b853c9897769 + checksum: c26168cb48b6fed1afecda2bc096aad983666b3ebcce1e90e683807c491cd6927dfe2f630f0a1a785de8de16775897ad6682040a0102b84f8ab312e53873f8c0 + languageName: node + linkType: hard + +"@react-stately/select@npm:^3.6.4": + version: 3.6.4 + resolution: "@react-stately/select@npm:3.6.4" + dependencies: + "@react-stately/form": "npm:^3.0.3" + "@react-stately/list": "npm:^3.10.5" + "@react-stately/overlays": "npm:^3.6.7" + "@react-types/select": "npm:^3.9.4" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 25ed84df9f2b56a7e03fa6214845d88b4090ebfb3868a0a29c507e24879bd2db7abb24df0f6aeacabd3ea0b0e9759c0e1b2689634b82a4a1c856f47dabc3383a languageName: node linkType: hard @@ -4036,91 +4289,116 @@ __metadata: languageName: node linkType: hard -"@react-stately/slider@npm:^3.5.2": - version: 3.5.2 - resolution: "@react-stately/slider@npm:3.5.2" +"@react-stately/selection@npm:^3.15.1": + version: 3.15.1 + resolution: "@react-stately/selection@npm:3.15.1" dependencies: - "@react-stately/utils": "npm:^3.9.1" - "@react-types/shared": "npm:^3.22.1" - "@react-types/slider": "npm:^3.7.1" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: d1553e12102579972c1b2f07d0dac178af7476f5419117b87dbabb48d631613d9a44ce4528ebb2a459a6d568c7797000dad62a454b1051419ca018fae8f1e101 + checksum: 4926d0c67b92ced4b9fcc2c092e693fd12e9a3b94bdd4a1ba0c5cdb76d399c5cc45ba814901bf9547a031e1af1e0d7ca21d2be7e5539d17b6a20f47044469276 languageName: node linkType: hard -"@react-stately/table@npm:^3.11.6": - version: 3.11.6 - resolution: "@react-stately/table@npm:3.11.6" +"@react-stately/slider@npm:^3.5.4": + version: 3.5.4 + resolution: "@react-stately/slider@npm:3.5.4" dependencies: - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/flags": "npm:^3.0.1" - "@react-stately/grid": "npm:^3.8.5" - "@react-stately/selection": "npm:^3.14.3" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/grid": "npm:^3.2.4" - "@react-types/shared": "npm:^3.22.1" - "@react-types/table": "npm:^3.9.3" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/shared": "npm:^3.23.1" + "@react-types/slider": "npm:^3.7.3" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 4af9888ee1ec0bde3d683aa81a0e768ddca2589323386327bf36328bb47729589b58e81ea504cae69f6193b520cd8fe73e253ea5dbc9f6a9bc7feefc76185550 + checksum: 9af16a9b69d2899827ca1a79630978999784a08ab800998486e0788bd37168d98dab75cc66a92679dbe26db1ae9b2b7af84459e4f35d0a57455322cba3c03483 languageName: node linkType: hard -"@react-stately/tabs@npm:^3.6.4": - version: 3.6.4 - resolution: "@react-stately/tabs@npm:3.6.4" +"@react-stately/table@npm:^3.11.8": + version: 3.11.8 + resolution: "@react-stately/table@npm:3.11.8" dependencies: - "@react-stately/list": "npm:^3.10.3" - "@react-types/shared": "npm:^3.22.1" - "@react-types/tabs": "npm:^3.3.5" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/flags": "npm:^3.0.3" + "@react-stately/grid": "npm:^3.8.7" + "@react-stately/selection": "npm:^3.15.1" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/grid": "npm:^3.2.6" + "@react-types/shared": "npm:^3.23.1" + "@react-types/table": "npm:^3.9.5" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 28dd71e3e5bf5dd31facd394f4cbae1021faa0a16dec382a5a588918708f0e8167b61905665f07653debfef21d17fa0ad949cb7660887c45a05078a8028dc3bc + checksum: a473010b2a8c6674192a3b7d0cacca18174600f5dc0c0320eb4575a5d2b973b2c57b8757fc154a2f8c97367b7e306f8e2ab6a51bfa6357f861adc50f1ff69503 languageName: node linkType: hard -"@react-stately/toggle@npm:^3.7.2": - version: 3.7.2 - resolution: "@react-stately/toggle@npm:3.7.2" +"@react-stately/tabs@npm:^3.6.6": + version: 3.6.6 + resolution: "@react-stately/tabs@npm:3.6.6" dependencies: - "@react-stately/utils": "npm:^3.9.1" - "@react-types/checkbox": "npm:^3.7.1" + "@react-stately/list": "npm:^3.10.5" + "@react-types/shared": "npm:^3.23.1" + "@react-types/tabs": "npm:^3.3.7" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 6805c874c647fd16331a6ec00cf1a8e5d1c1ca9e91cbda4410e8d5dd17d999810593e24b28e9e34f6a9aa0f5c9828aa5ed392bf99483f6fb133ca3c1743b2883 + checksum: cd46ac05290f235a566cd8b67bf471e435e6effc5fa8b0cfa3ed4d3bcbaeb991d22c49e161f95aa177e5a1366d7b81dc4ac54a6e82d7aa9c17ee412ea4bb4fce languageName: node linkType: hard -"@react-stately/tooltip@npm:^3.4.7": - version: 3.4.7 - resolution: "@react-stately/tooltip@npm:3.4.7" +"@react-stately/toggle@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-stately/toggle@npm:3.7.4" dependencies: - "@react-stately/overlays": "npm:^3.6.5" - "@react-types/tooltip": "npm:^3.4.7" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/checkbox": "npm:^3.8.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 05487e629daa27c2789498fbf1f37f416e68f2fd1a527d977d07b49ccaec4e82d7482fa343ab4086e7dd0a468b8bdd75a07dddc4c4b002b5998a06a950a641d5 + checksum: d0d4260e9434120699fe25266ce1db8ebd74bf0c2b18c838db23e9f2f7337b5e8fc9eff7a0d1edc210a947b3b87e8bda70b095c26cd32d226ff64ae1f561be63 languageName: node linkType: hard -"@react-stately/tree@npm:^3.7.6": - version: 3.7.6 - resolution: "@react-stately/tree@npm:3.7.6" +"@react-stately/tooltip@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-stately/tooltip@npm:3.4.9" dependencies: - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/selection": "npm:^3.14.3" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/shared": "npm:^3.22.1" + "@react-stately/overlays": "npm:^3.6.7" + "@react-types/tooltip": "npm:^3.4.9" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: e8e2d5f874e50312b06b41702cbd5a301601b72df37b6edeb4199f64069dd2c07de946316e1150a7a167292c133bb95dd6e6d3a086c82bd4c5c44e1862c47a8e + checksum: f5ec609a90970926833cc29e626a26e485ef51a3a1315ac7f4e52708b4cbbb1c33f95952dc901e8b9bb439ac663195ed5ab2db8ac39918562a8427aba1fb9f99 + languageName: node + linkType: hard + +"@react-stately/tree@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-stately/tree@npm:3.8.1" + dependencies: + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/selection": "npm:^3.15.1" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/shared": "npm:^3.23.1" + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 24ab312778bb49f612047e889afbed5a47a790bb2b6952c0181bb5fae15fadc6ab3ee18dbd22176b56a9701c41dbc1ca96b46bc3218dbc1b517b7b1dbc9a9d20 + languageName: node + linkType: hard + +"@react-stately/utils@npm:^3.10.1": + version: 3.10.1 + resolution: "@react-stately/utils@npm:3.10.1" + dependencies: + "@swc/helpers": "npm:^0.5.0" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: b3fc1367eb26afa1d7a4e3d5cf5cf215be4a4698296db25d34a9096a9eb79cff5c3770da48989970e6b6734199bfb9a10c31cd62a39b20980b2ede78061f8ee9 languageName: node linkType: hard @@ -4135,132 +4413,144 @@ __metadata: languageName: node linkType: hard -"@react-stately/virtualizer@npm:^3.6.8": - version: 3.6.8 - resolution: "@react-stately/virtualizer@npm:3.6.8" +"@react-stately/virtualizer@npm:^3.7.1": + version: 3.7.1 + resolution: "@react-stately/virtualizer@npm:3.7.1" dependencies: - "@react-aria/utils": "npm:^3.23.2" - "@react-types/shared": "npm:^3.22.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-types/shared": "npm:^3.23.1" "@swc/helpers": "npm:^0.5.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: d0e26d14aa2c3a31efd61e2d037788e80052439fe364c1f61f13c30cfdd5abc670fc980a0b6479d0921aca4ed7a6cfee40b29193042bd5e09162b2a428d91c72 + checksum: b40b095cd57d87f2db0533ca19cd5572d47b020cca1410b3e9627003426f3be0cd3fab48d20ef30b541e852eeea285993e8ed65c09a32ff199240c4196999812 languageName: node linkType: hard -"@react-types/breadcrumbs@npm:^3.7.3": - version: 3.7.3 - resolution: "@react-types/breadcrumbs@npm:3.7.3" +"@react-types/breadcrumbs@npm:^3.7.5": + version: 3.7.5 + resolution: "@react-types/breadcrumbs@npm:3.7.5" dependencies: - "@react-types/link": "npm:^3.5.3" - "@react-types/shared": "npm:^3.22.1" + "@react-types/link": "npm:^3.5.5" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 4ec1f9bfd3ce2980d3691a0a2ca9a436212e38599e3b883241a587ecb6575cc60ba12f9f24288987ec98f3f19ededc9fbf021782724e23b0e8d1e87647f08447 + checksum: bf9a7e5f3eafaf007d0ba561f20849c2d1ad07ea973f6ee05ecb0826d4175fb49c86c4d0a2aaa56e343ed5b00c347661eef98dd2870c46130b1e1e843bc80747 languageName: node linkType: hard -"@react-types/button@npm:^3.9.2": - version: 3.9.2 - resolution: "@react-types/button@npm:3.9.2" +"@react-types/button@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-types/button@npm:3.9.4" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 8393ba87dfd6ca73fedf8f7ab3567361f1d6057f640346f2a0cc631e9659ad7c1aa2ddb255e1df6b880d8f6cd209e8c9d1d01c73e2ee2a149f180d8ebaabf1db + checksum: aebbbbb61320c78ea41ebc51ce8b1bf4a08952dde17e2de96a5f0e1f49e9d9a3d9fc74862448f28eedde0230f2d07c25ed06138964d5c1b3892ced1d80470872 languageName: node linkType: hard -"@react-types/calendar@npm:^3.4.4": - version: 3.4.4 - resolution: "@react-types/calendar@npm:3.4.4" +"@react-types/calendar@npm:^3.4.6": + version: 3.4.6 + resolution: "@react-types/calendar@npm:3.4.6" dependencies: - "@internationalized/date": "npm:^3.5.2" - "@react-types/shared": "npm:^3.22.1" + "@internationalized/date": "npm:^3.5.4" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: def8bdf94b38df3c2c49f63fe505734ad24669d87a5e917c061fd198b759e5561a9f89e4137278740ef6d6b441518f6f2dd51e1916a7ddff7d7d0878bd63a5b6 + checksum: 347f800f056c90e8bd6928fcb7377c6cbaf596296ea7f20059d650ae7a192a5aa83deb874edd85955453e03a5112cbb2e586f66652158044dba3035aa653674a languageName: node linkType: hard -"@react-types/checkbox@npm:^3.7.1": - version: 3.7.1 - resolution: "@react-types/checkbox@npm:3.7.1" +"@react-types/checkbox@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-types/checkbox@npm:3.8.1" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: d8d1b860225bf29ae335b6e9e5b814e74f75ef498acc93fc08ad411ada078399e407b146e15a3ff2ab6003b44a34cf0c26f327c1a25f43baaf633cb2999a2836 + checksum: a5dc85c06aed4e96f39dd2357bebf866f3abb59c5966b7307a1d6702d54aa0b252e3eba428af49cd0cd9e575961272ec307b1a4e09d72a936880b7388313bb26 languageName: node linkType: hard -"@react-types/combobox@npm:^3.10.1": - version: 3.10.1 - resolution: "@react-types/combobox@npm:3.10.1" +"@react-types/color@npm:3.0.0-beta.25": + version: 3.0.0-beta.25 + resolution: "@react-types/color@npm:3.0.0-beta.25" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" + "@react-types/slider": "npm:^3.7.3" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 5c1fcad50731387da3d77820e55605a0a2e7c6371e2c6b0ef9a567f727cf63856b69aef8d8448765f78c940fd89835391b5afa2fe6a87f2809b6908b615578a7 + checksum: 1f0598949e73088e69fc5637fdb6e32662b8b47f0e7d9bfaf5f9f9ef8a5bbaad5b40771ff40e4fbb0cb353ab2002396c1889b554dad8aadb223178b40a851cdb languageName: node linkType: hard -"@react-types/datepicker@npm:^3.7.2": - version: 3.7.2 - resolution: "@react-types/datepicker@npm:3.7.2" +"@react-types/combobox@npm:^3.11.1": + version: 3.11.1 + resolution: "@react-types/combobox@npm:3.11.1" dependencies: - "@internationalized/date": "npm:^3.5.2" - "@react-types/calendar": "npm:^3.4.4" - "@react-types/overlays": "npm:^3.8.5" - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 4a8495a9079e88a0847ef67d07423e350161239aae4c17657fee765f9929456ad49f061e1a3b3e1ac4936898ed1cc9ac718cb2c24c4afde8068907bed7c08408 + checksum: 0f5539a2c721b4f1d8cf343924f269dc7b82502b6f7aa032b79521320f4dd1761e3908c5d671fb207866c1652ffb67ecab4c8baba7be521f54fb04713478c9e3 languageName: node linkType: hard -"@react-types/dialog@npm:^3.5.8": - version: 3.5.8 - resolution: "@react-types/dialog@npm:3.5.8" +"@react-types/datepicker@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-types/datepicker@npm:3.7.4" dependencies: - "@react-types/overlays": "npm:^3.8.5" - "@react-types/shared": "npm:^3.22.1" + "@internationalized/date": "npm:^3.5.4" + "@react-types/calendar": "npm:^3.4.6" + "@react-types/overlays": "npm:^3.8.7" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: c0c387367fd697dff96fa7252cdd1d63fe7c871c93f57ed313c890ef1366e0dd85763966e1e9adc16aa9486414075b349757198572c5c5feb010897f6af9d0bf + checksum: d323c6d8e8e8162cb59e1b8ef65c54271cf36f7b6e04c6279712294a2d0a47c037d9b93501950bfcb527a24ee97c9196201357ce74577386762b9effb0dc5e67 languageName: node linkType: hard -"@react-types/form@npm:^3.7.2": - version: 3.7.2 - resolution: "@react-types/form@npm:3.7.2" +"@react-types/dialog@npm:^3.5.10": + version: 3.5.10 + resolution: "@react-types/dialog@npm:3.5.10" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/overlays": "npm:^3.8.7" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: caead2f12d6c784b12e80be1de5a4521f7229897b8ed762e6af5bd31e3aa2343f8d33183c493e29c82637f40b652ba8bf2c249788b10b42113eb7cb1b3b1f522 + checksum: 56d49adb78bfdcf4252ca784c7f0a7ccfc1e766f909a24d2864ab988e948c0f82b7bd04be3d023dcc1f69395502fbbf09214f00624499e0c6342d5167420d5bd languageName: node linkType: hard -"@react-types/grid@npm:^3.2.4": - version: 3.2.4 - resolution: "@react-types/grid@npm:3.2.4" +"@react-types/form@npm:^3.7.4": + version: 3.7.4 + resolution: "@react-types/form@npm:3.7.4" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 44246cd315f339ed3d1ea5cecf8b56b6677d6c15c26e6bda77cf256b5f148adcc4bbbbfb3adc949e408a5118039474c69038526cf5ff65ec2ff2fccc75b45666 + checksum: 24c84e455f27f170f32c616e99baa0c44f8686c5d1573c6f4ae9791d95dec095c3a0f745bcac6d63212187476d58cef0c9766f968376d98ecd3d517f3c24d7fe languageName: node linkType: hard -"@react-types/link@npm:^3.5.3": - version: 3.5.3 - resolution: "@react-types/link@npm:3.5.3" +"@react-types/grid@npm:^3.2.6": + version: 3.2.6 + resolution: "@react-types/grid@npm:3.2.6" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 55e23b17ec5935b8246048b99c719645d65bbf179822f818a66e21097bc49a23f9214b2677f631cec799dbe8aaf25c5fb61f30a5d8a30e2c7fdf14445058cb3b + checksum: a1da4fe93186c32b59c9f3f8506bf92c01a909d72de136ec277c877a26ebdae7d9fae1505de2b90ed3cfa118c300d58192eaf8cb0f2bb1a48b27329e37c5ee16 + languageName: node + linkType: hard + +"@react-types/link@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-types/link@npm:3.5.5" + dependencies: + "@react-types/shared": "npm:^3.23.1" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 45ed617810314eaddc1a0472a360de8e1ca9c955baa319d51e22e822fb0194e62fc1fee225d6e9a9a8fba7f044d607cb510cd6d20bb53dd144fd751dc550fa81 languageName: node linkType: hard @@ -4275,93 +4565,104 @@ __metadata: languageName: node linkType: hard -"@react-types/menu@npm:^3.9.7": - version: 3.9.7 - resolution: "@react-types/menu@npm:3.9.7" +"@react-types/listbox@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-types/listbox@npm:3.4.9" dependencies: - "@react-types/overlays": "npm:^3.8.5" - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 97cec66432e6c53909dab25d9a7d5c2646d484caeb6c4eff402f152baf667079ef5774c31098f29d66045a1b0f841b0cd579aaa1948353631739ddf61042a0e7 + checksum: 6f536c06d1a9fe9e2fa24b7bae3cabfec1474e65e3a9bea41eef128984cf5a83ab8f8dd0f22033a61f09e0f725024687590c9d2a8430024c96a583196d97f1c6 languageName: node linkType: hard -"@react-types/meter@npm:^3.3.7": - version: 3.3.7 - resolution: "@react-types/meter@npm:3.3.7" +"@react-types/menu@npm:^3.9.9": + version: 3.9.9 + resolution: "@react-types/menu@npm:3.9.9" dependencies: - "@react-types/progress": "npm:^3.5.2" + "@react-types/overlays": "npm:^3.8.7" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: d9e697640efc198f441775b8a007f9653df86451d5dca491db9240cf0437df16c9118014eee4add23bd5015bbf72b63761256b2334597feb1c277fb6573024e5 + checksum: efa730a42a7152613e15bf967f6cda74dcd365d81cbda3a018f926f546d19f6c09f1eaf7a2e834f2cdfccccde68d1e909413e058a61f15e1f98695b26a103ea6 languageName: node linkType: hard -"@react-types/numberfield@npm:^3.8.1": - version: 3.8.1 - resolution: "@react-types/numberfield@npm:3.8.1" +"@react-types/meter@npm:^3.4.1": + version: 3.4.1 + resolution: "@react-types/meter@npm:3.4.1" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/progress": "npm:^3.5.4" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: aa647a5573ff8ac52a43c5f2a2dc348d3d39d097f976ac44b8fe8e61bd8fc9f8b1c3447ac7b36d2e39df36f45f8776055a3cb9c0f84566e747cf99188e47572c + checksum: 553c823cfa591f512e11fb2cb269cd88ee629da267cf0e98ee0fbafcbf4537a582dde0070f2d783d349c12813ed797e95b83bf56e9bfc380a14ba3680578655b languageName: node linkType: hard -"@react-types/overlays@npm:^3.8.5": - version: 3.8.5 - resolution: "@react-types/overlays@npm:3.8.5" +"@react-types/numberfield@npm:^3.8.3": + version: 3.8.3 + resolution: "@react-types/numberfield@npm:3.8.3" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 6c952fdbe7724b07cade95e8d3fe6bf61cb6e993b730051c1ada33da2afe246e3124a8981127977cc55f6df32124b049504fda7d19593446895559ca00a9f0b9 + checksum: 4ed826ea05a90cb798b267007ec6ab3aa03844c71b04ca01113ac6ddef10d3d278909e4388454f41558f91ea51c25977a9bc02c02aa834104b0a1ec643af9297 languageName: node linkType: hard -"@react-types/progress@npm:^3.5.2": - version: 3.5.2 - resolution: "@react-types/progress@npm:3.5.2" +"@react-types/overlays@npm:^3.8.7": + version: 3.8.7 + resolution: "@react-types/overlays@npm:3.8.7" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 1ddda7a41c51b22dabc1a7b1a6bc7ae10afbd93676a5b288415e600909b6c4ccf762ea4c6c8f7bf04b2ca3216ef389075bf5448400587de675e65840c715bcca + checksum: 758eed6a2a13128c40585dd4e47bdc807d49ecf7b12822ec9aa84c5797604c67fe4750300253805a4206feddb0f0bbc01e8f70666aff299dce51b3aeda46c4d2 languageName: node linkType: hard -"@react-types/radio@npm:^3.7.1": - version: 3.7.1 - resolution: "@react-types/radio@npm:3.7.1" +"@react-types/progress@npm:^3.5.4": + version: 3.5.4 + resolution: "@react-types/progress@npm:3.5.4" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: a400034d69f9963664ac608ef35e50f5e3090f095800de0d88d78883bb3465392a8c3f2ff043c84c5c08abb8186b5a544f9897ff80e81fd2a07498be8408b86c + checksum: 756cf6b1a2b697f4a2152e454da679ce5ed98172ddc68e86433db8d047a4623b6b00808436e4f65ce5253343cd566cf6fe94d486476fb6e55849d182fd182590 languageName: node linkType: hard -"@react-types/searchfield@npm:^3.5.3": - version: 3.5.3 - resolution: "@react-types/searchfield@npm:3.5.3" +"@react-types/radio@npm:^3.8.1": + version: 3.8.1 + resolution: "@react-types/radio@npm:3.8.1" dependencies: - "@react-types/shared": "npm:^3.22.1" - "@react-types/textfield": "npm:^3.9.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: ee3847b33318cef9ad84ad59c7ae1c326046d24e79a5a94bf1636c9d6d5376bf001454343af797043e2216ecb2573b19877fced24534269b9eb092b410f49869 + checksum: 6caa15aafc76f4c09be63a307c7ff02ebc6404c4ef3b64b4c43a904be49f8640ba91845cffe0c05e7e77d84a63aa1ac6332d30f2fcf560d3c6d15ea58833910a languageName: node linkType: hard -"@react-types/select@npm:^3.9.2": - version: 3.9.2 - resolution: "@react-types/select@npm:3.9.2" +"@react-types/searchfield@npm:^3.5.5": + version: 3.5.5 + resolution: "@react-types/searchfield@npm:3.5.5" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" + "@react-types/textfield": "npm:^3.9.3" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 455c9a2d8e76194dcae9ec216c05472646c998e9bce6a53cc7b119f2df9b9b139de4acf31485d9137c49dce7f2468ae48aa647a3bb8a644080f143718f0b4658 + languageName: node + linkType: hard + +"@react-types/select@npm:^3.9.4": + version: 3.9.4 + resolution: "@react-types/select@npm:3.9.4" + dependencies: + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 13ded3c246304acc250bd21a54211b64732eaf8c9e4127c2ba61f440aa7d172f560d5cb64cf5d580cfbaeaadc54946c0b159097f5066cf69789c4ea776c7a116 + checksum: 630f1ac7381e61e91546ee1dd567928d1b0cd151d699c1b3e7a5ad7824aa1f786c1d4efd70ff6626f8cf80eac2ae9666a1d18b7fd72c31ff41073da50abac622 languageName: node linkType: hard @@ -4374,71 +4675,80 @@ __metadata: languageName: node linkType: hard -"@react-types/slider@npm:^3.7.1": - version: 3.7.1 - resolution: "@react-types/slider@npm:3.7.1" +"@react-types/shared@npm:^3.23.1": + version: 3.23.1 + resolution: "@react-types/shared@npm:3.23.1" + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + checksum: 1ea30702a408554e45b827e66ebf2a9674aec7d7d04a4f3723f2fe1c677be36701d5f08d4914d6018c4bcb6f2fe07d8c3a5840dfe3299ee69092b78c723c9c03 + languageName: node + linkType: hard + +"@react-types/slider@npm:^3.7.3": + version: 3.7.3 + resolution: "@react-types/slider@npm:3.7.3" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 36a53097dfa39c10f53d4bd0af62502785bf958623cab23df6cec26842484db76e64c2ce44cbd3202a60eb41f3dc0733b4b7bb71a4eb124bf9996e84eb6f38d5 + checksum: 583cf97a5fd8150cff44ef9449192a10d5dc3111ad401cc72e6f961158e3369f8115e5858e5998687f5e936ffa8ff037d043ffaa3caf93dfe3f4a37d613fc6aa languageName: node linkType: hard -"@react-types/switch@npm:^3.5.1": - version: 3.5.1 - resolution: "@react-types/switch@npm:3.5.1" +"@react-types/switch@npm:^3.5.3": + version: 3.5.3 + resolution: "@react-types/switch@npm:3.5.3" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 8798a3c6f88951dc88bfff7059c243fe0247bf352a1954b78ca0c9fb9ed764415b6fe89849a33aab72b4a2e73f3540b7ca28aefd791e34a1a4053ee723e91b16 + checksum: b9ceadf6f2e0a18653f6762359767620c7381cba147da71180e3bc15f4f5df1b7e874bcd313f6a93bbeda40ebfd2daa5f5e6bd58f4bde07aefc965fae78cf9b8 languageName: node linkType: hard -"@react-types/table@npm:^3.9.3": - version: 3.9.3 - resolution: "@react-types/table@npm:3.9.3" +"@react-types/table@npm:^3.9.5": + version: 3.9.5 + resolution: "@react-types/table@npm:3.9.5" dependencies: - "@react-types/grid": "npm:^3.2.4" - "@react-types/shared": "npm:^3.22.1" + "@react-types/grid": "npm:^3.2.6" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 6483078311ad6fe16cbe3ae1896962ff95509b843641dbb2b2cc0c437fe8a4b1493aecb6cff5b5364f76e43b591e13837c14daef12b6dac087d5395e828594e8 + checksum: e982e76fd87e0d6c9b0a15ca7c7315aac03ab14eba469385e9974237af18d5f7ee937682b62d4e9851e2ed4c0a1504e13b5cf57df848ad622ef9a7a1aa250546 languageName: node linkType: hard -"@react-types/tabs@npm:^3.3.5": - version: 3.3.5 - resolution: "@react-types/tabs@npm:3.3.5" +"@react-types/tabs@npm:^3.3.7": + version: 3.3.7 + resolution: "@react-types/tabs@npm:3.3.7" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 1df4042f8f8eadaa60ab91ffcd5d3c75636c86a6f98660b902e8aeb9c4bcc6ee3581d40bf3c48318dd591690ab8b555b3a0a3ac0d35dea1f3e03a2679008e686 + checksum: 83ca1ddb6890c00c7920c81b8aedfbfe940776f430ceb78651897ded54e1f478dc6f9e755a8a92796dd4607296a53dd54ec298f7dede1e2b4ca593b6c210c484 languageName: node linkType: hard -"@react-types/textfield@npm:^3.9.1": - version: 3.9.1 - resolution: "@react-types/textfield@npm:3.9.1" +"@react-types/textfield@npm:^3.9.3": + version: 3.9.3 + resolution: "@react-types/textfield@npm:3.9.3" dependencies: - "@react-types/shared": "npm:^3.22.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 978c3190c0a0e585d948f137b21dabd3cf2c7cbee63598c5bfd9da94cec890193801a27a4b143771609ac26e99dc47039e55d3d3ec86d7aa5488a59b5afd3c49 + checksum: 8fc6f551d57ae0ea31f1386475d613444835253abc04e2acaa00a3779c0e8755a501f0756276fbfc00190e194f7b2350e00a60bf0defeaff3fd29f5b8ca7dd4d languageName: node linkType: hard -"@react-types/tooltip@npm:^3.4.7": - version: 3.4.7 - resolution: "@react-types/tooltip@npm:3.4.7" +"@react-types/tooltip@npm:^3.4.9": + version: 3.4.9 + resolution: "@react-types/tooltip@npm:3.4.9" dependencies: - "@react-types/overlays": "npm:^3.8.5" - "@react-types/shared": "npm:^3.22.1" + "@react-types/overlays": "npm:^3.8.7" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: cca3b7df6b58514c1f3bb8ef7eb42ae2c8d527472733db80c12f9a898a869a6537022b9a146baf37cca70f6bd88192b26bfb249eb6798e79e66b8c331a75447d + checksum: 9f25925f182d3827c96e4f3a3e71379ec362e12c637744830785480cbf57ad64fbb529090bf2f871ec6c1213adacfeb30e25135a882ec1f171a0c75b053c02d4 languageName: node linkType: hard @@ -5043,16 +5353,6 @@ __metadata: languageName: node linkType: hard -"@swc/helpers@npm:^0.4.14": - version: 0.4.36 - resolution: "@swc/helpers@npm:0.4.36" - dependencies: - legacy-swc-helpers: "npm:@swc/helpers@=0.4.14" - tslib: "npm:^2.4.0" - checksum: fe1e51af79315b58f648d0f377cbd3e8c3cc8c0a6d9b2435a2935c5d1bbb483fb3299e8fcb2f360488b5c4fc4e06494d42c751bf4f853c3582cf467791b2a161 - languageName: node - linkType: hard - "@swc/helpers@npm:^0.5.0, @swc/helpers@npm:^0.5.11": version: 0.5.11 resolution: "@swc/helpers@npm:0.5.11" @@ -12713,15 +13013,6 @@ __metadata: languageName: node linkType: hard -"legacy-swc-helpers@npm:@swc/helpers@=0.4.14": - version: 0.4.14 - resolution: "@swc/helpers@npm:0.4.14" - dependencies: - tslib: "npm:^2.4.0" - checksum: 236afd445fb22e3df7aa84336d5c45d29e021ad01917aa7c24267330df8b39ed89c3d8d9836ac2ac7569b46923591d0e49174f72df7fb997aea841d08f374dbd - languageName: node - linkType: hard - "leven@npm:^3.1.0": version: 3.1.0 resolution: "leven@npm:3.1.0" @@ -15304,81 +15595,85 @@ __metadata: languageName: node linkType: hard -"react-aria-components@npm:^1.1.1": - version: 1.1.1 - resolution: "react-aria-components@npm:1.1.1" - dependencies: - "@internationalized/date": "npm:^3.5.2" - "@internationalized/string": "npm:^3.2.1" - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/menu": "npm:^3.13.1" - "@react-aria/toolbar": "npm:3.0.0-beta.3" - "@react-aria/utils": "npm:^3.23.2" - "@react-stately/menu": "npm:^3.6.1" - "@react-stately/table": "npm:^3.11.6" - "@react-stately/utils": "npm:^3.9.1" - "@react-types/form": "npm:^3.7.2" - "@react-types/grid": "npm:^3.2.4" - "@react-types/shared": "npm:^3.22.1" - "@react-types/table": "npm:^3.9.3" +"react-aria-components@npm:^1.2.1": + version: 1.2.1 + resolution: "react-aria-components@npm:1.2.1" + dependencies: + "@internationalized/date": "npm:^3.5.4" + "@internationalized/string": "npm:^3.2.3" + "@react-aria/color": "npm:3.0.0-beta.33" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/menu": "npm:^3.14.1" + "@react-aria/toolbar": "npm:3.0.0-beta.5" + "@react-aria/tree": "npm:3.0.0-alpha.1" + "@react-aria/utils": "npm:^3.24.1" + "@react-stately/color": "npm:^3.6.1" + "@react-stately/menu": "npm:^3.7.1" + "@react-stately/table": "npm:^3.11.8" + "@react-stately/utils": "npm:^3.10.1" + "@react-types/color": "npm:3.0.0-beta.25" + "@react-types/form": "npm:^3.7.4" + "@react-types/grid": "npm:^3.2.6" + "@react-types/shared": "npm:^3.23.1" + "@react-types/table": "npm:^3.9.5" "@swc/helpers": "npm:^0.5.0" client-only: "npm:^0.0.1" - react-aria: "npm:^3.32.1" - react-stately: "npm:^3.30.1" + react-aria: "npm:^3.33.1" + react-stately: "npm:^3.31.1" use-sync-external-store: "npm:^1.2.0" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: c3e92afa10df49e66ef9022b397f55780a84ec76b383f64e7aaa7a5a8053330f18c673b2904f5b379f1c2d80369e5eaf9a8c0e68df6d7efd684746300f184e09 - languageName: node - linkType: hard - -"react-aria@npm:^3.32.1": - version: 3.32.1 - resolution: "react-aria@npm:3.32.1" - dependencies: - "@internationalized/string": "npm:^3.2.1" - "@react-aria/breadcrumbs": "npm:^3.5.11" - "@react-aria/button": "npm:^3.9.3" - "@react-aria/calendar": "npm:^3.5.6" - "@react-aria/checkbox": "npm:^3.14.1" - "@react-aria/combobox": "npm:^3.8.4" - "@react-aria/datepicker": "npm:^3.9.3" - "@react-aria/dialog": "npm:^3.5.12" - "@react-aria/dnd": "npm:^3.5.3" - "@react-aria/focus": "npm:^3.16.2" - "@react-aria/gridlist": "npm:^3.7.5" - "@react-aria/i18n": "npm:^3.10.2" - "@react-aria/interactions": "npm:^3.21.1" - "@react-aria/label": "npm:^3.7.6" - "@react-aria/link": "npm:^3.6.5" - "@react-aria/listbox": "npm:^3.11.5" - "@react-aria/menu": "npm:^3.13.1" - "@react-aria/meter": "npm:^3.4.11" - "@react-aria/numberfield": "npm:^3.11.1" - "@react-aria/overlays": "npm:^3.21.1" - "@react-aria/progress": "npm:^3.4.11" - "@react-aria/radio": "npm:^3.10.2" - "@react-aria/searchfield": "npm:^3.7.3" - "@react-aria/select": "npm:^3.14.3" - "@react-aria/selection": "npm:^3.17.5" - "@react-aria/separator": "npm:^3.3.11" - "@react-aria/slider": "npm:^3.7.6" - "@react-aria/ssr": "npm:^3.9.2" - "@react-aria/switch": "npm:^3.6.2" - "@react-aria/table": "npm:^3.13.5" - "@react-aria/tabs": "npm:^3.8.5" - "@react-aria/tag": "npm:^3.3.3" - "@react-aria/textfield": "npm:^3.14.3" - "@react-aria/tooltip": "npm:^3.7.2" - "@react-aria/utils": "npm:^3.23.2" - "@react-aria/visually-hidden": "npm:^3.8.10" - "@react-types/shared": "npm:^3.22.1" + checksum: 1733de845c141e04cc539f5da240deb503644d42a70d65e04527a81f2c7728070e4b15d08d6e5c588e8c872b200a615b5247f834afe091474e0905f0d1cf8e59 + languageName: node + linkType: hard + +"react-aria@npm:^3.33.1": + version: 3.33.1 + resolution: "react-aria@npm:3.33.1" + dependencies: + "@internationalized/string": "npm:^3.2.3" + "@react-aria/breadcrumbs": "npm:^3.5.13" + "@react-aria/button": "npm:^3.9.5" + "@react-aria/calendar": "npm:^3.5.8" + "@react-aria/checkbox": "npm:^3.14.3" + "@react-aria/combobox": "npm:^3.9.1" + "@react-aria/datepicker": "npm:^3.10.1" + "@react-aria/dialog": "npm:^3.5.14" + "@react-aria/dnd": "npm:^3.6.1" + "@react-aria/focus": "npm:^3.17.1" + "@react-aria/gridlist": "npm:^3.8.1" + "@react-aria/i18n": "npm:^3.11.1" + "@react-aria/interactions": "npm:^3.21.3" + "@react-aria/label": "npm:^3.7.8" + "@react-aria/link": "npm:^3.7.1" + "@react-aria/listbox": "npm:^3.12.1" + "@react-aria/menu": "npm:^3.14.1" + "@react-aria/meter": "npm:^3.4.13" + "@react-aria/numberfield": "npm:^3.11.3" + "@react-aria/overlays": "npm:^3.22.1" + "@react-aria/progress": "npm:^3.4.13" + "@react-aria/radio": "npm:^3.10.4" + "@react-aria/searchfield": "npm:^3.7.5" + "@react-aria/select": "npm:^3.14.5" + "@react-aria/selection": "npm:^3.18.1" + "@react-aria/separator": "npm:^3.3.13" + "@react-aria/slider": "npm:^3.7.8" + "@react-aria/ssr": "npm:^3.9.4" + "@react-aria/switch": "npm:^3.6.4" + "@react-aria/table": "npm:^3.14.1" + "@react-aria/tabs": "npm:^3.9.1" + "@react-aria/tag": "npm:^3.4.1" + "@react-aria/textfield": "npm:^3.14.5" + "@react-aria/tooltip": "npm:^3.7.4" + "@react-aria/utils": "npm:^3.24.1" + "@react-aria/visually-hidden": "npm:^3.8.12" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 8ef6d071ef8de6102a2c7123e4dcde9137f01af40993e9e8e129795d6ffdb94cafaa583d8d309cacb9563c79ee1533fa35fbbd478ba671b49ba41bdba4d47ec4 + checksum: 545d789afa72ea4385452e9344742018be97544d668331486ff87cd1fc64153b494a0042c06dfc207ba271b20440cadf2a07fd4f94baee8e26c2c48ec78b58b6 languageName: node linkType: hard @@ -15604,36 +15899,36 @@ __metadata: languageName: node linkType: hard -"react-stately@npm:^3.30.1": - version: 3.30.1 - resolution: "react-stately@npm:3.30.1" - dependencies: - "@react-stately/calendar": "npm:^3.4.4" - "@react-stately/checkbox": "npm:^3.6.3" - "@react-stately/collections": "npm:^3.10.5" - "@react-stately/combobox": "npm:^3.8.2" - "@react-stately/data": "npm:^3.11.2" - "@react-stately/datepicker": "npm:^3.9.2" - "@react-stately/dnd": "npm:^3.2.8" - "@react-stately/form": "npm:^3.0.1" - "@react-stately/list": "npm:^3.10.3" - "@react-stately/menu": "npm:^3.6.1" - "@react-stately/numberfield": "npm:^3.9.1" - "@react-stately/overlays": "npm:^3.6.5" - "@react-stately/radio": "npm:^3.10.2" - "@react-stately/searchfield": "npm:^3.5.1" - "@react-stately/select": "npm:^3.6.2" - "@react-stately/selection": "npm:^3.14.3" - "@react-stately/slider": "npm:^3.5.2" - "@react-stately/table": "npm:^3.11.6" - "@react-stately/tabs": "npm:^3.6.4" - "@react-stately/toggle": "npm:^3.7.2" - "@react-stately/tooltip": "npm:^3.4.7" - "@react-stately/tree": "npm:^3.7.6" - "@react-types/shared": "npm:^3.22.1" +"react-stately@npm:^3.31.1": + version: 3.31.1 + resolution: "react-stately@npm:3.31.1" + dependencies: + "@react-stately/calendar": "npm:^3.5.1" + "@react-stately/checkbox": "npm:^3.6.5" + "@react-stately/collections": "npm:^3.10.7" + "@react-stately/combobox": "npm:^3.8.4" + "@react-stately/data": "npm:^3.11.4" + "@react-stately/datepicker": "npm:^3.9.4" + "@react-stately/dnd": "npm:^3.3.1" + "@react-stately/form": "npm:^3.0.3" + "@react-stately/list": "npm:^3.10.5" + "@react-stately/menu": "npm:^3.7.1" + "@react-stately/numberfield": "npm:^3.9.3" + "@react-stately/overlays": "npm:^3.6.7" + "@react-stately/radio": "npm:^3.10.4" + "@react-stately/searchfield": "npm:^3.5.3" + "@react-stately/select": "npm:^3.6.4" + "@react-stately/selection": "npm:^3.15.1" + "@react-stately/slider": "npm:^3.5.4" + "@react-stately/table": "npm:^3.11.8" + "@react-stately/tabs": "npm:^3.6.6" + "@react-stately/toggle": "npm:^3.7.4" + "@react-stately/tooltip": "npm:^3.4.9" + "@react-stately/tree": "npm:^3.8.1" + "@react-types/shared": "npm:^3.23.1" peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - checksum: 347c997a5f33dbaa38ccc59c08d12d2c8912a52a48d7d787b9efeaf0b8a2004f0f20a2ce2f0e892438b184ea5ef4b8771b335a226e2ab601cf84ab532723adf9 + checksum: e78b03fe0404d62993f3b2df0910e987f09ca14231da5d976095a8520e32c4a7125da8391e443b4d6b11c51b73a7ec9b6ab99fcbf54ce8e074da5d9e53df5f16 languageName: node linkType: hard -- GitLab