From ee5274c9b90a16c9dabf297369c7addea2f9be17 Mon Sep 17 00:00:00 2001 From: "eric.crowell" Date: Sun, 16 Jun 2024 20:27:05 +0200 Subject: [PATCH] dev: Added several components for the Navigation menu --- eslint.config.js | 11 - package.json | 24 +- packages/ui/package.json | 2 +- packages/ui/src/actions.ts | 1 + packages/ui/src/actions/search.ts | 55 + packages/ui/src/components.ts | 5 +- packages/ui/src/components/Form/Form.tsx | 72 + .../Navigation/Navigation.stories.tsx | 31 +- .../src/components/Navigation/Navigation.tsx | 24 +- .../Navigation/NavigationExtended.tsx | 12 +- .../Navigation/NavigationIsland.tsx | 13 +- .../Navigation/NavigationStandard.tsx | 8 +- .../parts/NavigationPart_Actions.tsx | 64 +- .../Navigation/parts/NavigationPart_Brand.tsx | 28 +- .../components/SearchButton/SearchButton.tsx | 40 +- .../src/components/SearchForm/SearchForm.tsx | 33 + .../SearchForm/SearchFormInputs.tsx | 26 + .../SearchForm/SearchFormResults.tsx | 49 + .../components/ThemeSwitch/ThemeSwitch.tsx | 16 +- packages/ui/src/context.ts | 2 + packages/ui/src/hooks.ts | 3 +- packages/ui/src/hooks/useActionState.ts | 34 + packages/ui/src/hooks/useMode.ts | 2 +- packages/ui/src/icons.ts | 3 +- packages/ui/src/icons/FacebookIcon.tsx | 2 - packages/ui/src/icons/InstagramIcon.tsx | 2 - packages/ui/src/icons/LinkedInIcon.tsx | 2 - packages/ui/src/icons/SocialIcons.tsx | 15 + .../{TwitterIcon.tsx => XSocialIcon.tsx} | 4 +- packages/ui/src/icons/YouTubeIcon.tsx | 2 - packages/ui/src/provider.tsx | 3 +- packages/ui/src/types.ts | 10 + packages/ui/tsconfig.json | 2 +- pnpm-lock.yaml | 3853 ++++++++++------- stories/Button.stories.ts | 2 +- stories/Button.tsx | 2 +- stories/Header.stories.ts | 2 +- stories/Page.tsx | 2 +- 38 files changed, 2757 insertions(+), 1704 deletions(-) create mode 100644 packages/ui/src/actions.ts create mode 100644 packages/ui/src/actions/search.ts create mode 100644 packages/ui/src/components/Form/Form.tsx create mode 100644 packages/ui/src/components/SearchForm/SearchForm.tsx create mode 100644 packages/ui/src/components/SearchForm/SearchFormInputs.tsx create mode 100644 packages/ui/src/components/SearchForm/SearchFormResults.tsx create mode 100644 packages/ui/src/hooks/useActionState.ts create mode 100644 packages/ui/src/icons/SocialIcons.tsx rename packages/ui/src/icons/{TwitterIcon.tsx => XSocialIcon.tsx} (84%) diff --git a/eslint.config.js b/eslint.config.js index f4eda60..76b67ef 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,16 +1,5 @@ import doob from '@do-ob/eslint-config'; -import reactCompiler from 'eslint-plugin-react-compiler'; export default [ ...doob.configs.recommended, - - { - plugins: { - 'react-compiler': reactCompiler, - }, - rules: { - ...reactCompiler.rules.recommended, - 'react-compiler/react-compiler': 'error', - }, - }, ]; diff --git a/package.json b/package.json index de072dc..cd24749 100644 --- a/package.json +++ b/package.json @@ -24,16 +24,16 @@ "@do-ob/ts-config": "^2.0.0", "@do-ob/vite-lib-config": "^3.0.1", "@heroicons/react": "^2.1.3", - "@nextui-org/react": "^2.4.1", - "@storybook/addon-a11y": "^8.1.6", - "@storybook/addon-essentials": "^8.1.6", - "@storybook/addon-interactions": "^8.1.6", - "@storybook/addon-links": "^8.1.6", - "@storybook/addon-themes": "^8.1.6", - "@storybook/blocks": "^8.1.6", - "@storybook/react": "^8.1.6", - "@storybook/react-vite": "^8.1.6", - "@storybook/test": "^8.1.6", + "@nextui-org/react": "^2.4.2", + "@storybook/addon-a11y": "8.2.0-alpha.9", + "@storybook/addon-essentials": "8.2.0-alpha.9", + "@storybook/addon-interactions": "8.2.0-alpha.9", + "@storybook/addon-links": "8.2.0-alpha.9", + "@storybook/addon-themes": "8.2.0-alpha.9", + "@storybook/blocks": "8.2.0-alpha.9", + "@storybook/react": "8.2.0-alpha.9", + "@storybook/react-vite": "8.2.0-alpha.9", + "@storybook/test": "8.2.0-alpha.9", "@types/node": "^20.12.12", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", @@ -41,13 +41,13 @@ "autoprefixer": "^10.4.19", "cssnano": "^7.0.2", "eslint": "^9.2.0", - "eslint-plugin-react-compiler": "0.0.0-experimental-51a85ea-20240601", "framer-motion": "^11.2.10", "postcss": "^8.4.38", "react": "18.3.1", "react-dom": "18.3.1", - "storybook": "8.1.6", + "storybook": "8.2.0-alpha.9", "tailwindcss": "^3.4.3", + "types-react": "19.0.0-rc.1", "typescript": "^5.4.5", "vite": "^5.2.11", "vitest": "^1.6.0" diff --git a/packages/ui/package.json b/packages/ui/package.json index 6658fdd..381a26f 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -32,6 +32,6 @@ "@heroicons/react": "^2.1.3", "@nextui-org/react": "^2.4.1", "framer-motion": "^11.2.10", - "react": "^18" + "react": "latest" } } \ No newline at end of file diff --git a/packages/ui/src/actions.ts b/packages/ui/src/actions.ts new file mode 100644 index 0000000..ef4ae81 --- /dev/null +++ b/packages/ui/src/actions.ts @@ -0,0 +1 @@ +export * from './actions/search'; diff --git a/packages/ui/src/actions/search.ts b/packages/ui/src/actions/search.ts new file mode 100644 index 0000000..62e8e91 --- /dev/null +++ b/packages/ui/src/actions/search.ts @@ -0,0 +1,55 @@ +/** + * Search State type + */ +export type SearchState = Array<{ + /** + * The result ID + */ + id: string; + + /** + * The result title + */ + title: string; + + /** + * The result description + */ + description?: string; + + /** + * The result URL + */ + url: string; + + /** + * The result thumbnail + */ + thumbnail?: string; +}>; + +/** + * Search Payload type + */ +export type SearchPayload = FormData & { + /** + * The search query + */ + query: string; +}; + +/** + * Search action type. + */ +export type SearchAction = (state: SearchState, payload: FormData) => Promise; + +/** + * Search action type + */ +export const search: SearchAction = async (state, payload) => { + const query = payload.get('query'); + + console.log(`Searching for: ${query}`); + + return state; +}; diff --git a/packages/ui/src/components.ts b/packages/ui/src/components.ts index c113df6..3bf9f62 100644 --- a/packages/ui/src/components.ts +++ b/packages/ui/src/components.ts @@ -1,5 +1,8 @@ +export { Form } from './components/Form/Form'; export { Navigation } from './components/Navigation/Navigation'; -export { NavigationStandard } from './components/Navigation/NavigationStandard'; export { NavigationIsland } from './components/Navigation/NavigationIsland'; +export { NavigationStandard } from './components/Navigation/NavigationStandard'; +export { SearchButton } from './components/SearchButton/SearchButton'; +export { SearchForm } from './components/SearchForm/SearchForm'; export { SearchInput } from './components/SearchInput/SearchInput'; export { ThemeSwitch } from './components/ThemeSwitch/ThemeSwitch'; diff --git a/packages/ui/src/components/Form/Form.tsx b/packages/ui/src/components/Form/Form.tsx new file mode 100644 index 0000000..44772f4 --- /dev/null +++ b/packages/ui/src/components/Form/Form.tsx @@ -0,0 +1,72 @@ +'use client'; + +import { nop } from '@do-ob/core'; +import { useCallback, useRef, PropsWithChildren } from 'react'; + +/** + * Form properties + */ +export interface FormProps extends Omit, 'action'> { + /** + * The form action. + */ + action?: (formData: FormData) => void; + + /** + * If the form should submit on change + */ + changeSubmit?: boolean; + + /** + * Change defer time + */ + changeDefer?: number; +} + +/** + * A form that mimics React 19 form behavior. + */ +export function Form({ + action = nop, + changeSubmit = false, + changeDefer = 250, + onChange = nop, + onSubmit = nop, + children, +}: PropsWithChildren) { + + const debounceTimeout = useRef(null); + + const handleChange = useCallback((e: React.ChangeEvent) => { + onChange(e); + + if (!changeSubmit) { + return; + } + if (debounceTimeout.current) { + clearTimeout(debounceTimeout.current); + } + + const currentTarget = e.currentTarget; + debounceTimeout.current = setTimeout(() => { + currentTarget.requestSubmit(); + }, changeDefer); + }, [ changeDefer, onChange ]); + + return ( +
{ + e.preventDefault(); + if (debounceTimeout.current) { + clearTimeout(debounceTimeout.current); + } + const formData = new FormData(e.currentTarget); + action(formData); + onSubmit(e); + }} + > + {children} +
); +} diff --git a/packages/ui/src/components/Navigation/Navigation.stories.tsx b/packages/ui/src/components/Navigation/Navigation.stories.tsx index 31652b5..57d1121 100644 --- a/packages/ui/src/components/Navigation/Navigation.stories.tsx +++ b/packages/ui/src/components/Navigation/Navigation.stories.tsx @@ -1,7 +1,7 @@ import type { Meta, StoryObj } from '@storybook/react'; import { Navigation } from './Navigation'; -import { Link } from '@do-ob/ui/types'; +import { Link, SocialLinks } from '@do-ob/ui/types'; const meta = { component: Navigation, @@ -73,11 +73,36 @@ const links: Link[] = [ }, ]; +const socials: SocialLinks = [ + { + type: 'facebook', + url: 'https://facebook.com', + }, + { + type: 'instagram', + url: 'https://instagram.com', + }, + { + type: 'linkedin', + url: 'https://linkedin.com', + }, + { + type: 'x', + url: 'https://x.com', + }, + { + type: 'youtube', + url: 'https://youtube.com', + }, +]; + export const Standard: Story = { args: { title: 'Navigation', links, search: '#search', + modeToggle: true, + socials, }, }; @@ -87,6 +112,8 @@ export const Island: Story = { variant: 'island', links, search: '#search', + modeToggle: true, + socials, }, }; @@ -96,6 +123,8 @@ export const Extended: Story = { variant: 'extended', links, search: '#search', + modeToggle: true, + socials, }, }; diff --git a/packages/ui/src/components/Navigation/Navigation.tsx b/packages/ui/src/components/Navigation/Navigation.tsx index eab2c90..871eb9a 100644 --- a/packages/ui/src/components/Navigation/Navigation.tsx +++ b/packages/ui/src/components/Navigation/Navigation.tsx @@ -1,4 +1,4 @@ -import type { Link, ThemeColor } from '@do-ob/ui/types'; +import type { Link, ThemeColor, SocialLinks } from '@do-ob/ui/types'; import { NavigationStandard } from './NavigationStandard'; import { NavigationIsland } from './NavigationIsland'; @@ -13,7 +13,7 @@ export interface NavigationProps { /** * The brand image to display */ - image?: string; + logo?: string; /** * The theme color of the navigation @@ -34,6 +34,26 @@ export interface NavigationProps { * The search form action URL */ search?: string; + + /** + * Enable the dark mode toggle + */ + modeToggle?: boolean; + + /** + * The social links of the navigation + */ + socials?: SocialLinks; + + /** + * Class names to modify. + */ + classNames?: { + /** + * The logo image class name + */ + logo?: string; + } } export interface NavigationVariantProps extends NavigationProps { diff --git a/packages/ui/src/components/Navigation/NavigationExtended.tsx b/packages/ui/src/components/Navigation/NavigationExtended.tsx index 7c5c732..b1c9df0 100644 --- a/packages/ui/src/components/Navigation/NavigationExtended.tsx +++ b/packages/ui/src/components/Navigation/NavigationExtended.tsx @@ -11,29 +11,29 @@ export function NavigationExtended({ color, links, className, - search + search, + modeToggle, + socials, }: NavigationProps) { const [ colors ] = twColors(color); return ( - +
- {search ? ( - - ) : null} +
diff --git a/packages/ui/src/components/Navigation/NavigationIsland.tsx b/packages/ui/src/components/Navigation/NavigationIsland.tsx index 0f61174..3685876 100644 --- a/packages/ui/src/components/Navigation/NavigationIsland.tsx +++ b/packages/ui/src/components/Navigation/NavigationIsland.tsx @@ -9,19 +9,22 @@ import { NavigationPart_Actions } from './parts/NavigationPart_Actions'; export function NavigationIsland({ title, - image, + logo, color, links, className, search, + modeToggle, + socials, + classNames = {} }: NavigationProps) { const [ colors ] = twColors(color); return ( - + - +
@@ -29,9 +32,7 @@ export function NavigationIsland({
- {search ? ( - - ) : null} +
); diff --git a/packages/ui/src/components/Navigation/NavigationStandard.tsx b/packages/ui/src/components/Navigation/NavigationStandard.tsx index c9eadf4..e4c56fa 100644 --- a/packages/ui/src/components/Navigation/NavigationStandard.tsx +++ b/packages/ui/src/components/Navigation/NavigationStandard.tsx @@ -11,7 +11,9 @@ export function NavigationStandard({ color, links, className, - search + search, + modeToggle, + socials }: NavigationProps) { const [ colors ] = twColors(color); @@ -31,9 +33,7 @@ export function NavigationStandard({
- {search ? ( - - ) : null} +
diff --git a/packages/ui/src/components/Navigation/parts/NavigationPart_Actions.tsx b/packages/ui/src/components/Navigation/parts/NavigationPart_Actions.tsx index 9160d13..3fc2f42 100644 --- a/packages/ui/src/components/Navigation/parts/NavigationPart_Actions.tsx +++ b/packages/ui/src/components/Navigation/parts/NavigationPart_Actions.tsx @@ -1,4 +1,7 @@ -import { SearchButton } from '../../SearchButton/SearchButton'; +import { ThemeSwitch, SearchButton } from '@do-ob/ui/components'; +import type { SocialLinks } from '@do-ob/ui/types'; +import { SocialIcons } from '@do-ob/ui/icons'; +import { Link, Button, Divider } from '@nextui-org/react'; /** * Navigation Brand properties @@ -8,6 +11,16 @@ export interface NavigationPart_ActionsProps { * The search form action URL. */ search?: string; + + /** + * Enable the dark mode toggle. + */ + modeToggle?: boolean; + + /** + * The social links of the navigation. + */ + socials?: SocialLinks; } /** @@ -15,13 +28,48 @@ export interface NavigationPart_ActionsProps { */ export function NavigationPart_Actions({ search, + modeToggle, + socials = [], }: NavigationPart_ActionsProps) { - return (
    - {search ? ( -
  • - -
  • - ) : null} -
); + return ( +
+
+ {socials.map((social) => { + const Icon = SocialIcons[social.type]; + return ( +
+ +
+ );})} +
+ + {socials.length > 0 && (search || modeToggle) ? ( + + ) : null} + +
+ {search ? ( +
+ +
+ ) : null} + {modeToggle ? ( +
+ +
+ ) : null} +
+ +
+ ); } diff --git a/packages/ui/src/components/Navigation/parts/NavigationPart_Brand.tsx b/packages/ui/src/components/Navigation/parts/NavigationPart_Brand.tsx index 0a62796..03f60db 100644 --- a/packages/ui/src/components/Navigation/parts/NavigationPart_Brand.tsx +++ b/packages/ui/src/components/Navigation/parts/NavigationPart_Brand.tsx @@ -1,3 +1,5 @@ +'use client'; + import React from 'react'; import { NavbarBrand, Link, Image } from '@nextui-org/react'; import { DoobUiContext } from '@do-ob/ui/context'; @@ -14,7 +16,12 @@ export interface NavigationPart_BrandProps { /** * The branding image to display. */ - image?: string; + logo?: string; + + /** + * The class name for the branding image. + */ + logoClassName?: string; } /** @@ -22,23 +29,20 @@ export interface NavigationPart_BrandProps { */ export function NavigationPart_Brand({ title, - image, + logo, + logoClassName, }: NavigationPart_BrandProps) { const { image: imageNode } = React.useContext(DoobUiContext); return ( - {image ? ( - {title} - ) : null} - {title} + + {logo ? ( + {title} + ) : null} +

{title}

+
); } diff --git a/packages/ui/src/components/SearchButton/SearchButton.tsx b/packages/ui/src/components/SearchButton/SearchButton.tsx index 7668365..18871ff 100644 --- a/packages/ui/src/components/SearchButton/SearchButton.tsx +++ b/packages/ui/src/components/SearchButton/SearchButton.tsx @@ -1,23 +1,18 @@ import { MagnifyingGlassIcon } from '@heroicons/react/24/solid'; -import { Button, Modal, ModalHeader, ModalBody, useDisclosure, ModalContent, Input, Kbd } from '@nextui-org/react'; +import { Button, Modal, ModalHeader, ModalBody, useDisclosure, ModalContent } from '@nextui-org/react'; +import { SearchAction, search } from '@do-ob/ui/actions'; +import { SearchForm } from '../SearchForm/SearchForm'; /** * Navigation Brand properties */ export interface SearchButtonProps { /** - * The search form action URL. + * The search action * * @default '#' */ - action?: string; - - /** - * The search form method. - * - * @default 'get' - */ - method?: 'post' | 'get'; + action?: SearchAction; /** * The size of the search button. @@ -31,16 +26,15 @@ export interface SearchButtonProps { * Navigation Search component */ export function SearchButton({ - action = '#', - method = 'get', + action = search, size = 'md', }: SearchButtonProps) { const { isOpen, onOpen, onOpenChange } = useDisclosure(); return (<> - -
- } - endContent={ - ESC - } - type="search" - /> -
+
  diff --git a/packages/ui/src/components/SearchForm/SearchForm.tsx b/packages/ui/src/components/SearchForm/SearchForm.tsx new file mode 100644 index 0000000..5a224ba --- /dev/null +++ b/packages/ui/src/components/SearchForm/SearchForm.tsx @@ -0,0 +1,33 @@ +import { SearchAction, search } from '@do-ob/ui/actions'; +import { SearchFormInputs } from './SearchFormInputs'; +import { useActionState } from '@do-ob/ui/hooks'; +import { Form } from '@do-ob/ui/components'; + +/** + * Search Form properties + */ +export interface SearchFormProps { + /** + * The search form action URL. + */ + action?: SearchAction; +} + +/** + * Search Form component + */ +export function SearchForm({ + action = search, +}: SearchFormProps) { + + const [ , formAction ] = useActionState(action, []); + + return ( +
+ + ); +} diff --git a/packages/ui/src/components/SearchForm/SearchFormInputs.tsx b/packages/ui/src/components/SearchForm/SearchFormInputs.tsx new file mode 100644 index 0000000..4e4e3b0 --- /dev/null +++ b/packages/ui/src/components/SearchForm/SearchFormInputs.tsx @@ -0,0 +1,26 @@ +import { MagnifyingGlassIcon } from '@heroicons/react/24/solid'; +import { Input, Kbd } from '@nextui-org/react'; + +/** + * Navigation Search component + */ +export function SearchFormInputs() { + + return ( + } + endContent={ + ESC + } + type="search" + />); +} diff --git a/packages/ui/src/components/SearchForm/SearchFormResults.tsx b/packages/ui/src/components/SearchForm/SearchFormResults.tsx new file mode 100644 index 0000000..e91bc3c --- /dev/null +++ b/packages/ui/src/components/SearchForm/SearchFormResults.tsx @@ -0,0 +1,49 @@ +import { SearchState } from '@do-ob/ui/actions'; + +/** + * Search Form Results properties + */ +export interface SearchFormResultsProps { + /** + * Is the results are pending. + */ + pending?: boolean; + + /** + * The search results + */ + results: SearchState; +} + +/** + * Navigation Search component + */ +export function SearchFormResults({ + pending, + results, +}: SearchFormResultsProps) { + + if (pending) { + return

Loading...

; + } + + return ( +
+ {results.length ? ( + + ) : ( +

No results found

+ )} +
+ ); + +} diff --git a/packages/ui/src/components/ThemeSwitch/ThemeSwitch.tsx b/packages/ui/src/components/ThemeSwitch/ThemeSwitch.tsx index 50a5595..ad9a0c7 100644 --- a/packages/ui/src/components/ThemeSwitch/ThemeSwitch.tsx +++ b/packages/ui/src/components/ThemeSwitch/ThemeSwitch.tsx @@ -6,11 +6,23 @@ import { MoonIcon, SunIcon } from '@heroicons/react/24/solid'; import { DoobUiContext } from '@do-ob/ui/context'; +/** + * Theme switch properties. + */ +export interface ThemeSwitchProps { + /** + * The theme switch label. + */ + children?: string; +} + /** * This switch is used to toggle the theme of the application. It toggles between 'light' and 'dark' * class names that are applied to the html element of the document. */ -export function ThemeSwitch() { +export function ThemeSwitch({ + children, +}: ThemeSwitchProps) { const { mode, modeToggle } = useContext(DoobUiContext); @@ -21,7 +33,7 @@ export function ThemeSwitch() { startContent={} endContent={} > - Theme + {children} ); } diff --git a/packages/ui/src/context.ts b/packages/ui/src/context.ts index 61c8a47..2d8c438 100644 --- a/packages/ui/src/context.ts +++ b/packages/ui/src/context.ts @@ -1,3 +1,5 @@ +'use client'; + /* eslint-disable @typescript-eslint/no-explicit-any */ import { ThemeMode } from '@do-ob/ui/types'; import { nop } from '@do-ob/core'; diff --git a/packages/ui/src/hooks.ts b/packages/ui/src/hooks.ts index f2b6833..c9e0222 100644 --- a/packages/ui/src/hooks.ts +++ b/packages/ui/src/hooks.ts @@ -1 +1,2 @@ -export * from './hooks/useMode'; \ No newline at end of file +export * from './hooks/useActionState'; +export * from './hooks/useMode'; diff --git a/packages/ui/src/hooks/useActionState.ts b/packages/ui/src/hooks/useActionState.ts new file mode 100644 index 0000000..7d3a162 --- /dev/null +++ b/packages/ui/src/hooks/useActionState.ts @@ -0,0 +1,34 @@ +'use client'; + +/* eslint-disable @typescript-eslint/no-explicit-any */ +import { useCallback, useReducer } from 'react'; + +// Define types for better type safety +type Action = (state: S, ...args: any[]) => Promise; +type StateUpdater = (prevState: S) => S; + +// Reducer function +function stateReducer(state: S, action: StateUpdater): S { + return action(state); +} + +// Hook definition +export function useActionState( + action: Action, + initialState: S +): [S, (...args: any[]) => Promise] { + const [ state, dispatch ] = useReducer(stateReducer, initialState); + + // Wrap the action to dispatch the new state + const wrappedAction = useCallback(async (...args: any[]): Promise => { + const result = await action(state as S, ...args); + if (result !== undefined) { + dispatch(() => result as S); + } + return result; + }, [ state, action ]); + + return [ state as S, wrappedAction ]; +} + +export default useActionState; diff --git a/packages/ui/src/hooks/useMode.ts b/packages/ui/src/hooks/useMode.ts index 3a97cb0..80e0030 100644 --- a/packages/ui/src/hooks/useMode.ts +++ b/packages/ui/src/hooks/useMode.ts @@ -46,4 +46,4 @@ export function useMode(prefer: ThemeMode = 'light') { }; } -export default useMode; \ No newline at end of file +export default useMode; diff --git a/packages/ui/src/icons.ts b/packages/ui/src/icons.ts index d652161..932aa21 100644 --- a/packages/ui/src/icons.ts +++ b/packages/ui/src/icons.ts @@ -1,5 +1,6 @@ export * from './icons/FacebookIcon'; export * from './icons/InstagramIcon'; export * from './icons/LinkedInIcon'; -export * from './icons/TwitterIcon'; +export * from './icons/XSocialIcon'; export * from './icons/YouTubeIcon'; +export * from './icons/SocialIcons'; diff --git a/packages/ui/src/icons/FacebookIcon.tsx b/packages/ui/src/icons/FacebookIcon.tsx index 8871220..4095fc0 100644 --- a/packages/ui/src/icons/FacebookIcon.tsx +++ b/packages/ui/src/icons/FacebookIcon.tsx @@ -9,5 +9,3 @@ export const FacebookIcon: React.FC> = (props) ); }; - -export default FacebookIcon; diff --git a/packages/ui/src/icons/InstagramIcon.tsx b/packages/ui/src/icons/InstagramIcon.tsx index ded93cb..1b7dfe5 100644 --- a/packages/ui/src/icons/InstagramIcon.tsx +++ b/packages/ui/src/icons/InstagramIcon.tsx @@ -7,5 +7,3 @@ export const InstagramIcon: React.FC> = (props) ); }; - -export default InstagramIcon; diff --git a/packages/ui/src/icons/LinkedInIcon.tsx b/packages/ui/src/icons/LinkedInIcon.tsx index 08cc6a9..60c953b 100644 --- a/packages/ui/src/icons/LinkedInIcon.tsx +++ b/packages/ui/src/icons/LinkedInIcon.tsx @@ -7,5 +7,3 @@ export const LinkedInIcon: React.FC> = (props) ); }; - -export default LinkedInIcon; diff --git a/packages/ui/src/icons/SocialIcons.tsx b/packages/ui/src/icons/SocialIcons.tsx new file mode 100644 index 0000000..491e5df --- /dev/null +++ b/packages/ui/src/icons/SocialIcons.tsx @@ -0,0 +1,15 @@ +import { Socials } from '@do-ob/ui/types'; +import { FacebookIcon } from './FacebookIcon'; +import { InstagramIcon } from './InstagramIcon'; +import { LinkedInIcon } from './LinkedInIcon'; +import { XSocialIcon } from './XSocialIcon'; +import { YouTubeIcon } from './YouTubeIcon'; +import type { FunctionComponent, HTMLAttributes } from 'react'; + +export const SocialIcons: Record>> = { + facebook: FacebookIcon, + instagram: InstagramIcon, + linkedin: LinkedInIcon, + x: XSocialIcon, + youtube: YouTubeIcon, +}; diff --git a/packages/ui/src/icons/TwitterIcon.tsx b/packages/ui/src/icons/XSocialIcon.tsx similarity index 84% rename from packages/ui/src/icons/TwitterIcon.tsx rename to packages/ui/src/icons/XSocialIcon.tsx index c57aa43..a5300f7 100644 --- a/packages/ui/src/icons/TwitterIcon.tsx +++ b/packages/ui/src/icons/XSocialIcon.tsx @@ -1,11 +1,9 @@ import React from 'react'; -export const TwitterIcon: React.FC> = (props) => { +export const XSocialIcon: React.FC> = (props) => { return ( ); }; - -export default TwitterIcon; diff --git a/packages/ui/src/icons/YouTubeIcon.tsx b/packages/ui/src/icons/YouTubeIcon.tsx index 1a9fbcb..5adb770 100644 --- a/packages/ui/src/icons/YouTubeIcon.tsx +++ b/packages/ui/src/icons/YouTubeIcon.tsx @@ -7,5 +7,3 @@ export const YouTubeIcon: React.FC> = (props) = ); }; - -export default YouTubeIcon; diff --git a/packages/ui/src/provider.tsx b/packages/ui/src/provider.tsx index e066df6..7203d11 100644 --- a/packages/ui/src/provider.tsx +++ b/packages/ui/src/provider.tsx @@ -1,3 +1,5 @@ +'use client'; +/* eslint-disable @typescript-eslint/no-explicit-any */ import { NextUIProvider, NextUIProviderProps } from '@nextui-org/react'; import { DoobUiContext } from '@do-ob/ui/context'; import type { ThemeMode } from '@do-ob/ui/types'; @@ -26,7 +28,6 @@ export interface DoobUiProviderProps { nextui?: NextUIProviderProps; } -'use client'; /** * The provider for the doob context */ diff --git a/packages/ui/src/types.ts b/packages/ui/src/types.ts index 9b3ec6f..f4abf1e 100644 --- a/packages/ui/src/types.ts +++ b/packages/ui/src/types.ts @@ -27,3 +27,13 @@ export interface Link { */ links?: Link[]; } + +export type Socials = 'facebook' | 'x' | 'instagram' | 'linkedin' | 'youtube'; + +/** + * An object of socials. + */ +export type SocialLinks = { + type: Socials; + url: string; +}[]; diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index cbf7dbb..c4ac566 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -12,5 +12,5 @@ "@do-ob/ui/*": ["src/*.ts"] } }, - "include": ["src"], + "include": ["src"] } \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fb6f2f1..315e5ab 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,35 +24,35 @@ importers: specifier: ^2.1.3 version: 2.1.3(react@18.3.1) '@nextui-org/react': - specifier: ^2.4.1 - version: 2.4.1(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4) + specifier: ^2.4.2 + version: 2.4.2(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4) '@storybook/addon-a11y': - specifier: ^8.1.6 - version: 8.1.6 + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9 '@storybook/addon-essentials': - specifier: ^8.1.6 - version: 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-interactions': - specifier: ^8.1.6 - version: 8.1.6(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) '@storybook/addon-links': - specifier: ^8.1.6 - version: 8.1.6(react@18.3.1) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(react@18.3.1) '@storybook/addon-themes': - specifier: ^8.1.6 - version: 8.1.6 + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9 '@storybook/blocks': - specifier: ^8.1.6 - version: 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/react': - specifier: ^8.1.6 - version: 8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) '@storybook/react-vite': - specifier: ^8.1.6 - version: 8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1)) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1)) '@storybook/test': - specifier: ^8.1.6 - version: 8.1.6(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) '@types/node': specifier: ^20.12.12 version: 20.14.2 @@ -68,6 +68,9 @@ importers: autoprefixer: specifier: ^10.4.19 version: 10.4.19(postcss@8.4.38) + babel-plugin-react-compiler: + specifier: 0.0.0-experimental-938cd9a-20240601 + version: 0.0.0-experimental-938cd9a-20240601 cssnano: specifier: ^7.0.2 version: 7.0.2(postcss@8.4.38) @@ -89,12 +92,21 @@ importers: react-dom: specifier: 18.3.1 version: 18.3.1(react@18.3.1) + react-dom19: + specifier: npm:react-dom@19.0.0-rc-fb9a90fa48-20240614 + version: react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) + react19: + specifier: npm:react@19.0.0-rc-fb9a90fa48-20240614 + version: react@19.0.0-rc-fb9a90fa48-20240614 storybook: - specifier: 8.1.6 - version: 8.1.6(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 8.2.0-alpha.9 + version: 8.2.0-alpha.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwindcss: specifier: ^3.4.3 version: 3.4.4 + types-react: + specifier: 19.0.0-rc.1 + version: 19.0.0-rc.1 typescript: specifier: ^5.4.5 version: 5.4.5 @@ -112,12 +124,12 @@ importers: version: 2.1.3(react@18.3.1) '@nextui-org/react': specifier: ^2.4.1 - version: 2.4.1(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4) + version: 2.4.1(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4) framer-motion: specifier: ^11.2.10 - version: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + version: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: - specifier: ^18 + specifier: latest version: 18.3.1 packages: @@ -149,6 +161,9 @@ packages: resolution: {integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==} engines: {node: '>=6.9.0'} + '@babel/generator@7.2.0': + resolution: {integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==} + '@babel/generator@7.24.7': resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==} engines: {node: '>=6.9.0'} @@ -1027,6 +1042,10 @@ packages: resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/types@24.9.0': + resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==} + engines: {node: '>= 6'} + '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1': resolution: {integrity: sha512-pdoMZ9QaPnVlSM+SdU/wgg0nyD/8wQ7y90ttO2CMCyrrm7RxveYIJ5eNfjPaoMFqW41LZra7QO9j+xV4Y18Glw==} peerDependencies: @@ -1088,12 +1107,27 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/accordion@2.0.35': + resolution: {integrity: sha512-42T8DAgpICKORry5h1UCgAQ71QJ3dCzvqrnnJQco3LICeIER2JT/wEdpxHUVT893MkL6z6CFsJmWNfFJPk59kA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/aria-utils@2.0.20': resolution: {integrity: sha512-3jZ/KsFNDAVN8TnbmNre0igFrUjGxTMiZtdQ5N7vkxcA+TZ+F9HKdSsTKLQC7IdSxSTs2WP5Pd9v31UWQ+rHvw==} peerDependencies: react: '>=18' react-dom: '>=18' + '@nextui-org/aria-utils@2.0.21': + resolution: {integrity: sha512-aQXFVm4qNrXrUAHhRtr363BgRDX+zgN3Vm+7bW1qtMbnMGOqTWApCD48FP59bka5JArd3K+85tFEhkdD+UfKbQ==} + peerDependencies: + react: '>=18' + react-dom: '>=18' + '@nextui-org/autocomplete@2.1.1': resolution: {integrity: sha512-s8PZ2yVYKhAeBrM8k2CKgGxqSq0RUjHLEIs0qM17QkH3QKIooY61+AVQnYvsdXzBwEIyWFA1gLX3Oev2heSLtw==} peerDependencies: @@ -1103,6 +1137,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/autocomplete@2.1.2': + resolution: {integrity: sha512-3mtYQDBbSRLG8wZ+gDMsOsGH/0m2VG/RcwIiXoteZMyX7yhGl2JPp7ZjX6XWyUpUbq0w2QVprZ6Ld4ck3cuMKg==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/avatar@2.0.29': resolution: {integrity: sha512-XSVVjE6EgIAsSU5fXCh0vzF97p90y4eOD/oyxSJAAGieDCIFfaUtYJnh11qNzopG8pajt7pGczDmGvQakfVnmQ==} peerDependencies: @@ -1111,6 +1154,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/avatar@2.0.30': + resolution: {integrity: sha512-FIrvdJE+dBkmU3YDR1AXTkcks/WXjbnQsojWBMAq+1oXDCcNiGMUvKBzsW0F5m5HVHhn+Edc+CbTzIZUTm78Bw==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/badge@2.0.28': resolution: {integrity: sha512-W0Anc+4VL675fai9xBhTxBp08pfzhAHch7zmP4fsRvlGQZyKAzI16clzhTt9KdOaLBq3hCIQIdCs3cwl1NsSPg==} peerDependencies: @@ -1119,6 +1170,22 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/badge@2.0.29': + resolution: {integrity: sha512-kd6BJ1BWkX6UuHttmySUgQBPOBJCrG1+eKwWDd1HL4YuBLayuYoTZuE5Q01HYTbXjFMqzsFX3A+jcJ3RYc0X7w==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + + '@nextui-org/breadcrumbs@2.0.10': + resolution: {integrity: sha512-TCrOHCH/gNrPwEQyd30mu6Y9x/ojJk3vUWZJSPuVhzG6WdpUFyqen4QCoDTUTvFJBL3TwqNYwOIxooizzFSK7g==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/breadcrumbs@2.0.9': resolution: {integrity: sha512-zjGHWRXFnSgVQtsP7BLJdecQQ226cSwIZS6fUSnQ1P9zpXvl7I6gZ/YXZX5TFUcqO0HDId1t4DKQhuquxBDRJg==} peerDependencies: @@ -1136,6 +1203,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/button@2.0.34': + resolution: {integrity: sha512-VeFpOs7trX6u6FqeGr0XCpuNqPhXTLqsmt4iaygvheZCbzrTKvWHd4QMqSh2CPsNH8UFUBSFJjr3oaf3a0SYWQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/calendar@2.0.6': resolution: {integrity: sha512-WH4Vzu7UlK7k0KXoDc7xnKlpVQZLecaYpwRQirFtf9N1gHr+oThjoUZmVF92O2L2V1h6tXYBXEEEucQqPOhWtA==} peerDependencies: @@ -1144,6 +1220,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/calendar@2.0.7': + resolution: {integrity: sha512-6mdgKJSl6tWo68FJQB1txSTRQ6/6+c3hipDYvzqDZRc+NbOJ3VevbFaPj5673JxeI2J5SyHLY2AEVw4q6HfaNw==} + peerDependencies: + '@nextui-org/system': '>=2.1.0' + '@nextui-org/theme': '>=2.2.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/card@2.0.30': resolution: {integrity: sha512-PotzYGk6f2GdCuYD2VwNGdZAsYgJvX/7GbN70empXnpE3JV2dtoe6wB0SZjHgkLu5qvs3F/+FXinOWfI136W5g==} peerDependencies: @@ -1153,6 +1237,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/card@2.0.31': + resolution: {integrity: sha512-KXeI4xu0HVOgC2sNBxv+OGbzYy+kA6HbsDB677j3R+MhyCrqCLsE5ahkn7FRWgIJAzoDkcHSunmc+q9ApoSWig==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/checkbox@2.1.1': resolution: {integrity: sha512-kb1xe2tw6URTyvtGGIy6IlECeNGwktG4PeN7zmAxZJrQaQ0WlL3l8mnm+M4FBC9BCKsgAM5jyRoafMeFWgEVWw==} peerDependencies: @@ -1161,6 +1254,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/checkbox@2.1.2': + resolution: {integrity: sha512-0C5xcYcBMM/iAva3/fFYIvUiy91guV+mehUwRcPIxEFLA9bIOdOdGTkoAXlVcGCLIuYvlPiqSH0gShXvscOlNQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/chip@2.0.29': resolution: {integrity: sha512-3R4Ks2clXn6Bs4w8MEREfUsw3scFwtOCw5LC3tFNjSmlnn9bIjJgeetq/Q4Z56ys23ErETjPs4ipxuIrvTuoDw==} peerDependencies: @@ -1169,6 +1270,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/chip@2.0.30': + resolution: {integrity: sha512-u/PbKFW8pGoPzBh8dDRvhBSdhX30lJbscQJvXzmCKHpSvK8rvBG1kHtOJEJ4fiuXbo/O0CYwZVAi03XloyOCdQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/code@2.0.28': resolution: {integrity: sha512-gSiTuhhNrud18NdfC5DGVLlI8vEFhYxxCwPA8bTMtlziZ0aD4NKPKx8wM+LhksI/ODhvOLHeOzPsY+/IcFnIMA==} peerDependencies: @@ -1176,6 +1285,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/code@2.0.29': + resolution: {integrity: sha512-+aevUjVJxSkJ4Un/O3rBdI1NfHikatzDK6iD6nqWDCDR/I+9a5m+s3N8yuNt/Mt8jGKg0KEklPh3deYfCVCXdg==} + peerDependencies: + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/date-input@2.1.0': resolution: {integrity: sha512-u55jzNCwhd5DpPH0HKCNTaNUkV7SPoIdoRWaNt/KCnGh//HGcwAxo9hiwAyUQoDzJyMVbMU3JjiAWd/HcK6T2g==} peerDependencies: @@ -1184,6 +1300,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/date-input@2.1.1': + resolution: {integrity: sha512-fts8R058AVN8dhkBGaJ/7F68ZwM/E3Imu5uhauHoXVoJhaXNft5fA23HJYpNkFrG0k/Tk7vGcGSPistiERQuKg==} + peerDependencies: + '@nextui-org/system': '>=2.1.0' + '@nextui-org/theme': '>=2.2.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/date-picker@2.1.1': resolution: {integrity: sha512-/j2qiLE85OQgKox++0BaaDG+ZA6ETX0PCy7Ij3Nh2mBiPVs0Obsabez90YejgcFVEDrViN9eu7PWYGw8DMj/wA==} peerDependencies: @@ -1192,6 +1316,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/date-picker@2.1.2': + resolution: {integrity: sha512-gNqhyA85SDtGNdr2CUBJ5FSy/wCtj2AKJGs2yEvKtA9A66khOH2H0tdfGALOWoAQdxGgOvP7c+9U5Oadogoygg==} + peerDependencies: + '@nextui-org/system': '>=2.1.0' + '@nextui-org/theme': '>=2.2.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/divider@2.0.28': resolution: {integrity: sha512-IskKmDOO8qwmTO2WtDmrH8fZvnV2JebP3PFfwqpToAdDRbRUs78pls2e8/T9clbLLtNxjfCFAI/Yi9C+LPPEXw==} peerDependencies: @@ -1208,6 +1340,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/dropdown@2.1.26': + resolution: {integrity: sha512-rPrn8hN7v2nLm9OJKagvf7AivsCAT0EWUcgWGaf5GVdwGJ65TZpjR18eAOyKBZRe5cdZ+FV6qqnavGVhD3458w==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/framer-utils@2.0.20': resolution: {integrity: sha512-Hwlphs3huYoQNnc4WVFSxNAh5evEdvTiIayFYTIIS2m00SGn+HL3FUDffy3xsPvEgcdmn4sbJgg1gfb6+aC1tg==} peerDependencies: @@ -1215,6 +1356,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/framer-utils@2.0.21': + resolution: {integrity: sha512-kZzkaAHbtuBl85mivZ1WKVCcwdk8Z2NDmJiIpaLy16yliLNV1tnhoDOzRrxhv+6cbkKftx21tRrpImB4AyeqLw==} + peerDependencies: + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/image@2.0.28': resolution: {integrity: sha512-gnFTs0OTPtqlCzp1RPENjnXHL9dZFk/DoDsJZ1Hejtbwh/9K/71PEpEMTe4MrGQMsMdIXmI+RwbvVazy2eB5Pg==} peerDependencies: @@ -1223,6 +1371,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/image@2.0.29': + resolution: {integrity: sha512-w8MneV/JNUTCJUcIZcxtUYw1ZEZqlpezcCgGLr0cH3vp5pa+BZ9SdptwAL2wFoJAG8xk+et9fMXTROvF4h5W1g==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/input@2.2.1': resolution: {integrity: sha512-qXhMZUge0F7NgdGmcAfFCMSSVqdCSrFZErhMzRa/dnFKjwZlVTicbmcUAf7hlRm32tBNBv0c31viBSMA3FQeDQ==} peerDependencies: @@ -1231,6 +1387,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/input@2.2.2': + resolution: {integrity: sha512-mCcFsObJdlCWMuSutKTRniFIDX5+z4BAAtt/XI1uzOtUO6WXgT97BwVzMihC1l14WQsw9TCwFKAl8JWdolkNCA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/kbd@2.0.29': resolution: {integrity: sha512-vApGKSFGJFenTowlyLNcOvK+D3UzvyPEQyDOuZryqTayWMkZiNdPzjg9TsqBJF7B1ELJn0ErYTQexFLEPkcXbg==} peerDependencies: @@ -1238,6 +1402,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/kbd@2.0.30': + resolution: {integrity: sha512-rQw71noVUIRPf8N/Z5hdIGCtjFEVZO9xs2JVkiusKDxbGXFWKxJ3sTFzEY4VyLtORt2mEOQEWh26wbTnNjJzMw==} + peerDependencies: + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/link@2.0.31': resolution: {integrity: sha512-wwW1phmVnc/tahWgh7g4vGOQ7HuNflfAfkXkltTw3sgRi+0LNEiQS+bd0c40ppmJ2DbHIugubPc9oO8rDLY+Dg==} peerDependencies: @@ -1246,6 +1417,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/link@2.0.32': + resolution: {integrity: sha512-NIG8Ay/WfFxwMYKB11xg0iVAzJR1jy0QrtKFGaZscyJ522beM+aMBZuourC9u7kwjucTvt5fuGRm86KBVDBXCQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/listbox@2.1.21': resolution: {integrity: sha512-mVbN9IWg9MBLwreqRR+6WiCQDu/u30KsN19e7V9TkAumxTaTqaarb34KudXz6wiObN/ORBsFnV5H3p2AtuANVA==} peerDependencies: @@ -1254,6 +1433,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/listbox@2.1.22': + resolution: {integrity: sha512-VFULRE7BBpNnXulhySHlENRiRUP7KdpozJfKM3X2kIwWoFekO8DDUT8RiLj2PyDtGjKam74ghHhMuAFXFhVQ+g==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/menu@2.0.24': resolution: {integrity: sha512-psM0LUtgUQCXJF3QKk9lf1rclGxbcdmzgYa6V4k9jd6MJvnksP1dGUnrLye1nO3g50+RGxMMkuJD6wvGiD7/iA==} peerDependencies: @@ -1262,6 +1449,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/menu@2.0.25': + resolution: {integrity: sha512-VkCaaq19JKNjIgg4bmGebzHkSV1A3C1CRV5w5qRPg5AI59pdWlbMLpllm5mPqz+U0R0P5saGfCfEfcC0LrCFdQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/modal@2.0.35': resolution: {integrity: sha512-MeWbdTewaLS4j+7ktrelak6W1zfBzwIh07Czw+6RWRu7+rBSu+/o+EDWoLvcOb/rCbgWxNr5hi2ZXnsBOeXmkg==} peerDependencies: @@ -1271,6 +1466,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/modal@2.0.36': + resolution: {integrity: sha512-ucWBobeoM8BVLpgXrtZ/H5TD9eFS2YF4W7vntWC05Q13A34LSHgBjNHJkfwW/OebGjJoaDoRiIBohWaiyyliTA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/navbar@2.0.32': resolution: {integrity: sha512-+fm3f/J2GEYA2K7RtYjjS0C8h5pvlG4zi+49VBriKfnqEVEyzzM793RJAVA7sUWEr1/Pl5+YUeN6aFysfY1kdw==} peerDependencies: @@ -1280,6 +1484,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/navbar@2.0.33': + resolution: {integrity: sha512-WbPLEz6yE1vxKTqZDN85YPCWR/JSvpOO604xBpaaCf+OLfEsb+herz7+GDPnvHKaPDASoxU5WaSQJR9nrJ/YHg==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/pagination@2.0.32': resolution: {integrity: sha512-rSiIV1c9950wKDZHzIuR4sk7lheIcAaqisp6Yj+RNDVcVKQEoro8jgz+B3eCVL/5Oel6IxxxPQDEz2YxjJ/13w==} peerDependencies: @@ -1288,6 +1501,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/pagination@2.0.33': + resolution: {integrity: sha512-LiDDTSTuC0Q9gSI1gc/b+lmKR8/zFiwSfYjLh7KDND3m+qE44waICWnK1U7P6Y999Nu1LwaGSGtqayd326aPrg==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/popover@2.1.23': resolution: {integrity: sha512-6XQkULf0OII8aWsnyBMm577zflS2+UzKDN10O7CNnSHKFJPUOqh2n4MuUk2E2nIJjXXV7asquSWFGwwtIIckPQ==} peerDependencies: @@ -1297,6 +1518,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/popover@2.1.24': + resolution: {integrity: sha512-PGbTxdcc06BMxEd/HYsL0sVa0fdGjHPYNSvcSSM0KA6Fh98pznO9DoQHjIEPAul87yEwl7cDDj7mANcdK9BVnA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/progress@2.0.30': resolution: {integrity: sha512-QHCOGzcmRKWAxp47Xn5xQj24vmhumBLRwKA+l9hzwsZwe8HHwXTLfcl1QxGfnHj1d+nXwLHGVfYJLlOp/S3Gtw==} peerDependencies: @@ -1305,6 +1535,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/progress@2.0.31': + resolution: {integrity: sha512-ZFjV4068gYPe9S4R1e/8oqwtPFKd9ag8RB0JoToq55AM5aLItOA/Q/uwBnDz7ait3C7viWawcN4leW1C8dSurQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/radio@2.1.1': resolution: {integrity: sha512-67ZO+6ASobGjmSJuTrgoZ79PjssWxwO+9GX7hT6L18kWsjdpgY51BZd85r4WcqCF/W6IsvnjchSVOcMraxQ5FA==} peerDependencies: @@ -1313,6 +1551,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/radio@2.1.2': + resolution: {integrity: sha512-JcWKRqXXRwQtz5ABzykuu+S4/8cO9GKa21Gget1fdo/iSDcUtGDHIf6wlpvWSNekpvIERZd9UdpwhaXWbD4pOg==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/react-rsc-utils@2.0.12': resolution: {integrity: sha512-s2IG4pM1K+kbm6A2g3UpqrS592AExpGixtZNPJ2lV5+UQi1ld3vb4EiBIOViZMoSCNCoNdaeO5Yqo6cKghwCPA==} @@ -1321,6 +1567,11 @@ packages: peerDependencies: react: '>=18' + '@nextui-org/react-utils@2.0.14': + resolution: {integrity: sha512-fed97WSaHt8/sC5F4DFTVj25YQsepFGDyudommPGQsTksQ6GQkMITuHckzAyPiTTuWHSW/GZykvVVAlK9hS5Wg==} + peerDependencies: + react: '>=18' + '@nextui-org/react@2.4.1': resolution: {integrity: sha512-iLlNa+W2TNz/O/Ah2Wxad/8i6l6BARhtVYq6CL57XUi9oognd6eKSLfddKrEVp5v7RCzcAvFPHgwd4usFUp1Wg==} peerDependencies: @@ -1328,6 +1579,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/react@2.4.2': + resolution: {integrity: sha512-g7CqAX/x0DJsIUmD+Z6I4T1699uVmu5kbuY0n1PdA4IDjFSKzgkMCIogcIKu2iUV+LVlvfF1lDhs300OIpouig==} + peerDependencies: + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/ripple@2.0.29': resolution: {integrity: sha512-fnIpoMq6jixEN0/RFKQlHd1rw2HX+YQlJFzzqoJNhZx0CUlgAY3S6pJjlHI7yVyZ1+lskH16ZzW+BltJYSyf1Q==} peerDependencies: @@ -1337,6 +1595,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/ripple@2.0.30': + resolution: {integrity: sha512-GmHwC+F2JIYQAeFuwtFbdE6av8lzOJVdA5yops9vhhzeBPT33dMjgazCn0HZT5TvP0gX+xxT/74ONE0ik0Kayg==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/scroll-shadow@2.1.16': resolution: {integrity: sha512-QkOHNFQqEdfSj6iAKd4SusZpmyaJcBFCvx4zLLrWCXGS0+0KWvuaq/dOE8PXSPo4vts4TGDQp6qQGhk0BFvttg==} peerDependencies: @@ -1345,6 +1612,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/scroll-shadow@2.1.17': + resolution: {integrity: sha512-JOJc6nbdFHcMn/zpaf78AAZ8Vwo/iQO6iWJVHlN6ROjSKL7EImP/V78m14Y+kd0hkzU8CcHswdpmCefaioFlRA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/select@2.2.1': resolution: {integrity: sha512-lLEL42tS7Be1VpxTyF02lrVukqLsiqx4whF93nMwdPoHiHghgygtzqHR2KPsRUi4Cx5bEhHWR8+yCOFM2fmCFg==} peerDependencies: @@ -1354,11 +1629,25 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/select@2.2.2': + resolution: {integrity: sha512-bCk6/LJAhhSM5VXiny7rDTH5f7ri7mGKx4V+K83kY9uW01ioWWYId1EhbP6Crd9PSvmQL42mhId/5dLRxgUimA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/shared-icons@2.0.7': resolution: {integrity: sha512-GsotFeRbwxhc2eQt7Z6edcVYfklpaSzo93Xodryb82SokRaSOKt9BEpUXgk2TExAvJMjDnB4T8nk8ANWsFaXOw==} peerDependencies: react: '>=18' + '@nextui-org/shared-icons@2.0.8': + resolution: {integrity: sha512-siKuw+CN03cB2N1eUpIleP+lTpjM4gSmcco7RXTpXiwXJXlxjKo4N8gQYS04HCBXm9QMWgyngvUEt2II9NYyrw==} + peerDependencies: + react: '>=18' + '@nextui-org/shared-utils@2.0.5': resolution: {integrity: sha512-aFc/CUL8RVfBh0IotIpxkpKjyUPc/zJaMJd5pRCQA1kIpKLdSrlh3//MLYMaP/fo/NQtE3DPeXqfKhHRr1fkEw==} @@ -1370,6 +1659,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/skeleton@2.0.29': + resolution: {integrity: sha512-s/oQdUc1Ao7XRmUP82V2/hI3B644ZQzIYuPIgp+A6DyDLfyRUx8PLWN/EhN5Ku2M/s6WYTkwulDrKeo4dlMsrw==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/slider@2.2.11': resolution: {integrity: sha512-V9m43Gggml3x9xM6OPZzbLmxd8O9hB3YIckqKscNBT2yjeO+FEexyNk3E6Smh6AvPYzncUqqMMQL+NMQdD3TLg==} peerDependencies: @@ -1378,6 +1675,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/slider@2.2.12': + resolution: {integrity: sha512-5+72YlWxV6bm9hGNpWN5G+6OeqU7S9N2ECwEdO4COQ1hvMiimiJ3lrTUHIS2AvKimEpw+MLkUoKIbqAV23zxuw==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/snippet@2.0.37': resolution: {integrity: sha512-XTUUbnYkNw5q7ob4uzQmNvvUvTCOlir7mMfBA236vuprARBgEKc8y1JrLcGsyD/OMT8fWePYok1v35QgCOoEAg==} peerDependencies: @@ -1387,6 +1692,15 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/snippet@2.0.38': + resolution: {integrity: sha512-8lMqtB1KQtMkpZFb3x/T42zdZ+QqcGr6d/yVE+zKzyEd+xqzm2g/hDpPqy0Mf5JaC1Z+lXoRzF/6XbD99FCEbw==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/spacer@2.0.28': resolution: {integrity: sha512-2xw/HF6hiFfsrCoDEKtCOxr/sRahrCuZO0JwXNF1dNLD/Wt7PWI5Gtvb3o3zaWSgB1vF7lccQEMqgE9PdSo1EA==} peerDependencies: @@ -1394,6 +1708,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/spacer@2.0.29': + resolution: {integrity: sha512-lcgzHIvTXXllnM6MMjti0ub8jEx9jmtzdd5+zgFAHLTeDS3pDffNZndmU+RkzpyGSyK20PCrMkV/sB4SCDN1KA==} + peerDependencies: + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/spinner@2.0.29': resolution: {integrity: sha512-W9WXguTIQVbnCx5eus3DwJYX7mzDLK3xp6QRU/knmxm3HJjCvHlexw6TgXMEJfTcCl83Sh8CDYrUDSEhCivMWQ==} peerDependencies: @@ -1401,6 +1722,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/spinner@2.0.30': + resolution: {integrity: sha512-+oygL2dewHZzJiSUEIvzL0tIx+G+98mvO3ToFAMXaH0N3bOQNSiFDPwUHUx6PgAQ9pr9RKtdnb4ywstcG9j+Gg==} + peerDependencies: + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/switch@2.0.30': resolution: {integrity: sha512-KWkhejd4c/Azo9MDF1V2/6SAIy2k+qu+X5Ux2wixSMgkm1jTrZLithBP91+lljHfrgjfx+sLqQZ29BX7hYpNFw==} peerDependencies: @@ -1409,6 +1737,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/switch@2.0.31': + resolution: {integrity: sha512-WPHqWQfyISA8nmQ8ihaO5rIHm/K9nyfrV0Fxm6EcnFilTMZhh4Kt+p7FfJrZw+MMyzIEGFfMDySk1KVrMubc1g==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/system-rsc@2.1.2': resolution: {integrity: sha512-3F7pG68Ikh1JsMtRQqmyXAojAV4lMPCKCy0n8RiIxJkEJg11RGTXhnABHF2jP6uxMH/0q5zVzuFubQJfW++ISQ==} peerDependencies: @@ -1422,6 +1758,13 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/system@2.2.2': + resolution: {integrity: sha512-u30lWSIO4Q7DStiK5tJjDgKBQtmODeQZcC6llz973sJ9QlE4GeC1fgu0+/zXL8AZZ8o/iEXhHWXsZIJ26EquUQ==} + peerDependencies: + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/table@2.0.35': resolution: {integrity: sha512-n77PDHiEPbmnQspf8zdEh4rRj0Jdsr9Q0MnC08Ksv/B8/mCwd/Y5Va+YnEggapo1d+qERQgETeP+NtpTOmpILA==} peerDependencies: @@ -1430,6 +1773,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/table@2.0.36': + resolution: {integrity: sha512-vpohZo5p3XmT6FLOKKwmm8SdCA/h2QPQz6Y66sAfHuoqAfkmfVfAeyKgYTe20pVJy3Whvyix6IA8e0eWETDTEw==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/tabs@2.0.31': resolution: {integrity: sha512-z/OL8TE9m9i+2qd9Ksnuai1I8GhBZfpScHhg8pWUSYUDB2n7PHdMFO8H7EBzm3IgCajsnIkK6/heiP0PuwTpMg==} peerDependencies: @@ -1439,11 +1790,25 @@ packages: react: '>=18' react-dom: '>=18' - '@nextui-org/theme@2.2.5': - resolution: {integrity: sha512-xvlMUK/rTv95s9hvr/XWtyVTm3IHRR7gCHpGOhG9DsxkQFbSQDiznsBC7LPBFJ21o+idiv28Il6aroV3ua/BOA==} + '@nextui-org/tabs@2.0.32': + resolution: {integrity: sha512-TVCwm1GI7rkf/o7+eWpklRQBTg2Y/m3eNBLU1jA+Ppqs+Mr31y7BHoNLqTZ6jpj59DA1OcpwbJH5xhGk0pOvwA==} peerDependencies: - tailwindcss: '>=3.4.0' - + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + + '@nextui-org/theme@2.2.5': + resolution: {integrity: sha512-xvlMUK/rTv95s9hvr/XWtyVTm3IHRR7gCHpGOhG9DsxkQFbSQDiznsBC7LPBFJ21o+idiv28Il6aroV3ua/BOA==} + peerDependencies: + tailwindcss: '>=3.4.0' + + '@nextui-org/theme@2.2.6': + resolution: {integrity: sha512-FyDp5edpmjbvPzRx+D2+Km1oZ73wQOzKMSBPomOgP0h9OFnnTHqKlmtbGhWSk2cEyYN9VsaGvqJTw8X35/aChQ==} + peerDependencies: + tailwindcss: '>=3.4.0' + '@nextui-org/tooltip@2.0.35': resolution: {integrity: sha512-XnYvjyeQAlefViCV1Fvfk4PRXweVyp81yBcEN7vWrqdTyvVabTqDMQFutGv1Xdt7bENBmgyubAZY4uzfrMDfTg==} peerDependencies: @@ -1453,27 +1818,63 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/tooltip@2.0.36': + resolution: {integrity: sha512-tV3BefTvmYzSC4TX+UPV7p3F5fs52sFzQ1/Try/Bkz5B1F9yXviO9dV2/pqXSfOJVvLVJS2RMi5wZkaYh1xtNw==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + framer-motion: '>=10.17.0' + react: '>=18' + react-dom: '>=18' + '@nextui-org/use-aria-accordion@2.0.5': resolution: {integrity: sha512-EDUHQH4LE08ulrUEWZajvMJkRDsnB17iHc2ZdZFAiQSstVRjudTUkHABmvd6uazRFqMRyc4xK7WfXPQnk7VySA==} peerDependencies: react: '>=18' + '@nextui-org/use-aria-accordion@2.0.6': + resolution: {integrity: sha512-47+/gO67YufQUtL0f2TIdaa8++5EBtIK7Ltq1GpUat2qjbMFvIb6Ao/Jf3KHU5NicLLRnWPSK1vNaupkYwN/ew==} + peerDependencies: + react: '>=18' + '@nextui-org/use-aria-button@2.0.8': resolution: {integrity: sha512-kdTBcZPZ5J55n+orGppdjGXR3q6eJd8WRJnlnxdsYiziUkH4o/S4InrkEJjVkKhbNzv6qGEBlBeLu9gIg0lzRA==} peerDependencies: react: '>=18' + '@nextui-org/use-aria-button@2.0.9': + resolution: {integrity: sha512-5FjDl57/1Ey3MgJn+yB0/CPABsSVgXiE+jT7ZLnSqH9kmdXV/eMiuplF7fOOvaSMCA1cE3KCetaPVDIZoJI1/w==} + peerDependencies: + react: '>=18' + '@nextui-org/use-aria-link@2.0.17': resolution: {integrity: sha512-PrOo07NGmYr4/Yswpzuz9n5nNL6AH8tL+NxeKzUEQ7Ild0x7HhgXKoa6rs4w5T8uXdVYebKs9wFDLgHvPLMARg==} peerDependencies: react: '>=18' + '@nextui-org/use-aria-link@2.0.18': + resolution: {integrity: sha512-6ZIIOfMMGbSOF9FcJTPrsVOm2LP7OV+QwF0vYelZeEK5zFXb5f8e2J/fEbCVWKLPFDB2VyoBUDWMzRfrizixzg==} + peerDependencies: + react: '>=18' + '@nextui-org/use-aria-menu@2.0.4': resolution: {integrity: sha512-PvTjAmKiuP40UmHRNteaDmkxtAOtSVB2fFQYXDRzNjXrosngfq5RrZqAPkg3N9oW4NLtKiWyZlGoGhXNamrLGQ==} peerDependencies: react: '>=18' react-dom: '>=18' + '@nextui-org/use-aria-menu@2.0.5': + resolution: {integrity: sha512-7bAwISb4vIGhAuvZEHpb/28u0k2/HxNhMJUcz/UxVJTMqSkbSJR2RKdm64WfhEq2A8ZtvED0BAJbDuPf4Q4avg==} + peerDependencies: + react: '>=18' + react-dom: '>=18' + + '@nextui-org/use-aria-modal-overlay@2.0.10': + resolution: {integrity: sha512-/VONX/beH4vu7SQjAtxcQoRhdAOro+QeBk9XOW+qcNvxZG4Em1vf1KFmpHRC40DtsrUk3I0cxaZezeIgfOZ41Q==} + peerDependencies: + react: '>=18' + react-dom: '>=18' + '@nextui-org/use-aria-modal-overlay@2.0.9': resolution: {integrity: sha512-eBnrVhFBFEf+s8FYYVc/GP1zwvY0JGilsKDpec5Bj8NmOmEi30oDslE5pSN0xlUFF1waiiGi0fJaLrhpe9jqow==} peerDependencies: @@ -1486,11 +1887,22 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/use-aria-multiselect@2.2.2': + resolution: {integrity: sha512-iFw9CVRWTKBl+c1FbbHxp4K0B6aQTXSzXiIP09TJ1NQ10fk1GQXBIhFUIyvIwRJRGvYAL+vwkgj39Ac1p1esJQ==} + peerDependencies: + react: '>=18' + react-dom: '>=18' + '@nextui-org/use-aria-toggle-button@2.0.8': resolution: {integrity: sha512-JIi088ObIkC+P5OI1gDaUsnzhvzIrk5AMPa4groHGiP3V678QWv2rD+0uQQ8HwjV4zoGbeMrDbhHgWdyXJtQgA==} peerDependencies: react: '>=18' + '@nextui-org/use-aria-toggle-button@2.0.9': + resolution: {integrity: sha512-JpPD97tYpPwyhgXgJbWYgMDp5ZysM1LyvvmyHmq6BtvSpyYqQKU7V3LDXuirBEN6NwHHZRfXy4/mUid/L6W0wA==} + peerDependencies: + react: '>=18' + '@nextui-org/use-callback-ref@2.0.5': resolution: {integrity: sha512-lcjlV5yaDTiFSv06E5RtQNqy+O6XqH/Q/yz+ka1ZBlZF/FdzEPNRfJ0shN2D7Sh3DdbvV2lySbA2g/0d94geaw==} peerDependencies: @@ -1511,6 +1923,11 @@ packages: peerDependencies: react: '>=18' + '@nextui-org/use-disclosure@2.0.9': + resolution: {integrity: sha512-d1Pksmm6zleZAdNraD0s97E+sXHrzI0vZ8tLNzE9yGNOf/VRMBvjpfa9S4Zl7oR+StNbST3JofCqmSHtRNe7hg==} + peerDependencies: + react: '>=18' + '@nextui-org/use-image@2.0.5': resolution: {integrity: sha512-FAMyvZS9XSNLqHEmU6xykMgwIFJj/V9/JpTiZAQziz2wqMiUONIBpYpGOlI+pPBNlhCkw62KHm/19vHW49FWhA==} peerDependencies: @@ -1521,6 +1938,11 @@ packages: peerDependencies: react: '>=18' + '@nextui-org/use-is-mobile@2.0.8': + resolution: {integrity: sha512-fp6UgfmYTkdri3fKeFUapr0TuJGRTskrTZixh+r1aqTcEWtaeef+Nli5VKRTJb9nqYKkgJDRhC39Z5s/rgq0mA==} + peerDependencies: + react: '>=18' + '@nextui-org/use-is-mounted@2.0.5': resolution: {integrity: sha512-gk698Uwmj/XhchBsnI5Ups5uzEXuZvsPK45K6goi2/ADKXSYxHOcSgwoexytqJBb/7tpi+emi2CRTAjAFZDQqA==} peerDependencies: @@ -1536,6 +1958,11 @@ packages: peerDependencies: react: '>=18' + '@nextui-org/use-pagination@2.0.7': + resolution: {integrity: sha512-a05vLp8YSk4nI+LmDUdjjKj2U1/d3Z1ZALUUrjWJVnTUckaiglHGeoYEh8nqcjDXj4sPC4OcK3ZnW+AGUXDGwA==} + peerDependencies: + react: '>=18' + '@nextui-org/use-safe-layout-effect@2.0.5': resolution: {integrity: sha512-YQQlqz82aYxMoEq23jQNG/JBPHF1x3opzyXRHAVxgBEFo9OJqBMZTm23ukpTXm2Ev98T6mpWiTHdfyHJ7IoRog==} peerDependencies: @@ -1559,6 +1986,14 @@ packages: react: '>=18' react-dom: '>=18' + '@nextui-org/user@2.0.31': + resolution: {integrity: sha512-PXWVLB2igKi3MwjVeI5auoK6fhBgT3nizPzabBa95m0/3dg8aex/4oexCRpjef+V5cRD/2z37VHqfelQWqOHjQ==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.1.0' + react: '>=18' + react-dom: '>=18' + '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -1742,28 +2177,61 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/breadcrumbs@3.5.13': + resolution: {integrity: sha512-G1Gqf/P6kVdfs94ovwP18fTWuIxadIQgHsXS08JEVcFVYMjb9YjqnEBaohUxD1tq2WldMbYw53ahQblT4NTG+g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/button@3.9.3': resolution: {integrity: sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/button@3.9.5': + resolution: {integrity: sha512-dgcYR6j8WDOMLKuVrtxzx4jIC05cVKDzc+HnPO8lNkBAOfjcuN5tkGRtIjLtqjMvpZHhQT5aDbgFpIaZzxgFIg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/calendar@3.5.6': resolution: {integrity: sha512-PA0Ur5WcODMn7t2gCUvq61YktkB+WlSZjzDr5kcY3sdl53ZjiyqCa2hYgrb6R0J859LVJXAp+5Qaproz8g1oLA==} 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 + '@react-aria/calendar@3.5.8': + resolution: {integrity: sha512-Whlp4CeAA5/ZkzrAHUv73kgIRYjw088eYGSc+cvSOCxfrc/2XkBm9rNrnSBv0DvhJ8AG0Fjz3vYakTmF3BgZBw==} + 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 + '@react-aria/checkbox@3.14.1': resolution: {integrity: sha512-b4rtrg5SpRSa9jBOqzJMmprJ+jDi3KyVvUh+DsvISe5Ti7gVAhMBgnca1D0xBp22w2jhk/o4gyu1bYxGLum0GA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/checkbox@3.14.3': + resolution: {integrity: sha512-EtBJL6iu0gvrw3A4R7UeVLR6diaVk/mh4kFBc7c8hQjpEJweRr4hmJT3hrNg3MBcTWLxFiMEXPGgWEwXDBygtA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/combobox@3.8.4': resolution: {integrity: sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==} 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 + '@react-aria/combobox@3.9.1': + resolution: {integrity: sha512-SpK92dCmT8qn8aEcUAihRQrBb5LZUhwIbDExFII8PvUvEFy/PoQHXIo3j1V29WkutDBDpMvBv/6XRCHGXPqrhQ==} + 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 + + '@react-aria/datepicker@3.10.1': + resolution: {integrity: sha512-4HZL593nrNMa1GjBmWEN/OTvNS6d3/16G1YJWlqiUlv11ADulSbqBIjMmkgwrJVFcjrgqtXFy+yyrTA/oq94Zw==} + 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 + '@react-aria/datepicker@3.9.3': resolution: {integrity: sha512-1AjCAizd88ACKjVNhFazX4HZZFwWi2rsSlGCTm66Nx6wm5N/Cpbm466dpYEFyQUsKSOG4CC65G1zfYoMPe48MQ==} peerDependencies: @@ -1776,6 +2244,12 @@ packages: 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 + '@react-aria/dialog@3.5.14': + resolution: {integrity: sha512-oqDCjQ8hxe3GStf48XWBf2CliEnxlR9GgSYPHJPUc69WBj68D9rVcCW3kogJnLAnwIyf3FnzbX4wSjvUa88sAQ==} + 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 + '@react-aria/focus@3.16.2': resolution: {integrity: sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==} peerDependencies: @@ -1881,11 +2355,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/progress@3.4.13': + resolution: {integrity: sha512-YBV9bOO5JzKvG8QCI0IAA00o6FczMgIDiK8Q9p5gKorFMatFUdRayxlbIPoYHMi+PguLil0jHgC7eOyaUcrZ0g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/radio@3.10.2': resolution: {integrity: sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/radio@3.10.4': + resolution: {integrity: sha512-3fmoMcQtCpgjTwJReFjnvIE/C7zOZeCeWUn4JKDqz9s1ILYsC3Rk5zZ4q66tFn6v+IQnecrKT52wH6+hlVLwTA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/selection@3.17.5': resolution: {integrity: sha512-gO5jBUkc7WdkiFMlWt3x9pTSuj3Yeegsxfo44qU5NPlKrnGtPRZDWrlACNgkDHu645RNNPhlyoX0C+G8mUg1xA==} peerDependencies: @@ -1903,6 +2387,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/slider@3.7.8': + resolution: {integrity: sha512-MYvPcM0K8jxEJJicUK2+WxUkBIM/mquBxOTOSSIL3CszA80nXIGVnLlCUnQV3LOUzpWtabbWaZokSPtGgOgQOw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/spinbutton@3.6.5': resolution: {integrity: sha512-0aACBarF/Xr/7ixzjVBTQ0NBwwwsoGkf5v6AVFVMTC0uYMXHTALvRs+ULHjHMa5e/cX/aPlEvaVT7jfSs+Xy9Q==} peerDependencies: @@ -1920,18 +2409,35 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/switch@3.6.4': + resolution: {integrity: sha512-2nVqz4ZuJyof47IpGSt3oZRmp+EdS8wzeDYgf42WHQXrx4uEOk1mdLJ20+NnsYhj/2NHZsvXVrjBeKMjlMs+0w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/table@3.13.5': resolution: {integrity: sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==} 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 + '@react-aria/table@3.14.1': + resolution: {integrity: sha512-WaPgQe4zQF5OaluO5rm+Y2nEoFR63vsLd4BT4yjK1uaFhKhDY2Zk+1SCVQvBLLKS4WK9dhP05nrNzT0vp/ZPOw==} + 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 + '@react-aria/tabs@3.8.5': resolution: {integrity: sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==} 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 + '@react-aria/tabs@3.9.1': + resolution: {integrity: sha512-S5v/0sRcOaSXaJYZuuy1ZVzYc7JD4sDyseG1133GjyuNjJOFHgoWMb+b4uxNIJbZxnLgynn/ZDBZSO+qU+fIxw==} + 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 + '@react-aria/textfield@3.14.3': resolution: {integrity: sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==} peerDependencies: @@ -1952,6 +2458,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/tooltip@3.7.4': + resolution: {integrity: sha512-+XRx4HlLYqWY3fB8Z60bQi/rbWDIGlFUtXYbtoa1J+EyRWfhpvsYImP8qeeNO/vgjUtDy1j9oKa8p6App9mBMQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/utils@3.23.2': resolution: {integrity: sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==} peerDependencies: @@ -1977,11 +2488,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/calendar@3.5.1': + resolution: {integrity: sha512-7l7QhqGUJ5AzWHfvZzbTe3J4t72Ht5BmhW4hlVI7flQXtfrmYkVtl3ZdytEZkkHmWGYZRW9b4IQTQGZxhtlElA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/checkbox@3.6.3': resolution: {integrity: sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/checkbox@3.6.5': + resolution: {integrity: sha512-IXV3f9k+LtmfQLE+DKIN41Q5QB/YBLDCB1YVx5PEdRp52S9+EACD5683rjVm8NVRDwjMi2SP6RnFRk7fVb5Azg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/collections@3.10.5': resolution: {integrity: sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==} peerDependencies: @@ -1997,11 +2518,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/combobox@3.8.4': + resolution: {integrity: sha512-iLVGvKRRz0TeJXZhZyK783hveHpYA6xovOSdzSD+WGYpiPXo1QrcrNoH3AE0Z2sHtorU+8nc0j58vh5PB+m2AA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/datepicker@3.9.2': resolution: {integrity: sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/datepicker@3.9.4': + resolution: {integrity: sha512-yBdX01jn6gq4NIVvHIqdjBUPo+WN8Bujc4OnPw+ZnfA4jI0eIgq04pfZ84cp1LVXW0IB0VaCu1AlQ/kvtZjfGA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/flags@3.0.3': resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==} @@ -2055,6 +2586,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/radio@3.10.4': + resolution: {integrity: sha512-kCIc7tAl4L7Hu4Wt9l2jaa+MzYmAJm0qmC8G8yPMbExpWbLRu6J8Un80GZu+JxvzgDlqDyrVvyv9zFifwH/NkQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/select@3.6.4': resolution: {integrity: sha512-whZgF1N53D0/dS8tOFdrswB0alsk5Q5620HC3z+5f2Hpi8gwgAZ8TYa+2IcmMYRiT+bxVuvEc/NirU9yPmqGbA==} peerDependencies: @@ -2070,16 +2606,31 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/slider@3.5.4': + resolution: {integrity: sha512-Jsf7K17dr93lkNKL9ij8HUcoM1sPbq8TvmibD6DhrK9If2lje+OOL8y4n4qreUnfMT56HCAeS9wCO3fg3eMyrw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/table@3.11.6': resolution: {integrity: sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/table@3.11.8': + resolution: {integrity: sha512-EdyRW3lT1/kAVDp5FkEIi1BQ7tvmD2YgniGdLuW/l9LADo0T+oxZqruv60qpUS6sQap+59Riaxl91ClDxrJnpg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/tabs@3.6.4': resolution: {integrity: sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/tabs@3.6.6': + resolution: {integrity: sha512-sOLxorH2uqjAA+v1ppkMCc2YyjgqvSGeBDgtR/lyPSDd4CVMoTExszROX2dqG0c8il9RQvzFuufUtQWMY6PgSA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/toggle@3.7.2': resolution: {integrity: sha512-SHCF2btcoK57c4lyhucRbyPBAFpp0Pdp0vcPdn3hUgqbu6e5gE0CwG/mgFmZRAQoc7PRc7XifL0uNw8diJJI0Q==} peerDependencies: @@ -2095,6 +2646,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/tooltip@3.4.9': + resolution: {integrity: sha512-P7CDJsdoKarz32qFwf3VNS01lyC+63gXpDZG31pUu+EO5BeQd4WKN/AH1Beuswpr4GWzxzFc1aXQgERFGVzraA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/tree@3.7.6': resolution: {integrity: sha512-y8KvEoZX6+YvqjNCVGS3zA/BKw4D3XrUtUKIDme3gu5Mn6z97u+hUXKdXVCniZR7yvV3fHAIXwE5V2K8Oit4aw==} peerDependencies: @@ -2130,11 +2686,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/accordion@3.0.0-alpha.21': + resolution: {integrity: sha512-cbE06jH/ZoI+1898xd7ocQ/A/Rtkz8wTJAVOYgc8VRY1SYNQ/XZTGH5T6dD6aERAmiDwL/kjD7xhsE80DyaEKA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/breadcrumbs@3.7.3': resolution: {integrity: sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/breadcrumbs@3.7.5': + resolution: {integrity: sha512-lV9IDYsMiu2TgdMIjEmsOE0YWwjb3jhUNK1DCZZfq6uWuiHLgyx2EncazJBUWSjHJ4ta32j7xTuXch+8Ai6u/A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/button@3.9.2': resolution: {integrity: sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==} peerDependencies: @@ -2170,11 +2736,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/combobox@3.11.1': + resolution: {integrity: sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/datepicker@3.7.2': resolution: {integrity: sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/datepicker@3.7.4': + resolution: {integrity: sha512-ZfvgscvNzBJpYyVWg3nstJtA/VlWLwErwSkd1ivZYam859N30w8yH+4qoYLa6FzWLCFlrsRHyvtxlEM7lUAt5A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/dialog@3.5.10': resolution: {integrity: sha512-S9ga+edOLNLZw7/zVOnZdT5T40etpzUYBXEKdFPbxyPYnERvRxJAsC1/ASuBU9fQAXMRgLZzADWV+wJoGS/X9g==} peerDependencies: @@ -2230,11 +2806,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/progress@3.5.4': + resolution: {integrity: sha512-JNc246sTjasPyx5Dp7/s0rp3Bz4qlu4LrZTulZlxWyb53WgBNL7axc26CCi+I20rWL9+c7JjhrRxnLl/1cLN5g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/radio@3.7.1': resolution: {integrity: sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/radio@3.8.1': + resolution: {integrity: sha512-bK0gio/qj1+0Ldu/3k/s9BaOZvnnRgvFtL3u5ky479+aLG5qf1CmYed3SKz8ErZ70JkpuCSrSwSCFf0t1IHovw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/select@3.9.2': resolution: {integrity: sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==} peerDependencies: @@ -2270,11 +2856,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/table@3.9.5': + resolution: {integrity: sha512-fgM2j9F/UR4Anmd28CueghCgBwOZoCVyN8fjaIFPd2MN4gCwUUfANwxLav65gZk4BpwUXGoQdsW+X50L3555mg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/tabs@3.3.5': resolution: {integrity: sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/tabs@3.3.7': + resolution: {integrity: sha512-ZdLe5xOcFX6+/ni45Dl2jO0jFATpTnoSqj6kLIS/BYv8oh0n817OjJkLf+DS3CLfNjApJWrHqAk34xNh6nRnEg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/textfield@3.9.1': resolution: {integrity: sha512-JBHY9M2CkL6xFaGSfWmUJVu3tEK09FaeB1dU3IEh6P41xxbFnPakYHSSAdnwMXBtXPoSHIVsUBickW/pjgfe5g==} peerDependencies: @@ -2290,6 +2886,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/tooltip@3.4.9': + resolution: {integrity: sha512-wZ+uF1+Zc43qG+cOJzioBmLUNjRa7ApdcT0LI1VvaYvH5GdfjzUJOorLX9V/vAci0XMJ50UZ+qsh79aUlw2yqg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@rollup/pluginutils@5.1.0': resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} @@ -2408,55 +3009,55 @@ packages: resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} - '@storybook/addon-a11y@8.1.6': - resolution: {integrity: sha512-qmXuquveulY2eEWZPbNBXbvR4CgktQ7ZfKzNY41Y9m7qHd6wdjuS4CpcDal2pFtGStuYNnmxEOSxNKKtA1Ftlw==} + '@storybook/addon-a11y@8.2.0-alpha.9': + resolution: {integrity: sha512-O+5FQMx7FTRtA6fT5ZppsL8DS23XG+cd4Akq9MR0BUIiViHX2ZgC9dcu7o7PfMQP0TGMsp69RvvkQ3n40HPwxQ==} - '@storybook/addon-actions@8.1.6': - resolution: {integrity: sha512-EbiAdbtXN/UM4by3+qisbrQmElaIfahgNqffbst6GiCTmUCVE5if6geL1mzKd/u/rZOzx5g0EG76x8N9yDjOtg==} + '@storybook/addon-actions@8.2.0-alpha.9': + resolution: {integrity: sha512-VbuZ6XuXVPMuLVAc7qAE9S4fFWP9yTFY7djcASpWzrjHZbcbhs/ElzgV3SYc+b0Tdpx/kgfdptTAcjNe+zMQeQ==} - '@storybook/addon-backgrounds@8.1.6': - resolution: {integrity: sha512-mrBG5mkcMg6vpRUtNxyYaseD4ucrG+mZiqZnXcx8LWzwDMOd4mOODvap286z+Si0Fl1etbGDDhPU9+hV+o1arw==} + '@storybook/addon-backgrounds@8.2.0-alpha.9': + resolution: {integrity: sha512-R6qToBwCxqYKrv5Z+ajpU7wizceRcpNbrZEsxexmDOFGqmFjhmb8DbvxFxuVepF1KDcU40/w4e8Bss23wngLVQ==} - '@storybook/addon-controls@8.1.6': - resolution: {integrity: sha512-hDMsu4yRP/ySb/G7hbd7nSFhVNz+F9hnizJGJX4XGuiSx7rAEYjvfKQKkawxTP+VeAw6iZPj1fukvOrMCQ0xxQ==} + '@storybook/addon-controls@8.2.0-alpha.9': + resolution: {integrity: sha512-ERMaXs/3HRkGNs1wvaiJN8M7K256Jos+qIlfeBoTsgUBlhQF6lGaZiC6EYSQQQp9oZ7O1RXNgRXsH7fid3tlLw==} - '@storybook/addon-docs@8.1.6': - resolution: {integrity: sha512-ejTbjDhaHn6IeTma/pwn8OutDzIqbMJKNhZx24W4FE/qvYInZIK/9gYPU9/oLKZ7FImqP3s1e4+RxDBgsq21lA==} + '@storybook/addon-docs@8.2.0-alpha.9': + resolution: {integrity: sha512-MA+IqTBGU5L1z8sT6dttqntA/duXpwVwuHmuUsB2tkdiZDVjXjAuoMx7GM/ec2kG5Iny8iXjVOfYgs1G57twTg==} - '@storybook/addon-essentials@8.1.6': - resolution: {integrity: sha512-8ve9eM9dL6JsC5hV98unXtADvwyhIZoa3iWSeTicxWab49tvAfIM9ExwcWmUyPaB4m5q45jBSBXg66bzW2+TFw==} + '@storybook/addon-essentials@8.2.0-alpha.9': + resolution: {integrity: sha512-3z7x1JB+dOuRWCvPzSH+Kj+aOiX5zrLTw9IYc5XkVbjvTGfY8pTKsA0TCaZdYNRBMWJ4TQScOgjEbczWCOhOFQ==} - '@storybook/addon-highlight@8.1.6': - resolution: {integrity: sha512-QT95TS4OT0SJJVz/1m038COUdS2yWukQOwyq2rCgSM6nU3OHOPf/CldDK4Sdch7Z4jV9kRdRS0Pu4FB5SV+uOw==} + '@storybook/addon-highlight@8.2.0-alpha.9': + resolution: {integrity: sha512-pPUuzlELyT1dg1haPcK1kECMOESYFHA0ZuQyVDXbS+rhv2AkXnr5WWes+6Lqx6YV6NwxEzRTd59yOM9hRHEzBw==} - '@storybook/addon-interactions@8.1.6': - resolution: {integrity: sha512-/5i3wXuNnduTN807BNSX7nJ0a3eQPjN49yUAfLtYtIoNCEsLAza2F5yt8aadKOj1rR6xqROc7y8NMhhC5Cp50A==} + '@storybook/addon-interactions@8.2.0-alpha.9': + resolution: {integrity: sha512-55nppHDA3T/QdNLzAaGpnAqOBrszU3JRZzYjYDF+YvzII2cPCso7zfHtLwo9aAixZeRGzhh0XsB1kK6l3YOkpg==} - '@storybook/addon-links@8.1.6': - resolution: {integrity: sha512-EuSXoK+tpApjW08ZiC4yE9ePdJkIu36AFPJHA6FVierVU31klW+cbFqps88JpmALZkrlf+pzKf3uBIGLrkBSAw==} + '@storybook/addon-links@8.2.0-alpha.9': + resolution: {integrity: sha512-TtgA4UN60k8g64e6ZNBHywE6r6NWywr7Ua6yGgKESR+Bu092CCaOJOWKH6sDXP9iAu9JAs78yf04ga4XPAxlxQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta peerDependenciesMeta: react: optional: true - '@storybook/addon-measure@8.1.6': - resolution: {integrity: sha512-afG6XzClrkBQ9ZUZQs0rI9z/RYB+qhebG5k1NTCGYJnj7K4c+jso9nQ9vmypOBqlYKwTT2ZG+9xSK1/IhudEvg==} + '@storybook/addon-measure@8.2.0-alpha.9': + resolution: {integrity: sha512-NQ2nL/GJ0sveiqsqHBBBY1Zq1ueWQbro1vDlHhVRCnP1vxxHFwzoo1w/xIgdcaEXLahxjX2akJt+DogOBkmwOA==} - '@storybook/addon-outline@8.1.6': - resolution: {integrity: sha512-YjH3L4kxln0fLF77oDGJ2KF1I0RNrBQ9FRtqZkGMUbplxwYU0BBrguSgVeGxTLN1q/69LmL6wjFP4nLzqZARhA==} + '@storybook/addon-outline@8.2.0-alpha.9': + resolution: {integrity: sha512-gJzcycw99cSr47u3gs0l4UlGfXYBLDYeH6tcKs8DqWiuZit98BCi33VGVByM48RG8fwN9Yu8BJlBKyUB6I4M9Q==} - '@storybook/addon-themes@8.1.6': - resolution: {integrity: sha512-h0IwK1fIHBWBAfxWmbXoISutHWRSlQwXb7BGEAsnZ9oQ4xA0REjtpqM6o5IkDFYQtDw0YHUvmBzyHSphA9boww==} + '@storybook/addon-themes@8.2.0-alpha.9': + resolution: {integrity: sha512-ce6chsY+nANCycvFYYuPNJFEMdaMOP9yvebyTQhN6/z9YpqgNs8RvMmhNjlfD6auTDMXU2HJP4nxGhGG/5D7rg==} - '@storybook/addon-toolbars@8.1.6': - resolution: {integrity: sha512-d1GciLzD2ZRqh7+b8+JGuCdx8x/MAobhTy+jKeK79d+QKNtPhqZ1OvyUbwObgD6XLF8B/3DvyP3r52lmYMwlnQ==} + '@storybook/addon-toolbars@8.2.0-alpha.9': + resolution: {integrity: sha512-AUxD7lF4I5jQTjAjHG7pc8uDindUtT+yW/hM8Wf3TeL93hOFE0FeHRLWUHppzpmQTHR1nOjOhUGro3b1ATOrig==} - '@storybook/addon-viewport@8.1.6': - resolution: {integrity: sha512-4EpEkJW1fPqlHIqG7OQtnAaHh9DPj7k+guXpzWjVwHfF6AE0fXIg7Yx6iVDGPyKkRaagPw6nL8DOr2U8YwK4rQ==} + '@storybook/addon-viewport@8.2.0-alpha.9': + resolution: {integrity: sha512-Ny0wgqcwSQDEnMwhMJx2emNuP8LyUzBDOWyYTCDIxJZlIqcdFxYsHK6mP2RTVkx1Ynjmc2Y6b+rUbSBwwGRy0A==} - '@storybook/blocks@8.1.6': - resolution: {integrity: sha512-HBp80G9puOejqlBA0iNlV3gUxc7TkBlNIVG2rmhjcvPZUueldxTUGIGvEfTLdEM6nqzNVZT+duXwqeHHnDcynA==} + '@storybook/blocks@8.2.0-alpha.9': + resolution: {integrity: sha512-cKuQ4/M08Hp+SWoZVfHZ+AZknCvgoshu287N7I1Pl9qu4TmZEL8mAbYi4XCSquYdi1ATgbIX4pRr0c+j0XZNfA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta @@ -2466,11 +3067,11 @@ packages: react-dom: optional: true - '@storybook/builder-manager@8.1.6': - resolution: {integrity: sha512-Y5d+dikKnUuCYyh4VLEF6A+AbWughEgtipVkDKOddSTzn04trClIOKqfhQqEUObydCpgvvfdjGXJa/zDRV/UQA==} + '@storybook/builder-manager@8.2.0-alpha.9': + resolution: {integrity: sha512-SrXhRWAbgp68o2k/1YBm0ZAeGouguxVJ5fm0d7MGiiIhTa7kEUctSxsjrKWJRVdvvmITai4JZx6nDKDTjcClWA==} - '@storybook/builder-vite@8.1.6': - resolution: {integrity: sha512-xbGxI7aVMNuLcAB41Z+Vjr+M1Kznvw/jJ8HP9cfmUl1cO7ysF8R9opVG1C+kMIXUIQAVeND+DUZgmUg2zGzH6A==} + '@storybook/builder-vite@8.2.0-alpha.9': + resolution: {integrity: sha512-xQj8qyKKedkVUDhhnHX75e6fXk0gZ86EH5QCefoeXqd0DylSJKJSRGjurRfVqo3W0DiQSSeU4VpjsaKVRE/8Qg==} peerDependencies: '@preact/preset-vite': '*' typescript: '>= 4.3.x' @@ -2484,44 +3085,44 @@ packages: vite-plugin-glimmerx: optional: true - '@storybook/channels@8.1.6': - resolution: {integrity: sha512-CzDnP6qfI8OC8pGUk+wPUzLPYcKhX8XbriF2gBtwl6qVM8YfkHP2mLTiDYDwBIi0rLuUbSm/SpILXQ/ouOHOGw==} + '@storybook/channels@8.2.0-alpha.9': + resolution: {integrity: sha512-FiRosldLixA5Q4Z5aJ+Xc2LJ1+0/25syuW3x1iUraq/0StfkRE5AIm1iegbyGVWcpjSWM/XWKSjkTyGpLkhPfA==} - '@storybook/cli@8.1.6': - resolution: {integrity: sha512-xsFdBoAbo+2h/UCWuVXiH4Tu49iQ6d+3R1J8F2n4N6rAKxMqAb6fzYnH1GeRYeZk0HGqb2iNc4kBkxj0jW0rKw==} + '@storybook/cli@8.2.0-alpha.9': + resolution: {integrity: sha512-gKV2D3qlqBXISYdNTFvsmtcqRZxli7f0L5dwAX6PyLfZ/oFhAEF78I6LnVDxCbjMswum7gALHxI9fi4BGkCxNA==} hasBin: true - '@storybook/client-logger@8.1.6': - resolution: {integrity: sha512-QfSoUxS1rmrBzO7o99og9g+Gkm7sTmU5ZOpTkjszjlRqfV6/77eUnUOzUikej4LqPLmlJV5fqGuvoP0aNVksDw==} + '@storybook/client-logger@8.2.0-alpha.9': + resolution: {integrity: sha512-/qkyfSOAdLxY2tHrX7yN7favCOZm8soXoMMW3QXfewFyy6MSj5EE5RkPCTOYgsAO1e3tnbQqgAdZegdYiJ1obg==} - '@storybook/codemod@8.1.6': - resolution: {integrity: sha512-N5JeimfscAOcME7FIrTCmxcsXxow11vtmPTjYWoeLYokBodaH5RyWcyyQ5KS1ACtt+dHYoX8lepSZA5SBEzYog==} + '@storybook/codemod@8.2.0-alpha.9': + resolution: {integrity: sha512-PYDFutqQSJxKoNXBE7zf5jsDfrOqRBzD0Cj1VfifXcs3HBi1gKaHe6FPK82O+XttfR1Q7T0XMuHlkUH4qNAvXA==} - '@storybook/components@8.1.6': - resolution: {integrity: sha512-RDcSj2gBVhK/klfcXQgINtvWe5hpJ1CYUv8hrAon3fWtZmX1+IrTJTorsdISvdHQ99o0WHZ+Ouz42O0yJnHzRg==} + '@storybook/components@8.2.0-alpha.9': + resolution: {integrity: sha512-7RiGnpPINLFGrOo5ZCYgApK/DlZNbsh5gAVu8eLOsSZSmactDAlFF1Ysc5/ZozI5OlwV4/3HNlcmiCvvEpdobg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - '@storybook/core-common@8.1.6': - resolution: {integrity: sha512-OTlfJFaTOB588ibXrrFm0TAXam6E5xV1VXSjNXL+fIifx8Kjln2HNSy1JKjvcblQneYiV4J1xPCVnAIe0EGHDg==} + '@storybook/core-common@8.2.0-alpha.9': + resolution: {integrity: sha512-VytxwXo8spoNHRUJ0BhaIAy5aJuvndxIsKgbrMDy2sHhBKM8CLZWnpEIDIqeJhj2vodrJr+K7r8TBb8nzy6d2g==} peerDependencies: prettier: ^2 || ^3 peerDependenciesMeta: prettier: optional: true - '@storybook/core-events@8.1.6': - resolution: {integrity: sha512-DaIVe4TUp/7uQdSJYGmJv9S/S364tSgZ3S3dZ1vsf1rgoUbCp5kTBtcd/fcqgukMPREgCgO9oDhmemI3SLAqzw==} + '@storybook/core-events@8.2.0-alpha.9': + resolution: {integrity: sha512-PltOd1NBekk1/3yXI0OQmqD1vyc2yvotjoXJHzpwTF8RooFB04ioHWt89TyMYEiodR7r9Fbuhyr6OA/NZvDZ/A==} - '@storybook/core-server@8.1.6': - resolution: {integrity: sha512-rgkeTG8V4emzhPqjlhchsjLay0WtgK7SrXNf1X40oTJIwmbgbReLJ5EmOXBe9rhWSXJ13aKL3l6JuTLAoptSkg==} + '@storybook/core-server@8.2.0-alpha.9': + resolution: {integrity: sha512-s8TEjHaIUC56Ro5r3r/xrsUM4e+4GSRxHeVuH1vzEqas0todKwPV3w2GqFTOSSZ22BCEyeVNutQWuREZmJeffA==} - '@storybook/csf-plugin@8.1.6': - resolution: {integrity: sha512-y2OW84leoWsqfBXb7EoRy2QUmtsI3gpqYqpyD/d5K+vQ+E9CBel2WB8RPrwcYm2L88WPDaufQQDzqyB7aMx4fQ==} + '@storybook/csf-plugin@8.2.0-alpha.9': + resolution: {integrity: sha512-yz89AtNFuudp/tedrn6Vapg5/5yDSzp9HbYCkjNU0gtGkk0L2c926I7MRX6jn717AmMA4ftqv3PoSIU6ipU1wA==} - '@storybook/csf-tools@8.1.6': - resolution: {integrity: sha512-jrKfHFNhiLBhWWW4/fm2wgKEVg55e6QuYUHY16KGd7PdPuzm+2Pt7jIl5V9yIj6a59YbjeMpT6jWPKbFx2TuCw==} + '@storybook/csf-tools@8.2.0-alpha.9': + resolution: {integrity: sha512-IX6mSQ3rsOGCmr1JH9QCLKcJL9uU6zNZift+zrvbctzyVniaO6Nh8xaLPuDOZg7j1tZjVBEcjGzhJHStd8EN4Q==} '@storybook/csf@0.1.8': resolution: {integrity: sha512-Ntab9o7LjBCbFIao5l42itFiaSh/Qu+l16l/r/9qmV9LnYZkO+JQ7tzhdlwpgJfhs+B5xeejpdAtftDRyXNajw==} @@ -2529,8 +3130,8 @@ packages: '@storybook/docs-mdx@3.1.0-next.0': resolution: {integrity: sha512-t4syFIeSyufieNovZbLruPt2DmRKpbwL4fERCZ1MifWDRIORCKLc4NCEHy+IqvIqd71/SJV2k4B51nF7vlJfmQ==} - '@storybook/docs-tools@8.1.6': - resolution: {integrity: sha512-IhqQHSJ5nEBEJ162P/6/6c45toLinWpAkB7pwbAoP00djZSzfHNdQ4HfpZSGfD4GUJIvzsqMzUlyqCKLAoRPPA==} + '@storybook/docs-tools@8.2.0-alpha.9': + resolution: {integrity: sha512-0kjYPFcpbNObsYB7bTdKZW02cWcdriVZVrTF98d6NKStDyeKx1zcQSRwUsFufcEoh1LoZti7Zfqg+OH8nX/n6A==} '@storybook/global@5.0.0': resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} @@ -2542,40 +3143,40 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/instrumenter@8.1.6': - resolution: {integrity: sha512-BoNu0QaD5hhcbEVUsvmYDqUOu4HItNBMPUkj6aDCfpLxae5vstH3zsCRVqRcElbfqVhmRzD23w8+9In9M0Fajg==} + '@storybook/instrumenter@8.2.0-alpha.9': + resolution: {integrity: sha512-AW0ul1MIAOKScushKfBJFNK0CKis/zrBcDwLOjPK2z9oXd+8ElAscGIy9Z3zTIkF1h7NmBOcwsMreLxOcLlbvQ==} - '@storybook/manager-api@8.1.6': - resolution: {integrity: sha512-L/s1FdFh/P+eFmQwLtFtJHwFJrGD9H7nauaQlKJOrU3GeXfjBjtlAZQF0Q6B4ZTGxwZjQrzShpt/0yKc6gymtw==} + '@storybook/manager-api@8.2.0-alpha.9': + resolution: {integrity: sha512-/oRstgkUtlUCR9edIgldFvLsT07TfzPIvu9OORXabBrJnuh622VCiLsuae4pAFsDEPQePQ4Vkw0xe4MDCzclaA==} - '@storybook/manager@8.1.6': - resolution: {integrity: sha512-B7xc09FYHqC1sknJoWkGHBBCMQlfg7hF+4x42cGhAyYed4TeYAf7b1PDniq8L/PLbUgzTw+A62UC1fMurCcVDQ==} + '@storybook/manager@8.2.0-alpha.9': + resolution: {integrity: sha512-bFBM5A7CeAN4hLYak8rqoOLhDPNx3peoLWKn73XI+ALfZUNtLh6tVN8DpD6WBZL6q6IoRGrNIrIBoQQ5lvEJmA==} - '@storybook/node-logger@8.1.6': - resolution: {integrity: sha512-IZEiTLFHu8Oom/vdEGpisSw5CfU+cw6/fTaX1P3EVClFOWVuy8/3X5MPu4wJH3jPym6E2DBduIUFeRsiuq61gA==} + '@storybook/node-logger@8.2.0-alpha.9': + resolution: {integrity: sha512-M27kkAs10uMFQ412R9BtNAyqcvkSme4JzCcmZI1j5aYFpURAjlEChpHsDFgkh/L/+WuTga+uYUOUfzynP8ksnA==} - '@storybook/preview-api@8.1.6': - resolution: {integrity: sha512-g9EvVg/DYqmjMh1uivJBJnSIvURyuK4LLabYicQNmYdQJscAeXX2bpMcA4aeci9BBm9B2RP7JbSnq7DbXZaJYA==} + '@storybook/preview-api@8.2.0-alpha.9': + resolution: {integrity: sha512-7qxmUzRqFSzYqABWSUOwzPpSW5Id/A9z2WcZhIEeRYDYwQm27gZh/ymQ6uo5c9Sh9+K/nQZ7d8+y/aOPjk0qEA==} - '@storybook/preview@8.1.6': - resolution: {integrity: sha512-o9OgOmO10GyX1ZC7WiapYqGdst4TOCPLqWSu3H2nL4ZT7BQLUQfCy30kyoMO7KyxCgc5K5rcqG7qZ/N0tfUgRg==} + '@storybook/preview@8.2.0-alpha.9': + resolution: {integrity: sha512-KS5rq4ZsBP9RyyPWwrribu1KaoJBZKv9HgiciPxyquYP+zniItxdabNIkR8rpc3avJbef5aXbH0Weg6JMn1u2A==} - '@storybook/react-dom-shim@8.1.6': - resolution: {integrity: sha512-qP5nkAmpGFy/gshO+bVjRo1rgo/6UVDElgOd2dlUtYnfdPONiOfWko2XGYKKfxa6Cp7KU35JlZz/kHGqWG31zQ==} + '@storybook/react-dom-shim@8.2.0-alpha.9': + resolution: {integrity: sha512-GTmqAG1H7BM0cKwZ4VgaaRDa2zgAIMZ3WKM8dMyy2uvxRczvhmh1rwDXXJwgKo1CIbxNyodTpoc1KdsQluHBNQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta - '@storybook/react-vite@8.1.6': - resolution: {integrity: sha512-aUrSOVVG/11v5FBWjxyVVYtL1MhFcGFvkHcT2tTUK2lN/EMNFugL5t5YYPv0FIi/DXxg8RBdJIV9vdNCd6tNOA==} + '@storybook/react-vite@8.2.0-alpha.9': + resolution: {integrity: sha512-Z9I8nUHiPTn6BwTph3imgYm8dYMYZn9f9X62T0l0fL581wu/lTjQGN8jcQBCcATHJQgxRVpQvgVUs+MXeB+CRQ==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta vite: ^4.0.0 || ^5.0.0 - '@storybook/react@8.1.6': - resolution: {integrity: sha512-2CSc3MLeaY7QaYAQLwaXRboKkgQnWrSZAo/WTJcSHUr2YFxH5+iECB0Kci12GqaJklhhgmfTfVZ4Jo9ZJ6LQfg==} + '@storybook/react@8.2.0-alpha.9': + resolution: {integrity: sha512-p0+rXtyvmGu0o+lRVKwPSiHlwGk5jg4pFjFqyU+V6g9O3QivfYd2SW/hitllCXuSLain2qLW3SftogGysKRsQw==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta @@ -2585,17 +3186,17 @@ packages: typescript: optional: true - '@storybook/router@8.1.6': - resolution: {integrity: sha512-tvuhB2uXHEKK640Epm1SqVzPhQ9lXYfF7FX6FleJgVYEvZpJpNTD4RojedQoLI6SUUSXNy1Vs2QV26VM0XIPHQ==} + '@storybook/router@8.2.0-alpha.9': + resolution: {integrity: sha512-bR5R18u+9+1a9i51Zq7ZMVQ4sdVNBAvJ4bojWh3WsuuZcPTBnaxL3wSVJw24ZAatZ5vkfCRP/6NA5M4VoPiSwg==} - '@storybook/telemetry@8.1.6': - resolution: {integrity: sha512-qNWjQPF6ufRvLCAavulhNYoqldDIeBvioFuCjLlwbw3BZw3ck7pwh1vZg4AJ0SAfzbnpnXPGrHe31gnxV0D6tw==} + '@storybook/telemetry@8.2.0-alpha.9': + resolution: {integrity: sha512-lV1UdUafgM6FdCH1+eGdaIzZSEDBdvTV6/MlVyK/G/6r8xHxSbDMO6N2B1/H2DKSqtxoWJIo8QC/NI9Ti4ciMw==} - '@storybook/test@8.1.6': - resolution: {integrity: sha512-tyexfYPtOHP83pMHggoGdHadfqh/veLdS+APHxt12zmCNUobxOxnuWmImXThQiyLlXTWecreLvlMvgAIjziBsA==} + '@storybook/test@8.2.0-alpha.9': + resolution: {integrity: sha512-HWO8W5H6SywIhzkjcd2xBqEcYxSu91sZu0b5rNa5+7f+LaWlv/+rk/UvmsiTmylaT3M6n1pEySu3nowHuy3zvg==} - '@storybook/theming@8.1.6': - resolution: {integrity: sha512-0Cl/7/0z2WSfXhZ9XSw6rgEjb0fXac7jfktieX0vYo1YckrNpWFRQP9NCpVPAcYZaFLlRSOqYark6CLoutEsIg==} + '@storybook/theming@8.2.0-alpha.9': + resolution: {integrity: sha512-ccuVx2I0YGeeFqzMZJ6sIIG95yjSBSEcsfUnBieVrXlYTHR9VTJyUaK6OvjhG8xVigsG9V8GuI34E1Hv0xdr0A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta @@ -2605,8 +3206,8 @@ packages: react-dom: optional: true - '@storybook/types@8.1.6': - resolution: {integrity: sha512-cWpS9+x1pxCO39spR8QmumMK2ub2p5cvMtrRvWaIjBFPbCwm2CvjBXFWIra2veBCZTxUKJ9VWxvi7pzRHjN/nw==} + '@storybook/types@8.2.0-alpha.9': + resolution: {integrity: sha512-FpZjkNmdv7VwzHZFFA6+uxYRPrIbOQ05lwrVXI5sNThvAtJvuQzBLWQo3Gg0+foXdi+yjbL9TaNtT7FHt8t8Kw==} '@stylistic/eslint-plugin-js@2.1.0': resolution: {integrity: sha512-gdXUjGNSsnY6nPyqxu6lmDTtVrwCOjun4x8PUn0x04d5ucLI74N3MT1Q0UhdcOR9No3bo5PGDyBgXK+KmD787A==} @@ -2640,9 +3241,9 @@ packages: '@swc/helpers@0.5.11': resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} - '@testing-library/dom@9.3.4': - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} + '@testing-library/dom@10.1.0': + resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==} + engines: {node: '>=18'} '@testing-library/jest-dom@6.4.5': resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==} @@ -2708,9 +3309,6 @@ packages: '@types/diff@5.2.1': resolution: {integrity: sha512-uxpcuwWJGhe2AR1g8hD9F5OYGCqjqWnBUQFD8gMZsDbv8oPHzxJF6iMO6n8Tk0AdzlxoaaoQhOYlIg/PukVU8g==} - '@types/doctrine@0.0.3': - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - '@types/doctrine@0.0.9': resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} @@ -2750,6 +3348,15 @@ packages: '@types/http-errors@2.0.4': resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@1.1.2': + resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} + '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -2813,6 +3420,12 @@ packages: '@types/uuid@9.0.8': resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@13.0.12': + resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==} + '@typescript-eslint/eslint-plugin@8.0.0-alpha.13': resolution: {integrity: sha512-FQeu2HGVZ6wDAn2m6MxpS+or7LyBEjjCXnFv79aCJtcJnxtgDQa0po88GHZv1tZwzIsgxQ3bnbz4vNgbPisMbA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -2906,9 +3519,6 @@ packages: peerDependencies: vite: ^4.2.0 || ^5.0.0 - '@vitest/expect@1.3.1': - resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==} - '@vitest/expect@1.6.0': resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==} @@ -2918,15 +3528,9 @@ packages: '@vitest/snapshot@1.6.0': resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==} - '@vitest/spy@1.3.1': - resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==} - '@vitest/spy@1.6.0': resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==} - '@vitest/utils@1.3.1': - resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==} - '@vitest/utils@1.6.0': resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} @@ -2997,6 +3601,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + acorn@8.12.0: + resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} + engines: {node: '>=0.4.0'} + hasBin: true + address@1.2.2: resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} engines: {node: '>= 10.0.0'} @@ -3004,6 +3613,10 @@ packages: ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ansi-regex@4.1.1: + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} + ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -3051,16 +3664,9 @@ packages: resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} engines: {node: '>=10'} - aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} - aria-query@5.3.0: resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} - array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} - array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} @@ -3068,9 +3674,6 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} - assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} - assertion-error@1.1.0: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} @@ -3116,6 +3719,9 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601: + resolution: {integrity: sha512-t+uBHxbfxq2z4j83ZYgOsV0dlSaRgPfhrYB5+CMv6ByXUAv5wm7m7YLFx67fWKrG3eDhq3+KH1OMeFypuDLkUA==} + balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -3169,6 +3775,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.23.1: + resolution: {integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} @@ -3205,6 +3816,9 @@ packages: caniuse-lite@1.0.30001629: resolution: {integrity: sha512-c3dl911slnQhmxUIT4HhYzT7wnBK/XYpGnYLOj4nJBaRiw52Ibe7YxlDaAeRECvA786zCuExhxIUJ2K7nHMrBw==} + caniuse-lite@1.0.30001634: + resolution: {integrity: sha512-fbBYXQ9q3+yp1q1gBk86tOFs4pyn/yxFm5ZNP18OXJDfA3txImOY9PhfxVggZ4vRHDqoU8NrKU81eN0OtzOgRA==} + chai@4.4.1: resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} engines: {node: '>=4'} @@ -3311,6 +3925,10 @@ packages: resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} engines: {node: ^12.20.0 || >=14} + comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} + commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} @@ -3448,10 +4066,6 @@ packages: resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} engines: {node: '>=6'} - deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} - deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -3474,10 +4088,6 @@ packages: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} - define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} - defu@6.1.4: resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} @@ -3575,6 +4185,9 @@ packages: electron-to-chromium@1.4.796: resolution: {integrity: sha512-NglN/xprcM+SHD2XCli4oC6bWe6kHoytcyLKCWXmRL854F0qhPhaYgUswUsglnPxYaNQIg2uMY4BvaomIf3kLA==} + electron-to-chromium@1.4.803: + resolution: {integrity: sha512-61H9mLzGOCLLVsnLiRzCbc63uldP0AniRYPV3hbGVtONA1pI7qSGILdbofR7A8TMbOypDocEAjH/e+9k1QIe3g==} + emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -3608,9 +4221,6 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} - es-module-lexer@1.5.3: resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==} @@ -3791,8 +4401,8 @@ packages: flatted@3.3.1: resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} - flow-parser@0.237.2: - resolution: {integrity: sha512-mvI/kdfr3l1waaPbThPA8dJa77nHXrfZIun+SWvFwSwDjmeByU7mGJGRmv1+7guU6ccyLV8e1lqZA1lD4iMGnQ==} + flow-parser@0.238.0: + resolution: {integrity: sha512-VE7XSv1epljsIN2YeBnxCmGJihpNIAnLLu/pPOdA+Gkso7qDltJwUi6vfHjgxdBbjSdAuPGnhuOHJUQG+yYwIg==} engines: {node: '>=0.4.0'} for-each@0.3.3: @@ -3857,9 +4467,6 @@ packages: function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} @@ -3961,9 +4568,6 @@ packages: engines: {node: '>=0.4.7'} hasBin: true - has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} @@ -4063,10 +4667,6 @@ packages: inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} - internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} - intl-messageformat@10.5.14: resolution: {integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==} @@ -4085,27 +4685,16 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} - is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} - is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} is-arrayish@0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} - is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} - is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -4113,10 +4702,6 @@ packages: is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} - is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} - is-deflate@1.0.0: resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} @@ -4149,18 +4734,6 @@ packages: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} - is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} - - is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} - - is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} - is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -4177,18 +4750,6 @@ packages: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} engines: {node: '>=0.10.0'} - is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} - - is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} - - is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} - is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -4197,14 +4758,6 @@ packages: resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} - - is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} - is-typed-array@1.1.13: resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} @@ -4213,14 +4766,6 @@ packages: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} - is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} - - is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} - is-wsl@2.2.0: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} @@ -4228,9 +4773,6 @@ packages: isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} - isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -4273,6 +4815,10 @@ packages: '@babel/preset-env': optional: true + jsdoc-type-pratt-parser@4.0.0: + resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==} + engines: {node: '>=12.0.0'} + jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true @@ -4435,8 +4981,8 @@ packages: map-or-similar@1.5.0: resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} - markdown-to-jsx@7.3.2: - resolution: {integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==} + markdown-to-jsx@7.4.7: + resolution: {integrity: sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg==} engines: {node: '>= 10'} peerDependencies: react: '>= 0.14.0' @@ -4628,18 +5174,6 @@ packages: object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} - - object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} - - object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} - ohash@1.1.3: resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} @@ -5020,16 +5554,15 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - prettier@3.3.1: - resolution: {integrity: sha512-7CAwy5dRsxs8PHXT3twixW9/OEll8MLE0VRPCJyl7CkS6VHGPSlsVaWTiASPTyGyYRyApxlaWTzwUxVNrhcwDg==} - engines: {node: '>=14'} - hasBin: true - prettier@3.3.2: resolution: {integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==} engines: {node: '>=14'} hasBin: true + pretty-format@24.9.0: + resolution: {integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==} + engines: {node: '>= 6'} + pretty-format@27.5.1: resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -5115,10 +5648,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-935180c7e0-20240524: - resolution: {integrity: sha512-17SL+9qxiLUZnaBWr+mO3hpz5ncP5NbJp6jnbA6cFbsWNdV3p4s8iMVALIcfZF1zPIiWQeYrZQK/Z8GY3xjihg==} + react-dom@19.0.0-rc-fb9a90fa48-20240614: + resolution: {integrity: sha512-PoEsPe32F7KPLYOBvZfjylEI1B67N44PwY3lyvpmBkhlluLnLz0jH8q2Wg9YidAi6z0k3iUnNRm5x10wurzt9Q==} peerDependencies: - react: 19.0.0-rc-935180c7e0-20240524 + react: 19.0.0-rc-fb9a90fa48-20240614 react-element-to-jsx-string@15.0.0: resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} @@ -5192,6 +5725,10 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} + react@19.0.0-rc-fb9a90fa48-20240614: + resolution: {integrity: sha512-nvE3Gy+IOIfH/DXhkyxFVQSrITarFcQz4+shzC/McxQXEUSonpw2oDy/Wi9hdDtV3hlP12VYuDL95iiBREedNQ==} + engines: {node: '>=0.10.0'} + read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -5235,10 +5772,6 @@ packages: regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} - regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} - regexpu-core@5.3.2: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} @@ -5301,8 +5834,8 @@ packages: scheduler@0.23.2: resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} - scheduler@0.25.0-rc-935180c7e0-20240524: - resolution: {integrity: sha512-YfkorLQDTfVArSlFsSmTFMWW2CoUtNhkveeEzfbyqi5bShsEyQxAPLBGOUoBxaXEcQSJ2bXhkz3ZSTJCO/Th8A==} + scheduler@0.25.0-rc-fb9a90fa48-20240614: + resolution: {integrity: sha512-HHqQ/SqbeiDfXXVKgNxTpbQTD4n7IUb4hZATvHjp03jr3TF7igehCyHdOjeYTrzIseLO93cTTfSb5f4qWcirMQ==} scroll-into-view-if-needed@3.0.10: resolution: {integrity: sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==} @@ -5337,10 +5870,6 @@ packages: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} - set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} - setprototypeof@1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} @@ -5391,6 +5920,10 @@ packages: source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + source-map@0.5.7: + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} + source-map@0.6.1: resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} engines: {node: '>=0.10.0'} @@ -5423,15 +5956,11 @@ packages: std-env@3.7.0: resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} - stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} - store2@2.14.3: resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} - storybook@8.1.6: - resolution: {integrity: sha512-qouQEB+sSb9ktE6fGVoBy6CLEUq4NOqDUpt/EhnITaWqzUeAZSQXTcoHg9DXhTMiynnbfqsUcZuK9PZOjgt7/w==} + storybook@8.2.0-alpha.9: + resolution: {integrity: sha512-Yz6Gdpccl9OLTT2djGzoG67u+FLDttODtQo7pr5tdgS6M8CZ2H6Rt1fqqmnV5NzcJzBDnxNNqDaj4nvG+aChFA==} hasBin: true stream-shift@1.0.3: @@ -5612,6 +6141,10 @@ packages: tr46@0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + trim-right@1.0.1: + resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} + engines: {node: '>=0.10.0'} + ts-api-utils@1.3.0: resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} @@ -5673,6 +6206,9 @@ packages: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} + types-react@19.0.0-rc.1: + resolution: {integrity: sha512-RshndUfqTW6K3STLPis8BtAYCGOkMbtvYsi90gmVNDZBXUyUc5juf2PE9LfS/JmOlUIRO8cWTS/1MTnmhjDqyQ==} + typescript-eslint@8.0.0-alpha.13: resolution: {integrity: sha512-DMFKGlZTYPGrjejz1G8Cp0LuvxlelQqy1BY/T95yNVK13aVYTnDrAZ5ytW9a79OzserqBDoJnXs1AFaUqJoNEg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -5695,8 +6231,8 @@ packages: ufo@1.5.3: resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} - uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + uglify-js@3.18.0: + resolution: {integrity: sha512-SyVVbcNBCk0dzr9XL/R/ySrmYf0s372K6/hFklzgcp2lBFyXtw4I7BOdDjlLhE1aVqaI/SHWXWmYdlZxuyF38A==} engines: {node: '>=0.8.0'} hasBin: true @@ -5938,13 +6474,6 @@ packages: whatwg-url@5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} - which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - - which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} - which-typed-array@1.1.15: resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} @@ -6020,7 +6549,13 @@ packages: engines: {node: '>=8.0.0'} hasBin: true - zod-validation-error@3.3.0: + zod-validation-error@2.1.0: + resolution: {integrity: sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==} + engines: {node: '>=18.0.0'} + peerDependencies: + zod: ^3.18.0 + + zod-validation-error@3.3.0: resolution: {integrity: sha512-Syib9oumw1NTqEv4LT0e6U83Td9aVRk9iTXPUQr1otyV1PuXQKOvOwhMNqZIq5hluzHP2pMgnOmHEo7kPdI2mw==} engines: {node: '>=18.0.0'} peerDependencies: @@ -6071,6 +6606,14 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/generator@7.2.0': + dependencies: + '@babel/types': 7.24.7 + jsesc: 2.5.2 + lodash: 4.17.21 + source-map: 0.5.7 + trim-right: 1.0.1 + '@babel/generator@7.24.7': dependencies: '@babel/types': 7.24.7 @@ -7093,6 +7636,12 @@ snapshots: dependencies: '@sinclair/typebox': 0.27.8 + '@jest/types@24.9.0': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 1.1.2 + '@types/yargs': 13.0.12 + '@joshwooding/vite-plugin-react-docgen-typescript@0.3.1(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1))': dependencies: glob: 7.2.3 @@ -7173,17 +7722,17 @@ snapshots: pump: 3.0.0 tar-fs: 2.1.1 - '@nextui-org/accordion@2.0.34(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/accordion@2.0.34(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-accordion': 2.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/use-aria-accordion': 2.0.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/button': 3.9.3(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) @@ -7191,81 +7740,81 @@ snapshots: '@react-stately/tree': 3.7.6(react@18.3.1) '@react-types/accordion': 3.0.0-alpha.19(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/accordion@2.0.34(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/accordion@2.0.35(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-accordion': 2.0.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/button': 3.9.3(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-accordion': 2.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/button': 3.9.5(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/tree': 3.7.6(react@18.3.1) - '@react-types/accordion': 3.0.0-alpha.19(react@18.3.1) + '@react-stately/tree': 3.8.1(react@18.3.1) + '@react-types/accordion': 3.0.0-alpha.21(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/aria-utils@2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/aria-utils@2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-rsc-utils': 2.0.12 '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.5(react@18.3.1) '@react-stately/overlays': 3.6.5(react@18.3.1) '@react-types/overlays': 3.8.5(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@nextui-org/theme' - framer-motion - '@nextui-org/aria-utils@2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/aria-utils@2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-rsc-utils': 2.0.12 '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/collections': 3.10.5(react@18.3.1) - '@react-stately/overlays': 3.6.5(react@18.3.1) - '@react-types/overlays': 3.8.5(react@18.3.1) + '@react-stately/collections': 3.10.7(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-types/overlays': 3.8.7(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@nextui-org/theme' - framer-motion - '@nextui-org/autocomplete@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/autocomplete@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/input': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/input': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/combobox': 3.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/combobox': 3.8.4(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) @@ -7274,108 +7823,108 @@ snapshots: '@react-stately/combobox': 3.8.2(react@18.3.1) '@react-types/combobox': 3.10.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/autocomplete@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/autocomplete@2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/input': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/input': 2.2.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/listbox': 2.1.22(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.24(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/scroll-shadow': 2.1.17(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) + '@nextui-org/spinner': 2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/combobox': 3.8.4(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/combobox': 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/combobox': 3.8.2(react@18.3.1) - '@react-types/combobox': 3.10.1(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/combobox': 3.8.4(react@18.3.1) + '@react-types/combobox': 3.11.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/avatar@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/avatar@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-image': 2.0.5(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/utils': 3.23.2(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/avatar@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/avatar@2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-image': 2.0.5(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/utils': 3.23.2(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/badge@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/badge@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/badge@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/badge@2.0.29(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/breadcrumbs@2.0.9(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/breadcrumbs@2.0.10(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/breadcrumbs': 3.5.11(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/breadcrumbs': 3.5.13(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/breadcrumbs': 3.7.3(react@18.3.1) + '@react-types/breadcrumbs': 3.7.5(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@nextui-org/breadcrumbs@2.0.9(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/breadcrumbs@2.0.9(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/breadcrumbs': 3.5.11(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) @@ -7383,15 +7932,15 @@ snapshots: '@react-types/breadcrumbs': 3.7.3(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/button@2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/button@2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) '@react-aria/button': 3.9.3(react@18.3.1) @@ -7400,41 +7949,41 @@ snapshots: '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/button': 3.9.2(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/button@2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/button@2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/ripple': 2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@react-aria/button': 3.9.3(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@nextui-org/spinner': 2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) + '@react-aria/button': 3.9.5(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/button': 3.9.2(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/calendar@2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/calendar@2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@react-aria/calendar': 3.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/calendar': 3.5.6(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) @@ -7448,47 +7997,47 @@ snapshots: '@types/lodash.debounce': 4.0.9 lodash.debounce: 4.0.8 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) scroll-into-view-if-needed: 3.0.10 transitivePeerDependencies: - framer-motion - '@nextui-org/calendar@2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/calendar@2.0.7(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/button': 2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@react-aria/calendar': 3.5.6(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) + '@react-aria/calendar': 3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/calendar': 3.4.4(react@18.3.1) - '@react-stately/utils': 3.9.1(react@18.3.1) - '@react-types/button': 3.9.2(react@18.3.1) - '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/calendar': 3.5.1(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/calendar': 3.4.6(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@types/lodash.debounce': 4.0.9 lodash.debounce: 4.0.8 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) scroll-into-view-if-needed: 3.0.10 transitivePeerDependencies: - framer-motion - '@nextui-org/card@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/card@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) '@react-aria/button': 3.9.3(react@18.3.1) @@ -7496,32 +8045,32 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/card@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/card@2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/ripple': 2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@react-aria/button': 3.9.3(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) + '@react-aria/button': 3.9.5(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/checkbox@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/checkbox@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-callback-ref': 2.0.5(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) @@ -7535,120 +8084,120 @@ snapshots: '@react-types/checkbox': 3.7.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/checkbox@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/checkbox@2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-callback-ref': 2.0.5(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/checkbox': 3.14.1(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/checkbox': 3.14.3(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/checkbox': 3.6.3(react@18.3.1) - '@react-stately/toggle': 3.7.2(react@18.3.1) - '@react-types/checkbox': 3.7.1(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/checkbox': 3.6.5(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) + '@react-types/checkbox': 3.8.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/chip@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/chip@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/checkbox': 3.7.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/chip@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/chip@2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/checkbox': 3.7.1(react@18.3.1) + '@react-types/checkbox': 3.8.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/code@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/code@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/code@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/code@2.0.29(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/date-input@2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/date-input@2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/datepicker': 3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/datepicker': 3.9.3(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/utils': 3.23.2(react@18.3.1) '@react-stately/datepicker': 3.9.2(react@18.3.1) '@react-types/datepicker': 3.7.2(react@18.3.1) '@react-types/shared': 3.22.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/date-input@2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/date-input@2.1.1(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/datepicker': 3.9.3(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/utils': 3.23.2(react@18.3.1) - '@react-stately/datepicker': 3.9.2(react@18.3.1) - '@react-types/datepicker': 3.7.2(react@18.3.1) - '@react-types/shared': 3.22.1(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/datepicker': 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/datepicker': 3.9.4(react@18.3.1) + '@react-types/datepicker': 3.7.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/date-picker@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/date-picker@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/calendar': 2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/date-input': 2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/calendar': 2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/date-input': 2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/datepicker': 3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/datepicker': 3.9.3(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/utils': 3.23.2(react@18.3.1) '@react-stately/datepicker': 3.9.2(react@18.3.1) @@ -7657,39 +8206,39 @@ snapshots: '@react-types/datepicker': 3.7.2(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@types/react' - framer-motion - '@nextui-org/date-picker@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/date-picker@2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/calendar': 2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/date-input': 2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/calendar': 2.0.7(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/date-input': 2.1.1(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.24(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/datepicker': 3.9.3(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/utils': 3.23.2(react@18.3.1) - '@react-stately/datepicker': 3.9.2(react@18.3.1) - '@react-stately/overlays': 3.6.5(react@18.3.1) - '@react-stately/utils': 3.9.1(react@18.3.1) - '@react-types/datepicker': 3.7.2(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/datepicker': 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/datepicker': 3.9.4(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/datepicker': 3.7.4(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - framer-motion - '@nextui-org/divider@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/divider@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-rsc-utils': 2.0.12 '@nextui-org/shared-utils': 2.0.5 @@ -7697,106 +8246,106 @@ snapshots: '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-types/shared': 3.22.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/divider@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/divider@2.0.28(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-rsc-utils': 2.0.12 '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@react-types/shared': 3.22.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/dropdown@2.1.25(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/dropdown@2.1.25(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/menu': 2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/menu': 2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/menu': 3.6.1(react@18.3.1) '@react-types/menu': 3.9.7(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/dropdown@2.1.25(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/dropdown@2.1.26(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/menu': 2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/menu': 2.0.25(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.24(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/menu': 3.6.1(react@18.3.1) - '@react-types/menu': 3.9.7(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-stately/menu': 3.7.1(react@18.3.1) + '@react-types/menu': 3.9.9(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/framer-utils@2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/framer-utils@2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/use-measure': 2.0.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@nextui-org/theme' - '@nextui-org/framer-utils@2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/framer-utils@2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@nextui-org/use-measure': 2.0.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@nextui-org/theme' - '@nextui-org/image@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/image@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-image': 2.0.5(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/image@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/image@2.0.29(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-image': 2.0.5(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/input@2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/input@2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) @@ -7807,33 +8356,33 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@react-types/textfield': 3.9.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/input@2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/input@2.2.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/textfield': 3.14.3(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/textfield': 3.14.5(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/utils': 3.9.1(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - '@react-types/textfield': 3.9.1(react@18.3.1) + '@react-types/textfield': 3.9.3(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/kbd@2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/kbd@2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 @@ -7841,24 +8390,24 @@ snapshots: '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/utils': 3.23.2(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/kbd@2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/kbd@2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/utils': 3.23.2(react@18.3.1) + '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/utils': 3.24.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/link@2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/link@2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-link': 2.0.17(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) @@ -7866,205 +8415,205 @@ snapshots: '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/link': 3.5.3(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/link@2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/link@2.0.32(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-link': 2.0.17(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-link': 2.0.18(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/link': 3.7.1(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/link': 3.5.3(react@18.3.1) + '@react-types/link': 3.5.5(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/listbox@2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/listbox@2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-is-mobile': 2.0.7(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/listbox': 3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/listbox': 3.11.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/list': 3.10.3(react@18.3.1) '@react-types/menu': 3.9.7(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - framer-motion - '@nextui-org/listbox@2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/listbox@2.1.22(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-is-mobile': 2.0.7(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/listbox': 3.11.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-is-mobile': 2.0.8(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/list': 3.10.3(react@18.3.1) - '@react-types/menu': 3.9.7(react@18.3.1) + '@react-stately/list': 3.10.5(react@18.3.1) + '@react-types/menu': 3.9.9(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - framer-motion - '@nextui-org/menu@2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/menu@2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-menu': 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/use-aria-menu': 2.0.4(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/use-is-mobile': 2.0.7(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/menu': 3.6.1(react@18.3.1) '@react-stately/tree': 3.7.6(react@18.3.1) '@react-types/menu': 3.9.7(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - framer-motion - '@nextui-org/menu@2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/menu@2.0.25(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-menu': 2.0.4(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/use-is-mobile': 2.0.7(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-menu': 2.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/use-is-mobile': 2.0.8(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/menu': 3.6.1(react@18.3.1) - '@react-stately/tree': 3.7.6(react@18.3.1) - '@react-types/menu': 3.9.7(react@18.3.1) + '@react-stately/menu': 3.7.1(react@18.3.1) + '@react-stately/tree': 3.8.1(react@18.3.1) + '@react-types/menu': 3.9.9(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - framer-motion - '@nextui-org/modal@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/modal@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@nextui-org/use-aria-modal-overlay': 2.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/use-aria-modal-overlay': 2.0.9(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/use-disclosure': 2.0.8(react@18.3.1) - '@react-aria/dialog': 3.5.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/dialog': 3.5.12(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/overlays': 3.6.5(react@18.3.1) '@react-types/overlays': 3.8.5(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/modal@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/modal@2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@nextui-org/use-aria-modal-overlay': 2.0.9(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/use-disclosure': 2.0.8(react@18.3.1) - '@react-aria/dialog': 3.5.12(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) + '@nextui-org/use-aria-modal-overlay': 2.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/use-disclosure': 2.0.9(react@18.3.1) + '@react-aria/dialog': 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/overlays': 3.6.5(react@18.3.1) - '@react-types/overlays': 3.8.5(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-types/overlays': 3.8.7(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/navbar@2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/navbar@2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-toggle-button': 2.0.8(react@18.3.1) '@nextui-org/use-scroll-position': 2.0.6(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/toggle': 3.7.2(react@18.3.1) '@react-stately/utils': 3.9.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/navbar@2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/navbar@2.0.33(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-toggle-button': 2.0.8(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-toggle-button': 2.0.9(react@18.3.1) '@nextui-org/use-scroll-position': 2.0.6(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/toggle': 3.7.2(react@18.3.1) - '@react-stately/utils': 3.9.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/pagination@2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/pagination@2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-pagination': 2.0.6(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) @@ -8072,82 +8621,82 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) scroll-into-view-if-needed: 3.0.10 - '@nextui-org/pagination@2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/pagination@2.0.33(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-pagination': 2.0.6(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-pagination': 2.0.7(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) scroll-into-view-if-needed: 3.0.10 - '@nextui-org/popover@2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/popover@2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/dialog': 3.5.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/dialog': 3.5.12(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/overlays': 3.6.5(react@18.3.1) '@react-types/button': 3.9.2(react@18.3.1) '@react-types/overlays': 3.8.5(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/popover@2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/popover@2.1.24(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/dialog': 3.5.12(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/dialog': 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/overlays': 3.6.5(react@18.3.1) - '@react-types/button': 3.9.2(react@18.3.1) - '@react-types/overlays': 3.8.5(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/overlays': 3.8.7(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/progress@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/progress@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-is-mounted': 2.0.5(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) @@ -8155,27 +8704,27 @@ snapshots: '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/progress': 3.5.2(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/progress@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/progress@2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-is-mounted': 2.0.5(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/progress': 3.4.11(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/progress': 3.4.13(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/progress': 3.5.2(react@18.3.1) + '@react-types/progress': 3.5.4(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/radio@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/radio@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) @@ -8186,24 +8735,24 @@ snapshots: '@react-types/radio': 3.7.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/radio@2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/radio@2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/radio': 3.10.2(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/radio': 3.10.4(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/radio': 3.10.2(react@18.3.1) - '@react-types/radio': 3.7.1(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/radio': 3.10.4(react@18.3.1) + '@react-types/radio': 3.8.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@nextui-org/react-rsc-utils@2.0.12': {} @@ -8213,166 +8762,172 @@ snapshots: '@nextui-org/shared-utils': 2.0.5 react: 18.3.1 - '@nextui-org/react@2.4.1(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4)': - dependencies: - '@nextui-org/accordion': 2.0.34(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/autocomplete': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/avatar': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/badge': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/breadcrumbs': 2.0.9(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/calendar': 2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/card': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/checkbox': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/chip': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/code': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/date-input': 2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/date-picker': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/dropdown': 2.1.25(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/image': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/input': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/kbd': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/link': 2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/menu': 2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/modal': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/navbar': 2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/pagination': 2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/progress': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/radio': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/select': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/skeleton': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/slider': 2.2.11(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/snippet': 2.0.37(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/spacer': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/switch': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/table': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/tabs': 2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils@2.0.14(react@18.3.1)': + dependencies: + '@nextui-org/react-rsc-utils': 2.0.12 + '@nextui-org/shared-utils': 2.0.5 + react: 18.3.1 + + '@nextui-org/react@2.4.1(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4)': + dependencies: + '@nextui-org/accordion': 2.0.34(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/autocomplete': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/avatar': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/badge': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/breadcrumbs': 2.0.9(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/calendar': 2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/card': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/checkbox': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/chip': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/code': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/date-input': 2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/date-picker': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/dropdown': 2.1.25(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/image': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/input': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/kbd': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/link': 2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/menu': 2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/modal': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/navbar': 2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/pagination': 2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/progress': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/radio': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/select': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/skeleton': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/slider': 2.2.11(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/snippet': 2.0.37(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/spacer': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/switch': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/table': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/tabs': 2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/user': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/user': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@types/react' - tailwindcss - '@nextui-org/react@2.4.1(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4)': - dependencies: - '@nextui-org/accordion': 2.0.34(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/autocomplete': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/avatar': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/badge': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/breadcrumbs': 2.0.9(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/calendar': 2.0.6(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/card': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/checkbox': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/chip': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/code': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/date-input': 2.1.0(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/date-picker': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/dropdown': 2.1.25(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/image': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/input': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/kbd': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/link': 2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/menu': 2.0.24(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/modal': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/navbar': 2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/pagination': 2.0.32(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/progress': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/radio': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/ripple': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/select': 2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/skeleton': 2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/slider': 2.2.11(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/snippet': 2.0.37(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/spacer': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/switch': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/table': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/tabs': 2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/user': 2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/react@2.4.2(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.4)': + dependencies: + '@nextui-org/accordion': 2.0.35(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/autocomplete': 2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/avatar': 2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/badge': 2.0.29(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/breadcrumbs': 2.0.10(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/calendar': 2.0.7(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/card': 2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/checkbox': 2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/chip': 2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/code': 2.0.29(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/date-input': 2.1.1(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/date-picker': 2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/divider': 2.0.28(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/dropdown': 2.1.26(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/image': 2.0.29(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/input': 2.2.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/kbd': 2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/link': 2.0.32(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/listbox': 2.1.22(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/menu': 2.0.25(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/modal': 2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/navbar': 2.0.33(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/pagination': 2.0.33(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.24(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/progress': 2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/radio': 2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/ripple': 2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/scroll-shadow': 2.1.17(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/select': 2.2.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/skeleton': 2.0.29(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/slider': 2.2.12(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/snippet': 2.0.38(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/spacer': 2.0.29(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/spinner': 2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/switch': 2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/table': 2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/tabs': 2.0.32(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/tooltip': 2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/user': 2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - tailwindcss - '@nextui-org/ripple@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/ripple@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/ripple@2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/ripple@2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/scroll-shadow@2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/scroll-shadow@2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-data-scroll-overflow': 2.1.4(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/scroll-shadow@2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/scroll-shadow@2.1.17(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-data-scroll-overflow': 2.1.4(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/select@2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/select@2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@nextui-org/use-aria-multiselect': 2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/use-aria-multiselect': 2.2.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/form': 3.0.3(react@18.3.1) @@ -8380,36 +8935,36 @@ snapshots: '@react-aria/utils': 3.24.1(react@18.3.1) '@react-aria/visually-hidden': 3.8.10(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@nextui-org/select@2.2.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/select@2.2.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/listbox': 2.1.21(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/popover': 2.1.23(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/listbox': 2.1.22(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/popover': 2.1.24(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(@types/react@18.3.3)(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/scroll-shadow': 2.1.17(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spinner': 2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/use-aria-button': 2.0.8(react@18.3.1) - '@nextui-org/use-aria-multiselect': 2.2.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/spinner': 2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) + '@nextui-org/use-aria-multiselect': 2.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/form': 3.0.3(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/form': 3.0.5(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' @@ -8417,33 +8972,37 @@ snapshots: dependencies: react: 18.3.1 + '@nextui-org/shared-icons@2.0.8(react@18.3.1)': + dependencies: + react: 18.3.1 + '@nextui-org/shared-utils@2.0.5': {} - '@nextui-org/skeleton@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/skeleton@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/skeleton@2.0.28(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/skeleton@2.0.29(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/slider@2.2.11(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/slider@2.2.11(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) @@ -8452,102 +9011,102 @@ snapshots: '@react-aria/visually-hidden': 3.8.10(react@18.3.1) '@react-stately/slider': 3.5.2(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - framer-motion - '@nextui-org/slider@2.2.11(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/slider@2.2.12(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/slider': 3.7.6(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/tooltip': 2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/slider': 3.7.8(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/slider': 3.5.2(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/slider': 3.5.4(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - framer-motion - '@nextui-org/snippet@2.0.37(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/snippet@2.0.37(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/use-clipboard': 2.0.5(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/utils': 3.23.2(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/snippet@2.0.37(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/snippet@2.0.38(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/button': 2.0.33(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/button': 2.0.34(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@nextui-org/tooltip': 2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@nextui-org/tooltip': 2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@nextui-org/use-clipboard': 2.0.5(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/utils': 3.23.2(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/spacer@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/spacer@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/spacer@2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/spacer@2.0.29(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/spinner@2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/spinner@2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/spinner@2.0.29(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/spinner@2.0.30(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/switch@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/switch@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) @@ -8558,24 +9117,24 @@ snapshots: '@react-stately/toggle': 3.7.2(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/switch@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/switch@2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/switch': 3.6.2(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/switch': 3.6.4(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/toggle': 3.7.2(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@nextui-org/system-rsc@2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1)': dependencies: @@ -8583,48 +9142,54 @@ snapshots: clsx: 1.2.1 react: 18.3.1 - '@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/system-rsc@2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1)': + dependencies: + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + clsx: 1.2.1 + react: 18.3.1 + + '@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/utils': 3.9.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) transitivePeerDependencies: - '@nextui-org/theme' - '@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/system-rsc': 2.1.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/utils': 3.9.1(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@nextui-org/theme' - '@nextui-org/table@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/table@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/checkbox': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/checkbox': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-icons': 2.0.7(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spacer': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/spacer': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/table': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/table': 3.13.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-aria/visually-hidden': 3.8.10(react@18.3.1) '@react-stately/table': 3.11.6(react@18.3.1) @@ -8632,71 +9197,71 @@ snapshots: '@react-types/grid': 3.2.4(react@18.3.1) '@react-types/table': 3.9.3(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/table@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/table@2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/checkbox': 2.1.1(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) - '@nextui-org/shared-icons': 2.0.7(react@18.3.1) + '@nextui-org/checkbox': 2.1.2(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) + '@nextui-org/shared-icons': 2.0.8(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/spacer': 2.0.28(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/table': 3.13.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@nextui-org/spacer': 2.0.29(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/table': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/table': 3.11.6(react@18.3.1) - '@react-stately/virtualizer': 3.6.8(react@18.3.1) - '@react-types/grid': 3.2.4(react@18.3.1) - '@react-types/table': 3.9.3(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) + '@react-stately/table': 3.11.8(react@18.3.1) + '@react-stately/virtualizer': 3.7.1(react@18.3.1) + '@react-types/grid': 3.2.6(react@18.3.1) + '@react-types/table': 3.9.5(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/tabs@2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/tabs@2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-is-mounted': 2.0.5(react@18.3.1) '@nextui-org/use-update-effect': 2.0.5(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/tabs': 3.8.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/tabs': 3.8.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/tabs': 3.6.4(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@react-types/tabs': 3.3.5(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) scroll-into-view-if-needed: 3.0.10 - '@nextui-org/tabs@2.0.31(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/tabs@2.0.32(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-is-mounted': 2.0.5(react@18.3.1) '@nextui-org/use-update-effect': 2.0.5(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/tabs': 3.8.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/tabs': 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/tabs': 3.6.4(react@18.3.1) + '@react-stately/tabs': 3.6.6(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - '@react-types/tabs': 3.3.5(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-types/tabs': 3.3.7(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) scroll-into-view-if-needed: 3.0.10 '@nextui-org/theme@2.2.5(tailwindcss@3.4.4)': @@ -8715,51 +9280,67 @@ snapshots: tailwind-variants: 0.1.20(tailwindcss@3.4.4) tailwindcss: 3.4.4 - '@nextui-org/tooltip@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/theme@2.2.6(tailwindcss@3.4.4)': + dependencies: + clsx: 1.2.1 + color: 4.2.3 + color2k: 2.0.3 + deepmerge: 4.3.1 + flat: 5.0.2 + lodash.foreach: 4.5.0 + lodash.get: 4.4.2 + lodash.kebabcase: 4.1.1 + lodash.mapkeys: 4.6.0 + lodash.omit: 4.5.0 + tailwind-merge: 1.14.0 + tailwind-variants: 0.1.20(tailwindcss@3.4.4) + tailwindcss: 3.4.4 + + '@nextui-org/tooltip@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/tooltip': 3.7.2(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/tooltip': 3.4.7(react@18.3.1) '@react-types/overlays': 3.8.5(react@18.3.1) '@react-types/tooltip': 3.4.7(react@18.3.1) - framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/tooltip@2.0.35(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/tooltip@2.0.36(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/aria-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/framer-utils': 2.0.20(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/aria-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/framer-utils': 2.0.21(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/tooltip': 3.7.2(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/tooltip': 3.7.4(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/tooltip': 3.4.7(react@18.3.1) - '@react-types/overlays': 3.8.5(react@18.3.1) - '@react-types/tooltip': 3.4.7(react@18.3.1) - framer-motion: 11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-stately/tooltip': 3.4.9(react@18.3.1) + '@react-types/overlays': 3.8.7(react@18.3.1) + '@react-types/tooltip': 3.4.9(react@18.3.1) + framer-motion: 11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/use-aria-accordion@2.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-accordion@2.0.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/button': 3.9.3(react@18.3.1) '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/tree': 3.7.6(react@18.3.1) '@react-types/accordion': 3.0.0-alpha.19(react@18.3.1) @@ -8768,14 +9349,14 @@ snapshots: transitivePeerDependencies: - react-dom - '@nextui-org/use-aria-accordion@2.0.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-accordion@2.0.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/button': 3.9.3(react@18.3.1) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/selection': 3.17.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/button': 3.9.5(react@18.3.1) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/tree': 3.7.6(react@18.3.1) - '@react-types/accordion': 3.0.0-alpha.19(react@18.3.1) + '@react-stately/tree': 3.8.1(react@18.3.1) + '@react-types/accordion': 3.0.0-alpha.21(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 transitivePeerDependencies: @@ -8790,69 +9371,87 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@nextui-org/use-aria-button@2.0.9(react@18.3.1)': + dependencies: + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@nextui-org/use-aria-link@2.0.17(react@18.3.1)': dependencies: - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/focus': 3.16.2(react@18.3.1) + '@react-aria/interactions': 3.21.1(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-types/link': 3.5.3(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + + '@nextui-org/use-aria-link@2.0.18(react@18.3.1)': + dependencies: + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-types/link': 3.5.3(react@18.3.1) + '@react-types/link': 3.5.5(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - '@nextui-org/use-aria-menu@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-menu@2.0.4(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.5(react@18.3.1) '@react-stately/tree': 3.7.6(react@18.3.1) '@react-types/menu': 3.9.7(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/use-aria-menu@2.0.4(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-menu@2.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.17.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/collections': 3.10.5(react@18.3.1) - '@react-stately/tree': 3.7.6(react@18.3.1) - '@react-types/menu': 3.9.7(react@18.3.1) + '@react-stately/collections': 3.10.7(react@18.3.1) + '@react-stately/tree': 3.8.1(react@18.3.1) + '@react-types/menu': 3.9.9(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@nextui-org/use-aria-modal-overlay@2.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-modal-overlay@2.0.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/overlays': 3.6.5(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@nextui-org/use-aria-modal-overlay@2.0.9(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-modal-overlay@2.0.9(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/overlays': 3.6.5(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/use-aria-multiselect@2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-multiselect@2.2.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/interactions': 3.21.1(react@18.3.1) '@react-aria/label': 3.7.6(react@18.3.1) - '@react-aria/listbox': 3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/listbox': 3.11.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.17.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/form': 3.0.1(react@18.3.1) '@react-stately/list': 3.10.3(react@18.3.1) @@ -8862,26 +9461,26 @@ snapshots: '@react-types/select': 3.9.2(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/use-aria-multiselect@2.2.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/use-aria-multiselect@2.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/interactions': 3.21.1(react@18.3.1) - '@react-aria/label': 3.7.6(react@18.3.1) - '@react-aria/listbox': 3.11.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/menu': 3.13.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.17.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/label': 3.7.8(react@18.3.1) + '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/form': 3.0.1(react@18.3.1) - '@react-stately/list': 3.10.3(react@18.3.1) - '@react-stately/menu': 3.6.1(react@18.3.1) - '@react-types/button': 3.9.2(react@18.3.1) - '@react-types/overlays': 3.8.5(react@18.3.1) - '@react-types/select': 3.9.2(react@18.3.1) + '@react-stately/form': 3.0.3(react@18.3.1) + '@react-stately/list': 3.10.5(react@18.3.1) + '@react-stately/menu': 3.7.1(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/overlays': 3.8.7(react@18.3.1) + '@react-types/select': 3.9.4(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@nextui-org/use-aria-toggle-button@2.0.8(react@18.3.1)': dependencies: @@ -8892,6 +9491,15 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@nextui-org/use-aria-toggle-button@2.0.9(react@18.3.1)': + dependencies: + '@nextui-org/use-aria-button': 2.0.9(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@nextui-org/use-callback-ref@2.0.5(react@18.3.1)': dependencies: '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) @@ -8913,6 +9521,13 @@ snapshots: '@react-stately/utils': 3.9.1(react@18.3.1) react: 18.3.1 + '@nextui-org/use-disclosure@2.0.9(react@18.3.1)': + dependencies: + '@nextui-org/use-callback-ref': 2.0.5(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + react: 18.3.1 + '@nextui-org/use-image@2.0.5(react@18.3.1)': dependencies: '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.1) @@ -8923,6 +9538,11 @@ snapshots: '@react-aria/ssr': 3.9.4(react@18.3.1) react: 18.3.1 + '@nextui-org/use-is-mobile@2.0.8(react@18.3.1)': + dependencies: + '@react-aria/ssr': 3.9.4(react@18.3.1) + react: 18.3.1 + '@nextui-org/use-is-mounted@2.0.5(react@18.3.1)': dependencies: react: 18.3.1 @@ -8937,6 +9557,12 @@ snapshots: '@react-aria/i18n': 3.10.2(react@18.3.1) react: 18.3.1 + '@nextui-org/use-pagination@2.0.7(react@18.3.1)': + dependencies: + '@nextui-org/shared-utils': 2.0.5 + '@react-aria/i18n': 3.11.1(react@18.3.1) + react: 18.3.1 + '@nextui-org/use-safe-layout-effect@2.0.5(react@18.3.1)': dependencies: react: 18.3.1 @@ -8949,29 +9575,29 @@ snapshots: dependencies: react: 18.3.1 - '@nextui-org/user@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@nextui-org/user@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/avatar': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/avatar': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/react-utils': 2.0.13(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) '@react-aria/focus': 3.16.2(react@18.3.1) '@react-aria/utils': 3.23.2(react@18.3.1) react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@nextui-org/user@2.0.30(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@nextui-org/user@2.0.31(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@nextui-org/avatar': 2.0.29(@nextui-org/system@2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/react-utils': 2.0.13(react@18.3.1) + '@nextui-org/avatar': 2.0.30(@nextui-org/system@2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/react-utils': 2.0.14(react@18.3.1) '@nextui-org/shared-utils': 2.0.5 - '@nextui-org/system': 2.2.1(@nextui-org/theme@2.2.5(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1))(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@nextui-org/theme': 2.2.5(tailwindcss@3.4.4) - '@react-aria/focus': 3.16.2(react@18.3.1) - '@react-aria/utils': 3.23.2(react@18.3.1) + '@nextui-org/system': 2.2.2(@nextui-org/theme@2.2.6(tailwindcss@3.4.4))(framer-motion@11.2.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@nextui-org/theme': 2.2.6(tailwindcss@3.4.4) + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@nodelib/fs.scandir@2.1.5': dependencies: @@ -9149,6 +9775,16 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-aria/breadcrumbs@3.5.13(react@18.3.1)': + dependencies: + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/link': 3.7.1(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-types/breadcrumbs': 3.7.5(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-aria/button@3.9.3(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) @@ -9160,7 +9796,18 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 - '@react-aria/calendar@3.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/button@3.9.5(react@18.3.1)': + dependencies: + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + + '@react-aria/calendar@3.5.6(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 '@react-aria/i18n': 3.10.2(react@18.3.1) @@ -9173,22 +9820,22 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/calendar@3.5.6(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/calendar@3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 - '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/live-announcer': 3.3.4 '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/calendar': 3.4.4(react@18.3.1) - '@react-types/button': 3.9.2(react@18.3.1) - '@react-types/calendar': 3.4.4(react@18.3.1) + '@react-stately/calendar': 3.5.1(react@18.3.1) + '@react-types/button': 3.9.4(react@18.3.1) + '@react-types/calendar': 3.4.6(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@react-aria/checkbox@3.14.1(react@18.3.1)': dependencies: @@ -9205,14 +9852,29 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 - '@react-aria/combobox@3.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/checkbox@3.14.3(react@18.3.1)': + dependencies: + '@react-aria/form': 3.0.5(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/label': 3.7.8(react@18.3.1) + '@react-aria/toggle': 3.10.4(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/checkbox': 3.6.5(react@18.3.1) + '@react-stately/form': 3.0.3(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) + '@react-types/checkbox': 3.8.1(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + + '@react-aria/combobox@3.8.4(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/listbox': 3.12.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/live-announcer': 3.3.4 - '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.14.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/textfield': 3.14.5(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) @@ -9223,52 +9885,52 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/combobox@3.8.4(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/combobox@3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.3.1) - '@react-aria/listbox': 3.12.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/live-announcer': 3.3.4 - '@react-aria/menu': 3.14.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/textfield': 3.14.5(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) - '@react-stately/combobox': 3.8.2(react@18.3.1) + '@react-stately/combobox': 3.8.4(react@18.3.1) '@react-stately/form': 3.0.3(react@18.3.1) '@react-types/button': 3.9.4(react@18.3.1) - '@react-types/combobox': 3.10.1(react@18.3.1) + '@react-types/combobox': 3.11.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@react-aria/datepicker@3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/datepicker@3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 '@internationalized/number': 3.5.3 '@internationalized/string': 3.2.3 '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/form': 3.0.5(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/label': 3.7.8(react@18.3.1) '@react-aria/spinbutton': 3.6.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/datepicker': 3.9.2(react@18.3.1) + '@react-stately/datepicker': 3.9.4(react@18.3.1) '@react-stately/form': 3.0.3(react@18.3.1) '@react-types/button': 3.9.4(react@18.3.1) '@react-types/calendar': 3.4.6(react@18.3.1) - '@react-types/datepicker': 3.7.2(react@18.3.1) + '@react-types/datepicker': 3.7.4(react@18.3.1) '@react-types/dialog': 3.5.10(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/datepicker@3.9.3(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/datepicker@3.9.3(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 '@internationalized/number': 3.5.3 @@ -9278,7 +9940,7 @@ snapshots: '@react-aria/i18n': 3.10.2(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/label': 3.7.8(react@18.3.1) - '@react-aria/spinbutton': 3.6.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/spinbutton': 3.6.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/datepicker': 3.9.2(react@18.3.1) '@react-stately/form': 3.0.3(react@18.3.1) @@ -9289,29 +9951,29 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/dialog@3.5.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/dialog@3.5.12(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/dialog': 3.5.10(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/dialog@3.5.12(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/dialog@3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/overlays': 3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-types/dialog': 3.5.10(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@react-aria/focus@3.16.2(react@18.3.1)': dependencies: @@ -9368,13 +10030,13 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/grid@3.9.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/grid@3.9.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/live-announcer': 3.3.4 - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) '@react-stately/grid': 3.8.7(react@18.3.1) @@ -9385,7 +10047,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/i18n@3.10.2(react@18.3.1)': dependencies: @@ -9451,25 +10113,11 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 - '@react-aria/listbox@3.11.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@react-aria/interactions': 3.21.3(react@18.3.1) - '@react-aria/label': 3.7.8(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/collections': 3.10.7(react@18.3.1) - '@react-stately/list': 3.10.3(react@18.3.1) - '@react-types/listbox': 3.4.9(react@18.3.1) - '@react-types/shared': 3.23.1(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@react-aria/listbox@3.11.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/listbox@3.11.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/label': 3.7.8(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) '@react-stately/list': 3.10.3(react@18.3.1) @@ -9477,7 +10125,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/listbox@3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -9493,11 +10141,11 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/listbox@3.12.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/listbox@3.12.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/label': 3.7.8(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) '@react-stately/list': 3.10.5(react@18.3.1) @@ -9505,37 +10153,19 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/live-announcer@3.3.4': dependencies: '@swc/helpers': 0.5.11 - '@react-aria/menu@3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/i18n': 3.11.1(react@18.3.1) - '@react-aria/interactions': 3.21.3(react@18.3.1) - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/collections': 3.10.7(react@18.3.1) - '@react-stately/menu': 3.6.1(react@18.3.1) - '@react-stately/tree': 3.7.6(react@18.3.1) - '@react-types/button': 3.9.4(react@18.3.1) - '@react-types/menu': 3.9.7(react@18.3.1) - '@react-types/shared': 3.23.1(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - - '@react-aria/menu@3.13.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/menu@3.13.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) - '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) '@react-stately/menu': 3.6.1(react@18.3.1) @@ -9545,7 +10175,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/menu@3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -9565,13 +10195,13 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/menu@3.14.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/menu@3.14.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) - '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) '@react-stately/menu': 3.7.1(react@18.3.1) @@ -9581,25 +10211,9 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) - - '@react-aria/overlays@3.21.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/i18n': 3.11.1(react@18.3.1) - '@react-aria/interactions': 3.21.3(react@18.3.1) - '@react-aria/ssr': 3.9.4(react@18.3.1) - '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) - '@react-stately/overlays': 3.6.5(react@18.3.1) - '@react-types/button': 3.9.4(react@18.3.1) - '@react-types/overlays': 3.8.5(react@18.3.1) - '@react-types/shared': 3.23.1(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/overlays@3.21.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/overlays@3.21.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) @@ -9613,7 +10227,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/overlays@3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -9631,7 +10245,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/overlays@3.22.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/overlays@3.22.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) @@ -9645,7 +10259,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/progress@3.4.11(react@18.3.1)': dependencies: @@ -9657,6 +10271,16 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-aria/progress@3.4.13(react@18.3.1)': + dependencies: + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/label': 3.7.8(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-types/progress': 3.5.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-aria/radio@3.10.2(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) @@ -9671,19 +10295,21 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 - '@react-aria/selection@3.17.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/radio@3.10.4(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/i18n': 3.10.2(react@18.3.1) + '@react-aria/form': 3.0.5(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/label': 3.7.8(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/selection': 3.15.1(react@18.3.1) + '@react-stately/radio': 3.10.4(react@18.3.1) + '@react-types/radio': 3.8.1(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - '@react-aria/selection@3.17.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/selection@3.17.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.10.2(react@18.3.1) @@ -9693,7 +10319,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/selection@3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -9707,7 +10333,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/selection@3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/selection@3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) @@ -9717,7 +10343,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/slider@3.7.6(react@18.3.1)': dependencies: @@ -9732,6 +10358,19 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-aria/slider@3.7.8(react@18.3.1)': + dependencies: + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/i18n': 3.11.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/label': 3.7.8(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/slider': 3.5.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@react-types/slider': 3.7.3(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-aria/spinbutton@3.6.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/i18n': 3.11.1(react@18.3.1) @@ -9743,7 +10382,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@react-aria/spinbutton@3.6.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/spinbutton@3.6.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/live-announcer': 3.3.4 @@ -9752,7 +10391,7 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) '@react-aria/ssr@3.9.4(react@18.3.1)': dependencies: @@ -9767,10 +10406,18 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 - '@react-aria/table@3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/switch@3.6.4(react@18.3.1)': + dependencies: + '@react-aria/toggle': 3.10.4(react@18.3.1) + '@react-stately/toggle': 3.7.4(react@18.3.1) + '@react-types/switch': 3.5.3(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + + '@react-aria/table@3.13.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/grid': 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/grid': 3.9.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/live-announcer': 3.3.4 @@ -9786,54 +10433,54 @@ snapshots: '@react-types/table': 3.9.3(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/table@3.13.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/table@3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) - '@react-aria/grid': 3.9.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/grid': 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@react-aria/live-announcer': 3.3.4 '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-aria/visually-hidden': 3.8.10(react@18.3.1) + '@react-aria/visually-hidden': 3.8.12(react@18.3.1) '@react-stately/collections': 3.10.7(react@18.3.1) '@react-stately/flags': 3.0.3 - '@react-stately/table': 3.11.6(react@18.3.1) - '@react-stately/virtualizer': 3.6.8(react@18.3.1) + '@react-stately/table': 3.11.8(react@18.3.1) + '@react-stately/virtualizer': 3.7.1(react@18.3.1) '@react-types/checkbox': 3.8.1(react@18.3.1) - '@react-types/grid': 3.2.4(react@18.3.1) + '@react-types/grid': 3.2.6(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - '@react-types/table': 3.9.3(react@18.3.1) + '@react-types/table': 3.9.5(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) - '@react-aria/tabs@3.8.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/tabs@3.8.5(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) '@react-stately/tabs': 3.6.4(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) '@react-types/tabs': 3.3.5(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 18.3.1(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) - '@react-aria/tabs@3.8.5(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1)': + '@react-aria/tabs@3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/i18n': 3.11.1(react@18.3.1) - '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1) + '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/utils': 3.24.1(react@18.3.1) - '@react-stately/tabs': 3.6.4(react@18.3.1) + '@react-stately/tabs': 3.6.6(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) - '@react-types/tabs': 3.3.5(react@18.3.1) + '@react-types/tabs': 3.3.7(react@18.3.1) '@swc/helpers': 0.5.11 react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) '@react-aria/textfield@3.14.3(react@18.3.1)': dependencies: @@ -9882,6 +10529,17 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-aria/tooltip@3.7.4(react@18.3.1)': + dependencies: + '@react-aria/focus': 3.17.1(react@18.3.1) + '@react-aria/interactions': 3.21.3(react@18.3.1) + '@react-aria/utils': 3.24.1(react@18.3.1) + '@react-stately/tooltip': 3.4.9(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@react-types/tooltip': 3.4.9(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-aria/utils@3.23.2(react@18.3.1)': dependencies: '@react-aria/ssr': 3.9.4(react@18.3.1) @@ -9925,6 +10583,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/calendar@3.5.1(react@18.3.1)': + dependencies: + '@internationalized/date': 3.5.4 + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/calendar': 3.4.6(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/checkbox@3.6.3(react@18.3.1)': dependencies: '@react-stately/form': 3.0.3(react@18.3.1) @@ -9934,6 +10601,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/checkbox@3.6.5(react@18.3.1)': + dependencies: + '@react-stately/form': 3.0.3(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/checkbox': 3.8.1(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/collections@3.10.5(react@18.3.1)': dependencies: '@react-types/shared': 3.23.1(react@18.3.1) @@ -9959,6 +10635,19 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/combobox@3.8.4(react@18.3.1)': + dependencies: + '@react-stately/collections': 3.10.7(react@18.3.1) + '@react-stately/form': 3.0.3(react@18.3.1) + '@react-stately/list': 3.10.5(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-stately/select': 3.6.4(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/combobox': 3.11.1(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/datepicker@3.9.2(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 @@ -9971,6 +10660,18 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/datepicker@3.9.4(react@18.3.1)': + dependencies: + '@internationalized/date': 3.5.4 + '@internationalized/string': 3.2.3 + '@react-stately/form': 3.0.3(react@18.3.1) + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/datepicker': 3.7.4(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/flags@3.0.3': dependencies: '@swc/helpers': 0.5.11 @@ -10053,6 +10754,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/radio@3.10.4(react@18.3.1)': + dependencies: + '@react-stately/form': 3.0.3(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/radio': 3.8.1(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/select@3.6.4(react@18.3.1)': dependencies: '@react-stately/form': 3.0.3(react@18.3.1) @@ -10079,6 +10789,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/slider@3.5.4(react@18.3.1)': + dependencies: + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@react-types/slider': 3.7.3(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/table@3.11.6(react@18.3.1)': dependencies: '@react-stately/collections': 3.10.7(react@18.3.1) @@ -10092,6 +10810,19 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/table@3.11.8(react@18.3.1)': + dependencies: + '@react-stately/collections': 3.10.7(react@18.3.1) + '@react-stately/flags': 3.0.3 + '@react-stately/grid': 3.8.7(react@18.3.1) + '@react-stately/selection': 3.15.1(react@18.3.1) + '@react-stately/utils': 3.10.1(react@18.3.1) + '@react-types/grid': 3.2.6(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@react-types/table': 3.9.5(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/tabs@3.6.4(react@18.3.1)': dependencies: '@react-stately/list': 3.10.5(react@18.3.1) @@ -10100,6 +10831,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/tabs@3.6.6(react@18.3.1)': + dependencies: + '@react-stately/list': 3.10.5(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + '@react-types/tabs': 3.3.7(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/toggle@3.7.2(react@18.3.1)': dependencies: '@react-stately/utils': 3.10.1(react@18.3.1) @@ -10121,6 +10860,13 @@ snapshots: '@swc/helpers': 0.5.11 react: 18.3.1 + '@react-stately/tooltip@3.4.9(react@18.3.1)': + dependencies: + '@react-stately/overlays': 3.6.7(react@18.3.1) + '@react-types/tooltip': 3.4.9(react@18.3.1) + '@swc/helpers': 0.5.11 + react: 18.3.1 + '@react-stately/tree@3.7.6(react@18.3.1)': dependencies: '@react-stately/collections': 3.10.7(react@18.3.1) @@ -10168,12 +10914,23 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/accordion@3.0.0-alpha.21(react@18.3.1)': + dependencies: + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/breadcrumbs@3.7.3(react@18.3.1)': dependencies: '@react-types/link': 3.5.5(react@18.3.1) '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/breadcrumbs@3.7.5(react@18.3.1)': + dependencies: + '@react-types/link': 3.5.5(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/button@3.9.2(react@18.3.1)': dependencies: '@react-types/shared': 3.23.1(react@18.3.1) @@ -10211,6 +10968,11 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/combobox@3.11.1(react@18.3.1)': + dependencies: + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/datepicker@3.7.2(react@18.3.1)': dependencies: '@internationalized/date': 3.5.4 @@ -10219,6 +10981,14 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/datepicker@3.7.4(react@18.3.1)': + dependencies: + '@internationalized/date': 3.5.4 + '@react-types/calendar': 3.4.6(react@18.3.1) + '@react-types/overlays': 3.8.7(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/dialog@3.5.10(react@18.3.1)': dependencies: '@react-types/overlays': 3.8.7(react@18.3.1) @@ -10277,11 +11047,21 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/progress@3.5.4(react@18.3.1)': + dependencies: + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/radio@3.7.1(react@18.3.1)': dependencies: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/radio@3.8.1(react@18.3.1)': + dependencies: + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/select@3.9.2(react@18.3.1)': dependencies: '@react-types/shared': 3.23.1(react@18.3.1) @@ -10316,11 +11096,22 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/table@3.9.5(react@18.3.1)': + dependencies: + '@react-types/grid': 3.2.6(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/tabs@3.3.5(react@18.3.1)': dependencies: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/tabs@3.3.7(react@18.3.1)': + dependencies: + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@react-types/textfield@3.9.1(react@18.3.1)': dependencies: '@react-types/shared': 3.23.1(react@18.3.1) @@ -10337,6 +11128,12 @@ snapshots: '@react-types/shared': 3.23.1(react@18.3.1) react: 18.3.1 + '@react-types/tooltip@3.4.9(react@18.3.1)': + dependencies: + '@react-types/overlays': 3.8.7(react@18.3.1) + '@react-types/shared': 3.23.1(react@18.3.1) + react: 18.3.1 + '@rollup/pluginutils@5.1.0(rollup@4.18.0)': dependencies: '@types/estree': 1.0.5 @@ -10429,29 +11226,29 @@ snapshots: '@sindresorhus/merge-streams@2.3.0': {} - '@storybook/addon-a11y@8.1.6': + '@storybook/addon-a11y@8.2.0-alpha.9': dependencies: - '@storybook/addon-highlight': 8.1.6 + '@storybook/addon-highlight': 8.2.0-alpha.9 axe-core: 4.9.1 - '@storybook/addon-actions@8.1.6': + '@storybook/addon-actions@8.2.0-alpha.9': dependencies: - '@storybook/core-events': 8.1.6 + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/global': 5.0.0 '@types/uuid': 9.0.8 dequal: 2.0.3 polished: 4.3.1 uuid: 9.0.1 - '@storybook/addon-backgrounds@8.1.6': + '@storybook/addon-backgrounds@8.2.0-alpha.9': dependencies: '@storybook/global': 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-controls@8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/addon-controls@8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/blocks': 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) dequal: 2.0.3 lodash: 4.17.21 ts-dedent: 2.2.0 @@ -10464,21 +11261,21 @@ snapshots: - react-dom - supports-color - '@storybook/addon-docs@8.1.6(@types/react-dom@18.3.0)(prettier@3.3.1)': + '@storybook/addon-docs@8.2.0-alpha.9(@types/react-dom@18.3.0)(prettier@3.3.2)': dependencies: '@babel/core': 7.24.7 '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) - '@storybook/blocks': 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/client-logger': 8.1.6 - '@storybook/components': 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/csf-plugin': 8.1.6 - '@storybook/csf-tools': 8.1.6 + '@storybook/blocks': 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/components': 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/csf-plugin': 8.2.0-alpha.9 + '@storybook/csf-tools': 8.2.0-alpha.9 '@storybook/global': 5.0.0 - '@storybook/node-logger': 8.1.6 - '@storybook/preview-api': 8.1.6 - '@storybook/react-dom-shim': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/types': 8.1.6 + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/preview-api': 8.2.0-alpha.9 + '@storybook/react-dom-shim': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.2.0-alpha.9 '@types/react': 18.3.3 fs-extra: 11.2.0 react: 18.3.1 @@ -10492,21 +11289,21 @@ snapshots: - prettier - supports-color - '@storybook/addon-essentials@8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@storybook/addon-actions': 8.1.6 - '@storybook/addon-backgrounds': 8.1.6 - '@storybook/addon-controls': 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/addon-docs': 8.1.6(@types/react-dom@18.3.0)(prettier@3.3.1) - '@storybook/addon-highlight': 8.1.6 - '@storybook/addon-measure': 8.1.6 - '@storybook/addon-outline': 8.1.6 - '@storybook/addon-toolbars': 8.1.6 - '@storybook/addon-viewport': 8.1.6 - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/manager-api': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/node-logger': 8.1.6 - '@storybook/preview-api': 8.1.6 + '@storybook/addon-essentials@8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@storybook/addon-actions': 8.2.0-alpha.9 + '@storybook/addon-backgrounds': 8.2.0-alpha.9 + '@storybook/addon-controls': 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-docs': 8.2.0-alpha.9(@types/react-dom@18.3.0)(prettier@3.3.2) + '@storybook/addon-highlight': 8.2.0-alpha.9 + '@storybook/addon-measure': 8.2.0-alpha.9 + '@storybook/addon-outline': 8.2.0-alpha.9 + '@storybook/addon-toolbars': 8.2.0-alpha.9 + '@storybook/addon-viewport': 8.2.0-alpha.9 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/manager-api': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/preview-api': 8.2.0-alpha.9 ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -10517,16 +11314,16 @@ snapshots: - react-dom - supports-color - '@storybook/addon-highlight@8.1.6': + '@storybook/addon-highlight@8.2.0-alpha.9': dependencies: '@storybook/global': 5.0.0 - '@storybook/addon-interactions@8.1.6(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1))': + '@storybook/addon-interactions@8.2.0-alpha.9(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1))': dependencies: '@storybook/global': 5.0.0 - '@storybook/instrumenter': 8.1.6 - '@storybook/test': 8.1.6(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) - '@storybook/types': 8.1.6 + '@storybook/instrumenter': 8.2.0-alpha.9 + '@storybook/test': 8.2.0-alpha.9(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) + '@storybook/types': 8.2.0-alpha.9 polished: 4.3.1 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -10536,7 +11333,7 @@ snapshots: - jest - vitest - '@storybook/addon-links@8.1.6(react@18.3.1)': + '@storybook/addon-links@8.2.0-alpha.9(react@18.3.1)': dependencies: '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 @@ -10544,45 +11341,45 @@ snapshots: optionalDependencies: react: 18.3.1 - '@storybook/addon-measure@8.1.6': + '@storybook/addon-measure@8.2.0-alpha.9': dependencies: '@storybook/global': 5.0.0 tiny-invariant: 1.3.3 - '@storybook/addon-outline@8.1.6': + '@storybook/addon-outline@8.2.0-alpha.9': dependencies: '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - '@storybook/addon-themes@8.1.6': + '@storybook/addon-themes@8.2.0-alpha.9': dependencies: ts-dedent: 2.2.0 - '@storybook/addon-toolbars@8.1.6': {} + '@storybook/addon-toolbars@8.2.0-alpha.9': {} - '@storybook/addon-viewport@8.1.6': + '@storybook/addon-viewport@8.2.0-alpha.9': dependencies: memoizerific: 1.11.3 - '@storybook/blocks@8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/blocks@8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/channels': 8.1.6 - '@storybook/client-logger': 8.1.6 - '@storybook/components': 8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/core-events': 8.1.6 + '@storybook/channels': 8.2.0-alpha.9 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/components': 8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/csf': 0.1.8 - '@storybook/docs-tools': 8.1.6(prettier@3.3.1) + '@storybook/docs-tools': 8.2.0-alpha.9(prettier@3.3.2) '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/manager-api': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/preview-api': 8.1.6 - '@storybook/theming': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/types': 8.1.6 + '@storybook/manager-api': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-api': 8.2.0-alpha.9 + '@storybook/theming': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.2.0-alpha.9 '@types/lodash': 4.17.5 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2(react@18.3.1) + markdown-to-jsx: 7.4.7(react@18.3.1) memoizerific: 1.11.3 polished: 4.3.1 react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -10600,12 +11397,12 @@ snapshots: - prettier - supports-color - '@storybook/builder-manager@8.1.6(prettier@3.3.1)': + '@storybook/builder-manager@8.2.0-alpha.9(prettier@3.3.2)': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/manager': 8.1.6 - '@storybook/node-logger': 8.1.6 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/manager': 8.2.0-alpha.9 + '@storybook/node-logger': 8.2.0-alpha.9 '@types/ejs': 3.1.5 '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.20.2) browser-assert: 1.2.1 @@ -10621,17 +11418,17 @@ snapshots: - prettier - supports-color - '@storybook/builder-vite@8.1.6(prettier@3.3.1)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1))': - dependencies: - '@storybook/channels': 8.1.6 - '@storybook/client-logger': 8.1.6 - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/core-events': 8.1.6 - '@storybook/csf-plugin': 8.1.6 - '@storybook/node-logger': 8.1.6 - '@storybook/preview': 8.1.6 - '@storybook/preview-api': 8.1.6 - '@storybook/types': 8.1.6 + '@storybook/builder-vite@8.2.0-alpha.9(prettier@3.3.2)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1))': + dependencies: + '@storybook/channels': 8.2.0-alpha.9 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/core-events': 8.2.0-alpha.9 + '@storybook/csf-plugin': 8.2.0-alpha.9 + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/preview': 8.2.0-alpha.9 + '@storybook/preview-api': 8.2.0-alpha.9 + '@storybook/types': 8.2.0-alpha.9 '@types/find-cache-dir': 3.2.1 browser-assert: 1.2.1 es-module-lexer: 1.5.3 @@ -10648,27 +11445,27 @@ snapshots: - prettier - supports-color - '@storybook/channels@8.1.6': + '@storybook/channels@8.2.0-alpha.9': dependencies: - '@storybook/client-logger': 8.1.6 - '@storybook/core-events': 8.1.6 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/global': 5.0.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/cli@8.1.6(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/cli@8.2.0-alpha.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/core': 7.24.7 '@babel/types': 7.24.7 '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 8.1.6 - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/core-events': 8.1.6 - '@storybook/core-server': 8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/csf-tools': 8.1.6 - '@storybook/node-logger': 8.1.6 - '@storybook/telemetry': 8.1.6(prettier@3.3.1) - '@storybook/types': 8.1.6 + '@storybook/codemod': 8.2.0-alpha.9 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/core-events': 8.2.0-alpha.9 + '@storybook/core-server': 8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/csf-tools': 8.2.0-alpha.9 + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/telemetry': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/types': 8.2.0-alpha.9 '@types/semver': 7.5.8 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 @@ -10686,7 +11483,7 @@ snapshots: jscodeshift: 0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)) leven: 3.1.0 ora: 5.4.1 - prettier: 3.3.1 + prettier: 3.3.2 prompts: 2.4.2 read-pkg-up: 7.0.1 semver: 7.6.2 @@ -10703,40 +11500,40 @@ snapshots: - supports-color - utf-8-validate - '@storybook/client-logger@8.1.6': + '@storybook/client-logger@8.2.0-alpha.9': dependencies: '@storybook/global': 5.0.0 - '@storybook/codemod@8.1.6': + '@storybook/codemod@8.2.0-alpha.9': dependencies: '@babel/core': 7.24.7 '@babel/preset-env': 7.24.7(@babel/core@7.24.7) '@babel/types': 7.24.7 '@storybook/csf': 0.1.8 - '@storybook/csf-tools': 8.1.6 - '@storybook/node-logger': 8.1.6 - '@storybook/types': 8.1.6 + '@storybook/csf-tools': 8.2.0-alpha.9 + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/types': 8.2.0-alpha.9 '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 14.0.1 jscodeshift: 0.15.2(@babel/preset-env@7.24.7(@babel/core@7.24.7)) lodash: 4.17.21 - prettier: 3.3.1 + prettier: 3.3.2 recast: 0.23.9 tiny-invariant: 1.3.3 transitivePeerDependencies: - supports-color - '@storybook/components@8.1.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/components@8.2.0-alpha.9(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) - '@storybook/client-logger': 8.1.6 + '@storybook/client-logger': 8.2.0-alpha.9 '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/theming': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/types': 8.1.6 + '@storybook/theming': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.2.0-alpha.9 memoizerific: 1.11.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -10745,12 +11542,12 @@ snapshots: - '@types/react' - '@types/react-dom' - '@storybook/core-common@8.1.6(prettier@3.3.1)': + '@storybook/core-common@8.2.0-alpha.9(prettier@3.3.2)': dependencies: - '@storybook/core-events': 8.1.6 - '@storybook/csf-tools': 8.1.6 - '@storybook/node-logger': 8.1.6 - '@storybook/types': 8.1.6 + '@storybook/core-events': 8.2.0-alpha.9 + '@storybook/csf-tools': 8.2.0-alpha.9 + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/types': 8.2.0-alpha.9 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 @@ -10777,36 +11574,36 @@ snapshots: ts-dedent: 2.2.0 util: 0.12.5 optionalDependencies: - prettier: 3.3.1 + prettier: 3.3.2 transitivePeerDependencies: - encoding - supports-color - '@storybook/core-events@8.1.6': + '@storybook/core-events@8.2.0-alpha.9': dependencies: '@storybook/csf': 0.1.8 ts-dedent: 2.2.0 - '@storybook/core-server@8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/core-server@8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@aw-web-design/x-default-browser': 1.4.126 '@babel/core': 7.24.7 '@babel/parser': 7.24.7 '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 8.1.6(prettier@3.3.1) - '@storybook/channels': 8.1.6 - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/core-events': 8.1.6 + '@storybook/builder-manager': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/channels': 8.2.0-alpha.9 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/csf': 0.1.8 - '@storybook/csf-tools': 8.1.6 + '@storybook/csf-tools': 8.2.0-alpha.9 '@storybook/docs-mdx': 3.1.0-next.0 '@storybook/global': 5.0.0 - '@storybook/manager': 8.1.6 - '@storybook/manager-api': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/node-logger': 8.1.6 - '@storybook/preview-api': 8.1.6 - '@storybook/telemetry': 8.1.6(prettier@3.3.1) - '@storybook/types': 8.1.6 + '@storybook/manager': 8.2.0-alpha.9 + '@storybook/manager-api': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/preview-api': 8.2.0-alpha.9 + '@storybook/telemetry': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/types': 8.2.0-alpha.9 '@types/detect-port': 1.3.5 '@types/diff': 5.2.1 '@types/node': 18.19.34 @@ -10830,6 +11627,7 @@ snapshots: telejson: 7.2.0 tiny-invariant: 1.3.3 ts-dedent: 2.2.0 + tsconfig-paths: 4.2.0 util: 0.12.5 util-deprecate: 1.0.2 watchpack: 2.4.1 @@ -10843,21 +11641,21 @@ snapshots: - supports-color - utf-8-validate - '@storybook/csf-plugin@8.1.6': + '@storybook/csf-plugin@8.2.0-alpha.9': dependencies: - '@storybook/csf-tools': 8.1.6 + '@storybook/csf-tools': 8.2.0-alpha.9 unplugin: 1.10.1 transitivePeerDependencies: - supports-color - '@storybook/csf-tools@8.1.6': + '@storybook/csf-tools@8.2.0-alpha.9': dependencies: '@babel/generator': 7.24.7 '@babel/parser': 7.24.7 '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 '@storybook/csf': 0.1.8 - '@storybook/types': 8.1.6 + '@storybook/types': 8.2.0-alpha.9 fs-extra: 11.2.0 recast: 0.23.9 ts-dedent: 2.2.0 @@ -10870,15 +11668,14 @@ snapshots: '@storybook/docs-mdx@3.1.0-next.0': {} - '@storybook/docs-tools@8.1.6(prettier@3.3.1)': + '@storybook/docs-tools@8.2.0-alpha.9(prettier@3.3.2)': dependencies: - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/core-events': 8.1.6 - '@storybook/preview-api': 8.1.6 - '@storybook/types': 8.1.6 - '@types/doctrine': 0.0.3 - assert: 2.1.0 - doctrine: 3.0.0 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/core-events': 8.2.0-alpha.9 + '@storybook/preview-api': 8.2.0-alpha.9 + '@storybook/types': 8.2.0-alpha.9 + comment-parser: 1.4.1 + jsdoc-type-pratt-parser: 4.0.0 lodash: 4.17.21 transitivePeerDependencies: - encoding @@ -10892,27 +11689,27 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/instrumenter@8.1.6': + '@storybook/instrumenter@8.2.0-alpha.9': dependencies: - '@storybook/channels': 8.1.6 - '@storybook/client-logger': 8.1.6 - '@storybook/core-events': 8.1.6 + '@storybook/channels': 8.2.0-alpha.9 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/global': 5.0.0 - '@storybook/preview-api': 8.1.6 + '@storybook/preview-api': 8.2.0-alpha.9 '@vitest/utils': 1.6.0 util: 0.12.5 - '@storybook/manager-api@8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/manager-api@8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/channels': 8.1.6 - '@storybook/client-logger': 8.1.6 - '@storybook/core-events': 8.1.6 + '@storybook/channels': 8.2.0-alpha.9 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/router': 8.1.6 - '@storybook/theming': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/types': 8.1.6 + '@storybook/router': 8.2.0-alpha.9 + '@storybook/theming': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.2.0-alpha.9 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -10923,18 +11720,18 @@ snapshots: - react - react-dom - '@storybook/manager@8.1.6': {} + '@storybook/manager@8.2.0-alpha.9': {} - '@storybook/node-logger@8.1.6': {} + '@storybook/node-logger@8.2.0-alpha.9': {} - '@storybook/preview-api@8.1.6': + '@storybook/preview-api@8.2.0-alpha.9': dependencies: - '@storybook/channels': 8.1.6 - '@storybook/client-logger': 8.1.6 - '@storybook/core-events': 8.1.6 + '@storybook/channels': 8.2.0-alpha.9 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-events': 8.2.0-alpha.9 '@storybook/csf': 0.1.8 '@storybook/global': 5.0.0 - '@storybook/types': 8.1.6 + '@storybook/types': 8.2.0-alpha.9 '@types/qs': 6.9.15 dequal: 2.0.3 lodash: 4.17.21 @@ -10944,21 +11741,21 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/preview@8.1.6': {} + '@storybook/preview@8.2.0-alpha.9': {} - '@storybook/react-dom-shim@8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/react-dom-shim@8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/react-vite@8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1))': + '@storybook/react-vite@8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1))': dependencies: '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1)) '@rollup/pluginutils': 5.1.0(rollup@4.18.0) - '@storybook/builder-vite': 8.1.6(prettier@3.3.1)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1)) - '@storybook/node-logger': 8.1.6 - '@storybook/react': 8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) - '@storybook/types': 8.1.6 + '@storybook/builder-vite': 8.2.0-alpha.9(prettier@3.3.2)(typescript@5.4.5)(vite@5.2.13(@types/node@20.14.2)(terser@5.31.1)) + '@storybook/node-logger': 8.2.0-alpha.9 + '@storybook/react': 8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) + '@storybook/types': 8.2.0-alpha.9 find-up: 5.0.0 magic-string: 0.30.10 react: 18.3.1 @@ -10976,14 +11773,14 @@ snapshots: - typescript - vite-plugin-glimmerx - '@storybook/react@8.1.6(prettier@3.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': + '@storybook/react@8.2.0-alpha.9(prettier@3.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': dependencies: - '@storybook/client-logger': 8.1.6 - '@storybook/docs-tools': 8.1.6(prettier@3.3.1) + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/docs-tools': 8.2.0-alpha.9(prettier@3.3.2) '@storybook/global': 5.0.0 - '@storybook/preview-api': 8.1.6 - '@storybook/react-dom-shim': 8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@storybook/types': 8.1.6 + '@storybook/preview-api': 8.2.0-alpha.9 + '@storybook/react-dom-shim': 8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.2.0-alpha.9 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 '@types/node': 18.19.34 @@ -11008,17 +11805,17 @@ snapshots: - prettier - supports-color - '@storybook/router@8.1.6': + '@storybook/router@8.2.0-alpha.9': dependencies: - '@storybook/client-logger': 8.1.6 + '@storybook/client-logger': 8.2.0-alpha.9 memoizerific: 1.11.3 qs: 6.12.1 - '@storybook/telemetry@8.1.6(prettier@3.3.1)': + '@storybook/telemetry@8.2.0-alpha.9(prettier@3.3.2)': dependencies: - '@storybook/client-logger': 8.1.6 - '@storybook/core-common': 8.1.6(prettier@3.3.1) - '@storybook/csf-tools': 8.1.6 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-common': 8.2.0-alpha.9(prettier@3.3.2) + '@storybook/csf-tools': 8.2.0-alpha.9 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -11029,16 +11826,16 @@ snapshots: - prettier - supports-color - '@storybook/test@8.1.6(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1))': + '@storybook/test@8.2.0-alpha.9(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1))': dependencies: - '@storybook/client-logger': 8.1.6 - '@storybook/core-events': 8.1.6 - '@storybook/instrumenter': 8.1.6 - '@storybook/preview-api': 8.1.6 - '@testing-library/dom': 9.3.4 + '@storybook/client-logger': 8.2.0-alpha.9 + '@storybook/core-events': 8.2.0-alpha.9 + '@storybook/instrumenter': 8.2.0-alpha.9 + '@storybook/preview-api': 8.2.0-alpha.9 + '@testing-library/dom': 10.1.0 '@testing-library/jest-dom': 6.4.5(vitest@1.6.0(@types/node@20.14.2)(terser@5.31.1)) - '@testing-library/user-event': 14.5.2(@testing-library/dom@9.3.4) - '@vitest/expect': 1.3.1 + '@testing-library/user-event': 14.5.2(@testing-library/dom@10.1.0) + '@vitest/expect': 1.6.0 '@vitest/spy': 1.6.0 util: 0.12.5 transitivePeerDependencies: @@ -11048,19 +11845,19 @@ snapshots: - jest - vitest - '@storybook/theming@8.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@storybook/theming@8.2.0-alpha.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) - '@storybook/client-logger': 8.1.6 + '@storybook/client-logger': 8.2.0-alpha.9 '@storybook/global': 5.0.0 memoizerific: 1.11.3 optionalDependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@storybook/types@8.1.6': + '@storybook/types@8.2.0-alpha.9': dependencies: - '@storybook/channels': 8.1.6 + '@storybook/channels': 8.2.0-alpha.9 '@types/express': 4.17.21 file-system-cache: 2.3.0 @@ -11115,12 +11912,12 @@ snapshots: dependencies: tslib: 2.6.3 - '@testing-library/dom@9.3.4': + '@testing-library/dom@10.1.0': dependencies: '@babel/code-frame': 7.24.7 '@babel/runtime': 7.24.7 '@types/aria-query': 5.0.4 - aria-query: 5.1.3 + aria-query: 5.3.0 chalk: 4.1.2 dom-accessibility-api: 0.5.16 lz-string: 1.5.0 @@ -11139,9 +11936,9 @@ snapshots: optionalDependencies: vitest: 1.6.0(@types/node@20.14.2)(terser@5.31.1) - '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': + '@testing-library/user-event@14.5.2(@testing-library/dom@10.1.0)': dependencies: - '@testing-library/dom': 9.3.4 + '@testing-library/dom': 10.1.0 '@trysound/sax@0.2.0': {} @@ -11187,8 +11984,6 @@ snapshots: '@types/diff@5.2.1': {} - '@types/doctrine@0.0.3': {} - '@types/doctrine@0.0.9': {} '@types/ejs@3.1.5': {} @@ -11233,6 +12028,17 @@ snapshots: '@types/http-errors@2.0.4': {} + '@types/istanbul-lib-coverage@2.0.6': {} + + '@types/istanbul-lib-report@3.0.3': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + + '@types/istanbul-reports@1.1.2': + dependencies: + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-lib-report': 3.0.3 + '@types/json-schema@7.0.15': {} '@types/lodash.debounce@4.0.9': @@ -11293,6 +12099,12 @@ snapshots: '@types/uuid@9.0.8': {} + '@types/yargs-parser@21.0.3': {} + + '@types/yargs@13.0.12': + dependencies: + '@types/yargs-parser': 21.0.3 + '@typescript-eslint/eslint-plugin@8.0.0-alpha.13(@typescript-eslint/parser@8.0.0-alpha.13(eslint@9.4.0)(typescript@5.4.5))(eslint@9.4.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.1 @@ -11430,12 +12242,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitest/expect@1.3.1': - dependencies: - '@vitest/spy': 1.3.1 - '@vitest/utils': 1.3.1 - chai: 4.4.1 - '@vitest/expect@1.6.0': dependencies: '@vitest/spy': 1.6.0 @@ -11454,21 +12260,10 @@ snapshots: pathe: 1.1.2 pretty-format: 29.7.0 - '@vitest/spy@1.3.1': - dependencies: - tinyspy: 2.2.1 - '@vitest/spy@1.6.0': dependencies: tinyspy: 2.2.1 - '@vitest/utils@1.3.1': - dependencies: - diff-sequences: 29.6.3 - estree-walker: 3.0.3 - loupe: 2.3.7 - pretty-format: 29.7.0 - '@vitest/utils@1.6.0': dependencies: diff-sequences: 29.6.3 @@ -11554,6 +12349,8 @@ snapshots: acorn@8.11.3: {} + acorn@8.12.0: {} + address@1.2.2: {} ajv@6.12.6: @@ -11563,6 +12360,8 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 + ansi-regex@4.1.1: {} + ansi-regex@5.0.1: {} ansi-regex@6.0.1: {} @@ -11600,31 +12399,14 @@ snapshots: dependencies: tslib: 2.6.3 - aria-query@5.1.3: - dependencies: - deep-equal: 2.2.3 - aria-query@5.3.0: dependencies: dequal: 2.0.3 - array-buffer-byte-length@1.0.1: - dependencies: - call-bind: 1.0.7 - is-array-buffer: 3.0.4 - array-flatten@1.1.1: {} array-union@2.1.0: {} - assert@2.1.0: - dependencies: - call-bind: 1.0.7 - is-nan: 1.3.2 - object-is: 1.1.6 - object.assign: 4.1.5 - util: 0.12.5 - assertion-error@1.1.0: {} ast-types@0.16.1: @@ -11677,6 +12459,16 @@ snapshots: transitivePeerDependencies: - supports-color + babel-plugin-react-compiler@0.0.0-experimental-938cd9a-20240601: + dependencies: + '@babel/generator': 7.2.0 + '@babel/types': 7.24.7 + chalk: 4.1.2 + invariant: 2.2.4 + pretty-format: 24.9.0 + zod: 3.23.8 + zod-validation-error: 2.1.0(zod@3.23.8) + balanced-match@1.0.2: {} base64-js@1.5.1: {} @@ -11744,6 +12536,13 @@ snapshots: node-releases: 2.0.14 update-browserslist-db: 1.0.16(browserslist@4.23.0) + browserslist@4.23.1: + dependencies: + caniuse-lite: 1.0.30001634 + electron-to-chromium: 1.4.803 + node-releases: 2.0.14 + update-browserslist-db: 1.0.16(browserslist@4.23.1) + buffer-from@1.1.2: {} buffer@5.7.1: @@ -11778,6 +12577,8 @@ snapshots: caniuse-lite@1.0.30001629: {} + caniuse-lite@1.0.30001634: {} + chai@4.4.1: dependencies: assertion-error: 1.1.0 @@ -11890,6 +12691,8 @@ snapshots: commander@9.5.0: optional: true + comment-parser@1.4.1: {} + commondir@1.0.1: {} compressible@2.0.18: @@ -11932,7 +12735,7 @@ snapshots: core-js-compat@3.37.1: dependencies: - browserslist: 4.23.0 + browserslist: 4.23.1 core-util-is@1.0.3: {} @@ -12038,27 +12841,6 @@ snapshots: dependencies: type-detect: 4.0.8 - deep-equal@2.2.3: - dependencies: - array-buffer-byte-length: 1.0.1 - call-bind: 1.0.7 - es-get-iterator: 1.1.3 - get-intrinsic: 1.2.4 - is-arguments: 1.1.1 - is-array-buffer: 3.0.4 - is-date-object: 1.0.5 - is-regex: 1.1.4 - is-shared-array-buffer: 1.0.3 - isarray: 2.0.5 - object-is: 1.1.6 - object-keys: 1.1.1 - object.assign: 4.1.5 - regexp.prototype.flags: 1.5.2 - side-channel: 1.0.6 - which-boxed-primitive: 1.0.2 - which-collection: 1.0.2 - which-typed-array: 1.1.15 - deep-is@0.1.4: {} deepmerge@4.3.1: {} @@ -12080,12 +12862,6 @@ snapshots: define-lazy-prop@2.0.0: {} - define-properties@1.2.1: - dependencies: - define-data-property: 1.1.4 - has-property-descriptors: 1.0.2 - object-keys: 1.1.1 - defu@6.1.4: {} depd@2.0.0: {} @@ -12168,6 +12944,8 @@ snapshots: electron-to-chromium@1.4.796: {} + electron-to-chromium@1.4.803: {} + emoji-regex@8.0.0: {} emoji-regex@9.2.2: {} @@ -12192,18 +12970,6 @@ snapshots: es-errors@1.3.0: {} - es-get-iterator@1.1.3: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - has-symbols: 1.0.3 - is-arguments: 1.1.1 - is-map: 2.0.3 - is-set: 2.0.3 - is-string: 1.0.7 - isarray: 2.0.5 - stop-iteration-iterator: 1.0.0 - es-module-lexer@1.5.3: {} esbuild-plugin-alias@0.2.1: {} @@ -12495,7 +13261,7 @@ snapshots: flatted@3.3.1: {} - flow-parser@0.237.2: {} + flow-parser@0.238.0: {} for-each@0.3.3: dependencies: @@ -12517,12 +13283,12 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - framer-motion@11.2.10(react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1))(react@18.3.1): + framer-motion@11.2.10(react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1))(react@18.3.1): dependencies: tslib: 2.6.3 optionalDependencies: react: 18.3.1 - react-dom: 19.0.0-rc-935180c7e0-20240524(react@18.3.1) + react-dom: 19.0.0-rc-fb9a90fa48-20240614(react@18.3.1) fresh@0.5.2: {} @@ -12557,8 +13323,6 @@ snapshots: function-bind@1.1.2: {} - functions-have-names@1.2.3: {} - gensync@1.0.0-beta.2: {} get-func-name@2.0.2: {} @@ -12674,9 +13438,7 @@ snapshots: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.17.4 - - has-bigints@1.0.2: {} + uglify-js: 3.18.0 has-flag@3.0.0: {} @@ -12760,12 +13522,6 @@ snapshots: inherits@2.0.4: {} - internal-slot@1.0.7: - dependencies: - es-errors: 1.3.0 - hasown: 2.0.2 - side-channel: 1.0.6 - intl-messageformat@10.5.14: dependencies: '@formatjs/ecma402-abstract': 2.0.0 @@ -12786,38 +13542,20 @@ snapshots: call-bind: 1.0.7 has-tostringtag: 1.0.2 - is-array-buffer@3.0.4: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - is-arrayish@0.2.1: {} is-arrayish@0.3.2: {} - is-bigint@1.0.4: - dependencies: - has-bigints: 1.0.2 - is-binary-path@2.1.0: dependencies: binary-extensions: 2.3.0 - is-boolean-object@1.1.2: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - is-callable@1.2.7: {} is-core-module@2.13.1: dependencies: hasown: 2.0.2 - is-date-object@1.0.5: - dependencies: - has-tostringtag: 1.0.2 - is-deflate@1.0.0: {} is-docker@2.2.1: {} @@ -12838,17 +13576,6 @@ snapshots: is-interactive@1.0.0: {} - is-map@2.0.3: {} - - is-nan@1.3.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - - is-number-object@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - is-number@7.0.0: {} is-path-inside@3.0.3: {} @@ -12859,50 +13586,22 @@ snapshots: is-plain-object@5.0.0: {} - is-regex@1.1.4: - dependencies: - call-bind: 1.0.7 - has-tostringtag: 1.0.2 - - is-set@2.0.3: {} - - is-shared-array-buffer@1.0.3: - dependencies: - call-bind: 1.0.7 - is-stream@2.0.1: {} is-stream@3.0.0: {} - is-string@1.0.7: - dependencies: - has-tostringtag: 1.0.2 - - is-symbol@1.0.4: - dependencies: - has-symbols: 1.0.3 - is-typed-array@1.1.13: dependencies: which-typed-array: 1.1.15 is-unicode-supported@0.1.0: {} - is-weakmap@2.0.2: {} - - is-weakset@2.0.3: - dependencies: - call-bind: 1.0.7 - get-intrinsic: 1.2.4 - is-wsl@2.2.0: dependencies: is-docker: 2.2.1 isarray@1.0.0: {} - isarray@2.0.5: {} - isexe@2.0.0: {} isobject@3.0.1: {} @@ -12946,7 +13645,7 @@ snapshots: '@babel/register': 7.24.6(@babel/core@7.24.7) babel-core: 7.0.0-bridge.0(@babel/core@7.24.7) chalk: 4.1.2 - flow-parser: 0.237.2 + flow-parser: 0.238.0 graceful-fs: 4.2.11 micromatch: 4.0.7 neo-async: 2.6.2 @@ -12959,6 +13658,8 @@ snapshots: transitivePeerDependencies: - supports-color + jsdoc-type-pratt-parser@4.0.0: {} + jsesc@0.5.0: {} jsesc@2.5.2: {} @@ -13096,7 +13797,7 @@ snapshots: map-or-similar@1.5.0: {} - markdown-to-jsx@7.3.2(react@18.3.1): + markdown-to-jsx@7.4.7(react@18.3.1): dependencies: react: 18.3.1 @@ -13250,20 +13951,6 @@ snapshots: object-inspect@1.13.1: {} - object-is@1.1.6: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - - object-keys@1.1.1: {} - - object.assign@4.1.5: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - has-symbols: 1.0.3 - object-keys: 1.1.1 - ohash@1.1.3: {} on-finished@2.4.1: @@ -13609,10 +14296,15 @@ snapshots: prelude-ls@1.2.1: {} - prettier@3.3.1: {} - prettier@3.3.2: {} + pretty-format@24.9.0: + dependencies: + '@jest/types': 24.9.0 + ansi-regex: 4.1.1 + ansi-styles: 3.2.1 + react-is: 16.13.1 + pretty-format@27.5.1: dependencies: ansi-regex: 5.0.1 @@ -13716,10 +14408,10 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-935180c7e0-20240524(react@18.3.1): + react-dom@19.0.0-rc-fb9a90fa48-20240614(react@18.3.1): dependencies: react: 18.3.1 - scheduler: 0.25.0-rc-935180c7e0-20240524 + scheduler: 0.25.0-rc-fb9a90fa48-20240614 react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: @@ -13791,6 +14483,8 @@ snapshots: dependencies: loose-envify: 1.4.0 + react@19.0.0-rc-fb9a90fa48-20240614: {} + read-cache@1.0.0: dependencies: pify: 2.3.0 @@ -13853,13 +14547,6 @@ snapshots: dependencies: '@babel/runtime': 7.24.7 - regexp.prototype.flags@1.5.2: - dependencies: - call-bind: 1.0.7 - define-properties: 1.2.1 - es-errors: 1.3.0 - set-function-name: 2.0.2 - regexpu-core@5.3.2: dependencies: '@babel/regjsgen': 0.8.0 @@ -13952,7 +14639,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-935180c7e0-20240524: {} + scheduler@0.25.0-rc-fb9a90fa48-20240614: {} scroll-into-view-if-needed@3.0.10: dependencies: @@ -14004,13 +14691,6 @@ snapshots: gopd: 1.0.1 has-property-descriptors: 1.0.2 - set-function-name@2.0.2: - dependencies: - define-data-property: 1.1.4 - es-errors: 1.3.0 - functions-have-names: 1.2.3 - has-property-descriptors: 1.0.2 - setprototypeof@1.2.0: {} shallow-clone@3.0.1: @@ -14053,6 +14733,8 @@ snapshots: buffer-from: 1.1.2 source-map: 0.6.1 + source-map@0.5.7: {} + source-map@0.6.1: {} space-separated-tokens@2.0.2: {} @@ -14079,15 +14761,11 @@ snapshots: std-env@3.7.0: {} - stop-iteration-iterator@1.0.0: - dependencies: - internal-slot: 1.0.7 - store2@2.14.3: {} - storybook@8.1.6(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + storybook@8.2.0-alpha.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@storybook/cli': 8.1.6(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/cli': 8.2.0-alpha.9(@babel/preset-env@7.24.7(@babel/core@7.24.7))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@babel/preset-env' - bufferutil @@ -14267,7 +14945,7 @@ snapshots: terser@5.31.1: dependencies: '@jridgewell/source-map': 0.3.6 - acorn: 8.11.3 + acorn: 8.12.0 commander: 2.20.3 source-map-support: 0.5.21 optional: true @@ -14307,6 +14985,8 @@ snapshots: tr46@0.0.3: {} + trim-right@1.0.1: {} + ts-api-utils@1.3.0(typescript@5.4.5): dependencies: typescript: 5.4.5 @@ -14348,6 +15028,10 @@ snapshots: media-typer: 0.3.0 mime-types: 2.1.35 + types-react@19.0.0-rc.1: + dependencies: + csstype: 3.1.3 + typescript-eslint@8.0.0-alpha.13(eslint@9.4.0)(typescript@5.4.5): dependencies: '@typescript-eslint/eslint-plugin': 8.0.0-alpha.13(@typescript-eslint/parser@8.0.0-alpha.13(eslint@9.4.0)(typescript@5.4.5))(eslint@9.4.0)(typescript@5.4.5) @@ -14365,7 +15049,7 @@ snapshots: ufo@1.5.3: {} - uglify-js@3.17.4: + uglify-js@3.18.0: optional: true undici-types@5.26.5: {} @@ -14410,7 +15094,7 @@ snapshots: unplugin@1.10.1: dependencies: - acorn: 8.11.3 + acorn: 8.12.0 chokidar: 3.6.0 webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.2 @@ -14423,6 +15107,12 @@ snapshots: escalade: 3.1.2 picocolors: 1.0.1 + update-browserslist-db@1.0.16(browserslist@4.23.1): + dependencies: + browserslist: 4.23.1 + escalade: 3.1.2 + picocolors: 1.0.1 + uri-js@4.4.1: dependencies: punycode: 2.3.1 @@ -14602,21 +15292,6 @@ snapshots: tr46: 0.0.3 webidl-conversions: 3.0.1 - which-boxed-primitive@1.0.2: - dependencies: - is-bigint: 1.0.4 - is-boolean-object: 1.1.2 - is-number-object: 1.0.7 - is-string: 1.0.7 - is-symbol: 1.0.4 - - which-collection@1.0.2: - dependencies: - is-map: 2.0.3 - is-set: 2.0.3 - is-weakmap: 2.0.2 - is-weakset: 2.0.3 - which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 @@ -14680,6 +15355,10 @@ snapshots: optionalDependencies: commander: 9.5.0 + zod-validation-error@2.1.0(zod@3.23.8): + dependencies: + zod: 3.23.8 + zod-validation-error@3.3.0(zod@3.23.8): dependencies: zod: 3.23.8 diff --git a/stories/Button.stories.ts b/stories/Button.stories.ts index 455a9d8..d99eafe 100644 --- a/stories/Button.stories.ts +++ b/stories/Button.stories.ts @@ -11,7 +11,7 @@ const meta = { layout: 'centered', }, // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs - tags: ['autodocs'], + tags: [ 'autodocs' ], // More on argTypes: https://storybook.js.org/docs/api/argtypes argTypes: { backgroundColor: { control: 'color' }, diff --git a/stories/Button.tsx b/stories/Button.tsx index c33be6e..4e0c624 100644 --- a/stories/Button.tsx +++ b/stories/Button.tsx @@ -38,7 +38,7 @@ export const Button = ({ return (