From f9cebb8f78796108b218534a26756181acc6a436 Mon Sep 17 00:00:00 2001 From: owjs3901 Date: Tue, 21 Jan 2025 22:43:28 +0900 Subject: [PATCH 1/3] Update landing --- apps/landing/package.json | 4 +- .../src/app/(detail)/docs/LeftMenu.tsx | 10 +- .../src/app/(detail)/docs/MenuItem.tsx | 11 +- .../src/app/(detail)/docs/OpenMenuItem.tsx | 22 +- .../src/app/(detail)/docs/api/grid/page.mdx | 1 + .../src/components/Header/HeaderWrap.tsx | 10 +- apps/next/package.json | 2 +- apps/vite-lib/package.json | 2 +- apps/vite/package.json | 2 +- benchmark/next-chakra-ui/package.json | 4 +- benchmark/next-devup-ui/package.json | 2 +- benchmark/next-kuma-ui/package.json | 2 +- libs/extractor/src/visit.rs | 1 - package.json | 4 +- packages/next-plugin/package.json | 4 +- packages/react/package.json | 4 +- packages/webpack-plugin/package.json | 4 +- pnpm-lock.yaml | 1773 ++++++++--------- 18 files changed, 934 insertions(+), 928 deletions(-) create mode 100644 apps/landing/src/app/(detail)/docs/api/grid/page.mdx diff --git a/apps/landing/package.json b/apps/landing/package.json index f8b8ab0e..05d6cca2 100644 --- a/apps/landing/package.json +++ b/apps/landing/package.json @@ -13,9 +13,9 @@ "@devup-ui/react": "workspace:*", "@mdx-js/loader": "^3.1.0", "@mdx-js/react": "^3.1.0", - "@next/mdx": "^15.1.4", + "@next/mdx": "^15.1.5", "@types/mdx": "^2.0.13", - "next": "^15.1.4", + "next": "^15.1.5", "react": "^19.0.0", "react-dom": "^19.0.0", "react-syntax-highlighter": "^15.6.1", diff --git a/apps/landing/src/app/(detail)/docs/LeftMenu.tsx b/apps/landing/src/app/(detail)/docs/LeftMenu.tsx index 75dc71e4..ed3d0e66 100644 --- a/apps/landing/src/app/(detail)/docs/LeftMenu.tsx +++ b/apps/landing/src/app/(detail)/docs/LeftMenu.tsx @@ -24,7 +24,7 @@ export function LeftMenu() { children: 'Input', }, { - to: URL_PREFIX + '/docs/api/input', + to: URL_PREFIX + '/docs/api/text', children: 'Text', }, { @@ -43,6 +43,10 @@ export function LeftMenu() { to: URL_PREFIX + '/docs/api/center', children: 'Center', }, + { + to: URL_PREFIX + '/docs/api/grid', + children: 'Grid', + }, { to: URL_PREFIX + '/docs/api/css', children: 'css', @@ -81,6 +85,10 @@ export function LeftMenu() { to: URL_PREFIX + '/docs/devup/breakpoints', children: 'Breakpoints', }, + { + to: URL_PREFIX + '/docs/devup/figma-plugin', + children: 'Figma Plugin', + }, ]} > Devup diff --git a/apps/landing/src/app/(detail)/docs/MenuItem.tsx b/apps/landing/src/app/(detail)/docs/MenuItem.tsx index 63bca7c5..9f042ca2 100644 --- a/apps/landing/src/app/(detail)/docs/MenuItem.tsx +++ b/apps/landing/src/app/(detail)/docs/MenuItem.tsx @@ -1,21 +1,26 @@ +'use client' import { Box, css, Flex, Text } from '@devup-ui/react' import Link from 'next/link' +import { usePathname } from 'next/navigation' import { OpenMenuItem } from './OpenMenuItem' export interface MenuItemProps { - selected?: boolean children?: React.ReactNode to?: string subMenu?: { - selected?: boolean children?: React.ReactNode to?: string }[] } export function MenuItem(props: MenuItemProps) { - const { selected, children, to, subMenu } = props + const { children, to, subMenu } = props + const path = usePathname() + const selected = to + ? path.startsWith(to) + : !!subMenu?.some((item) => (item.to ? path.startsWith(item.to) : false)) + if (subMenu) return const inner = ( & Required>) { - const [open, handleOpen] = useReducer((state) => !state, false) + const path = usePathname() + const selected = subMenu.some((item) => + item.to ? path.startsWith(item.to) : false, + ) + const [open, handleOpen] = useReducer((state) => !state, selected) return ( <> {subMenu.map(({ children, to }, idx) => { + const selected = to ? path.startsWith(to) : false const inner = ( - - + {selected && ( + + )} + {children} diff --git a/apps/landing/src/app/(detail)/docs/api/grid/page.mdx b/apps/landing/src/app/(detail)/docs/api/grid/page.mdx new file mode 100644 index 00000000..ee8abf42 --- /dev/null +++ b/apps/landing/src/app/(detail)/docs/api/grid/page.mdx @@ -0,0 +1 @@ +# Grid diff --git a/apps/landing/src/components/Header/HeaderWrap.tsx b/apps/landing/src/components/Header/HeaderWrap.tsx index 3b5487c8..b59de9a9 100644 --- a/apps/landing/src/components/Header/HeaderWrap.tsx +++ b/apps/landing/src/components/Header/HeaderWrap.tsx @@ -9,7 +9,9 @@ export function HeaderWrap({ children }: { children: React.ReactNode }) { return ( {children} diff --git a/apps/next/package.json b/apps/next/package.json index 668ce8ba..4c56fdcb 100644 --- a/apps/next/package.json +++ b/apps/next/package.json @@ -12,7 +12,7 @@ "dependencies": { "react": "^19.0.0", "react-dom": "^19.0.0", - "next": "^15.1.4", + "next": "^15.1.5", "@devup-ui/react": "workspace:*" }, "devDependencies": { diff --git a/apps/vite-lib/package.json b/apps/vite-lib/package.json index ab0d37cf..23eaaf86 100644 --- a/apps/vite-lib/package.json +++ b/apps/vite-lib/package.json @@ -10,7 +10,7 @@ "dependencies": { "react": "^19.0.0", "@devup-ui/react": "workspace:*", - "vite": "^6.0.7" + "vite": "^6.0.10" }, "devDependencies": { "vite-plugin-dts": "^4.5.0", diff --git a/apps/vite/package.json b/apps/vite/package.json index c556cc32..511d0026 100644 --- a/apps/vite/package.json +++ b/apps/vite/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@devup-ui/vite-plugin": "workspace:*", - "vite": "^6.0.7", + "vite": "^6.0.10", "@vitejs/plugin-react": "^4.3.4", "typescript": "^5", "@types/node": "^22", diff --git a/benchmark/next-chakra-ui/package.json b/benchmark/next-chakra-ui/package.json index 326925bc..03a89bd5 100644 --- a/benchmark/next-chakra-ui/package.json +++ b/benchmark/next-chakra-ui/package.json @@ -10,9 +10,9 @@ "lint": "next lint" }, "dependencies": { - "@chakra-ui/react": "^3.3.1", + "@chakra-ui/react": "^3.4.0", "@emotion/react": "^11.14.0", - "next": "^15.1.4", + "next": "^15.1.5", "next-themes": "^0.4.4", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/benchmark/next-devup-ui/package.json b/benchmark/next-devup-ui/package.json index bff3dc51..9d6cd4f9 100644 --- a/benchmark/next-devup-ui/package.json +++ b/benchmark/next-devup-ui/package.json @@ -12,7 +12,7 @@ "dependencies": { "react": "^19.0.0", "react-dom": "^19.0.0", - "next": "^15.1.4", + "next": "^15.1.5", "@devup-ui/react": "workspace:*" }, "devDependencies": { diff --git a/benchmark/next-kuma-ui/package.json b/benchmark/next-kuma-ui/package.json index 91468a74..20aadb20 100644 --- a/benchmark/next-kuma-ui/package.json +++ b/benchmark/next-kuma-ui/package.json @@ -12,7 +12,7 @@ "dependencies": { "react": "^19.0.0", "react-dom": "^19.0.0", - "next": "^15.1.4", + "next": "^15.1.5", "@kuma-ui/core": "^1.5.8" }, "devDependencies": { diff --git a/libs/extractor/src/visit.rs b/libs/extractor/src/visit.rs index 8e37df03..b242bde7 100644 --- a/libs/extractor/src/visit.rs +++ b/libs/extractor/src/visit.rs @@ -296,7 +296,6 @@ impl<'a> VisitMut<'a> for DevupVisitor<'a> { if let Attribute(ref mut attr) = &mut attr { if let Identifier(name) = &attr.name { let name = sort_to_long(name.name.as_str()); - println!("name: {} {:?}", name, duplicate_set); if duplicate_set.contains(&name) { continue; } diff --git a/package.json b/package.json index d91c7b27..1b7035c3 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,8 @@ "devDependencies": { "eslint-plugin-devup": "^2.0.1", "eslint": "^9.18.0", - "vitest": "^2.1.8", - "@vitest/coverage-v8": "^2.1.8", + "vitest": "^3.0.2", + "@vitest/coverage-v8": "^3.0.2", "@changesets/cli": "^2.27.11", "@types/node": "^22.10.7" }, diff --git a/packages/next-plugin/package.json b/packages/next-plugin/package.json index 1cc37327..74cdb0ad 100644 --- a/packages/next-plugin/package.json +++ b/packages/next-plugin/package.json @@ -27,9 +27,9 @@ "next": "^15.1" }, "devDependencies": { - "vite": "^6.0.7", + "vite": "^6.0.10", "vite-plugin-dts": "^4.5.0", - "vitest": "^2.1.8", + "vitest": "^3.0.2", "typescript": "^5.7.3" }, "peerDependencies": { diff --git a/packages/react/package.json b/packages/react/package.json index fdd9acf2..07058ada 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -27,9 +27,9 @@ "csstype": "^3.1" }, "devDependencies": { - "vite": "^6.0.7", + "vite": "^6.0.10", "vite-plugin-dts": "^4.5.0", - "vitest": "^2.1.8", + "vitest": "^3.0.2", "typescript": "^5.7.3", "@types/react": "^19" }, diff --git a/packages/webpack-plugin/package.json b/packages/webpack-plugin/package.json index 47ec5d0b..5a6c9eff 100644 --- a/packages/webpack-plugin/package.json +++ b/packages/webpack-plugin/package.json @@ -34,10 +34,10 @@ "@devup-ui/wasm": "workspace:*" }, "devDependencies": { - "vite": "^6.0.7", + "vite": "^6.0.10", "@types/webpack": "^5.28.5", "vite-plugin-dts": "^4.5.0", - "vitest": "^2.1.8", + "vitest": "^3.0.2", "typescript": "^5.7.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c6d0b1b..0b446d58 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,17 +18,17 @@ importers: specifier: ^22.10.7 version: 22.10.7 '@vitest/coverage-v8': - specifier: ^2.1.8 - version: 2.1.8(vitest@2.1.8(@types/node@22.10.7)(terser@5.37.0)) + specifier: ^3.0.2 + version: 3.0.2(vitest@3.0.2(@types/node@22.10.7)(terser@5.37.0)) eslint: specifier: ^9.18.0 version: 9.18.0 eslint-plugin-devup: specifier: ^2.0.1 - version: 2.0.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3) + version: 2.0.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3) vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.7)(terser@5.37.0) + specifier: ^3.0.2 + version: 3.0.2(@types/node@22.10.7)(terser@5.37.0) apps/landing: dependencies: @@ -42,14 +42,14 @@ importers: specifier: ^3.1.0 version: 3.1.0(@types/react@19.0.7)(react@19.0.0) '@next/mdx': - specifier: ^15.1.4 - version: 15.1.4(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.0.7)(react@19.0.0)) + specifier: ^15.1.5 + version: 15.1.5(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.0.7)(react@19.0.0)) '@types/mdx': specifier: ^2.0.13 version: 2.0.13 next: - specifier: ^15.1.4 - version: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^15.1.5 + version: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: specifier: ^19.0.0 version: 19.0.0 @@ -88,8 +88,8 @@ importers: specifier: workspace:* version: link:../../packages/react next: - specifier: ^15.1.4 - version: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^15.1.5 + version: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: specifier: ^19.0.0 version: 19.0.0 @@ -139,13 +139,13 @@ importers: version: 19.0.3(@types/react@19.0.7) '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.3.4(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.3.4(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) typescript: specifier: ^5 version: 5.7.3 vite: specifier: ^6 - version: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + version: 6.0.10(@types/node@22.10.7)(terser@5.37.0) apps/vite-lib: dependencies: @@ -157,7 +157,7 @@ importers: version: 19.0.0 vite: specifier: ^6 - version: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + version: 6.0.10(@types/node@22.10.7)(terser@5.37.0) devDependencies: '@devup-ui/vite-plugin': specifier: workspace:* @@ -170,25 +170,25 @@ importers: version: 19.0.7 '@vitejs/plugin-react': specifier: ^4.3.4 - version: 4.3.4(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.3.4(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) typescript: specifier: ^5 version: 5.7.3 vite-plugin-dts: specifier: ^4.5.0 - version: 4.5.0(@types/node@22.10.7)(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.5.0(@types/node@22.10.7)(rollup@4.31.0)(typescript@5.7.3)(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) benchmark/next-chakra-ui: dependencies: '@chakra-ui/react': - specifier: ^3.3.1 - version: 3.3.1(@emotion/react@11.14.0(@types/react@19.0.7)(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^3.4.0 + version: 3.4.0(@emotion/react@11.14.0(@types/react@19.0.7)(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@emotion/react': specifier: ^11.14.0 version: 11.14.0(@types/react@19.0.7)(react@19.0.0) next: - specifier: ^15.1.4 - version: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^15.1.5 + version: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) next-themes: specifier: ^0.4.4 version: 0.4.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) @@ -221,8 +221,8 @@ importers: specifier: workspace:* version: link:../../packages/react next: - specifier: ^15.1.4 - version: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^15.1.5 + version: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: specifier: ^19.0.0 version: 19.0.0 @@ -250,10 +250,10 @@ importers: dependencies: '@kuma-ui/core': specifier: ^1.5.8 - version: 1.5.8(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 1.5.8(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) next: - specifier: ^15.1.4 - version: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^15.1.5 + version: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: specifier: ^19.0.0 version: 19.0.0 @@ -263,7 +263,7 @@ importers: devDependencies: '@kuma-ui/next-plugin': specifier: ^1.3.2 - version: 1.3.2(@babel/core@7.26.0)(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1) + version: 1.3.2(@babel/core@7.26.0)(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1) '@types/node': specifier: ^22 version: 22.10.7 @@ -286,20 +286,20 @@ importers: version: link:../webpack-plugin next: specifier: ^15.1 - version: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) devDependencies: typescript: specifier: ^5.7.3 version: 5.7.3 vite: specifier: ^6 - version: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + version: 6.0.10(@types/node@22.10.7)(terser@5.37.0) vite-plugin-dts: specifier: ^4.5.0 - version: 4.5.0(@types/node@22.10.7)(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.5.0(@types/node@22.10.7)(rollup@4.31.0)(typescript@5.7.3)(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.7)(terser@5.37.0) + specifier: ^3.0.2 + version: 3.0.2(@types/node@22.10.7)(terser@5.37.0) packages/react: dependencies: @@ -318,13 +318,13 @@ importers: version: 5.7.3 vite: specifier: ^6 - version: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + version: 6.0.10(@types/node@22.10.7)(terser@5.37.0) vite-plugin-dts: specifier: ^4.5.0 - version: 4.5.0(@types/node@22.10.7)(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.5.0(@types/node@22.10.7)(rollup@4.31.0)(typescript@5.7.3)(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.7)(terser@5.37.0) + specifier: ^3.0.2 + version: 3.0.2(@types/node@22.10.7)(terser@5.37.0) packages/vite-plugin: dependencies: @@ -333,14 +333,14 @@ importers: version: link:../../bindings/devup-ui-wasm vite: specifier: ^6 - version: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + version: 6.0.10(@types/node@22.10.7)(terser@5.37.0) devDependencies: typescript: specifier: ^5.7.3 version: 5.7.3 vite-plugin-dts: specifier: ^4.5.0 - version: 4.5.0(@types/node@22.10.7)(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.5.0(@types/node@22.10.7)(rollup@4.31.0)(typescript@5.7.3)(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) packages/webpack-plugin: dependencies: @@ -356,13 +356,13 @@ importers: version: 5.7.3 vite: specifier: ^6 - version: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + version: 6.0.10(@types/node@22.10.7)(terser@5.37.0) vite-plugin-dts: specifier: ^4.5.0 - version: 4.5.0(@types/node@22.10.7)(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) + version: 4.5.0(@types/node@22.10.7)(rollup@4.31.0)(typescript@5.7.3)(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) vitest: - specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.7)(terser@5.37.0) + specifier: ^3.0.2 + version: 3.0.2(@types/node@22.10.7)(terser@5.37.0) packages: @@ -370,8 +370,8 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@ark-ui/react@4.8.0': - resolution: {integrity: sha512-42GgXBbeNzxOin1Ac/X1dP45a6SM5np3tEq8qJmDA4h82AVdPXmtZ//3GMDdLl9CXngvSlKYqsrU+/be1xj3pg==} + '@ark-ui/react@4.8.1': + resolution: {integrity: sha512-KjWQWyg5I95RJFNosNMWFjbDSSoN5SQRR1vorbP0n8kukzRIS0hJKX64JPOdfW5ndyp2gQ3OVN65WaFQDwM0pA==} peerDependencies: react: '>=18.0.0' react-dom: '>=18.0.0' @@ -927,11 +927,12 @@ packages: resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==} engines: {node: '>=6.9.0'} - '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + '@bcoe/v8-coverage@1.0.2': + resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} + engines: {node: '>=18'} - '@chakra-ui/react@3.3.1': - resolution: {integrity: sha512-npO3gwzU8Zf6EcfUSApeSGLgts12DVScyE316uXe17i0vO9xz5QladLKN+qdzA0YnSKsefZVErLAeM9FsKk/+A==} + '@chakra-ui/react@3.4.0': + resolution: {integrity: sha512-ImnUqpZspxVbEMiKUbkIb1ReA9sXioQawKMbW/bGY21O3MjPpNPs9KX1bMk5n4VfsEUlyN0BXwK51lqhFDCEUg==} peerDependencies: '@emotion/react': '>=11' react: '>=18' @@ -1603,11 +1604,11 @@ packages: '@microsoft/tsdoc@0.15.1': resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==} - '@next/env@15.1.4': - resolution: {integrity: sha512-2fZ5YZjedi5AGaeoaC0B20zGntEHRhi2SdWcu61i48BllODcAmmtj8n7YarSPt4DaTsJaBFdxQAVEVzgmx2Zpw==} + '@next/env@15.1.5': + resolution: {integrity: sha512-jg8ygVq99W3/XXb9Y6UQsritwhjc+qeiO7QrGZRYOfviyr/HcdnhdBQu4gbp2rBIh2ZyBYTBMWbPw3JSCb0GHw==} - '@next/mdx@15.1.4': - resolution: {integrity: sha512-GsmKCWPDW6Qas4/yL+zj7RLGrDsVu89F42/S9pVcPTvYmXNK1PqRT6H7outQy6Ox/AGB8As1lxPvk4dJmDIm7w==} + '@next/mdx@15.1.5': + resolution: {integrity: sha512-EvsbFpyNtDHA8lbGO2LU+VdOXuxqasE3TQRIHBHV0i4lS4AHNfGmPCUkf3nuwoJvgSprxYLZyV8hx3+hZPT8dA==} peerDependencies: '@mdx-js/loader': '>=0.15.0' '@mdx-js/react': '>=0.15.0' @@ -1617,50 +1618,50 @@ packages: '@mdx-js/react': optional: true - '@next/swc-darwin-arm64@15.1.4': - resolution: {integrity: sha512-wBEMBs+np+R5ozN1F8Y8d/Dycns2COhRnkxRc+rvnbXke5uZBHkUGFgWxfTXn5rx7OLijuUhyfB+gC/ap58dDw==} + '@next/swc-darwin-arm64@15.1.5': + resolution: {integrity: sha512-5ttHGE75Nw9/l5S8zR2xEwR8OHEqcpPym3idIMAZ2yo+Edk0W/Vf46jGqPOZDk+m/SJ+vYZDSuztzhVha8rcdA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@15.1.4': - resolution: {integrity: sha512-7sgf5rM7Z81V9w48F02Zz6DgEJulavC0jadab4ZsJ+K2sxMNK0/BtF8J8J3CxnsJN3DGcIdC260wEKssKTukUw==} + '@next/swc-darwin-x64@15.1.5': + resolution: {integrity: sha512-8YnZn7vDURUUTInfOcU5l0UWplZGBqUlzvqKKUFceM11SzfNEz7E28E1Arn4/FsOf90b1Nopboy7i7ufc4jXag==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@15.1.4': - resolution: {integrity: sha512-JaZlIMNaJenfd55kjaLWMfok+vWBlcRxqnRoZrhFQrhM1uAehP3R0+Aoe+bZOogqlZvAz53nY/k3ZyuKDtT2zQ==} + '@next/swc-linux-arm64-gnu@15.1.5': + resolution: {integrity: sha512-rDJC4ctlYbK27tCyFUhgIv8o7miHNlpCjb2XXfTLQszwAUOSbcMN9q2y3urSrrRCyGVOd9ZR9a4S45dRh6JF3A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@15.1.4': - resolution: {integrity: sha512-7EBBjNoyTO2ipMDgCiORpwwOf5tIueFntKjcN3NK+GAQD7OzFJe84p7a2eQUeWdpzZvhVXuAtIen8QcH71ZCOQ==} + '@next/swc-linux-arm64-musl@15.1.5': + resolution: {integrity: sha512-FG5RApf4Gu+J+pHUQxXPM81oORZrKBYKUaBTylEIQ6Lz17hKVDsLbSXInfXM0giclvXbyiLXjTv42sQMATmZ0A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@15.1.4': - resolution: {integrity: sha512-9TGEgOycqZFuADyFqwmK/9g6S0FYZ3tphR4ebcmCwhL8Y12FW8pIBKJvSwV+UBjMkokstGNH+9F8F031JZKpHw==} + '@next/swc-linux-x64-gnu@15.1.5': + resolution: {integrity: sha512-NX2Ar3BCquAOYpnoYNcKz14eH03XuF7SmSlPzTSSU4PJe7+gelAjxo3Y7F2m8+hLT8ZkkqElawBp7SWBdzwqQw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@15.1.4': - resolution: {integrity: sha512-0578bLRVDJOh+LdIoKvgNDz77+Bd85c5JrFgnlbI1SM3WmEQvsjxTA8ATu9Z9FCiIS/AliVAW2DV/BDwpXbtiQ==} + '@next/swc-linux-x64-musl@15.1.5': + resolution: {integrity: sha512-EQgqMiNu3mrV5eQHOIgeuh6GB5UU57tu17iFnLfBEhYfiOfyK+vleYKh2dkRVkV6ayx3eSqbIYgE7J7na4hhcA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@15.1.4': - resolution: {integrity: sha512-JgFCiV4libQavwII+kncMCl30st0JVxpPOtzWcAI2jtum4HjYaclobKhj+JsRu5tFqMtA5CJIa0MvYyuu9xjjQ==} + '@next/swc-win32-arm64-msvc@15.1.5': + resolution: {integrity: sha512-HPULzqR/VqryQZbZME8HJE3jNFmTGcp+uRMHabFbQl63TtDPm+oCXAz3q8XyGv2AoihwNApVlur9Up7rXWRcjg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-x64-msvc@15.1.4': - resolution: {integrity: sha512-xxsJy9wzq7FR5SqPCUqdgSXiNXrMuidgckBa8nH9HtjjxsilgcN6VgXF6tZ3uEWuVEadotQJI8/9EQ6guTC4Yw==} + '@next/swc-win32-x64-msvc@15.1.5': + resolution: {integrity: sha512-n74fUb/Ka1dZSVYfjwQ+nSJ+ifUff7jGurFcTuJNKZmI62FFOxQXUYit/uZXPTj2cirm1rvGWHG2GhbSol5Ikw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -1697,98 +1698,98 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.30.1': - resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==} + '@rollup/rollup-android-arm-eabi@4.31.0': + resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.30.1': - resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==} + '@rollup/rollup-android-arm64@4.31.0': + resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.30.1': - resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==} + '@rollup/rollup-darwin-arm64@4.31.0': + resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.30.1': - resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==} + '@rollup/rollup-darwin-x64@4.31.0': + resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.30.1': - resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==} + '@rollup/rollup-freebsd-arm64@4.31.0': + resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.30.1': - resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==} + '@rollup/rollup-freebsd-x64@4.31.0': + resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.30.1': - resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==} + '@rollup/rollup-linux-arm-gnueabihf@4.31.0': + resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.30.1': - resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==} + '@rollup/rollup-linux-arm-musleabihf@4.31.0': + resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.30.1': - resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==} + '@rollup/rollup-linux-arm64-gnu@4.31.0': + resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.30.1': - resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==} + '@rollup/rollup-linux-arm64-musl@4.31.0': + resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.30.1': - resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==} + '@rollup/rollup-linux-loongarch64-gnu@4.31.0': + resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': - resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.31.0': + resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.30.1': - resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==} + '@rollup/rollup-linux-riscv64-gnu@4.31.0': + resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.30.1': - resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==} + '@rollup/rollup-linux-s390x-gnu@4.31.0': + resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.30.1': - resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==} + '@rollup/rollup-linux-x64-gnu@4.31.0': + resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.30.1': - resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==} + '@rollup/rollup-linux-x64-musl@4.31.0': + resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.30.1': - resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==} + '@rollup/rollup-win32-arm64-msvc@4.31.0': + resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.30.1': - resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==} + '@rollup/rollup-win32-ia32-msvc@4.31.0': + resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.30.1': - resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==} + '@rollup/rollup-win32-x64-msvc@4.31.0': + resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==} cpu: [x64] os: [win32] @@ -1820,8 +1821,8 @@ packages: '@swc/helpers@0.5.15': resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} - '@tanstack/eslint-plugin-query@5.62.16': - resolution: {integrity: sha512-VhnHSQ/hc62olLzGhlLJ4BJGWynwjs3cDMsByasKJ3zjW1YZ+6raxOv0gHHISm+VEnAY42pkMowmSWrXfL4NTw==} + '@tanstack/eslint-plugin-query@5.64.2': + resolution: {integrity: sha512-Xq7jRYvNtGMHjQEGUZLHgEMNB59hgTlqdmKor6cdJ6CMZ/nwmBGpnlr/dcHden7W7BPCdBVN4PWMZBICWvCNQQ==} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -1876,8 +1877,8 @@ packages: '@types/mdx@2.0.13': resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} @@ -1911,51 +1912,51 @@ packages: '@types/webpack@5.28.5': resolution: {integrity: sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==} - '@typescript-eslint/eslint-plugin@8.20.0': - resolution: {integrity: sha512-naduuphVw5StFfqp4Gq4WhIBE2gN1GEmMUExpJYknZJdRnc+2gDzB8Z3+5+/Kv33hPQRDGzQO/0opHE72lZZ6A==} + '@typescript-eslint/eslint-plugin@8.21.0': + resolution: {integrity: sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/parser@8.20.0': - resolution: {integrity: sha512-gKXG7A5HMyjDIedBi6bUrDcun8GIjnI8qOwVLiY3rx6T/sHP/19XLJOnIq/FgQvWLHja5JN/LSE7eklNBr612g==} + '@typescript-eslint/parser@8.21.0': + resolution: {integrity: sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/scope-manager@8.20.0': - resolution: {integrity: sha512-J7+VkpeGzhOt3FeG1+SzhiMj9NzGD/M6KoGn9f4dbz3YzK9hvbhVTmLj/HiTp9DazIzJ8B4XcM80LrR9Dm1rJw==} + '@typescript-eslint/scope-manager@8.21.0': + resolution: {integrity: sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.20.0': - resolution: {integrity: sha512-bPC+j71GGvA7rVNAHAtOjbVXbLN5PkwqMvy1cwGeaxUoRQXVuKCebRoLzm+IPW/NtFFpstn1ummSIasD5t60GA==} + '@typescript-eslint/type-utils@8.21.0': + resolution: {integrity: sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/types@8.20.0': - resolution: {integrity: sha512-cqaMiY72CkP+2xZRrFt3ExRBu0WmVitN/rYPZErA80mHjHx/Svgp8yfbzkJmDoQ/whcytOPO9/IZXnOc+wigRA==} + '@typescript-eslint/types@8.21.0': + resolution: {integrity: sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.20.0': - resolution: {integrity: sha512-Y7ncuy78bJqHI35NwzWol8E0X7XkRVS4K4P4TCyzWkOJih5NDvtoRDW4Ba9YJJoB2igm9yXDdYI/+fkiiAxPzA==} + '@typescript-eslint/typescript-estree@8.21.0': + resolution: {integrity: sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/utils@8.20.0': - resolution: {integrity: sha512-dq70RUw6UK9ei7vxc4KQtBRk7qkHZv447OUZ6RPQMQl71I3NZxQJX/f32Smr+iqWrB02pHKn2yAdHBb0KNrRMA==} + '@typescript-eslint/utils@8.21.0': + resolution: {integrity: sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/visitor-keys@8.20.0': - resolution: {integrity: sha512-v/BpkeeYAsPkKCkR8BDwcno0llhzWVqPOamQrAEMdpZav2Y9OVjd9dwJyBLJWwf335B5DmlifECIkZRJCaGaHA==} + '@typescript-eslint/visitor-keys@8.21.0': + resolution: {integrity: sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.2.1': @@ -1967,20 +1968,20 @@ packages: peerDependencies: vite: ^6 - '@vitest/coverage-v8@2.1.8': - resolution: {integrity: sha512-2Y7BPlKH18mAZYAW1tYByudlCYrQyl5RGvnnDYJKW5tCiO5qg3KSAy3XAxcxKz900a0ZXxWtKrMuZLe3lKBpJw==} + '@vitest/coverage-v8@3.0.2': + resolution: {integrity: sha512-U+hZYb0FtgNDb6B3E9piAHzXXIuxuBw2cd6Lvepc9sYYY4KjgiwCBmo3Sird9ZRu3ggLpLBTfw1ZRr77ipiSfw==} peerDependencies: - '@vitest/browser': 2.1.8 - vitest: 2.1.8 + '@vitest/browser': 3.0.2 + vitest: 3.0.2 peerDependenciesMeta: '@vitest/browser': optional: true - '@vitest/expect@2.1.8': - resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} + '@vitest/expect@3.0.2': + resolution: {integrity: sha512-dKSHLBcoZI+3pmP5hiZ7I5grNru2HRtEW8Z5Zp4IXog8QYcxhlox7JUPyIIFWfN53+3HW3KPLIl6nSzUGgKSuQ==} - '@vitest/mocker@2.1.8': - resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} + '@vitest/mocker@3.0.2': + resolution: {integrity: sha512-Hr09FoBf0jlwwSyzIF4Xw31OntpO3XtZjkccpcBf8FeVW3tpiyKlkeUzxS/txzHqpUCNIX157NaTySxedyZLvA==} peerDependencies: msw: ^2.4.9 vite: ^6 @@ -1990,20 +1991,20 @@ packages: vite: optional: true - '@vitest/pretty-format@2.1.8': - resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==} + '@vitest/pretty-format@3.0.2': + resolution: {integrity: sha512-yBohcBw/T/p0/JRgYD+IYcjCmuHzjC3WLAKsVE4/LwiubzZkE8N49/xIQ/KGQwDRA8PaviF8IRO8JMWMngdVVQ==} - '@vitest/runner@2.1.8': - resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==} + '@vitest/runner@3.0.2': + resolution: {integrity: sha512-GHEsWoncrGxWuW8s405fVoDfSLk6RF2LCXp6XhevbtDjdDme1WV/eNmUueDfpY1IX3MJaCRelVCEXsT9cArfEg==} - '@vitest/snapshot@2.1.8': - resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==} + '@vitest/snapshot@3.0.2': + resolution: {integrity: sha512-h9s67yD4+g+JoYG0zPCo/cLTabpDqzqNdzMawmNPzDStTiwxwkyYM1v5lWE8gmGv3SVJ2DcxA2NpQJZJv9ym3g==} - '@vitest/spy@2.1.8': - resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==} + '@vitest/spy@3.0.2': + resolution: {integrity: sha512-8mI2iUn+PJFMT44e3ISA1R+K6ALVs47W6eriDTfXe6lFqlflID05MB4+rIFhmDSLBj8iBsZkzBYlgSkinxLzSQ==} - '@vitest/utils@2.1.8': - resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} + '@vitest/utils@3.0.2': + resolution: {integrity: sha512-Qu01ZYZlgHvDP02JnMBRpX43nRaZtNpIzw3C1clDXmn8eakgX6iQVGzTQ/NjkIr64WD8ioqOjkaYRVvHQI5qiw==} '@volar/language-core@2.4.11': resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==} @@ -2085,209 +2086,206 @@ packages: '@xtuc/long@4.2.2': resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - '@zag-js/accordion@0.81.1': - resolution: {integrity: sha512-NMSx9DNz+FigY9E+FtT/3GCjpP4H0VTbBTmqUDxw3FYKgP3txPoIQGrV4Dig4hCtCiPdmlwSZatA29HrTi8+zw==} + '@zag-js/accordion@0.81.2': + resolution: {integrity: sha512-xmA5GxSlme4zqpeahVpf3uC1zhSHB81c7LFfSpRDfe2KjwTAffnKAWL3thU4I4MXnIQkIXvt604yh7BWYXTrUA==} - '@zag-js/anatomy@0.81.1': - resolution: {integrity: sha512-x63RqFLdqz2a7KCxvpWXMAwr9A5lWtag4dslku6IBu5IT0oMYuQJ0d+3NeY74xKwdctTmnLs/xRsyUfey5DarQ==} + '@zag-js/anatomy@0.81.2': + resolution: {integrity: sha512-wTjaT0n4bdgwd75z9x3FztYprBzmcKJj2VhgJ1OnOFFdMz+EX0mnY5PqCY8sIZQ7jfIimXcZF/xYQmqIGhQnZw==} - '@zag-js/aria-hidden@0.81.1': - resolution: {integrity: sha512-Jsd4rmdZ73+S/PVnoCxI4BjN52okPECztPIxGvNiEOJfL+/YJWmHweprJgmHZJPt9rufZ05SvfeiKr2VXso0vg==} + '@zag-js/aria-hidden@0.81.2': + resolution: {integrity: sha512-QpqapPBe97GsOIv9zm+4nnQB3hMwRBGJZ48/KWUABsKH1YQYX+BLHj97HY7FF3+ML6hdBXKiHYDVfWPBQCzeDw==} - '@zag-js/auto-resize@0.81.1': - resolution: {integrity: sha512-InlncZmgT+ofhrUEeQN8BOa8hUCpPNl6dwL83AxXk5J8k+SmfVr0hH6CNSeAEG9XUmepUGPzXQwYbA5t0KRtNA==} + '@zag-js/auto-resize@0.81.2': + resolution: {integrity: sha512-A2ueJOZhp/DkofwxZa0Wo6YQsfEmuWb5FEy38oVSctznR6yEypBms849GC3efd4/IDKYwvdt/4cGeGU2FVLfWQ==} - '@zag-js/avatar@0.81.1': - resolution: {integrity: sha512-ooMCxBamNWYYi7ZHY+FFpGJouuHWaaO9DTYRwWXsr9pW+FYGcJcPXKKsaFGPeAldBs8dqlBmFdMOWylLySau4Q==} + '@zag-js/avatar@0.81.2': + resolution: {integrity: sha512-eyIEtk2yA+Apl4a/fIiKrSD8C0tFD0+g/JgKcvkiP/OFG4WaBeAg4/URr9dl2Ytg0+1GkRYJzB+wcEUBOqOX8w==} - '@zag-js/carousel@0.81.1': - resolution: {integrity: sha512-iQRnR5yYChFOsdAGAoH8bZei9tlSCngJJ1Bka8j+XvLHLyjOe+fqhaqwlkAFunMH1kEo1lHVbFDQ5FPGZq9PgA==} + '@zag-js/carousel@0.81.2': + resolution: {integrity: sha512-IoJZ6WMGOiyZqm+uya6VBuZGQRNH/6RdVQpoUYgzkf7RRf7uCUs89il7iPf9IB0qO7JZ8eYOa8ZRRRZ1qGos4g==} - '@zag-js/checkbox@0.81.1': - resolution: {integrity: sha512-HmoRt7luHZXvNlsqQW5rrQlcFEVKthFkZPgAwUKM5xD7MaifDQUfaWMcOkYUBpJtziDufV2CcdIu9d1z4/hSMA==} + '@zag-js/checkbox@0.81.2': + resolution: {integrity: sha512-lvqo8M6zsuAluBpp1RbFKhkn7VZI8vNHdzyi14iacWNtzkORbGI0+PXvXQcs0m8mDhTrfk21fnv/rpjsQe+3lg==} - '@zag-js/clipboard@0.81.1': - resolution: {integrity: sha512-ccDxY+8CsM6XvOnfSQmQqsa99XXjjByVYD4ovylk6+jXwVhToyjOxGiQq/n8zALXHLj2hM/1WIvDwZGTPr1GfQ==} + '@zag-js/clipboard@0.81.2': + resolution: {integrity: sha512-+o2kZ0wUxKWI5qIM5CqwzYBEksZKY8/FvomcRv19N8Dr5zXzoVIf8Cub+COlX07ZM9jDW4KjdOijsz4dyBNQBg==} - '@zag-js/collapsible@0.81.1': - resolution: {integrity: sha512-oPnmsVtS3/1olPY4E0IwoixK95MDjIGmfHPVmNX3lioN9hbszxBoUQtsZ0ryXNH9HXvDbnJ/KWtpMELjj2TjPA==} + '@zag-js/collapsible@0.81.2': + resolution: {integrity: sha512-JauqCO4gdPibc4nViPps2rVrovNTaiiMNVy/QMUa6PEtu2zW+l/OR56eQWneIrF11ahq6uUt0HPf0vYhM96A/Q==} - '@zag-js/collection@0.81.1': - resolution: {integrity: sha512-cGvBWL0Z31Vt/RTyuwarkokfer2zlw92+mlX9Hed8198aWyI6bklmaZs77xO89fy8Osjjik/STB6TyItgn1jPA==} + '@zag-js/collection@0.81.2': + resolution: {integrity: sha512-FEqd77voD550yp3O3ZuGsV/g7KUvjOX30hBN2O4qGeXkSGvSJSDuy6eL07M+Fm/vWLDz8moMKnwZ7R9QUWLFEg==} - '@zag-js/color-picker@0.81.1': - resolution: {integrity: sha512-O7AI1BK/GWlyF3pf9O/9iVk2hcBaaJdBAoNyzqrI6+dPgrjs9eXA4VYyavcHZBm3ABCzqZ7ePO9mnBi//wag8Q==} + '@zag-js/color-picker@0.81.2': + resolution: {integrity: sha512-NliCZhgWBhPb338BkL7GLEqGxkkcitqVMGq82284Fh6qg+e1kXS1lrC1X6p32WU/3dwoSc12YEfbolRkIWAcTQ==} - '@zag-js/color-utils@0.81.1': - resolution: {integrity: sha512-Fq4vktoW3UmrhFMb731ldODDSQrLsSO+81eADBzbz3CgGOCOy6rYv73aIgvAgngTOp9Q98NQnTxyt1S8eEGOaw==} + '@zag-js/color-utils@0.81.2': + resolution: {integrity: sha512-mvnagJ0eZkSRIfRcqdZUB6Pv8GaGtHWqDU1rCQoYSmV/Dp468ERoOQbl8/95qeTYRGGL4ba/n89oEDCcVRcUoA==} - '@zag-js/combobox@0.81.1': - resolution: {integrity: sha512-FHJPDZ/A54+ksDJ5dl/Aj49BHso7T8k7s7uSADLvEVJ3kR9qJ+zTdAXR01IQPn+rZWxNUShD76YRK2VKzVt+JQ==} + '@zag-js/combobox@0.81.2': + resolution: {integrity: sha512-EygGIhg4w+f8BmsLFffxHnxsG/V31iHScOVojK/jK6uJi8Q705ZBzvv4sC6ARVxgB9rt+HE+f2sQUZtbSSpxvA==} - '@zag-js/core@0.81.1': - resolution: {integrity: sha512-LJwPH5RgY0EUDDSCfpXFoXQ9+CwakiZOjo9SZdq7lk+wYmP8hCv+r2FCAPclSHljyrGqpIlHU/brkcFslkcN4Q==} + '@zag-js/core@0.81.2': + resolution: {integrity: sha512-dyOSdvxIUaZivEgszAZAsEXzDbz30K7R5cnav42ey6q2DysyA0ir61KuSLqik7pBpkMocLOslB1yjY3XVT7Hfg==} - '@zag-js/date-picker@0.81.1': - resolution: {integrity: sha512-Mrhi+wFJ8I59wmRIMU/0tuL1D9/ycosmtifD7U63leZJZM32lk+Do7YUhP0FyZ/qBVcjCykU3rJZkHL9EBOuFw==} + '@zag-js/date-picker@0.81.2': + resolution: {integrity: sha512-o1eH8c4FnTf5ncq9eVFwz2mwwWFuZ7YwXXCXCA3dXoIjOhJc/IjxbW7Ji4m7nRAPkd0TCq06VSJnpwGObdfa6A==} peerDependencies: '@internationalized/date': '>=3.0.0' - '@zag-js/date-utils@0.81.1': - resolution: {integrity: sha512-NWen8ebvNkPbENaVS3qcpRjeEhcjF0uiDzBlg1cBdqu2A2EUfO1/lrjYTKpboTC2fQeVoIPdrvCkMXvywHFr8Q==} + '@zag-js/date-utils@0.81.2': + resolution: {integrity: sha512-dWh2t3wiaRBM8wjWVd9pYlUu/T3L0DTXGquTqq+1TtsU89uLNQMKR9kYgK9iqRwITIUPojsTOy40CJIjBRLP5w==} peerDependencies: '@internationalized/date': '>=3.0.0' - '@zag-js/dialog@0.81.1': - resolution: {integrity: sha512-Jt6ReyeMAveLKgerhhnpiM0ZKrHCyGmRgRtFbW7o4WSQ63UUyTPgUYIvyRJeVJjAGF6IcfvVVVVY3YthRyzf8A==} - - '@zag-js/dismissable@0.81.1': - resolution: {integrity: sha512-PT19n3CK5XW7S3dQhFLxALsJ0JFsOdukxVNE5iLHPAKEuJeM6dnzG1pn6x3U1wrGybHZgaZkyiF4PWsvXsdaiQ==} + '@zag-js/dialog@0.81.2': + resolution: {integrity: sha512-IN3GdKoRPr2mLiLHhrnrxAjvNMg3gjogtlXApsFA2Quxi0J2X68CS/5EU66hiVxzp3YfmulC7F5amSiN8Xn3ew==} - '@zag-js/dom-query@0.81.1': - resolution: {integrity: sha512-5CsCVT6xUIwj5hTmsSplqdZXC5HFXj/wU3p+Mp0XjM63fgJODXZh79DPjx/Vqo/YrqSQPoK5dHRhUY8fiDyoSQ==} + '@zag-js/dismissable@0.81.2': + resolution: {integrity: sha512-LEK01BSl22PHSoYGWVQ9LH5FRI5G6leOO6ZabCMysBmHf7+NkieUSo07wVrAcCDYvdRCkmGTQ6B/u/z2STJ5lQ==} - '@zag-js/editable@0.81.1': - resolution: {integrity: sha512-phH7pdgwn/KTnYxe7W83j764Z28fqk0rTxzAYj2Rb5ctQA8ls/UdsbBpdALEx08+rxw3pELT7wxk2Rm+n6Ljqw==} + '@zag-js/dom-query@0.81.2': + resolution: {integrity: sha512-Iqi84Ac+5G8PUSETdJFG4eQ+g+Ami/IKxpTmYBdpPZWzgg82hD/+DQ5dDFndQc5HLfo1uhJVZy8O7z8gTrr0Sg==} - '@zag-js/element-rect@0.81.1': - resolution: {integrity: sha512-f11a8MqEEi8yZ4+WmoWpjDBpcWh6kZwkNYyNaVBqseWT9xGTjW3hXxz4L8G0kZaxcsMI2EEv9FNX7tB8FqJD/A==} + '@zag-js/editable@0.81.2': + resolution: {integrity: sha512-Mn6rj0N61eNZ/b/tuyXlZAdtDmx0aIvHqW30Cqy/a/wO63GCDBx+HNFa+nYM+rvgy5V0KDrrqAm01XV/5e03fg==} - '@zag-js/element-size@0.81.1': - resolution: {integrity: sha512-taasImQwXYDvlhQ9L0tPHjbG2Yxqk1FU7sIu5qf9ml1btUEAVah3+DTiCMKBsm+NzgyPY2bsRMqMW3I+4kvkaA==} + '@zag-js/element-rect@0.81.2': + resolution: {integrity: sha512-s2skZTYiauP1gcZhoD8TzBY3tm6DGG0rL2ZCNaP0dtvXv+VMY+/uziwMem32BIQhsSNeA0U5RLaUdzGNuQV6ZA==} - '@zag-js/file-upload@0.81.1': - resolution: {integrity: sha512-a19kPUQ+5lyZRI9qK5ANBNTPY5syKJyva4ahmUm1EtV1Wt89x8xVRc5YG8XXaKlKrZlJdDvNPh2rMhV9QviBJw==} + '@zag-js/element-size@0.81.2': + resolution: {integrity: sha512-73MoNe2u5oTZlPj2T4dbHDdEN6aPXunth9vx1abWiTKif7VG1BqVQb9a6LKyFOztdSG9FaQif2p0VcmLsiO4zw==} - '@zag-js/file-utils@0.81.1': - resolution: {integrity: sha512-oO+7U8TjUSKxnCG9PtG+6SAgzNkf2cq+lTBjOruaRz3sbrxfNMiz2xf/fIbuhEvHryPKWo86Kd/u/kvU5/gY1A==} + '@zag-js/file-upload@0.81.2': + resolution: {integrity: sha512-SK4iCV+4b5aAGH4Fotscuuw0a+P2WTOc1n1IXVLzbcIcAWxOAui5Id+yqimRKUGlqa2D9U6I6vpVFa4UKvAGZg==} - '@zag-js/focus-trap@0.81.1': - resolution: {integrity: sha512-hhW+XkuaaPyTdEBIIEjex+Sflr8sd5pCU/ISyGs4x5wHaPSfYjTUlpasC6ISZ9ADs4kKVidfDnY7u60a2WOAeA==} + '@zag-js/file-utils@0.81.2': + resolution: {integrity: sha512-wKMgJX8xUXzrKTMHm0JqeD4ljaAGhnNd1EPN2xQOl81zd0Hmr6A2293/2bwXtsSSAhS2h2w+mEJkf3phnz5IEg==} - '@zag-js/focus-visible@0.81.1': - resolution: {integrity: sha512-sQopikZzXGNBcxfPzhsJn2/txD5KDoFIuZpN1TwZHCx6JTBtzWHCl/t9VpULeTSbERdCI9iTx5Zt4QxceuwEBA==} + '@zag-js/focus-trap@0.81.2': + resolution: {integrity: sha512-jvMBiUHMb71PDPJOKwGMLSVyv+xYtdW3me+zB5eYBXol8EsAv83m6bjT0SZpJzSeph/9pBg2c+qHhNNQGaZyiA==} - '@zag-js/form-utils@0.81.1': - resolution: {integrity: sha512-Zb7PvXZWIsudQsT+MZtG+HTsP/s1izifzj3ce4jEh4bgo3heLlwPTGkm+4mGqVAivcaPW4HmvwmLOgWoiXA/3A==} + '@zag-js/focus-visible@0.81.2': + resolution: {integrity: sha512-zQF/VK5KN81HkxhRXccP2ai2j7QRhq0J5x9rYIOX/m99S3JvA4l4zKNuENd4vMtS7LZbyIZ9dArMvqLXl5Q+dw==} - '@zag-js/highlight-word@0.81.1': - resolution: {integrity: sha512-PU4zcfVSj446CtSw+viYkFMGkCjZvrZvQxPnGENFNNUHpsnwudz1a/NJiOPxSJTLY+C0FP0vanOl9YbgEL5xGQ==} + '@zag-js/highlight-word@0.81.2': + resolution: {integrity: sha512-YLl8nmvEOtwVFbeZnmL+pZPuRBZiPK0N094hWdKn+ouVxC4lIx+CabDLbKcG2rRm/75Wtyvc/8W4JBkKOQhLfg==} - '@zag-js/hover-card@0.81.1': - resolution: {integrity: sha512-xoAVYUf4sk70f8z1wbeITU+QiGy7jqdPgNkbT6jbklKVS/N8Y7WdWPU67ebCJWDLrUFQ2szG3nJVY/ZiACu1RA==} + '@zag-js/hover-card@0.81.2': + resolution: {integrity: sha512-MuS2T8ZeQtCt8H+MfebLOhpCDN/OCoP0OXyVmzaEvC/S2g1wCUl0itPNvz1O028ekLQwqlxwxEI4c4PXTDDvwA==} - '@zag-js/i18n-utils@0.81.1': - resolution: {integrity: sha512-/7sQuPOewdf/KpQQkizQplWIS/3PH+iqexef/IV/1sS+KgmTrTz8UsVKm4Vw7FcMmFaWlAOdHqS3UgWiJ2j24w==} + '@zag-js/i18n-utils@0.81.2': + resolution: {integrity: sha512-OBFV+MTy1Ypz8nEwgHrcEGS70dAC1qN2tADWE78VMdjcky5T5VcwoxXlVGgaSOUUdBqC+BfR14m9g3BOREqqdQ==} - '@zag-js/interact-outside@0.81.1': - resolution: {integrity: sha512-jfeDlxNCYbRgKwcIdSjr0C6KChbbJSQyeYi+TDmqAQEVTiVYQo3j3NMdoV0V+IVoK+xnj4wC5DhRdEIHLzRiCA==} + '@zag-js/interact-outside@0.81.2': + resolution: {integrity: sha512-PqEQMiSWJtDUVd0qAsbu0PUo/f5scmbZgX5aaxqKhv0EG+ikitoDem4Y173RSCrbah90/IYOQO+OuVrB1awS9A==} - '@zag-js/live-region@0.81.1': - resolution: {integrity: sha512-zyR3xbKOBQ5qftXy8TCUkj8ZAn5p2UKMgsNLYaxW2UVKMy3syMfJ57BFqg8Hvw1vZ9X9orwQG8vSb85ZBIWP9g==} + '@zag-js/live-region@0.81.2': + resolution: {integrity: sha512-PFrOXUXYipHXsygh43LDankinS1fp00rXTWX7Tr8Ao2UiFA/3ooxNqhupq0wvVT2lNgxSDsMSS2XpenZRNLI/g==} - '@zag-js/menu@0.81.1': - resolution: {integrity: sha512-CUDkAvEu/Z2xpY9KJC0Y5//nJ3FWSoOB1bml5fJVfmHSzcwU5JJ2deop1JgFGrOyIK2NYWKsiLRgONpLnkuEAA==} + '@zag-js/menu@0.81.2': + resolution: {integrity: sha512-DXCTAo+DwJKD/8n3az1fqyq/xDOWw7MvRcRubbSz/aJPTdLCrnul/kDAKCr1zZ6JRdMX5xzBSJRlwA69/uPMHw==} - '@zag-js/number-input@0.81.1': - resolution: {integrity: sha512-NBtSgYcA8lbHC1Wn+XKXcy22qA6JBKOXxVUPuMl8RIDNPbIG5MmU1wa4XwvvvpPKdoaXvAROUiP9MgPAJgACoQ==} + '@zag-js/number-input@0.81.2': + resolution: {integrity: sha512-17LjDRJ4Jtb7PEQjcXzgn+hJ0XKQTttMZsEQmGJwHYtQLYXxYqWxihlK1wdpInlxy3a8zwp9ob2gwegbeB1DWA==} - '@zag-js/pagination@0.81.1': - resolution: {integrity: sha512-ynHXkAA/LLjRvlShr+e288sB0b1mP9s6rZItPnrbs7iSopGH5C+T6yqTuBPhSKTQRL36ixw6rjbI0TusnXhlvw==} + '@zag-js/pagination@0.81.2': + resolution: {integrity: sha512-79Z9ELA+xM5LSCtUuztyUnIBFUHOIfnm1xkBIctEs9PMulx9W0Z8KkzfiV44Ze4Qmk/50LByaveg4vQ0sAY9VQ==} - '@zag-js/pin-input@0.81.1': - resolution: {integrity: sha512-+oUdY+LISM1NLHrMax/wiuEhYjRAAGKZT8xY/6g4C464Xqahjc2GNQjpoJ2V2S7N7vn7Prw4m+6rbe4TWAr1Pw==} + '@zag-js/pin-input@0.81.2': + resolution: {integrity: sha512-EnNP4bbiPZPt6kQC5XLTYxjq1WrlxXJdWjloe1voZSlL/ZDo7l9Wztx/+7sSwys11F17r9RTm7ACYH4ixs0ujQ==} - '@zag-js/popover@0.81.1': - resolution: {integrity: sha512-rL+6buqokxxAwCzPFmKt6p7G07zdH34ix1n1MhUVStllU7e/1Kho/bL7qeELFTIJDcgmmKBRj7sa8VJOTj0uJQ==} + '@zag-js/popover@0.81.2': + resolution: {integrity: sha512-7Meukjyw+yBFJfR3LiFISG28+rb6J5+dwmcQscFswjq7yS602gqr3LCHhrl8AdfIt/fOcSBRc8BY+lf3uXGqlQ==} - '@zag-js/popper@0.81.1': - resolution: {integrity: sha512-zTGVu8bVtuGatwrtPdL8jahvWg+wx6N4sWuuCbh7FJbfVfQ849NRgP7im0ar4MLoMFcELkJGmxYQoJ1kbtPVIg==} + '@zag-js/popper@0.81.2': + resolution: {integrity: sha512-9WzvtgadumsrEyKzcx4eoNE7H++k4eC44sVbIYNWXfaOQhzrQchSRhLjRfj06FQ7Pj2qj9ep7LjzJ2X2yWBkAg==} - '@zag-js/presence@0.81.1': - resolution: {integrity: sha512-9cWVU8ciU0oG3wJbo6AftDCdpBIGNIk3UqXxAQf4LI//FgnOiYtOmpvl9LXrS1MqEOAwnR6rkCeiNjTmW8O4Mw==} + '@zag-js/presence@0.81.2': + resolution: {integrity: sha512-S4iMDxWko+km2QgadJ8W8HuRIW6p04sCxvZrsgT/xGQrJJ5/nmDPcmyyKPeMWtultzi4k1G6SIGQoSzEZvgFZg==} - '@zag-js/progress@0.81.1': - resolution: {integrity: sha512-mgUt8sub5DOCv2ic5UJqqWsR5tM/HWqMY2ug5LVN3WD9d0ChBzi2TB5nUprunDa1xbGQfk3AyPNYNYnkqHaVLQ==} + '@zag-js/progress@0.81.2': + resolution: {integrity: sha512-LRpDNI9lap0fOr1DiB1WLuY4j5lEVW0v5TBBT61vNhbc0b07Lq3bR6PoSUW7RWjC26mFrbS9/3MuwHrfSR4BeQ==} - '@zag-js/qr-code@0.81.1': - resolution: {integrity: sha512-aM2e8LwMffUq5PHaBTFseTb5PUmTgD9+avc4R/IqD6bXod/RRc0C5n2BhAsOMJnXFFucq2Wuwofk2dS4FlQ4vQ==} + '@zag-js/qr-code@0.81.2': + resolution: {integrity: sha512-TtHoJC78iBsK8PrRkZz5l8LZdVWUZQiaRx7locjYmhjsWSHxgxyoZ7GZG8mfblFO0vVsGlyupfApYV9QENkjBw==} - '@zag-js/radio-group@0.81.1': - resolution: {integrity: sha512-EOE9Usqf2ih6j7VqwtRak1Gq2WkMOaTh3xAgFSIpId5gI5lmbx5IPjyyufp9XZJzn6LOkHRViMHllGA9d1A2Ig==} + '@zag-js/radio-group@0.81.2': + resolution: {integrity: sha512-rRjCZVyAxUvEFNnpyhCCLH3dPGIF/XkUn9L/A770oPrel9Z33ULIZMEef96X0W74btdi88OC/BSZMOrA9OrLTw==} - '@zag-js/rating-group@0.81.1': - resolution: {integrity: sha512-9MbeNVQeLDw/PppnCrJo7I9UOGzMCstzfPyyM3Yrpt8KN+hP8h2nHW1JHUvXQ9OslJWjKLnCLxJReEJxGxNdJQ==} + '@zag-js/rating-group@0.81.2': + resolution: {integrity: sha512-Ktm7Bh9GZb7s+fOIpdvg0zBS8EbY+ITOtNd9MZyCNa4CSm0whw7X5AYk5z9cvaXA1z9jB9JprGk9zgO9bxqEzg==} - '@zag-js/react@0.81.1': - resolution: {integrity: sha512-fEBk2ejKCYDiHLEbNB6B+WgtzfigvKLP8Q3RSVc/IP9y6DkdztdWGZ80GBB/7cRdcbBOBZGK0ZEEi76iSC5YVg==} + '@zag-js/react@0.81.2': + resolution: {integrity: sha512-hm3Ws+CBECRslQX0d1VDv6RlMrbh2GM9uGhRWE7MIrO5UuOS5qGPUj8lPDJNoHW1aWYJAl8Fl5CfJ1lPdwAI5A==} peerDependencies: react: '>=18.0.0' react-dom: '>=18.0.0' - '@zag-js/rect-utils@0.81.1': - resolution: {integrity: sha512-3BkNYhEYZYBk770EUiM/aZ9k1HJg9FaWKOHXGpfZpndlqjUtLLMehej7752KFcpZaDRtUZ3Po1WXq0sIgwEtxw==} + '@zag-js/rect-utils@0.81.2': + resolution: {integrity: sha512-Hv+vs2FHn+iHn7FJF33KV83SZm8Zs8ogW0dVPsPshF8dIuoCbu/JSyaORrrTlXKlsN/E72SiKsXtn7javefWLw==} - '@zag-js/remove-scroll@0.81.1': - resolution: {integrity: sha512-ONcWwEAAa3W9kYTHKoILGlFPJQ8XHvXkaVeYA+t8IlCA5pK2cS7yGA8ItyQUFFbJu1k1es53DQESXqZHtOoWTQ==} + '@zag-js/remove-scroll@0.81.2': + resolution: {integrity: sha512-bcyEWuHgVYd3YdGJ99z460QwiFXeL+iNhzSNWltr6ZDvdOCQdK2Q8iAO+SgK0E1KfsnFnqLcSuBHBhJwLD6/6g==} - '@zag-js/scroll-snap@0.81.1': - resolution: {integrity: sha512-eRbyvLxPI+rRkgd2GYCz9xeesucFgpqa9NPI3ERTibSsMSTOgZsYogi8vn6rXfW/YGS4xgiXZbVSMRgEeLPijQ==} + '@zag-js/scroll-snap@0.81.2': + resolution: {integrity: sha512-JNJ/qfbtSwqGVIIlg16FPkMWXudn7rrDmnSC7jrlMMTnMKxLTRTyC7hDGPvjEL4MDDWMSbnxDa0peGDXMNNSJQ==} - '@zag-js/select@0.81.1': - resolution: {integrity: sha512-eYCJoxUfwXBMSI/+GLZCzmT3P2UMInKztRt064bW+pLMIHhsHCoUKoNNzDFFx9q27HKgXk6pZIp4/5ZnxPF4WQ==} + '@zag-js/select@0.81.2': + resolution: {integrity: sha512-bQYxuhf6JC9nKzlLAAcG0GxjhpVsNoI5AhCNqq+4yoMUbR/yqZwCiHFAPxZMneciS/LsWuDZMvZyVt4pY4j9Sw==} - '@zag-js/signature-pad@0.81.1': - resolution: {integrity: sha512-wHFeZuwoJWG5/Tk5u8T7M+ENg9nkBf8md14huW8MKVcfkLNi+a/z2B1KzodWnn4mekxUMEKAXhOdmELqqAHSOg==} + '@zag-js/signature-pad@0.81.2': + resolution: {integrity: sha512-TC/DKJtJsv0L3nGDAZsMxLZ2FsDwLSIqaAoK3s/kYga+//zBwHOh46NEy21fNEZBwCWh/r6Tj2p+WuutFRFc0g==} - '@zag-js/slider@0.81.1': - resolution: {integrity: sha512-1yPml/nIWpiijEmUxYzlPOIi6v2r+URhBM9giEG9mwaUU9uWtYrEQKSQVQChkPlW8xoNxtqtG6wNjEjekWDqfw==} + '@zag-js/slider@0.81.2': + resolution: {integrity: sha512-yD8FgHh7g5CVoG0itscJyq3+kPtD5EQgYH+yPpc87fQ1o7SHbzq3U9WE3KXDY555OYQYD5dAkWCIeQRfmQKnJg==} - '@zag-js/splitter@0.81.1': - resolution: {integrity: sha512-KlSIsCZWL1zLfqE05xyGYVKxu8OiQ91yVBqsJhuHUPTH0Ww/UQI4sU70yWqePrGi+L+VieMZUia4OFKcmhvljA==} + '@zag-js/splitter@0.81.2': + resolution: {integrity: sha512-+ZCzb+XCtnFsKi55pZHCDxJ090eFUecVHohSyZH45JePp0i+QO2vK495yjYH/NHSwwS9QSwrprRZGa2QfaeKKg==} - '@zag-js/steps@0.81.1': - resolution: {integrity: sha512-RA/TFqsc0QBgL61R8rWUhawANvZIaXN3nNP6RQ/qcYQpVjCLIC97oDrWvZd//THrMay65wPT4iuOGkBoXLqr5g==} + '@zag-js/steps@0.81.2': + resolution: {integrity: sha512-w2/QwDVOX0RW7igAHcYr6yZM9/A/tcm9Nb4ZWbkM253vkGDMm6ruvDpO58R9qjce2rtExXgU437WTHZe7y1TyA==} - '@zag-js/store@0.81.1': - resolution: {integrity: sha512-IsRnK6G/I5Sx8kxLC/PNUmxduOeLsrtgWuw1FGu1x88BgE+/akmL9fZoGdQds+TFNPESTtqWQxiTFm1w3nn/aQ==} + '@zag-js/store@0.81.2': + resolution: {integrity: sha512-D4jqyKokVwpNXL0lq3nn9iQekyntNbPkAetDZs3vy1gPAq0hvFWKF8iNTCthC1e3hRZqJBE8l6gbL9fi1nU/XA==} - '@zag-js/switch@0.81.1': - resolution: {integrity: sha512-2lEOGzVW2bqA2GY7HVg2aKXsQoD0v65K9qVuJiP/9Lpst6JPOw5E6nEZj1xOheluHJVI29R/HBUIw9GU27MroA==} + '@zag-js/switch@0.81.2': + resolution: {integrity: sha512-Ts1O8dmhkQKnWwjtnmK/yH5QMAAIAjuwVaUPcRuFuiBqU7Meo3Kapo7wAu3mxXXpNmarMUzntdv+uxmXFtAjVQ==} - '@zag-js/tabs@0.81.1': - resolution: {integrity: sha512-B24xFIfVJRL0nbzp97mqKN1zJKVrL8eXR2TOq+1ZxqrnnUZ5RQNzqo46wFIItRQsHjvbxyuI54KgvL1bp29wiw==} + '@zag-js/tabs@0.81.2': + resolution: {integrity: sha512-UK4J/o6Iuos/i9RG4KOT+TYBuHHeYUDer9XIQPMEX4wppgqZaisZMvsHGkA4s7kIezvuupR/uZxjzZocQFYsqQ==} - '@zag-js/tags-input@0.81.1': - resolution: {integrity: sha512-nR5aE0NIaLrz2GQEGN1EkJFJrs53wdrx8cBpRn6qCIuC907fCRRDb8jdamZ51wP6GvRmgqdufuhGtbS7s78v/Q==} + '@zag-js/tags-input@0.81.2': + resolution: {integrity: sha512-zCqzluQsW7SAhZ2BkNTaTPdYkdSoMsrekEowRFHe+snRmX2UnUJ7B8skd0tw114ipJxEiC+Pjq/c5aReP+UvMw==} - '@zag-js/time-picker@0.81.1': - resolution: {integrity: sha512-7iBOfRb7J0IYxOSy1Vbznfnq1ISzrbujbjHNY+PjbEDCA7vCEmI0vGEXHBs4YTkTaW5Sisku1a44Ua1kvHT0Dg==} + '@zag-js/time-picker@0.81.2': + resolution: {integrity: sha512-/+cvKNp3g4mZ16IVWf8qutTtE9yQCS4lVtfCF0TMGryL1dGjFHZtbDBhVF0yUl2IlvBZKZIX2Zz8bd8KZbJ0VA==} peerDependencies: '@internationalized/date': '>=3.0.0' - '@zag-js/timer@0.81.1': - resolution: {integrity: sha512-BcdSBf+EeQwdKiic0yDFjErCYbwa5vxVWbE7tDHoEXBWeV1xMIjqcxG20qJ2kSxDWjlkx+vpcTnDqvIYnFl5ag==} + '@zag-js/timer@0.81.2': + resolution: {integrity: sha512-eWF00NMAhCl7cNeNeqT5y7mtXPeuJm2bH9V+sXO8uvYXpKKgykX8nvEDeMJj4gAw3gpG/ov6rZpDBcaqPdXq+Q==} - '@zag-js/toast@0.81.1': - resolution: {integrity: sha512-v3jEsOcgtl2yIE1kllSccMUlHC87nB7UohFkhVl5gAV2sXMQ2evLna/+DAYlBRYjJogapOW+g69rW4sPX+HZxA==} + '@zag-js/toast@0.81.2': + resolution: {integrity: sha512-9MAFg5qAGOpCtcp8vp0MPDxzaLyn/dNjs8mscNfV93DRUA2TOCz3SXllk/qNnUjdU+Ux2WV04OwbElz43sBjwg==} - '@zag-js/toggle-group@0.81.1': - resolution: {integrity: sha512-x/cpAd/pER/F/pitJ+Rd3RZ02vj8pe17noE7t/1wFyiNRLTi6R4E5fik9yqyFAukLwizxCXpS3rDYIEi7ta70w==} + '@zag-js/toggle-group@0.81.2': + resolution: {integrity: sha512-y6BbbOCvsNYUhUfQuswNZO/LpYhmwuO2vDE88GnWAO1g41epAG3ASrkYCtpApQKVbmIHh6gNa9taGhIhzo/13A==} - '@zag-js/tooltip@0.81.1': - resolution: {integrity: sha512-yNmgLlOh1AN006TD7xTkW/lu45O201g+uEXZhwgCiJsngYmOKNFMJFCUllE3KDR/kxecOFr9UZTVual1IhFxjA==} + '@zag-js/tooltip@0.81.2': + resolution: {integrity: sha512-qhpUUJwUf5DrlbKh533OJYU0kYo0Nuv6RoF7qs+XSqCx4btqyCNPseJf9/BX2UTqwo7J6cZwr0iqRwJgxx2k/Q==} - '@zag-js/tour@0.81.1': - resolution: {integrity: sha512-ssKFyZyjFmRpvmlKSOEeo/yb01oCkF8XKOoYFiCgz7Pm9Guaf4rwEWbQBpzlKYaj2zZ8L6+7bOWVgt0f+ZngNw==} + '@zag-js/tour@0.81.2': + resolution: {integrity: sha512-RD9eEw9EN4Qa8awT3mS/pM9bCMR0aljt1UyTL8siR0jH/tMwZ7Vntuxb3bQGdyUSLQykyh1miczMS8zha84BKg==} - '@zag-js/tree-view@0.81.1': - resolution: {integrity: sha512-ks2OtbJXvvmC3UXUyaFQKO+LQDopNhenJ2mV+Gqs3RNqO/5EViIWbiZN6s2bsSaduQhfaCTqk4pFkeBhYIluhQ==} + '@zag-js/tree-view@0.81.2': + resolution: {integrity: sha512-G782cRXUnACceINnpQTLEeg33n6nzProOCC38dguwqKNd1pUDloVnDyo87XHDxEA2WCi0CslGlxW8YuL5iOd9w==} - '@zag-js/types@0.81.1': - resolution: {integrity: sha512-+T9H99wHn7snO0LwZ9PHX9o4ZAz3Y80Z3nlEFCWyGwFjRwrmZxoGN016pQI+C9HUVe+qXDN5oXysV1N/1/6O0A==} + '@zag-js/types@0.81.2': + resolution: {integrity: sha512-RmEN7+TrpJiS1NLqTvURmxhYyCrsuLKblbdR/MSJ2L0M0sdncyClSNhcXkjSd0wRuEaNPF97H5lvAhQ+nEMynQ==} - '@zag-js/utils@0.81.1': - resolution: {integrity: sha512-lWpU6n6wKhK6GkgyE3IdEChY5AjwmrAqdr9rc4F2qlb/lEp/TFbKOn2TOiFHPLd2YzE4jElFQL7+/7CDK3qFPg==} + '@zag-js/utils@0.81.2': + resolution: {integrity: sha512-lE3aCkA+e9tCiU10FS73CyiAa43folvKCDr5HMJ8se2MgYUyVfB5vjRKBvH3eAi4tcniwYjYY73pH5V7Gf2wnA==} acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -2501,8 +2499,8 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - caniuse-lite@1.0.30001692: - resolution: {integrity: sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==} + caniuse-lite@1.0.30001695: + resolution: {integrity: sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==} ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -2687,8 +2685,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.83: - resolution: {integrity: sha512-LcUDPqSt+V0QmI47XLzZrz5OqILSMGsPFkDYus22rIbgorSvBYEFqq854ltTmUdHkY92FSdAAvsh4jWEULMdfQ==} + electron-to-chromium@1.5.84: + resolution: {integrity: sha512-I+DQ8xgafao9Ha6y0qjHHvpZ9OfyA1qKlkHkjywxzniORU2awxyz7f/iVJcULmrF2yrM3nHQf+iDjJtbbexd/g==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -2780,8 +2778,8 @@ packages: peerDependencies: eslint: '*' - eslint-plugin-prettier@5.2.2: - resolution: {integrity: sha512-1yI3/hf35wmlq66C8yOyrujQnel+v5l1Vop5Cl2I6ylyNTT1JbuUUnV3/41PzwTzcyDp/oF0jWE3HXvcH5AQOQ==} + eslint-plugin-prettier@5.2.3: + resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: '@types/eslint': '>=8.0.0' @@ -2937,8 +2935,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-uri@3.0.5: - resolution: {integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==} + fast-uri@3.0.6: + resolution: {integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==} fastq@1.18.0: resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} @@ -3654,8 +3652,8 @@ packages: react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc - next@15.1.4: - resolution: {integrity: sha512-mTaq9dwaSuwwOrcu3ebjDYObekkxRnXpuVL21zotM8qE2W0HBOdVIdg2Li9QjMEZrj73LN96LcWcz62V19FjAg==} + next@15.1.5: + resolution: {integrity: sha512-Cf/TEegnt01hn3Hoywh6N8fvkhbOuChO4wFje24+a86wKOubgVaWkDqxGVgoWlz2Hp9luMJ9zw3epftujdnUOg==} engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} hasBin: true peerDependencies: @@ -3803,11 +3801,8 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} - pathe@1.1.2: - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} - - pathe@2.0.1: - resolution: {integrity: sha512-6jpjMpOth5S9ITVu5clZ7NOgHNsv5vRQdheL9ztp2vZmM6fRbLvyua1tiBIL4lk8SAe3ARzeXEly6siXCjDHDw==} + pathe@2.0.2: + resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==} pathval@2.0.0: resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} @@ -4018,8 +4013,8 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rollup@4.30.1: - resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==} + rollup@4.31.0: + resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -4301,8 +4296,8 @@ packages: resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} engines: {node: ^18.0.0 || >=20.0.0} - tinyrainbow@1.2.0: - resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} engines: {node: '>=14.0.0'} tinyspy@3.0.2: @@ -4355,8 +4350,8 @@ packages: resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} engines: {node: '>= 0.4'} - typescript-eslint@8.20.0: - resolution: {integrity: sha512-Kxz2QRFsgbWj6Xcftlw3Dd154b3cEPFqQC+qMZrMypSijPd4UanKKvoKDrJ4o8AIfZFKAF+7sMaEIR8mTElozA==} + typescript-eslint@8.21.0: + resolution: {integrity: sha512-txEKYY4XMKwPXxNkN8+AxAdX6iIJAPiJbHE/FpQccs/sxw8Lf26kqwC3cn0xkHlW8kEbLhkhCsjWuMveaY9Rxw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 @@ -4441,9 +4436,9 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite-node@2.1.8: - resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} - engines: {node: ^18.0.0 || >=20.0.0} + vite-node@3.0.2: + resolution: {integrity: sha512-hsEQerBAHvVAbv40m3TFQe/lTEbOp7yDpyqMJqr2Tnd+W58+DEYOt+fluQgekOePcsNBmR77lpVAnIU2Xu4SvQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true vite-plugin-dts@4.5.0: @@ -4455,8 +4450,8 @@ packages: vite: optional: true - vite@6.0.7: - resolution: {integrity: sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==} + vite@6.0.10: + resolution: {integrity: sha512-MEszunEcMo6pFsfXN1GhCFQqnE25tWRH0MA4f0Q7uanACi4y1Us+ZGpTMnITwCTnYzB2b9cpmnelTlxgTBmaBA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: @@ -4495,15 +4490,15 @@ packages: yaml: optional: true - vitest@2.1.8: - resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} - engines: {node: ^18.0.0 || >=20.0.0} + vitest@3.0.2: + resolution: {integrity: sha512-5bzaHakQ0hmVVKLhfh/jXf6oETDBtgPo8tQCHYB+wftNgFJ+Hah67IsWc8ivx4vFL025Ow8UiuTf4W57z4izvQ==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' - '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.8 - '@vitest/ui': 2.1.8 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.0.2 + '@vitest/ui': 3.0.2 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -4611,60 +4606,60 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@ark-ui/react@4.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@ark-ui/react@4.8.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 - '@zag-js/accordion': 0.81.1 - '@zag-js/anatomy': 0.81.1 - '@zag-js/auto-resize': 0.81.1 - '@zag-js/avatar': 0.81.1 - '@zag-js/carousel': 0.81.1 - '@zag-js/checkbox': 0.81.1 - '@zag-js/clipboard': 0.81.1 - '@zag-js/collapsible': 0.81.1 - '@zag-js/collection': 0.81.1 - '@zag-js/color-picker': 0.81.1 - '@zag-js/color-utils': 0.81.1 - '@zag-js/combobox': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/date-picker': 0.81.1(@internationalized/date@3.6.0) - '@zag-js/date-utils': 0.81.1(@internationalized/date@3.6.0) - '@zag-js/dialog': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/editable': 0.81.1 - '@zag-js/file-upload': 0.81.1 - '@zag-js/file-utils': 0.81.1 - '@zag-js/focus-trap': 0.81.1 - '@zag-js/highlight-word': 0.81.1 - '@zag-js/hover-card': 0.81.1 - '@zag-js/i18n-utils': 0.81.1 - '@zag-js/menu': 0.81.1 - '@zag-js/number-input': 0.81.1 - '@zag-js/pagination': 0.81.1 - '@zag-js/pin-input': 0.81.1 - '@zag-js/popover': 0.81.1 - '@zag-js/presence': 0.81.1 - '@zag-js/progress': 0.81.1 - '@zag-js/qr-code': 0.81.1 - '@zag-js/radio-group': 0.81.1 - '@zag-js/rating-group': 0.81.1 - '@zag-js/react': 0.81.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@zag-js/select': 0.81.1 - '@zag-js/signature-pad': 0.81.1 - '@zag-js/slider': 0.81.1 - '@zag-js/splitter': 0.81.1 - '@zag-js/steps': 0.81.1 - '@zag-js/switch': 0.81.1 - '@zag-js/tabs': 0.81.1 - '@zag-js/tags-input': 0.81.1 - '@zag-js/time-picker': 0.81.1(@internationalized/date@3.6.0) - '@zag-js/timer': 0.81.1 - '@zag-js/toast': 0.81.1 - '@zag-js/toggle-group': 0.81.1 - '@zag-js/tooltip': 0.81.1 - '@zag-js/tour': 0.81.1 - '@zag-js/tree-view': 0.81.1 - '@zag-js/types': 0.81.1 + '@zag-js/accordion': 0.81.2 + '@zag-js/anatomy': 0.81.2 + '@zag-js/auto-resize': 0.81.2 + '@zag-js/avatar': 0.81.2 + '@zag-js/carousel': 0.81.2 + '@zag-js/checkbox': 0.81.2 + '@zag-js/clipboard': 0.81.2 + '@zag-js/collapsible': 0.81.2 + '@zag-js/collection': 0.81.2 + '@zag-js/color-picker': 0.81.2 + '@zag-js/color-utils': 0.81.2 + '@zag-js/combobox': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/date-picker': 0.81.2(@internationalized/date@3.6.0) + '@zag-js/date-utils': 0.81.2(@internationalized/date@3.6.0) + '@zag-js/dialog': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/editable': 0.81.2 + '@zag-js/file-upload': 0.81.2 + '@zag-js/file-utils': 0.81.2 + '@zag-js/focus-trap': 0.81.2 + '@zag-js/highlight-word': 0.81.2 + '@zag-js/hover-card': 0.81.2 + '@zag-js/i18n-utils': 0.81.2 + '@zag-js/menu': 0.81.2 + '@zag-js/number-input': 0.81.2 + '@zag-js/pagination': 0.81.2 + '@zag-js/pin-input': 0.81.2 + '@zag-js/popover': 0.81.2 + '@zag-js/presence': 0.81.2 + '@zag-js/progress': 0.81.2 + '@zag-js/qr-code': 0.81.2 + '@zag-js/radio-group': 0.81.2 + '@zag-js/rating-group': 0.81.2 + '@zag-js/react': 0.81.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@zag-js/select': 0.81.2 + '@zag-js/signature-pad': 0.81.2 + '@zag-js/slider': 0.81.2 + '@zag-js/splitter': 0.81.2 + '@zag-js/steps': 0.81.2 + '@zag-js/switch': 0.81.2 + '@zag-js/tabs': 0.81.2 + '@zag-js/tags-input': 0.81.2 + '@zag-js/time-picker': 0.81.2(@internationalized/date@3.6.0) + '@zag-js/timer': 0.81.2 + '@zag-js/toast': 0.81.2 + '@zag-js/toggle-group': 0.81.2 + '@zag-js/tooltip': 0.81.2 + '@zag-js/tour': 0.81.2 + '@zag-js/tree-view': 0.81.2 + '@zag-js/types': 0.81.2 react: 19.0.0 react-dom: 19.0.0(react@19.0.0) @@ -5390,11 +5385,11 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@bcoe/v8-coverage@0.2.3': {} + '@bcoe/v8-coverage@1.0.2': {} - '@chakra-ui/react@3.3.1(@emotion/react@11.14.0(@types/react@19.0.7)(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@chakra-ui/react@3.4.0(@emotion/react@11.14.0(@types/react@19.0.7)(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@ark-ui/react': 4.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@ark-ui/react': 4.8.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@emotion/is-prop-valid': 1.3.1 '@emotion/react': 11.14.0(@types/react@19.0.7)(react@19.0.0) '@emotion/serialize': 1.3.3 @@ -5943,10 +5938,10 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@kuma-ui/babel-plugin@1.2.2(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': + '@kuma-ui/babel-plugin@1.2.2(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': dependencies: '@babel/core': 7.26.0 - '@kuma-ui/core': 1.5.8(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@kuma-ui/core': 1.5.8(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) '@kuma-ui/sheet': 1.3.1 '@kuma-ui/system': 1.7.5 transitivePeerDependencies: @@ -5955,11 +5950,11 @@ snapshots: - react - supports-color - '@kuma-ui/compiler@1.3.2(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': + '@kuma-ui/compiler@1.3.2(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': dependencies: '@babel/core': 7.26.0 - '@kuma-ui/babel-plugin': 1.2.2(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) - '@kuma-ui/core': 1.5.8(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@kuma-ui/babel-plugin': 1.2.2(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@kuma-ui/core': 1.5.8(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) '@kuma-ui/sheet': 1.3.1 '@kuma-ui/system': 1.7.5 '@kuma-ui/wasm': 1.0.3 @@ -5970,7 +5965,7 @@ snapshots: - react - supports-color - '@kuma-ui/core@1.5.8(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': + '@kuma-ui/core@1.5.8(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': dependencies: '@kuma-ui/sheet': 1.3.1 '@kuma-ui/system': 1.7.5 @@ -5979,18 +5974,18 @@ snapshots: stylis: 4.3.5 optionalDependencies: '@types/react': 19.0.7 - next: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + next: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@kuma-ui/next-plugin@1.3.2(@babel/core@7.26.0)(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1)': + '@kuma-ui/next-plugin@1.3.2(@babel/core@7.26.0)(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1)': dependencies: '@babel/preset-env': 7.26.0(@babel/core@7.26.0) '@babel/preset-react': 7.26.3(@babel/core@7.26.0) '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0) - '@kuma-ui/core': 1.5.8(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) - '@kuma-ui/webpack-plugin': 1.4.2(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1) + '@kuma-ui/core': 1.5.8(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@kuma-ui/webpack-plugin': 1.4.2(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1) babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.97.1) browserslist: 4.21.5 - next: 15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + next: 15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 webpack: 5.97.1 optionalDependencies: @@ -6010,9 +6005,9 @@ snapshots: '@kuma-ui/wasm@1.0.3': {} - '@kuma-ui/webpack-plugin@1.4.2(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1)': + '@kuma-ui/webpack-plugin@1.4.2(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1)': dependencies: - '@kuma-ui/compiler': 1.3.2(@types/react@19.0.7)(next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@kuma-ui/compiler': 1.3.2(@types/react@19.0.7)(next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) '@kuma-ui/sheet': 1.3.1 '@kuma-ui/system': 1.7.5 esbuild: 0.18.20 @@ -6121,37 +6116,37 @@ snapshots: '@microsoft/tsdoc@0.15.1': {} - '@next/env@15.1.4': {} + '@next/env@15.1.5': {} - '@next/mdx@15.1.4(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.0.7)(react@19.0.0))': + '@next/mdx@15.1.5(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.0.7)(react@19.0.0))': dependencies: source-map: 0.7.4 optionalDependencies: '@mdx-js/loader': 3.1.0(acorn@8.14.0)(webpack@5.97.1) '@mdx-js/react': 3.1.0(@types/react@19.0.7)(react@19.0.0) - '@next/swc-darwin-arm64@15.1.4': + '@next/swc-darwin-arm64@15.1.5': optional: true - '@next/swc-darwin-x64@15.1.4': + '@next/swc-darwin-x64@15.1.5': optional: true - '@next/swc-linux-arm64-gnu@15.1.4': + '@next/swc-linux-arm64-gnu@15.1.5': optional: true - '@next/swc-linux-arm64-musl@15.1.4': + '@next/swc-linux-arm64-musl@15.1.5': optional: true - '@next/swc-linux-x64-gnu@15.1.4': + '@next/swc-linux-x64-gnu@15.1.5': optional: true - '@next/swc-linux-x64-musl@15.1.4': + '@next/swc-linux-x64-musl@15.1.5': optional: true - '@next/swc-win32-arm64-msvc@15.1.4': + '@next/swc-win32-arm64-msvc@15.1.5': optional: true - '@next/swc-win32-x64-msvc@15.1.4': + '@next/swc-win32-x64-msvc@15.1.5': optional: true '@nodelib/fs.scandir@2.1.5': @@ -6173,69 +6168,69 @@ snapshots: '@pkgr/core@0.1.1': {} - '@rollup/pluginutils@5.1.4(rollup@4.30.1)': + '@rollup/pluginutils@5.1.4(rollup@4.31.0)': dependencies: '@types/estree': 1.0.6 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.30.1 + rollup: 4.31.0 - '@rollup/rollup-android-arm-eabi@4.30.1': + '@rollup/rollup-android-arm-eabi@4.31.0': optional: true - '@rollup/rollup-android-arm64@4.30.1': + '@rollup/rollup-android-arm64@4.31.0': optional: true - '@rollup/rollup-darwin-arm64@4.30.1': + '@rollup/rollup-darwin-arm64@4.31.0': optional: true - '@rollup/rollup-darwin-x64@4.30.1': + '@rollup/rollup-darwin-x64@4.31.0': optional: true - '@rollup/rollup-freebsd-arm64@4.30.1': + '@rollup/rollup-freebsd-arm64@4.31.0': optional: true - '@rollup/rollup-freebsd-x64@4.30.1': + '@rollup/rollup-freebsd-x64@4.31.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.30.1': + '@rollup/rollup-linux-arm-gnueabihf@4.31.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.30.1': + '@rollup/rollup-linux-arm-musleabihf@4.31.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.30.1': + '@rollup/rollup-linux-arm64-gnu@4.31.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.30.1': + '@rollup/rollup-linux-arm64-musl@4.31.0': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.30.1': + '@rollup/rollup-linux-loongarch64-gnu@4.31.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.30.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.31.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.30.1': + '@rollup/rollup-linux-riscv64-gnu@4.31.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.30.1': + '@rollup/rollup-linux-s390x-gnu@4.31.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.30.1': + '@rollup/rollup-linux-x64-gnu@4.31.0': optional: true - '@rollup/rollup-linux-x64-musl@4.30.1': + '@rollup/rollup-linux-x64-musl@4.31.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.30.1': + '@rollup/rollup-win32-arm64-msvc@4.31.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.30.1': + '@rollup/rollup-win32-ia32-msvc@4.31.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.30.1': + '@rollup/rollup-win32-x64-msvc@4.31.0': optional: true '@rushstack/node-core-library@5.10.2(@types/node@22.10.7)': @@ -6278,9 +6273,9 @@ snapshots: dependencies: tslib: 2.8.1 - '@tanstack/eslint-plugin-query@5.62.16(eslint@9.18.0)(typescript@5.7.3)': + '@tanstack/eslint-plugin-query@5.64.2(eslint@9.18.0)(typescript@5.7.3)': dependencies: - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3) eslint: 9.18.0 transitivePeerDependencies: - supports-color @@ -6322,7 +6317,7 @@ snapshots: '@types/debug@4.1.12': dependencies: - '@types/ms': 0.7.34 + '@types/ms': 2.1.0 '@types/eslint-scope@3.7.7': dependencies: @@ -6356,7 +6351,7 @@ snapshots: '@types/mdx@2.0.13': {} - '@types/ms@0.7.34': {} + '@types/ms@2.1.0': {} '@types/node@12.20.55': {} @@ -6395,14 +6390,14 @@ snapshots: - uglify-js - webpack-cli - '@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3)': + '@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.20.0(eslint@9.18.0)(typescript@5.7.3) - '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/type-utils': 8.20.0(eslint@9.18.0)(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0)(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.21.0 + '@typescript-eslint/type-utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.21.0 eslint: 9.18.0 graphemer: 1.4.0 ignore: 5.3.2 @@ -6412,27 +6407,27 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3)': + '@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/scope-manager': 8.21.0 + '@typescript-eslint/types': 8.21.0 + '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.21.0 debug: 4.4.0 eslint: 9.18.0 typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.20.0': + '@typescript-eslint/scope-manager@8.21.0': dependencies: - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/types': 8.21.0 + '@typescript-eslint/visitor-keys': 8.21.0 - '@typescript-eslint/type-utils@8.20.0(eslint@9.18.0)(typescript@5.7.3)': + '@typescript-eslint/type-utils@8.21.0(eslint@9.18.0)(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) + '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3) debug: 4.4.0 eslint: 9.18.0 ts-api-utils: 2.0.0(typescript@5.7.3) @@ -6440,12 +6435,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.20.0': {} + '@typescript-eslint/types@8.21.0': {} - '@typescript-eslint/typescript-estree@8.20.0(typescript@5.7.3)': + '@typescript-eslint/typescript-estree@8.21.0(typescript@5.7.3)': dependencies: - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/visitor-keys': 8.20.0 + '@typescript-eslint/types': 8.21.0 + '@typescript-eslint/visitor-keys': 8.21.0 debug: 4.4.0 fast-glob: 3.3.3 is-glob: 4.0.3 @@ -6456,39 +6451,39 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.20.0(eslint@9.18.0)(typescript@5.7.3)': + '@typescript-eslint/utils@8.21.0(eslint@9.18.0)(typescript@5.7.3)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0) - '@typescript-eslint/scope-manager': 8.20.0 - '@typescript-eslint/types': 8.20.0 - '@typescript-eslint/typescript-estree': 8.20.0(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.21.0 + '@typescript-eslint/types': 8.21.0 + '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) eslint: 9.18.0 typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.20.0': + '@typescript-eslint/visitor-keys@8.21.0': dependencies: - '@typescript-eslint/types': 8.20.0 + '@typescript-eslint/types': 8.21.0 eslint-visitor-keys: 4.2.0 '@ungap/structured-clone@1.2.1': {} - '@vitejs/plugin-react@4.3.4(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0))': + '@vitejs/plugin-react@4.3.4(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0))': dependencies: '@babel/core': 7.26.0 '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + vite: 6.0.10(@types/node@22.10.7)(terser@5.37.0) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@2.1.8(vitest@2.1.8(@types/node@22.10.7)(terser@5.37.0))': + '@vitest/coverage-v8@3.0.2(vitest@3.0.2(@types/node@22.10.7)(terser@5.37.0))': dependencies: '@ampproject/remapping': 2.3.0 - '@bcoe/v8-coverage': 0.2.3 + '@bcoe/v8-coverage': 1.0.2 debug: 4.4.0 istanbul-lib-coverage: 3.2.2 istanbul-lib-report: 3.0.1 @@ -6498,50 +6493,50 @@ snapshots: magicast: 0.3.5 std-env: 3.8.0 test-exclude: 7.0.1 - tinyrainbow: 1.2.0 - vitest: 2.1.8(@types/node@22.10.7)(terser@5.37.0) + tinyrainbow: 2.0.0 + vitest: 3.0.2(@types/node@22.10.7)(terser@5.37.0) transitivePeerDependencies: - supports-color - '@vitest/expect@2.1.8': + '@vitest/expect@3.0.2': dependencies: - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + '@vitest/spy': 3.0.2 + '@vitest/utils': 3.0.2 chai: 5.1.2 - tinyrainbow: 1.2.0 + tinyrainbow: 2.0.0 - '@vitest/mocker@2.1.8(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0))': + '@vitest/mocker@3.0.2(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0))': dependencies: - '@vitest/spy': 2.1.8 + '@vitest/spy': 3.0.2 estree-walker: 3.0.3 magic-string: 0.30.17 optionalDependencies: - vite: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + vite: 6.0.10(@types/node@22.10.7)(terser@5.37.0) - '@vitest/pretty-format@2.1.8': + '@vitest/pretty-format@3.0.2': dependencies: - tinyrainbow: 1.2.0 + tinyrainbow: 2.0.0 - '@vitest/runner@2.1.8': + '@vitest/runner@3.0.2': dependencies: - '@vitest/utils': 2.1.8 - pathe: 1.1.2 + '@vitest/utils': 3.0.2 + pathe: 2.0.2 - '@vitest/snapshot@2.1.8': + '@vitest/snapshot@3.0.2': dependencies: - '@vitest/pretty-format': 2.1.8 + '@vitest/pretty-format': 3.0.2 magic-string: 0.30.17 - pathe: 1.1.2 + pathe: 2.0.2 - '@vitest/spy@2.1.8': + '@vitest/spy@3.0.2': dependencies: tinyspy: 3.0.2 - '@vitest/utils@2.1.8': + '@vitest/utils@3.0.2': dependencies: - '@vitest/pretty-format': 2.1.8 + '@vitest/pretty-format': 3.0.2 loupe: 3.1.2 - tinyrainbow: 1.2.0 + tinyrainbow: 2.0.0 '@volar/language-core@2.4.11': dependencies: @@ -6668,476 +6663,462 @@ snapshots: '@xtuc/long@4.2.2': {} - '@zag-js/accordion@0.81.1': + '@zag-js/accordion@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/anatomy@0.81.1': {} + '@zag-js/anatomy@0.81.2': {} - '@zag-js/aria-hidden@0.81.1': {} + '@zag-js/aria-hidden@0.81.2': {} - '@zag-js/auto-resize@0.81.1': + '@zag-js/auto-resize@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 + '@zag-js/dom-query': 0.81.2 - '@zag-js/avatar@0.81.1': + '@zag-js/avatar@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/carousel@0.81.1': + '@zag-js/carousel@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/scroll-snap': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/scroll-snap': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/checkbox@0.81.1': + '@zag-js/checkbox@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/focus-visible': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/focus-visible': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/clipboard@0.81.1': + '@zag-js/clipboard@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/collapsible@0.81.1': + '@zag-js/collapsible@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/collection@0.81.1': + '@zag-js/collection@0.81.2': dependencies: - '@zag-js/utils': 0.81.1 + '@zag-js/utils': 0.81.2 - '@zag-js/color-picker@0.81.1': + '@zag-js/color-picker@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/color-utils': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/color-utils': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/color-utils@0.81.1': + '@zag-js/color-utils@0.81.2': dependencies: - '@zag-js/utils': 0.81.1 + '@zag-js/utils': 0.81.2 - '@zag-js/combobox@0.81.1': + '@zag-js/combobox@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/aria-hidden': 0.81.1 - '@zag-js/collection': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/aria-hidden': 0.81.2 + '@zag-js/collection': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/core@0.81.1': + '@zag-js/core@0.81.2': dependencies: - '@zag-js/store': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/store': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/date-picker@0.81.1(@internationalized/date@3.6.0)': + '@zag-js/date-picker@0.81.2(@internationalized/date@3.6.0)': dependencies: '@internationalized/date': 3.6.0 - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/date-utils': 0.81.1(@internationalized/date@3.6.0) - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/live-region': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/date-utils@0.81.1(@internationalized/date@3.6.0)': + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/date-utils': 0.81.2(@internationalized/date@3.6.0) + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/live-region': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/date-utils@0.81.2(@internationalized/date@3.6.0)': dependencies: '@internationalized/date': 3.6.0 - '@zag-js/dialog@0.81.1': + '@zag-js/dialog@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/aria-hidden': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/focus-trap': 0.81.1 - '@zag-js/remove-scroll': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/aria-hidden': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/focus-trap': 0.81.2 + '@zag-js/remove-scroll': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/dismissable@0.81.1': + '@zag-js/dismissable@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 - '@zag-js/interact-outside': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/dom-query': 0.81.2 + '@zag-js/interact-outside': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/dom-query@0.81.1': + '@zag-js/dom-query@0.81.2': dependencies: - '@zag-js/types': 0.81.1 + '@zag-js/types': 0.81.2 - '@zag-js/editable@0.81.1': + '@zag-js/editable@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/interact-outside': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/interact-outside': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/element-rect@0.81.1': {} + '@zag-js/element-rect@0.81.2': {} - '@zag-js/element-size@0.81.1': {} + '@zag-js/element-size@0.81.2': {} - '@zag-js/file-upload@0.81.1': + '@zag-js/file-upload@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/file-utils': 0.81.1 - '@zag-js/i18n-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/file-utils': 0.81.2 + '@zag-js/i18n-utils': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/file-utils@0.81.1': + '@zag-js/file-utils@0.81.2': dependencies: - '@zag-js/i18n-utils': 0.81.1 + '@zag-js/i18n-utils': 0.81.2 - '@zag-js/focus-trap@0.81.1': + '@zag-js/focus-trap@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 + '@zag-js/dom-query': 0.81.2 - '@zag-js/focus-visible@0.81.1': + '@zag-js/focus-visible@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 + '@zag-js/dom-query': 0.81.2 - '@zag-js/form-utils@0.81.1': {} + '@zag-js/highlight-word@0.81.2': {} - '@zag-js/highlight-word@0.81.1': {} - - '@zag-js/hover-card@0.81.1': + '@zag-js/hover-card@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/i18n-utils@0.81.1': + '@zag-js/i18n-utils@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 + '@zag-js/dom-query': 0.81.2 - '@zag-js/interact-outside@0.81.1': + '@zag-js/interact-outside@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/dom-query': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/live-region@0.81.1': {} + '@zag-js/live-region@0.81.2': {} - '@zag-js/menu@0.81.1': + '@zag-js/menu@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/rect-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/rect-utils': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/number-input@0.81.1': + '@zag-js/number-input@0.81.2': dependencies: '@internationalized/number': 3.6.0 - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/pagination@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/pin-input@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/popover@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/aria-hidden': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/focus-trap': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/remove-scroll': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/popper@0.81.1': + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/pagination@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/pin-input@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/popover@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/aria-hidden': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/focus-trap': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/remove-scroll': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/popper@0.81.2': dependencies: '@floating-ui/dom': 1.6.12 - '@zag-js/dom-query': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/dom-query': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/presence@0.81.1': + '@zag-js/presence@0.81.2': dependencies: - '@zag-js/core': 0.81.1 - '@zag-js/types': 0.81.1 + '@zag-js/core': 0.81.2 + '@zag-js/types': 0.81.2 - '@zag-js/progress@0.81.1': + '@zag-js/progress@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/qr-code@0.81.1': + '@zag-js/qr-code@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 proxy-memoize: 3.0.1 uqr: 0.1.2 - '@zag-js/radio-group@0.81.1': + '@zag-js/radio-group@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/element-rect': 0.81.1 - '@zag-js/focus-visible': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/element-rect': 0.81.2 + '@zag-js/focus-visible': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/rating-group@0.81.1': + '@zag-js/rating-group@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/react@0.81.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@zag-js/react@0.81.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@zag-js/core': 0.81.1 - '@zag-js/store': 0.81.1 - '@zag-js/types': 0.81.1 + '@zag-js/core': 0.81.2 + '@zag-js/store': 0.81.2 + '@zag-js/types': 0.81.2 proxy-compare: 3.0.1 react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - '@zag-js/rect-utils@0.81.1': {} + '@zag-js/rect-utils@0.81.2': {} - '@zag-js/remove-scroll@0.81.1': + '@zag-js/remove-scroll@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 + '@zag-js/dom-query': 0.81.2 - '@zag-js/scroll-snap@0.81.1': + '@zag-js/scroll-snap@0.81.2': dependencies: - '@zag-js/dom-query': 0.81.1 + '@zag-js/dom-query': 0.81.2 - '@zag-js/select@0.81.1': + '@zag-js/select@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/collection': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/collection': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/signature-pad@0.81.1': + '@zag-js/signature-pad@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 perfect-freehand: 1.2.2 - '@zag-js/slider@0.81.1': + '@zag-js/slider@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/element-size': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/element-size': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/splitter@0.81.1': + '@zag-js/splitter@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/steps@0.81.1': + '@zag-js/steps@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/store@0.81.1': + '@zag-js/store@0.81.2': dependencies: proxy-compare: 3.0.1 - '@zag-js/switch@0.81.1': + '@zag-js/switch@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/focus-visible': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/focus-visible': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/tabs@0.81.1': + '@zag-js/tabs@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/element-rect': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/element-rect': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/tags-input@0.81.1': + '@zag-js/tags-input@0.81.2': dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/auto-resize': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/form-utils': 0.81.1 - '@zag-js/interact-outside': 0.81.1 - '@zag-js/live-region': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 + '@zag-js/anatomy': 0.81.2 + '@zag-js/auto-resize': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/interact-outside': 0.81.2 + '@zag-js/live-region': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 - '@zag-js/time-picker@0.81.1(@internationalized/date@3.6.0)': + '@zag-js/time-picker@0.81.2(@internationalized/date@3.6.0)': dependencies: '@internationalized/date': 3.6.0 - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/timer@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/toast@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/toggle-group@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/tooltip@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/focus-visible': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/tour@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dismissable': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/focus-trap': 0.81.1 - '@zag-js/interact-outside': 0.81.1 - '@zag-js/popper': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/tree-view@0.81.1': - dependencies: - '@zag-js/anatomy': 0.81.1 - '@zag-js/collection': 0.81.1 - '@zag-js/core': 0.81.1 - '@zag-js/dom-query': 0.81.1 - '@zag-js/types': 0.81.1 - '@zag-js/utils': 0.81.1 - - '@zag-js/types@0.81.1': + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/timer@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/toast@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/toggle-group@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/tooltip@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/focus-visible': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/tour@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dismissable': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/focus-trap': 0.81.2 + '@zag-js/interact-outside': 0.81.2 + '@zag-js/popper': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/tree-view@0.81.2': + dependencies: + '@zag-js/anatomy': 0.81.2 + '@zag-js/collection': 0.81.2 + '@zag-js/core': 0.81.2 + '@zag-js/dom-query': 0.81.2 + '@zag-js/types': 0.81.2 + '@zag-js/utils': 0.81.2 + + '@zag-js/types@0.81.2': dependencies: csstype: 3.1.3 - '@zag-js/utils@0.81.1': {} + '@zag-js/utils@0.81.2': {} acorn-jsx@5.3.2(acorn@8.14.0): dependencies: @@ -7190,7 +7171,7 @@ snapshots: ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.0.5 + fast-uri: 3.0.6 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -7339,15 +7320,15 @@ snapshots: browserslist@4.21.5: dependencies: - caniuse-lite: 1.0.30001692 - electron-to-chromium: 1.5.83 + caniuse-lite: 1.0.30001695 + electron-to-chromium: 1.5.84 node-releases: 2.0.19 update-browserslist-db: 1.1.2(browserslist@4.21.5) browserslist@4.24.4: dependencies: - caniuse-lite: 1.0.30001692 - electron-to-chromium: 1.5.83 + caniuse-lite: 1.0.30001695 + electron-to-chromium: 1.5.84 node-releases: 2.0.19 update-browserslist-db: 1.1.2(browserslist@4.24.4) @@ -7378,7 +7359,7 @@ snapshots: callsites@3.1.0: {} - caniuse-lite@1.0.30001692: {} + caniuse-lite@1.0.30001695: {} ccount@2.0.1: {} @@ -7550,7 +7531,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.83: {} + electron-to-chromium@1.5.84: {} emoji-regex@8.0.0: {} @@ -7747,26 +7728,26 @@ snapshots: dependencies: eslint: 9.18.0 - eslint-plugin-devup@2.0.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3): + eslint-plugin-devup@2.0.1(@types/eslint@9.6.1)(@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3): dependencies: '@eslint/js': 9.18.0 - '@tanstack/eslint-plugin-query': 5.62.16(eslint@9.18.0)(typescript@5.7.3) + '@tanstack/eslint-plugin-query': 5.64.2(eslint@9.18.0)(typescript@5.7.3) eslint: 9.18.0 eslint-config-prettier: 9.1.0(eslint@9.18.0) - eslint-plugin-prettier: 5.2.2(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.18.0))(eslint@9.18.0)(prettier@3.4.2) + eslint-plugin-prettier: 5.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.18.0))(eslint@9.18.0)(prettier@3.4.2) eslint-plugin-react: 7.37.4(eslint@9.18.0) eslint-plugin-react-hooks: 5.1.0(eslint@9.18.0) eslint-plugin-simple-import-sort: 12.1.1(eslint@9.18.0) - eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0) + eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0) prettier: 3.4.2 - typescript-eslint: 8.20.0(eslint@9.18.0)(typescript@5.7.3) + typescript-eslint: 8.21.0(eslint@9.18.0)(typescript@5.7.3) transitivePeerDependencies: - '@types/eslint' - '@typescript-eslint/eslint-plugin' - supports-color - typescript - eslint-plugin-prettier@5.2.2(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.18.0))(eslint@9.18.0)(prettier@3.4.2): + eslint-plugin-prettier@5.2.3(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.18.0))(eslint@9.18.0)(prettier@3.4.2): dependencies: eslint: 9.18.0 prettier: 3.4.2 @@ -7806,11 +7787,11 @@ snapshots: dependencies: eslint: 9.18.0 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0): + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0): dependencies: eslint: 9.18.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/eslint-plugin': 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3) eslint-scope@5.1.1: dependencies: @@ -7957,7 +7938,7 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-uri@3.0.5: {} + fast-uri@3.0.6: {} fastq@1.18.0: dependencies: @@ -8879,7 +8860,7 @@ snapshots: mlly@1.7.4: dependencies: acorn: 8.14.0 - pathe: 2.0.1 + pathe: 2.0.2 pkg-types: 1.3.1 ufo: 1.5.4 @@ -8900,26 +8881,26 @@ snapshots: react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - next@15.1.4(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + next@15.1.5(@babel/core@7.26.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - '@next/env': 15.1.4 + '@next/env': 15.1.5 '@swc/counter': 0.1.3 '@swc/helpers': 0.5.15 busboy: 1.6.0 - caniuse-lite: 1.0.30001692 + caniuse-lite: 1.0.30001695 postcss: 8.4.31 react: 19.0.0 react-dom: 19.0.0(react@19.0.0) styled-jsx: 5.1.6(@babel/core@7.26.0)(react@19.0.0) optionalDependencies: - '@next/swc-darwin-arm64': 15.1.4 - '@next/swc-darwin-x64': 15.1.4 - '@next/swc-linux-arm64-gnu': 15.1.4 - '@next/swc-linux-arm64-musl': 15.1.4 - '@next/swc-linux-x64-gnu': 15.1.4 - '@next/swc-linux-x64-musl': 15.1.4 - '@next/swc-win32-arm64-msvc': 15.1.4 - '@next/swc-win32-x64-msvc': 15.1.4 + '@next/swc-darwin-arm64': 15.1.5 + '@next/swc-darwin-x64': 15.1.5 + '@next/swc-linux-arm64-gnu': 15.1.5 + '@next/swc-linux-arm64-musl': 15.1.5 + '@next/swc-linux-x64-gnu': 15.1.5 + '@next/swc-linux-x64-musl': 15.1.5 + '@next/swc-win32-arm64-msvc': 15.1.5 + '@next/swc-win32-x64-msvc': 15.1.5 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' @@ -9064,9 +9045,7 @@ snapshots: path-type@4.0.0: {} - pathe@1.1.2: {} - - pathe@2.0.1: {} + pathe@2.0.2: {} pathval@2.0.0: {} @@ -9088,7 +9067,7 @@ snapshots: dependencies: confbox: 0.1.8 mlly: 1.7.4 - pathe: 2.0.1 + pathe: 2.0.2 possible-typed-array-names@1.0.0: {} @@ -9313,29 +9292,29 @@ snapshots: reusify@1.0.4: {} - rollup@4.30.1: + rollup@4.31.0: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.30.1 - '@rollup/rollup-android-arm64': 4.30.1 - '@rollup/rollup-darwin-arm64': 4.30.1 - '@rollup/rollup-darwin-x64': 4.30.1 - '@rollup/rollup-freebsd-arm64': 4.30.1 - '@rollup/rollup-freebsd-x64': 4.30.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.30.1 - '@rollup/rollup-linux-arm-musleabihf': 4.30.1 - '@rollup/rollup-linux-arm64-gnu': 4.30.1 - '@rollup/rollup-linux-arm64-musl': 4.30.1 - '@rollup/rollup-linux-loongarch64-gnu': 4.30.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1 - '@rollup/rollup-linux-riscv64-gnu': 4.30.1 - '@rollup/rollup-linux-s390x-gnu': 4.30.1 - '@rollup/rollup-linux-x64-gnu': 4.30.1 - '@rollup/rollup-linux-x64-musl': 4.30.1 - '@rollup/rollup-win32-arm64-msvc': 4.30.1 - '@rollup/rollup-win32-ia32-msvc': 4.30.1 - '@rollup/rollup-win32-x64-msvc': 4.30.1 + '@rollup/rollup-android-arm-eabi': 4.31.0 + '@rollup/rollup-android-arm64': 4.31.0 + '@rollup/rollup-darwin-arm64': 4.31.0 + '@rollup/rollup-darwin-x64': 4.31.0 + '@rollup/rollup-freebsd-arm64': 4.31.0 + '@rollup/rollup-freebsd-x64': 4.31.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.31.0 + '@rollup/rollup-linux-arm-musleabihf': 4.31.0 + '@rollup/rollup-linux-arm64-gnu': 4.31.0 + '@rollup/rollup-linux-arm64-musl': 4.31.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.31.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0 + '@rollup/rollup-linux-riscv64-gnu': 4.31.0 + '@rollup/rollup-linux-s390x-gnu': 4.31.0 + '@rollup/rollup-linux-x64-gnu': 4.31.0 + '@rollup/rollup-linux-x64-musl': 4.31.0 + '@rollup/rollup-win32-arm64-msvc': 4.31.0 + '@rollup/rollup-win32-ia32-msvc': 4.31.0 + '@rollup/rollup-win32-x64-msvc': 4.31.0 fsevents: 2.3.3 run-parallel@1.2.0: @@ -9655,7 +9634,7 @@ snapshots: tinypool@1.0.2: {} - tinyrainbow@1.2.0: {} + tinyrainbow@2.0.0: {} tinyspy@3.0.2: {} @@ -9719,11 +9698,11 @@ snapshots: possible-typed-array-names: 1.0.0 reflect.getprototypeof: 1.0.10 - typescript-eslint@8.20.0(eslint@9.18.0)(typescript@5.7.3): + typescript-eslint@8.21.0(eslint@9.18.0)(typescript@5.7.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.20.0(@typescript-eslint/parser@8.20.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3) - '@typescript-eslint/parser': 8.20.0(eslint@9.18.0)(typescript@5.7.3) - '@typescript-eslint/utils': 8.20.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/eslint-plugin': 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3) + '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3) eslint: 9.18.0 typescript: 5.7.3 transitivePeerDependencies: @@ -9822,13 +9801,13 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@2.1.8(@types/node@22.10.7)(terser@5.37.0): + vite-node@3.0.2(@types/node@22.10.7)(terser@5.37.0): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 - pathe: 1.1.2 - vite: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + pathe: 2.0.2 + vite: 6.0.10(@types/node@22.10.7)(terser@5.37.0) transitivePeerDependencies: - '@types/node' - jiti @@ -9843,10 +9822,10 @@ snapshots: - tsx - yaml - vite-plugin-dts@4.5.0(@types/node@22.10.7)(rollup@4.30.1)(typescript@5.7.3)(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)): + vite-plugin-dts@4.5.0(@types/node@22.10.7)(rollup@4.31.0)(typescript@5.7.3)(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)): dependencies: '@microsoft/api-extractor': 7.49.1(@types/node@22.10.7) - '@rollup/pluginutils': 5.1.4(rollup@4.30.1) + '@rollup/pluginutils': 5.1.4(rollup@4.31.0) '@volar/typescript': 2.4.11 '@vue/language-core': 2.2.0(typescript@5.7.3) compare-versions: 6.1.1 @@ -9856,43 +9835,43 @@ snapshots: magic-string: 0.30.17 typescript: 5.7.3 optionalDependencies: - vite: 6.0.7(@types/node@22.10.7)(terser@5.37.0) + vite: 6.0.10(@types/node@22.10.7)(terser@5.37.0) transitivePeerDependencies: - '@types/node' - rollup - supports-color - vite@6.0.7(@types/node@22.10.7)(terser@5.37.0): + vite@6.0.10(@types/node@22.10.7)(terser@5.37.0): dependencies: esbuild: 0.24.2 postcss: 8.5.1 - rollup: 4.30.1 + rollup: 4.31.0 optionalDependencies: '@types/node': 22.10.7 fsevents: 2.3.3 terser: 5.37.0 - vitest@2.1.8(@types/node@22.10.7)(terser@5.37.0): + vitest@3.0.2(@types/node@22.10.7)(terser@5.37.0): dependencies: - '@vitest/expect': 2.1.8 - '@vitest/mocker': 2.1.8(vite@6.0.7(@types/node@22.10.7)(terser@5.37.0)) - '@vitest/pretty-format': 2.1.8 - '@vitest/runner': 2.1.8 - '@vitest/snapshot': 2.1.8 - '@vitest/spy': 2.1.8 - '@vitest/utils': 2.1.8 + '@vitest/expect': 3.0.2 + '@vitest/mocker': 3.0.2(vite@6.0.10(@types/node@22.10.7)(terser@5.37.0)) + '@vitest/pretty-format': 3.0.2 + '@vitest/runner': 3.0.2 + '@vitest/snapshot': 3.0.2 + '@vitest/spy': 3.0.2 + '@vitest/utils': 3.0.2 chai: 5.1.2 debug: 4.4.0 expect-type: 1.1.0 magic-string: 0.30.17 - pathe: 1.1.2 + pathe: 2.0.2 std-env: 3.8.0 tinybench: 2.9.0 tinyexec: 0.3.2 tinypool: 1.0.2 - tinyrainbow: 1.2.0 - vite: 6.0.7(@types/node@22.10.7)(terser@5.37.0) - vite-node: 2.1.8(@types/node@22.10.7)(terser@5.37.0) + tinyrainbow: 2.0.0 + vite: 6.0.10(@types/node@22.10.7)(terser@5.37.0) + vite-node: 3.0.2(@types/node@22.10.7)(terser@5.37.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.10.7 From 5b53b1ab931147e351bfcdb88ed548ad8eaa4aba Mon Sep 17 00:00:00 2001 From: owjs3901 Date: Wed, 22 Jan 2025 10:53:52 +0900 Subject: [PATCH 2/3] Fix other package issue --- .changeset/hip-berries-drop.md | 5 ++++ libs/extractor/src/lib.rs | 21 +++++++++++++++- ...tor__tests__avoid_same_name_component.snap | 18 +++++++++++++ ...xtractor__tests__ignore_special_props.snap | 4 +-- libs/extractor/src/utils.rs | 1 + libs/extractor/src/visit.rs | 25 +++++++++++-------- 6 files changed, 61 insertions(+), 13 deletions(-) create mode 100644 .changeset/hip-berries-drop.md create mode 100644 libs/extractor/src/snapshots/extractor__tests__avoid_same_name_component.snap diff --git a/.changeset/hip-berries-drop.md b/.changeset/hip-berries-drop.md new file mode 100644 index 00000000..3812bc04 --- /dev/null +++ b/.changeset/hip-berries-drop.md @@ -0,0 +1,5 @@ +--- +"@devup-ui/wasm": patch +--- + +Fix transforming component from other package diff --git a/libs/extractor/src/lib.rs b/libs/extractor/src/lib.rs index 17625413..9a65e5bb 100644 --- a/libs/extractor/src/lib.rs +++ b/libs/extractor/src/lib.rs @@ -159,7 +159,7 @@ mod tests { assert_debug_snapshot!(extract( "test.tsx", r"import {Box} from '@devup-ui/core' - {}} aria-valuenow={24} key={2} /> + {}} aria-valuenow={24} key={2} tabIndex={1} /> ", ExtractOption { package: "@devup-ui/core".to_string(), @@ -1347,4 +1347,23 @@ PROCESS_DATA.map(({ id, title, content }, idx) => ( ) .unwrap()); } + + #[test] + #[serial] + fn avoid_same_name_component() { + reset_class_map(); + assert_debug_snapshot!(extract( + "test.js", + r#"import {Box} from '@devup-ui/core' +import {Button} from '@devup/ui' + ; + ;