diff --git a/.server-changes/fix-resizable-panel-stuck.md b/.server-changes/fix-resizable-panel-stuck.md new file mode 100644 index 00000000000..1a36f0c71e6 --- /dev/null +++ b/.server-changes/fix-resizable-panel-stuck.md @@ -0,0 +1,6 @@ +--- +area: webapp +type: fix +--- + +Fix the run-view inspector panel glitching out and locking up in Firefox. Disabled the underlying resizable library's collapse animation on Firefox (where its `requestAnimationFrame`-driven actor caused visual glitches and intermittent state-machine errors) while keeping it intact for Chromium and Safari, and bumped the inspector minimum from 50px to 250px so dragging can't shrink the panel into a near-useless width. diff --git a/apps/webapp/app/components/primitives/Resizable.tsx b/apps/webapp/app/components/primitives/Resizable.tsx index 2efaae4258e..b2964c8e958 100644 --- a/apps/webapp/app/components/primitives/Resizable.tsx +++ b/apps/webapp/app/components/primitives/Resizable.tsx @@ -1,7 +1,7 @@ "use client"; import React, { useRef } from "react"; -import { PanelGroup, Panel, PanelResizer } from "react-window-splitter"; +import { PanelGroup, Panel, PanelResizer } from "@window-splitter/react"; import { cn } from "~/utils/cn"; const ResizablePanelGroup = ({ className, ...props }: React.ComponentProps) => ( @@ -69,10 +69,14 @@ const ResizableHandle = ({ ); -const RESIZABLE_PANEL_ANIMATION = { - easing: "ease-in-out" as const, - duration: 200, -}; +// react-window-splitter drives the collapse animation through @react-spring/rafz, +// which has timing/interaction issues with Firefox that produce visual glitches +// (alternating frames, panels stuck at min, panelHasSpace invariant violations). +// Disable the animation on Firefox; it works correctly in Chromium and Safari. +const RESIZABLE_PANEL_ANIMATION = + typeof navigator !== "undefined" && /firefox/i.test(navigator.userAgent) + ? undefined + : ({ easing: "ease-in-out", duration: 300 } as const); const COLLAPSIBLE_HANDLE_CLASSNAME = "transition-opacity duration-200"; diff --git a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx index d61c357e02e..f8e28fc6888 100644 --- a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx +++ b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx @@ -15,7 +15,7 @@ import { DiscordIcon } from "@trigger.dev/companyicons"; import { formatDurationMilliseconds } from "@trigger.dev/core/v3"; import type { TaskRunStatus } from "@trigger.dev/database"; import { Fragment, Suspense, useCallback, useEffect, useRef, useState } from "react"; -import type { PanelHandle } from "react-window-splitter"; +import type { PanelHandle } from "@window-splitter/react"; import { Bar, BarChart, ResponsiveContainer, Tooltip, type TooltipProps } from "recharts"; import { TypedAwait, typeddefer, useTypedLoaderData } from "remix-typedjson"; import { ExitIcon } from "~/assets/icons/ExitIcon"; diff --git a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx index f35376a4275..601ffb2d766 100644 --- a/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx +++ b/apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs.$runParam/route.tsx @@ -115,7 +115,7 @@ import { SpanView } from "../resources.orgs.$organizationSlug.projects.$projectP const resizableSettings = { parent: { - autosaveId: "panel-run-parent-v2", + autosaveId: "panel-run-parent-v3", handleId: "parent-handle", main: { id: "run", @@ -124,7 +124,7 @@ const resizableSettings = { inspector: { id: "inspector", default: "500px" as const, - min: "50px" as const, + min: "250px" as const, }, }, tree: { diff --git a/apps/webapp/package.json b/apps/webapp/package.json index 5b2725288dd..0afb011cce0 100644 --- a/apps/webapp/package.json +++ b/apps/webapp/package.json @@ -135,6 +135,7 @@ "@upstash/ratelimit": "^1.1.3", "@vercel/sdk": "^1.19.1", "@whatwg-node/fetch": "^0.9.14", + "@window-splitter/react": "1.1.3", "ai": "^4.3.19", "assert-never": "^1.2.1", "aws4fetch": "^1.0.18", @@ -199,7 +200,6 @@ "react-resizable-panels": "^2.0.9", "react-stately": "^3.29.1", "react-use": "17.5.1", - "react-window-splitter": "^0.4.1", "recharts": "^2.15.2", "regression": "^2.0.1", "remix-auth": "^3.6.0", diff --git a/package.json b/package.json index 12b126848ff..30f27bade95 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "@sentry/remix@9.46.0": "patches/@sentry__remix@9.46.0.patch", "@upstash/ratelimit@1.1.3": "patches/@upstash__ratelimit.patch", "antlr4ts@0.5.0-alpha.4": "patches/antlr4ts@0.5.0-alpha.4.patch", - "@window-splitter/state@0.4.1": "patches/@window-splitter__state@0.4.1.patch" + "@window-splitter/state@1.1.3": "patches/@window-splitter__state@1.1.3.patch" }, "overrides": { "typescript": "5.5.4", diff --git a/patches/@window-splitter__state@0.4.1.patch b/patches/@window-splitter__state@0.4.1.patch deleted file mode 100644 index 8d99b717ba8..00000000000 --- a/patches/@window-splitter__state@0.4.1.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/dist/commonjs/index.js b/dist/commonjs/index.js -index acb542b1b71a7e808173d938d16f45a484334f94..dc9289461b761f8f0d5c72919f48f94e394addfd 100644 ---- a/dist/commonjs/index.js -+++ b/dist/commonjs/index.js -@@ -107,6 +107,9 @@ function prepareSnapshot(snapshot) { - if (item.max && item.max !== "1fr") { - item.max.value = new big_js_1.default(item.max.value); - } -+ if (item.default && typeof item.default === "object" && item.default.value !== undefined) { -+ item.default.value = new big_js_1.default(item.default.value); -+ } - } - else { - item.size.value = new big_js_1.default(item.size.value); -diff --git a/dist/esm/index.js b/dist/esm/index.js -index 8891ac0141135a3a885bd704d9d443458c7a01bf..34cd7251f2298e7f9bfedfe4cadb797aa790b59a 100644 ---- a/dist/esm/index.js -+++ b/dist/esm/index.js -@@ -81,6 +81,9 @@ export function prepareSnapshot(snapshot) { - if (item.max && item.max !== "1fr") { - item.max.value = new Big(item.max.value); - } -+ if (item.default && typeof item.default === "object" && item.default.value !== undefined) { -+ item.default.value = new Big(item.default.value); -+ } - } - else { - item.size.value = new Big(item.size.value); diff --git a/patches/@window-splitter__state@1.1.3.patch b/patches/@window-splitter__state@1.1.3.patch new file mode 100644 index 00000000000..91397bdac9f --- /dev/null +++ b/patches/@window-splitter__state@1.1.3.patch @@ -0,0 +1,114 @@ +diff --git a/dist/commonjs/index.js b/dist/commonjs/index.js +index e3bdcf702702392e9a06c981545f659ee7c5970e..d88ae6b2dc5b4cf1970cb693f58a926bd12a8f45 100644 +--- a/dist/commonjs/index.js ++++ b/dist/commonjs/index.js +@@ -757,30 +757,14 @@ function updateLayout(context, dragEvent) { + panelAfter.onCollapseChange.current(false); + } + } +- const panelBeforeIsAboutToCollapse = panelBefore.currentValue.value.eq(getUnitPixelValue(context, panelBefore.min)); +- // If the panel was expanded and now is at it's min size, collapse it +- if (!dragEvent.disregardCollapseBuffer && +- panelBefore.collapsible && +- panelBeforeIsAboutToCollapse) { +- if (panelBefore.onCollapseChange?.current && +- panelBefore.collapseIsControlled && +- !dragEvent.controlled && +- !dragEvent.isVirtual) { +- panelBefore.onCollapseChange.current(true); +- return { dragOvershoot: newDragOvershoot }; +- } +- // Make it collapsed +- panelBefore.collapsed = true; +- panelBeforeNewValue = getUnitPixelValue(context, panelBefore.collapsedSize); +- // Add the extra space created to the before panel +- panelAfterNewValue = panelAfter.currentValue.value.add(panelBeforePreviousValue.minus(panelBeforeNewValue)); +- if (panelBefore.onCollapseChange?.current && +- !panelBefore.collapseIsControlled && +- !dragEvent.controlled && +- !dragEvent.isVirtual) { +- panelBefore.onCollapseChange.current(true); +- } +- } ++ // Drag-to-collapse is disabled in this fork: every consumer of the ++ // library uses controlled `collapsed` props and triggers collapse ++ // explicitly (close button, ESC, URL change, etc.). The original auto- ++ // collapse-on-drag logic that lived here would notify the parent when a ++ // collapsible panel reached its min during a drag — keeping it for our ++ // (controlled-only) case caused state-machine deadlocks when handlers ++ // were no-ops, so the block is removed entirely. Panels just clamp at ++ // `min` during drag now. + panelBefore.currentValue = { type: "pixel", value: panelBeforeNewValue }; + panelAfter.currentValue = { type: "pixel", value: panelAfterNewValue }; + const leftoverSpace = new big_js_1.default(getGroupSize(context)).minus(newItems.reduce((acc, b) => acc.add(isPanelData(b) ? b.currentValue.value : b.size.value), new big_js_1.default(0))); +@@ -940,7 +924,12 @@ function setCookie(name, jsonData) { + function getDeltaForEvent(context, event) { + const panel = getPanelWithId(context, event.panelId); + if (event.type === "expandPanel") { +- return new big_js_1.default(panel.sizeBeforeCollapse ?? getUnitPixelValue(context, panel.min)).minus(panel.currentValue.value); ++ // Fall back to `default` before `min` so the first-ever expand of a ++ // panel that started life collapsed lands at its configured default ++ // size rather than getting stuck at `min`. ++ const defaultPx = panel.default ? getUnitPixelValue(context, panel.default) : undefined; ++ const target = panel.sizeBeforeCollapse ?? defaultPx ?? getUnitPixelValue(context, panel.min); ++ return new big_js_1.default(target).minus(panel.currentValue.value); + } + const collapsedSize = getUnitPixelValue(context, panel.collapsedSize); + return panel.currentValue.value.minus(collapsedSize); +diff --git a/dist/esm/index.js b/dist/esm/index.js +index f8fddd70c0f1aaed29f2fb0ca0d8093d8ce66335..d1dae8beb1447afca47b91e796b8279135f50c36 100644 +--- a/dist/esm/index.js ++++ b/dist/esm/index.js +@@ -728,30 +728,14 @@ function updateLayout(context, dragEvent) { + panelAfter.onCollapseChange.current(false); + } + } +- const panelBeforeIsAboutToCollapse = panelBefore.currentValue.value.eq(getUnitPixelValue(context, panelBefore.min)); +- // If the panel was expanded and now is at it's min size, collapse it +- if (!dragEvent.disregardCollapseBuffer && +- panelBefore.collapsible && +- panelBeforeIsAboutToCollapse) { +- if (panelBefore.onCollapseChange?.current && +- panelBefore.collapseIsControlled && +- !dragEvent.controlled && +- !dragEvent.isVirtual) { +- panelBefore.onCollapseChange.current(true); +- return { dragOvershoot: newDragOvershoot }; +- } +- // Make it collapsed +- panelBefore.collapsed = true; +- panelBeforeNewValue = getUnitPixelValue(context, panelBefore.collapsedSize); +- // Add the extra space created to the before panel +- panelAfterNewValue = panelAfter.currentValue.value.add(panelBeforePreviousValue.minus(panelBeforeNewValue)); +- if (panelBefore.onCollapseChange?.current && +- !panelBefore.collapseIsControlled && +- !dragEvent.controlled && +- !dragEvent.isVirtual) { +- panelBefore.onCollapseChange.current(true); +- } +- } ++ // Drag-to-collapse is disabled in this fork: every consumer of the ++ // library uses controlled `collapsed` props and triggers collapse ++ // explicitly (close button, ESC, URL change, etc.). The original auto- ++ // collapse-on-drag logic that lived here would notify the parent when a ++ // collapsible panel reached its min during a drag — keeping it for our ++ // (controlled-only) case caused state-machine deadlocks when handlers ++ // were no-ops, so the block is removed entirely. Panels just clamp at ++ // `min` during drag now. + panelBefore.currentValue = { type: "pixel", value: panelBeforeNewValue }; + panelAfter.currentValue = { type: "pixel", value: panelAfterNewValue }; + const leftoverSpace = new Big(getGroupSize(context)).minus(newItems.reduce((acc, b) => acc.add(isPanelData(b) ? b.currentValue.value : b.size.value), new Big(0))); +@@ -911,7 +895,12 @@ function setCookie(name, jsonData) { + function getDeltaForEvent(context, event) { + const panel = getPanelWithId(context, event.panelId); + if (event.type === "expandPanel") { +- return new Big(panel.sizeBeforeCollapse ?? getUnitPixelValue(context, panel.min)).minus(panel.currentValue.value); ++ // Fall back to `default` before `min` so the first-ever expand of a ++ // panel that started life collapsed lands at its configured default ++ // size rather than getting stuck at `min`. ++ const defaultPx = panel.default ? getUnitPixelValue(context, panel.default) : undefined; ++ const target = panel.sizeBeforeCollapse ?? defaultPx ?? getUnitPixelValue(context, panel.min); ++ return new Big(target).minus(panel.currentValue.value); + } + const collapsedSize = getUnitPixelValue(context, panel.collapsedSize); + return panel.currentValue.value.minus(collapsedSize); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b7c70806a1d..a67f5ba9a72 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -52,9 +52,9 @@ patchedDependencies: '@upstash/ratelimit@1.1.3': hash: e5922e50fbefb7b2b24950c4b1c5c9ddc4cd25464439c9548d2298c432debe74 path: patches/@upstash__ratelimit.patch - '@window-splitter/state@0.4.1': - hash: da01382a3c0d3f4f66db5b09d6f0833cc21eaf8db00f97e2c1738797673b57c0 - path: patches/@window-splitter__state@0.4.1.patch + '@window-splitter/state@1.1.3': + hash: ecf02927f78361c14d8f8347604fd355ba36f2fc4f9ba9a08cd63adc101b7327 + path: patches/@window-splitter__state@1.1.3.patch antlr4ts@0.5.0-alpha.4: hash: b5d41129ddbf7c4cbb0288244b2c8d041ee0803c5102c1181c180408d3b579f4 path: patches/antlr4ts@0.5.0-alpha.4.patch @@ -563,6 +563,9 @@ importers: '@whatwg-node/fetch': specifier: ^0.9.14 version: 0.9.14 + '@window-splitter/react': + specifier: 1.1.3 + version: 1.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) ai: specifier: ^4.3.19 version: 4.3.19(react@18.2.0)(zod@3.25.76) @@ -755,9 +758,6 @@ importers: react-use: specifier: 17.5.1 version: 17.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-window-splitter: - specifier: ^0.4.1 - version: 0.4.1(@types/react@18.2.69)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) recharts: specifier: ^2.15.2 version: 2.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -1147,7 +1147,7 @@ importers: version: 18.3.1 react-email: specifier: ^2.1.1 - version: 2.1.2(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.15)(bufferutil@4.0.9)(eslint@8.31.0) + version: 2.1.2(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.15)(eslint@8.31.0) resend: specifier: ^3.2.0 version: 3.2.0 @@ -2921,9 +2921,6 @@ importers: packages: - '@adobe/css-tools@4.4.0': - resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} - '@ai-sdk/anthropic@2.0.4': resolution: {integrity: sha512-ii2bZEUPwBitUiK1dpX+HsOarcDGY71G9TVdSJqbfXSVqa+speJNZ8PA/bjuNMml0NyX8VxNsaMg3SwBUCZspA==} engines: {node: '>=18'} @@ -5639,29 +5636,26 @@ packages: cpu: [x64] os: [win32] + '@internationalized/date@3.12.1': + resolution: {integrity: sha512-6IedsVWXyq4P9Tj+TxuU8WGWM70hYLl12nbYU8jkikVpa6WXapFazPUcHUMDMoWftIDE2ILDkFFte6W2nFCkRQ==} + '@internationalized/date@3.5.1': resolution: {integrity: sha512-LUQIfwU9e+Fmutc/DpRTGXSdgYZLBegi4wygCWDSVmUdLTaMHsQyASDiJtREwanwKuQLq0hY76fCJ9J/9I2xOQ==} - '@internationalized/date@3.5.5': - resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==} - '@internationalized/message@3.1.1': resolution: {integrity: sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==} - '@internationalized/message@3.1.4': - resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==} - '@internationalized/number@3.5.0': resolution: {integrity: sha512-ZY1BW8HT9WKYvaubbuqXbbDdHhOUMfE2zHHFJeTppid0S+pc8HtdIxFxaYMsGjCb4UsF+MEJ4n2TfU7iHnUK8w==} - '@internationalized/number@3.5.3': - resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==} + '@internationalized/number@3.6.6': + resolution: {integrity: sha512-iFgmQaXHE0vytNfpLZWOC2mEJCBRzcUxt53Xf/yCXG93lRvqas237i3r7X4RKMwO3txiyZD4mQjKAByFv6UGSQ==} '@internationalized/string@3.2.0': resolution: {integrity: sha512-Xx3Sy3f2c9ctT+vh8c7euEaEHQZltp0euZ3Hy4UfT3E13r6lxpUS3kgKyumEjboJZSnaZv7JhqWz3D75v+IxQg==} - '@internationalized/string@3.2.3': - resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==} + '@internationalized/string@3.2.8': + resolution: {integrity: sha512-NdbMQUSfXLYIQol5VyMtinm9pZDciiMfN7RtmSuSB78io1hqwJ0naYfxyW6vgxWBkzWymQa/3uLDlbfmshtCaA==} '@ioredis/commands@1.2.0': resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} @@ -7921,11 +7915,6 @@ packages: '@radix-ui/rect@1.0.1': resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} - '@react-aria/breadcrumbs@3.5.16': - resolution: {integrity: sha512-OXLKKu4SmjnSaSHkk4kow5/aH/SzlHWPJt+Uq3xec9TwDOr/Ob8aeFVGFoY0HxfGozuQlUz+4e+d29vfA0jNWg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/breadcrumbs@3.5.9': resolution: {integrity: sha512-asbXTL5NjeHl1+YIF0K70y8tNHk8Lb6VneYH8yOkpLO49ejyNDYBK0tp0jtI9IZAQiTa2qkhYq58c9LloTwebQ==} peerDependencies: @@ -7936,17 +7925,6 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/button@3.9.8': - resolution: {integrity: sha512-MdbMQ3t5KSCkvKtwYd/Z6sgw0v+r1VQFRYOZ4L53xOkn+u140z8vBpNeWKZh/45gxGv7SJn9s2KstLPdCWmIxw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/calendar@3.5.11': - resolution: {integrity: sha512-VLhBovLVu3uJXBkHbgEippmo/K58QLcc/tSJQ0aJUNyHsrvPgHEcj484cb+Uj/yOirXEIzaoW6WEvhcdKrb49Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/calendar@3.5.4': resolution: {integrity: sha512-8k7khgea5kwfWriZJWCADNB0R2d7g5A6tTjUEktK4FFZcTb0RCubFejts4hRyzKlF9XHUro2dfh6sbZrzfMKDQ==} peerDependencies: @@ -7958,29 +7936,12 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/checkbox@3.14.6': - resolution: {integrity: sha512-LICY1PR3WsW/VbuLMjZbxo75+poeo3XCXGcUnk6hxMlWfp/Iy/XHVsHlGu9stRPKRF8BSuOGteaHWVn6IXfwtA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/combobox@3.10.3': - resolution: {integrity: sha512-EdDwr2Rp1xy7yWjOYHt2qF1IpAtUrkaNKZJzlIw1XSwcqizQY6E8orNPdZr6ZwD6/tgujxF1N71JTKyffrR0Xw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/combobox@3.8.2': resolution: {integrity: sha512-q8Kdw1mx6nSSydXqRagRuyKH1NPGvpSOFjUfgxdO8ZqaEEuZX3ObOoiO/DLtXDndViNc03dMbMpfuJoLYXfCtg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/datepicker@3.11.2': - resolution: {integrity: sha512-6sbLln3VXSBcBRDgSACBzIzF/5KV5NlNOhZvXPFE6KqFw6GbevjZQTv5BNDXiwA3CQoawIRF7zgRvTANw8HkNA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/datepicker@3.9.1': resolution: {integrity: sha512-bdlY2H/zwe3hQf64Lp1oGTf7Va8ennDyAv4Ffowb+BOoL8+FB9smtGyONKe87zXu7VJL2M5xYAi4n7c004PM+w==} peerDependencies: @@ -7993,50 +7954,22 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dialog@3.5.17': - resolution: {integrity: sha512-lvfEgaqg922J1hurscqCS600OZQVitGtdpo81kAefJaUzMnCxzrYviyT96aaW0simHOlimbYF5js8lxBLZJRaw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/dnd@3.5.1': resolution: {integrity: sha512-7OPGePdle+xNYHAIAUOvIETRMfnkRt7h/C0bCkxUR2GYefEbTzfraso4ppNH2JZ7fCRd0K/Qe+jvQklwusHAKA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dnd@3.7.2': - resolution: {integrity: sha512-NuE3EGqoBbe9aXAO9mDfbu4kMO7S4MCgkjkCqYi16TWfRUf38ajQbIlqodCx91b3LVN3SYvNbE3D4Tj5ebkljw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/focus@3.16.0': resolution: {integrity: sha512-GP6EYI07E8NKQQcXHjpIocEU0vh0oi0Vcsd+/71fKS0NnTR0TUOEeil0JuuQ9ymkmPDTu51Aaaa4FxVsuN/23A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/focus@3.18.2': - resolution: {integrity: sha512-Jc/IY+StjA3uqN73o6txKQ527RFU7gnG5crEl5Xy3V+gbYp2O5L3ezAo/E0Ipi2cyMbG6T5Iit1IDs7hcGu8aw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/form@3.0.1': resolution: {integrity: sha512-6586oODMDR4/ciGRwXjpvEAg7tWGSDrXE//waK0n5e5sMuzlPOo1DHc5SpPTvz0XdJsu6VDt2rHdVWVIC9LEyw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/form@3.0.8': - resolution: {integrity: sha512-8S2QiyUdAgK43M3flohI0R+2rTyzH088EmgeRArA8euvJTL16cj/oSOKMEgWVihjotJ9n6awPb43ZhKboyNsMg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/grid@3.10.3': - resolution: {integrity: sha512-l0r9mz05Gwjq3t6JOTNQOf+oAoWN0bXELPJtIr8m0XyXMPFCQe1xsTaX8igVQdrDmXyBc75RAWS0BJo2JF2fIA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/grid@3.8.6': resolution: {integrity: sha512-JlQDkdm5heG1FfRyy5KnB8b6s/hRqSI6Xt2xN2AccLX5kcbfFr2/d5KVxyf6ahfa4Gfd46alN6477ju5eTWJew==} peerDependencies: @@ -8049,37 +7982,16 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/gridlist@3.9.3': - resolution: {integrity: sha512-bb9GnKKeuL6NljoVUcHxr9F0cy/2WDOXRYeMikTnviRw6cuX95oojrhFfCUvz2d6ID22Btrvh7LkE+oIPVuc+g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/i18n@3.10.0': resolution: {integrity: sha512-sviD5Y1pLPG49HHRmVjR+5nONrp0HK219+nu9Y7cDfUhXu2EjyhMS9t/n9/VZ69hHChZ2PnHYLEE2visu9CuCg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/i18n@3.12.2': - resolution: {integrity: sha512-PvEyC6JWylTpe8dQEWqQwV6GiA+pbTxHQd//BxtMSapRW3JT9obObAnb/nFhj3HthkUvqHyj0oO1bfeN+mtD8A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/interactions@3.20.1': resolution: {integrity: sha512-PLNBr87+SzRhe9PvvF9qvzYeP4ofTwfKSorwmO+hjr3qoczrSXf4LRQlb27wB6hF10C7ZE/XVbUI1lj4QQrZ/g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/interactions@3.22.2': - resolution: {integrity: sha512-xE/77fRVSlqHp2sfkrMeNLrqf2amF/RyuAS6T5oDJemRSgYM3UoxTbWjucPhfnoW7r32pFPHHgz4lbdX8xqD/g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/label@3.7.11': - resolution: {integrity: sha512-REgejE5Qr8cXG/b8H2GhzQmjQlII/0xQW/4eDzydskaTLvA7lF5HoJUE6biYTquH5va38d8XlH465RPk+bvHzA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/label@3.7.4': resolution: {integrity: sha512-3Y0yyrqpLzZdzHw+TOyzwuyx5wa2ujU5DGfKuL5GFnU9Ii4DtdwBGSYS7Yu7qadU+eQmG4OGhAgFVswbIgIwJw==} peerDependencies: @@ -8090,46 +8002,21 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/link@3.7.4': - resolution: {integrity: sha512-E8SLDuS9ssm/d42+3sDFNthfMcNXMUrT2Tq1DIZt22EsMcuEzmJ9B0P7bDP5RgvIw05xVGqZ20nOpU4mKTxQtA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/listbox@3.11.3': resolution: {integrity: sha512-PBrnldmyEYUUJvfDeljW8ITvZyBTfGpLNf0b5kfBPK3TDgRH4niEH2vYEcaZvSqb0FrpdvcunuTRXcOpfb+gCQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/listbox@3.13.3': - resolution: {integrity: sha512-htluPyDfFtn66OEYaJdIaFCYH9wGCNk30vOgZrQkPul9F9Cjce52tTyPVR0ERsf14oCUsjjS5qgeq3dGidRqEw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/live-announcer@3.3.1': resolution: {integrity: sha512-hsc77U7S16trM86d+peqJCOCQ7/smO1cybgdpOuzXyiwcHQw8RQ4GrXrS37P4Ux/44E9nMZkOwATQRT2aK8+Ew==} - '@react-aria/live-announcer@3.3.4': - resolution: {integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==} - '@react-aria/menu@3.12.0': resolution: {integrity: sha512-Nsujv3b61WR0gybDKnBjAeyxDVJOfPLMggRUf9SQDfPWnrPXEsAFxaPaVcAkzlfI4HiQs1IxNwsKFNpc3PPZTQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/menu@3.15.3': - resolution: {integrity: sha512-vvUmVjJwIg3h2r+7isQXTwlmoDlPAFBckHkg94p3afrT1kNOTHveTsaVl17mStx/ymIioaAi3PrIXk/PZXp1jw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/meter@3.4.16': - resolution: {integrity: sha512-hJqKnEE6mmK2Psx5kcI7NZ44OfTg0Bp7DatQSQ4zZE4yhnykRRwxqSKjze37tPR63cCqgRXtQ5LISfBfG54c0Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/meter@3.4.9': resolution: {integrity: sha512-1/FHFmFmSyfQBJ2oH152lp4nps76v1UdhnFbIsmRIH+0g0IfMv1yDT2M9dIZ/b9DgVZSx527FmWOXm0eHGKD6w==} peerDependencies: @@ -8141,29 +8028,12 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/numberfield@3.11.6': - resolution: {integrity: sha512-nvEWiQcWRwj6O2JXmkXEeWoBX/GVZT9zumFJcew3XknGTWJUr3h2AOymIQFt9g4mpag8IgOFEpSIlwhtZHdp1A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/overlays@3.20.0': resolution: {integrity: sha512-2m7MpRJL5UucbEuu08lMHsiFJoDowkJV4JAIFBZYK1NzVH0vF/A+w9HRNM7jRwx2DUxE+iIsZnl8yKV/7KY8OQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/overlays@3.23.2': - resolution: {integrity: sha512-vjlplr953YAuJfHiP4O+CyrTlr6OaFgXAGrzWq4MVMjnpV/PT5VRJWYFHR0sUGlHTPqeKS4NZbi/xCSgl/3pGQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/progress@3.4.16': - resolution: {integrity: sha512-RbDIFQg4+/LG+KYZeLAijt2zH7K2Gp0CY9RKWdho3nU5l3/w57Fa7NrfDGWtpImrt7bR2nRmXMA6ESfr7THfrg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/progress@3.4.9': resolution: {integrity: sha512-CME1ZLsJHOmSgK8IAPOC/+vYO5Oc614mkEw5MluT/yclw5rMyjAkK1XsHLjEXy81uwPeiRyoQQIMPKG2/sMxFQ==} peerDependencies: @@ -8174,60 +8044,28 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/radio@3.10.7': - resolution: {integrity: sha512-o2tqIe7xd1y4HeCBQfz/sXIwLJuI6LQbVoCQ1hgk/5dGhQ0LiuXohRYitGRl9zvxW8jYdgLULmOEDt24IflE8A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/searchfield@3.7.1': resolution: {integrity: sha512-ebhnV/reNByIZzpcQLHIo1RQ+BrYS8HdwX624i9R7dep1gxGHXYEaqL9aSY+RdngNerB4OeiWmB75em9beSpjQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/searchfield@3.7.8': - resolution: {integrity: sha512-SsF5xwH8Us548QgzivvbM7nhFbw7pu23xnRRIuhlP3MwOR3jRUFh17NKxf3Z0jvrDv/u0xfm3JKHIgaUN0KJ2A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/select@3.14.1': resolution: {integrity: sha512-pAy/+Xbj11Lx6bi/O1hWH0NSIDRxFb6V7N0ry2L8x7MALljh516VbpnAc5RgvbjbuKq0cHUAcdINOzOzpYWm4A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/select@3.14.9': - resolution: {integrity: sha512-tiNgMyA2G9nKnFn3pB/lMSgidNToxSFU7r6l4OcG+Vyr63J7B/3dF2lTXq8IYhlfOR3K3uQkjroSx52CmC3NDw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/selection@3.17.3': resolution: {integrity: sha512-xl2sgeGH61ngQeE05WOWWPVpGRTPMjQEFmsAWEprArFi4Z7ihSZgpGX22l1w7uSmtXM/eN/v0W8hUYUju5iXlQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/selection@3.19.3': - resolution: {integrity: sha512-GYoObXCXlmGK08hp7Qfl6Bk0U+bKP5YDWSsX+MzNjJsqzQSLm4S06tRB9ACM7gIo9dDCvL4IRxdSYTJAlJc6bw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/separator@3.3.9': resolution: {integrity: sha512-1wEXiaSJjq2+DR5TC0RKnUBsfZN+YXTzyI7XMzjQoc3YlclumX8wQtzPAOGOEjHB1JKUgo1Gw70FtupVXz58QQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/separator@3.4.2': - resolution: {integrity: sha512-Xql9Kg3VlGesEUC7QheE+L5b3KgBv0yxiUU+/4JP8V2vfU/XSz4xmprHEeq7KVQVOetn38iiXU8gA5g26SEsUA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/slider@3.7.11': - resolution: {integrity: sha512-2WAwjANXPsA2LHJ5nxxV4c7ihFAzz2spaBz8+FJ7MDYE7WroYnE8uAXElea1aGo+Lk0DTiAdepLpBkggqPNanw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/slider@3.7.4': resolution: {integrity: sha512-OFJWeGSL2duVDFs/kcjlWsY6bqCVKZgM0aFn2QN4wmID+vfBvBnqGHAgWv3BCePTAPS3+GBjMN002TrftorjwQ==} peerDependencies: @@ -8239,114 +8077,60 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/spinbutton@3.6.8': - resolution: {integrity: sha512-OJMAYRIZ0WrWE+5tZsywrSg4t+aOwl6vl/e1+J64YcGMM+p+AKd61KGG5T0OgNSORXjoVIZOmj6wZ6Od4xfPMw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/ssr@3.9.1': resolution: {integrity: sha512-NqzkLFP8ZVI4GSorS0AYljC13QW2sc8bDqJOkBvkAt3M8gbcAXJWVRGtZBCRscki9RZF+rNlnPdg0G0jYkhJcg==} engines: {node: '>= 12'} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/ssr@3.9.5': - resolution: {integrity: sha512-xEwGKoysu+oXulibNUSkXf8itW0npHHTa6c4AyYeZIJyRoegeteYuFpZUBPtIDE8RfHdNsSmE1ssOkxRnwbkuQ==} - engines: {node: '>= 12'} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/switch@3.6.0': resolution: {integrity: sha512-YNWc5fGLNXE4XlmDAKyqAdllRiClGR7ki4KGFY7nL+xR5jxzjCGU3S3ToMK5Op3QSMGZLxY/aYmC4O+MvcoADQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/switch@3.6.7': - resolution: {integrity: sha512-yBNvKylhc3ZRQ0+7mD0mIenRRe+1yb8YaqMMZr8r3Bf87LaiFtQyhRFziq6ZitcwTJz5LEWjBihxbSVvUrf49w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/table@3.13.3': resolution: {integrity: sha512-AzmETpyxwNqISTzwHJPs85x9gujG40IIsSOBUdp49oKhB85RbPLvMwhadp4wCVAoHw3erOC/TJxHtVc7o2K1LA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/table@3.15.3': - resolution: {integrity: sha512-nQCLjlEvyJHyuijHw8ESqnA9fxNJfQHx0WPcl08VDEb8VxcE/MVzSAIedSWaqjG5k9Oflz6o/F/zHtzw4AFAow==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/tabs@3.8.3': resolution: {integrity: sha512-Plw0K/5Qv35vYq7pHZFfQB2BF5OClFx4Abzo9hLVx4oMy3qb7i5lxmLBVbt81yPX/MdjYeP4zO1EHGBl4zMRhA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tabs@3.9.5': - resolution: {integrity: sha512-aQZGAoOIg1B16qlvXIy6+rHbNBNVcWkGjOjeyvqTTPMjXt/FmElkICnqckI7MRJ1lTqzyppCOBitYOHSXRo8Uw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/tag@3.3.1': resolution: {integrity: sha512-w7d8sVZqxTo8VFfeg2ixLp5kawtrcguGznVY4mt5aE6K8LMJOeNVDqNNfolfyia80VjOWjeX+RpVdVJRdrv/GQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tag@3.4.5': - resolution: {integrity: sha512-iyJuATQ8t2cdLC7hiZm143eeZze/MtgxaMq0OewlI9TUje54bkw2Q+CjERdgisIo3Eemf55JJgylGrTcalEJAg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/textfield@3.14.1': resolution: {integrity: sha512-UMepuYtDdCgrUF4dMphNxrUm23xOmR54aZD1pbp9cJyfioVkJN35BTXZVkD0D07gHLn4RhxKIZxBortQQrLB9g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/textfield@3.14.8': - resolution: {integrity: sha512-FHEvsHdE1cMR2B7rlf+HIneITrC40r201oLYbHAp3q26jH/HUujzFBB9I20qhXjyBohMWfQLqJhSwhs1VW1RJQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/toggle@3.10.0': resolution: {integrity: sha512-6cUf4V9TuG2J7AvXUdU/GspEPFCubUOID3mrselSe563RViy+mMZk0vUEOdyoNanDcEXl58W4dE3SGWxFn71vg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/toggle@3.10.7': - resolution: {integrity: sha512-/RJQU8QlPZXRElZ3Tt10F5K5STgUBUGPpfuFUGuwF3Kw3GpPxYsA1YAVjxXz2MMGwS0+y6+U/J1xIs1AF0Jwzg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/tooltip@3.7.0': resolution: {integrity: sha512-+u9Sftkfe09IDyPEnbbreFKS50vh9X/WTa7n1u2y3PenI9VreLpUR6czyzda4BlvQ95e9jQz1cVxUjxTNaZmBw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tooltip@3.7.7': - resolution: {integrity: sha512-UOTTDbbUz7OaE48VjNSWl+XQbYCUs5Gss4I3Tv1pfRLXzVtGYXv3ur/vRayvZR0xd12ANY26fZPNkSmCFpmiXw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/utils@3.23.0': resolution: {integrity: sha512-fJA63/VU4iQNT8WUvrmll3kvToqMurD69CcgVmbQ56V7ZbvlzFi44E7BpnoaofScYLLtFWRjVdaHsohT6O/big==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/utils@3.25.2': - resolution: {integrity: sha512-GdIvG8GBJJZygB4L2QJP1Gabyn2mjFsha73I2wSe+o4DYeGWoJiMZRM06PyTIxLH4S7Sn7eVDtsSBfkc2VY/NA==} + '@react-aria/utils@3.34.0': + resolution: {integrity: sha512-ZM1ZXIqpwGTJjjL6o3JhlZkEaBpQdxuOCqLEvwEwooaj5GsYI3E9UfOl5vy3UW6bYiEEWl9pNBntrb9CR9kItQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-aria/visually-hidden@3.8.15': - resolution: {integrity: sha512-l+sJ7xTdD5Sd6+rDNDaeJCSPnHOsI+BaJyApvb/YcVgHa7rB47lp6TXCWUCDItcPY4JqRGyeByRJVrtzBFTWCw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-aria/visually-hidden@3.8.8': resolution: {integrity: sha512-Cn2PYKD4ijGDtF0+dvsh8qa4y7KTNAlkTG6h20r8Q+6UTyRNmtE2/26QEaApRF8CBiNy9/BZC/ZC4FK2OjvCoA==} @@ -8637,59 +8421,31 @@ packages: peerDependencies: react: ^18.2.0 - '@react-spring/rafz@9.7.4': - resolution: {integrity: sha512-mqDI6rW0Ca8IdryOMiXRhMtVGiEGLIO89vIOyFQXRIwwIMX30HLya24g9z4olDvFyeDW3+kibiKwtZnA4xhldA==} - '@react-stately/calendar@3.4.3': resolution: {integrity: sha512-OrEcdskszDjnjVnFuSiDC2PVBJ6lWMCJROD5s6W1LUehUtBp8LX9wPavAGHV43LbhN9ldj560sxaQ4WCddrRCA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/calendar@3.5.4': - resolution: {integrity: sha512-R2011mtFSXIjzMXaA+CZ1sflPm9XkTBMqVk77Bnxso2ZsG7FUX8nqFmaDavxwTuHFC6OUexAGSMs8bP9KycTNg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/checkbox@3.6.1': resolution: {integrity: sha512-rOjFeVBy32edYwhKiHj3ZLdLeO+xZ2fnBwxnOBjcygnw4Neygm8FJH/dB1J0hdYYR349yby86ED2x0wRc84zPw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/checkbox@3.6.8': - resolution: {integrity: sha512-c8TWjU67XHHBCpqj6+FXXhQUWGr2Pil1IKggX81pkedhWiJl3/7+WHJuZI0ivGnRjp3aISNOG8UNVlBEjS9E8A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/collections@3.10.4': resolution: {integrity: sha512-OHhCrItGt4zB2bSrgObRo0H2SC7QlkH8ReGxo+NVIWchXRLRoiWBP7S+IwleewEo5gOqDVPY3hqA9n4iiI8twg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/collections@3.10.9': - resolution: {integrity: sha512-plyrng6hOQMG8LrjArMA6ts/DgWyXln3g90/hFNbqe/hdVYF53sDVsj8Jb+5LtoYTpiAlV6eOvy1XR0vPZUf8w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/combobox@3.8.1': resolution: {integrity: sha512-FaWkqTXQdWg7ptaeU4iPcqF/kxbRg2ZNUcvW/hiL/enciV5tRCsddvfNqvDvy1L30z9AUwlp9MWqzm/DhBITCw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/combobox@3.9.2': - resolution: {integrity: sha512-ZsbAcD58IvxZqwYxg9d2gOf8R/k5RUB2TPUiGKD6wgWfEKH6SDzY3bgRByHGOyMCyJB62cHjih/ZShizNTguqA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/data@3.11.0': resolution: {integrity: sha512-0BlPT58WrAtUvpiEfUuyvIsGFTzp/9vA5y+pk53kGJhOdc5tqBGHi9cg40pYE/i1vdHJGMpyHGRD9nkQb8wN3Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/datepicker@3.10.2': - resolution: {integrity: sha512-pa5IZUw+49AyOnddwu4XwU2kI5eo/1thbiIVNHP8uDpbbBrBkquSk3zVFDAGX1cu/I1U2VUkt64U/dxgkwaMQw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/datepicker@3.9.1': resolution: {integrity: sha512-o5xLvlZGJyAbTev2yruGlV2fzQyIDuYTgL19TTt0W0WCfjGGr/AAA9GjGXXmyoRA7sZMxqIPnnv7lNrdA38ofA==} peerDependencies: @@ -8700,72 +8456,34 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/dnd@3.4.2': - resolution: {integrity: sha512-VrHmNoNdVGrx5JHdz/zewmN+N8rlZe+vL/iAOLmvQ74RRLEz8KDFnHdlhgKg1AZqaSg3JJ18BlHEkS7oL1n+tA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/flags@3.0.0': resolution: {integrity: sha512-e3i2ItHbIa0eEwmSXAnPdD7K8syW76JjGe8ENxwFJPW/H1Pu9RJfjkCb/Mq0WSPN/TpxBb54+I9TgrGhbCoZ9w==} - '@react-stately/flags@3.0.3': - resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==} - '@react-stately/form@3.0.0': resolution: {integrity: sha512-C8wkfFmtx1escizibhdka5JvTy9/Vp173CS9cakjvWTmnjYYC1nOlzwp7BsYWTgerCFbRY/BU/Cf/bJDxPiUKQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/form@3.0.5': - resolution: {integrity: sha512-J3plwJ63HQz109OdmaTqTA8Qhvl3gcYYK7DtgKyNP6mc/Me2Q4tl2avkWoA+22NRuv5m+J8TpBk4AVHUEOwqeQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/grid@3.8.4': resolution: {integrity: sha512-rwqV1K4lVhaiaqJkt4TfYqdJoVIyqvSm98rKAYfCNzrKcivVpoiCMJ2EMt6WlYCjDVBdEOQ7fMV1I60IV0pntA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/grid@3.9.2': - resolution: {integrity: sha512-2gK//sqAqg2Xaq6UITTFQwFUJnBRgcW+cKBVbFt+F8d152xB6UwwTS/K79E5PUkOotwqZgTEpkrSFs/aVxCLpw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/list@3.10.2': resolution: {integrity: sha512-INt+zofkIg2KN8B95xPi9pJG7ZFWAm30oIm/lCPBqM3K1Nm03/QaAbiQj2QeJcOsG3lb7oqI6D6iwTolwJkjIQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/list@3.10.8': - resolution: {integrity: sha512-rHCiPLXd+Ry3ztR9DkLA5FPQeH4Zd4/oJAEDWJ77W3oBBOdiMp3ZdHDLP7KBRh17XGNLO/QruYoHWAQTPiMF4g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/menu@3.6.0': resolution: {integrity: sha512-OB6CjNyfOkAuirqx1oTL8z8epS9WDzLyrXjmRnxdiCU9EgRXLGAQNECuO7VIpl58oDry8tgRJiJ8fn8FivWSQA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/menu@3.8.2': - resolution: {integrity: sha512-lt6hIHmSixMzkKx1rKJf3lbAf01EmEvvIlENL20GLiU9cRbpPnPJ1aJMZ5Ad5ygglA7wAemAx+daPhlTQfF2rg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/numberfield@3.8.0': resolution: {integrity: sha512-1XvB8tDOvZKcFnMM6qNLEaTVJcIc0jRFS/9jtS8MzalZvh8DbKi0Ucm1bGU7S5rkCx2QWqZ0rGOIm2h/RlcpkA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/numberfield@3.9.6': - resolution: {integrity: sha512-p2R9admGLI439qZzB39dyANhkruprJJtZwuoGVtxW/VD0ficw6BrPVqAaKG25iwKPkmveleh9p8o+yRqjGedcQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-stately/overlays@3.6.10': - resolution: {integrity: sha512-XxZ2qScT5JPwGk9qiVJE4dtVh3AXTcYwGRA5RsHzC26oyVVsegPqY2PmNJGblAh6Q57VyodoVUyebE0Eo5CzRw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/overlays@3.6.4': resolution: {integrity: sha512-tHEaoAGpE9dSnsskqLPVKum59yGteoSqsniTopodM+miQozbpPlSjdiQnzGLroy5Afx5OZYClE616muNHUILXA==} peerDependencies: @@ -8776,86 +8494,41 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/radio@3.10.7': - resolution: {integrity: sha512-ZwGzFR+sGd42DxRlDTp3G2vLZyhMVtgHkwv2BxazPHxPMvLO9yYl7+3PPNxAmhMB4tg2u9CrzffpGX2rmEJEXA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/searchfield@3.5.0': resolution: {integrity: sha512-SStjChkn/33pEn40slKQPnBnmQYyxVazVwPjiBkdeVejC42lUVairUTrGJgF0PNoZTbxn0so2/XzjqTC9T8iCw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/searchfield@3.5.6': - resolution: {integrity: sha512-gVzU0FeWiLYD8VOYRgWlk79Qn7b2eirqOnWhtI5VNuGN8WyNaCIuBp6SkXTW2dY8hs2Hzn8HlMbgy1MIc7130Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/select@3.6.1': resolution: {integrity: sha512-e5ixtLiYLlFWM8z1msDqXWhflF9esIRfroptZsltMn1lt2iImUlDRlOTZlMtPQzUrDWoiHXRX88sSKUM/jXjQQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/select@3.6.7': - resolution: {integrity: sha512-hCUIddw0mPxVy1OH6jhyaDwgNea9wESjf+MYdnnTG/abRB+OZv/dWScd87OjzVsHTHWcw7CN4ZzlJoXm0FJbKQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/selection@3.14.2': resolution: {integrity: sha512-mL7OoiUgVWaaF7ks5XSxgbXeShijYmD4G3bkBHhqkpugU600QH6BM2hloCq8KOUupk1y8oTljPtF9EmCv375DA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/selection@3.16.2': - resolution: {integrity: sha512-C4eSKw7BIZHJLPzwqGqCnsyFHiUIEyryVQZTJDt6d0wYBOHU6k1pW+Q4VhrZuzSv+IMiI2RkiXeJKc55f0ZXrg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/slider@3.5.0': resolution: {integrity: sha512-dOVpIxb7XKuiRxgpHt1bUSlsklciFki100tKIyBPR+Okar9iC/CwLYROYgVfLkGe77jEBNkor9tDLjDGEWcc1w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/slider@3.5.7': - resolution: {integrity: sha512-gEIGTcpBLcXixd8LYiLc8HKrBiGQJltrrEGoOvvTP8KVItXQxmeL+JiSsh8qgOoUdRRpzmAoFNUKGEg2/gtN8A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/table@3.11.4': resolution: {integrity: sha512-dWINJIEOKQl4qq3moq+S8xCD3m+yJqBj0dahr+rOkS+t2uqORwzsusTM35D2T/ZHZi49S2GpE7QuDa+edCynPw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/table@3.12.2': - resolution: {integrity: sha512-dUcsrdALylhWz6exqIoqtR/dnrzjIAptMyAUPT378Y/mCYs4PxKkHSvtPEQrZhdQS1ALIIgfeg9KUVIempoXPw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/tabs@3.6.3': resolution: {integrity: sha512-Nj+Gacwa2SIzYIvHW40GsyX4Q6c8kF7GOuXESeQswbCjnwqhrSbDBp+ngPcUPUJxqFh6JhDCVwAS3wMhUoyUwA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tabs@3.6.9': - resolution: {integrity: sha512-YZDqZng3HrRX+uXmg6u78x73Oi24G5ICpiXVqDKKDkO333XCA5H8MWItiuPZkYB2h3SbaCaLqSobLkvCoWYpNQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/toggle@3.7.0': resolution: {integrity: sha512-TRksHkCJk/Xogq4181g3CYgJf+EfsJCqX5UZDSw1Z1Kgpvonjmdf6FAfQfCh9QR2OuXUL6hOLUDVLte5OPI+5g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/toggle@3.7.7': - resolution: {integrity: sha512-AS+xB4+hHWa3wzYkbS6pwBkovPfIE02B9SnuYTe0stKcuejpWKo5L3QMptW0ftFYsW3ZPCXuneImfObEw2T01A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-stately/tooltip@3.4.12': - resolution: {integrity: sha512-QKYT/cze7n9qaBsk7o5ais3jRfhYCzcVRfps+iys/W+/9FFbbhjfQG995Lwi6b+vGOHWfXxXpwmyIO2tzM1Iog==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/tooltip@3.4.6': resolution: {integrity: sha512-uL93bmsXf+OOgpKLPEKfpDH4z+MK2CuqlqVxx7rshN0vjWOSoezE5nzwgee90+RpDrLNNNWTNa7n+NkDRpI1jA==} peerDependencies: @@ -8866,16 +8539,6 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tree@3.8.4': - resolution: {integrity: sha512-HFNclIXJ/3QdGQWxXbj+tdlmIX/XwCfzAMB5m26xpJ6HtJhia6dtx3GLfcdyHNjmuRbAsTBsAAnnVKBmNRUdIQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-stately/utils@3.10.3': - resolution: {integrity: sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/utils@3.9.0': resolution: {integrity: sha512-yPKFY1F88HxuZ15BG2qwAYxtpE4HnIU0Ofi4CuBE0xC6I8mwo4OQjDzi+DZjxQngM9D6AeTTD6F1V8gkozA0Gw==} peerDependencies: @@ -8891,66 +8554,31 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/breadcrumbs@3.7.7': - resolution: {integrity: sha512-ZmhXwD2LLzfEA2OvOCp/QvXu8A/Edsrn5q0qUDGsmOZj9SCVeT82bIv8P+mQnATM13mi2gyoik6102Jc1OscJA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/button@3.9.1': resolution: {integrity: sha512-bf9iTar3PtqnyV9rA+wyFyrskZKhwmOuOd/ifYIjPs56YNVXWH5Wfqj6Dx3xdFBgtKx8mEVQxVhoX+WkHX+rtw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/button@3.9.6': - resolution: {integrity: sha512-8lA+D5JLbNyQikf8M/cPP2cji91aVTcqjrGpDqI7sQnaLFikM8eFR6l1ZWGtZS5MCcbfooko77ha35SYplSQvw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/calendar@3.4.3': resolution: {integrity: sha512-96x57ctX5wNEl+8et3sc2NQm8neOJayEeqOQQpyPtI7jyvst/xBrKCwysf9W/dhgPlUC+KeBAYFWfjd5hFVHYA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/calendar@3.4.9': - resolution: {integrity: sha512-O/PS9c21HgO9qzxOyZ7/dTccxabFZdF6tj3UED4DrBw7AN3KZ7JMzwzYbwHinOcO7nUcklGgNoAIHk45UAKR9g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/checkbox@3.6.0': resolution: {integrity: sha512-vgbuJzQpVCNT5AZWV0OozXCnihqrXxoZKfJFIw0xro47pT2sn3t5UC4RA9wfjDGMoK4frw1K/4HQLsQIOsPBkw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/checkbox@3.8.3': - resolution: {integrity: sha512-f4c1mnLEt0iS1NMkyZXgT3q3AgcxzDk7w6MSONOKydcnh0xG5L2oefY14DhVDLkAuQS7jThlUFwiAs+MxiO3MA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/combobox@3.10.0': resolution: {integrity: sha512-1IXSNS02TPbguyYopaW2snU6sZusbClHrEyVr4zPeexTV4kpUUBNXOzFQ+eSQRR0r2XW57Z0yRW4GJ6FGU0yCA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/combobox@3.12.1': - resolution: {integrity: sha512-bd5YwHZWtgnJx4jGbplWbYzXj7IbO5w3IY5suNR7r891rx6IktquZ8GQwyYH0pQ/x+X5LdK2xI59i6+QC2PmlA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/datepicker@3.7.1': resolution: {integrity: sha512-5juVDULOytNzkotqX8j5mYKJckeIpkgbHqVSGkPgLw0++FceIaSZ6RH56cqLup0pO45paqIt9zHh+QXBYX+syg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/datepicker@3.8.2': - resolution: {integrity: sha512-Ih4F0bNVGrEuwCD8XmmBAspuuOBsj/Svn/pDFtC2RyAZjXfWh+sI+n4XLz/sYKjvARh5TUI8GNy9smYS4vYXug==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-types/dialog@3.5.12': - resolution: {integrity: sha512-JmpQbSpXltqEyYfEwoqDolABIiojeExkqolHNdQlayIsfFuSxZxNwXZPOpz58Ri/iwv21JP7K3QF0Gb2Ohxl9w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/dialog@3.5.7': resolution: {integrity: sha512-geYoqAyQaTLG43AaXdMUVqZXYgkSifrD9cF7lR2kPAT0uGFv0YREi6ieU+aui8XJ83EW0xcxP+EPWd2YkN4D4w==} peerDependencies: @@ -8961,36 +8589,16 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/grid@3.2.8': - resolution: {integrity: sha512-6PJrpukwMqlv3IhJSDkJuVbhHM8Oe6hd2supWqd9adMXrlSP7QHt9a8SgFcFblCCTx8JzUaA0PvY5sTudcEtOQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/link@3.5.2': resolution: {integrity: sha512-/s51/WejmpLiyxOgP89s4txgxYoGaPe8pVDItVo1h4+BhU1Puyvgv/Jx8t9dPvo6LUXbraaN+SgKk/QDxaiirw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/link@3.5.7': - resolution: {integrity: sha512-2WyaVmm1qr9UrSG3Dq6iz+2ziuVp+DH8CsYZ9CA6aNNb6U18Hxju3LTPb4a5gM0eC7W0mQGNBmrgGlAdDZEJOw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/listbox@3.4.6': resolution: {integrity: sha512-XOQvrTqNh5WIPDvKiWiep8T07RAsMfjAXTjDbnjxVlKACUXkcwpts9kFaLnJ9LJRFt6DwItfP+WMkzvmx63/NQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/listbox@3.5.1': - resolution: {integrity: sha512-n5bOgD9lgfK1qaLtag9WPnu151SwXBCNn/OgGY/Br9mWRl+nPUEYtFcPX+2VCld7uThf54kwrTmzlFnaraIlcw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-types/menu@3.9.11': - resolution: {integrity: sha512-IguQVF70d7aHXgWB1Rd2a/PiIuLZ2Nt7lyayJshLcy/NLOYmgpTmTyn2WCtlA5lTfQwmQrNFf4EvnWkeljJXdA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/menu@3.9.6': resolution: {integrity: sha512-w/RbFInOf4nNayQDv5c2L8IMJbcFOkBhsT3xvvpTy+CHvJcQdjggwaV1sRiw7eF/PwB81k2CwigmidUzHJhKDg==} peerDependencies: @@ -9001,106 +8609,56 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/meter@3.4.3': - resolution: {integrity: sha512-Y2fX5CTAPGRKxVSeepbeyN6/K+wlF9pMRcNxTSU2qDwdoFqNCtTWMcWuCsU/Y2L/zU0jFWu4x0Vo7WkrcsgcMA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/numberfield@3.7.0': resolution: {integrity: sha512-gaGi+vqm1Y8LCWRsWYUjcGftPIzl+8W2VOfkgKMLM8y76nnwTPtmAqs+Ap1cg7sEJSfsiKMq93e9yvP3udrC2w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/numberfield@3.8.5': - resolution: {integrity: sha512-LVWggkxwd1nyVZomXBPfQA1E4I4/i4PBifjcDs2AfcV7q5RE9D+DVIDXsYucVOBxPlDOxiAq/T9ypobspWSwHw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/overlays@3.8.4': resolution: {integrity: sha512-pfgNlQnbF6RB/R2oSxyqAP3Uzz0xE/k5q4n5gUeCDNLjY5qxFHGE8xniZZ503nZYw6VBa9XMN1efDOKQyeiO0w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/overlays@3.8.9': - resolution: {integrity: sha512-9ni9upQgXPnR+K9cWmbYWvm3ll9gH8P/XsEZprqIV5zNLMF334jADK48h4jafb1X9RFnj0WbHo6BqcSObzjTig==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/progress@3.5.1': resolution: {integrity: sha512-CqsUjczUK/SfuFzDcajBBaXRTW0D3G9S/yqLDj9e8E0ii+lGDLt1PHj24t1J7E88U2rVYqmM9VL4NHTt8o3IYA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/progress@3.5.6': - resolution: {integrity: sha512-Nh43sjQ5adyN1bTHBPRaIPhXUdBqP0miYeJpeMY3V/KUl4qmouJLwDnccwFG4xLm6gBfYe22lgbbV7nAfNnuTQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/radio@3.7.0': resolution: {integrity: sha512-EcwGAXzSHjSqpFZha7xn3IUrhPiJLj+0yb1Ip0qPmhWz0VVw2DwrkY7q/jfaKroVvQhTo2TbfGhcsAQrt0fRqg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/radio@3.8.3': - resolution: {integrity: sha512-fUVJt4Bb6jOReFqnhHVNxWXH7t6c60uSFfoPKuXt/xI9LL1i2jhpur0ggpTfIn3qLIAmNBU6bKBCWAdr4KjeVQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/searchfield@3.5.2': resolution: {integrity: sha512-JAK2/Kg4Dr393FYfbRw0TlXKnJPX77sq1x/ZBxtO6p64+MuuIYKqw0i9PwDlo1PViw2QI5u8GFhKA2TgemY9uA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/searchfield@3.5.8': - resolution: {integrity: sha512-EcdqalHNIC6BJoRfmqUhAvXRd3aHkWlV1cFCz57JJKgUEFYyXPNrXd1b73TKLzTXEk+X/D6LKV15ILYpEaxu8w==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/select@3.9.1': resolution: {integrity: sha512-EpKSxrnh8HdZvOF9dHQkjivAcdIp1K81FaxmvosH8Lygqh0iYXxAdZGtKLMyBoPI8YFhA+rotIzTcOqgCCnqWA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/select@3.9.6': - resolution: {integrity: sha512-cVSFR0eJLup/ht1Uto+y8uyLmHO89J6wNh65SIHb3jeVz9oLBAedP3YNI2qB+F9qFMUcA8PBSLXIIuT6gXzLgQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/shared@3.22.0': resolution: {integrity: sha512-yVOekZWbtSmmiThGEIARbBpnmUIuePFlLyctjvCbgJgGhz8JnEJOipLQ/a4anaWfzAgzSceQP8j/K+VOOePleA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/shared@3.24.1': - resolution: {integrity: sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==} + '@react-types/shared@3.34.0': + resolution: {integrity: sha512-gp6xo/s2lX54AlTjOiqwDnxA7UW79BNvI9dB9pr3LZTzRKCd1ZA+ZbgKw/ReIiWuvvVw/8QFJpnqeeFyLocMcQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-types/slider@3.7.0': resolution: {integrity: sha512-uyQXUVFfqc9SPUW0LZLMan2n232F/OflRafiHXz9viLFa9tVOupVa7GhASRAoHojwkjoJ1LjFlPih7g5dOZ0/Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/slider@3.7.5': - resolution: {integrity: sha512-bRitwQRQjQoOcKEdPMljnvm474dwrmsc6pdsVQDh/qynzr+KO9IHuYc3qPW53WVE2hMQJDohlqtCAWQXWQ5Vcg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/switch@3.5.0': resolution: {integrity: sha512-/wNmUGjk69bP6t5k2QkAdrNN5Eb9Rz4dOyp0pCPmoeE+5haW6sV5NmtkvWX1NSc4DQz1xL/a5b+A0vxPCP22Jw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/switch@3.5.5': - resolution: {integrity: sha512-SZx1Bd+COhAOs/RTifbZG+uq/llwba7VAKx7XBeX4LeIz1dtguy5bigOBgFTMQi4qsIVCpybSWEEl+daj4XFPw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-types/table@3.10.1': - resolution: {integrity: sha512-xsNh0Gm4GtNeSknZqkMsfGvc94fycmfhspGO+FzQKim2hB5k4yILwd+lHYQ2UKW6New9GVH/zN2Pd3v67IeZ2g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/table@3.9.2': resolution: {integrity: sha512-brw5JUANOzBa2rYNpN8AIl9nDZ9RwRZC6G/wTM/JhtirjC1S42oCtf8Ap5rWJBdmMG/5KOfcGNcAl/huyqb3gg==} peerDependencies: @@ -9111,26 +8669,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/tabs@3.3.9': - resolution: {integrity: sha512-3Q9kRVvg/qDyeJR/W1+C2z2OyvDWQrSLvOCvAezX5UKzww4rBEAA8OqBlyDwn7q3fiwrh/m64l6p+dbln+RdxQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/textfield@3.9.0': resolution: {integrity: sha512-D/DiwzsfkwlAg3uv8hoIfwju+zhB/hWDEdTvxQbPkntDr0kmN/QfI17NMSzbOBCInC4ABX87ViXLGxr940ykGA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/textfield@3.9.6': - resolution: {integrity: sha512-0uPqjJh4lYp1aL1HL9IlV8Cgp8eT0PcsNfdoCktfkLytvvBPmox2Pfm57W/d0xTtzZu2CjxhYNTob+JtGAOeXA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - - '@react-types/tooltip@3.4.11': - resolution: {integrity: sha512-WPikHQxeT5Lb09yJEaW6Ja3ecE0g1YM6ukWYS2v/iZLUPn5YlYrGytspuCYQNSh/u7suCz4zRLEHYCl7OCigjw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/tooltip@3.4.6': resolution: {integrity: sha512-RaZewdER7ZcsNL99RhVHs8kSLyzIBkwc0W6eFZrxST2MD9J5GzkVWRhIiqtFOd5U1aYnxdJ6woq72Ef+le6Vfw==} peerDependencies: @@ -10470,10 +10013,6 @@ packages: resolution: {integrity: sha512-P6iIPyYQ+qH8CvGauAqanhVnjrnRe0IZFSYCeGkSRW9q3u8bdVn2NPI+lasFyVsEQn1J/IFmp5Aax41+dAP9wg==} engines: {node: '>=12'} - '@testing-library/jest-dom@6.5.0': - resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - '@tokenizer/token@0.3.0': resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} @@ -10709,9 +10248,6 @@ packages: '@types/interpret@1.1.3': resolution: {integrity: sha512-uBaBhj/BhilG58r64mtDb/BEdH51HIQLgP5bmWzc5qCtFMja8dCk/IOJmk36j0lbi9QHwI6sbtUNGuqXdKCAtQ==} - '@types/invariant@2.2.37': - resolution: {integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==} - '@types/is-ci@3.0.0': resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} @@ -11285,8 +10821,19 @@ packages: resolution: {integrity: sha512-q76lDAafvHNGWedNAVHrz/EyYTS8qwRLcwne8SJQdRN5P3HydxU6XROFvJfTML6KZXQX2FDdGY4/SnaNyd7M0Q==} engines: {node: '>=16.0.0'} - '@window-splitter/state@0.4.1': - resolution: {integrity: sha512-JbsCYEWFXs79Gxudtv+XTYE2tdidPg8oGoIbUyh9QtdYUNUO/QKI2ORk2WFNIkk2ZzTWMXquI92s1nj4sAhZ+w==} + '@window-splitter/interface@1.1.3': + resolution: {integrity: sha512-GV7nunGpSqrlbR8pyI65aFMYlyFTO1VgWhT2cFsPkfYwmh5xBNWAWkJJtDMvbfwBHtvTGf4kTztx6e9LZSiSeQ==} + engines: {node: '>=18.0.0'} + + '@window-splitter/react@1.1.3': + resolution: {integrity: sha512-IDquSVO7WFLlx8NsrINaT+VewZZ1GpIV5E5AzeOBrGVI5UVy/b+jPFCWuUv6s7iuOIarX8wvuSaDDf3L4hqabg==} + engines: {node: '>=18.0.0'} + peerDependencies: + react: '>=16' + react-dom: '>=16' + + '@window-splitter/state@1.1.3': + resolution: {integrity: sha512-aMm1sbA4P9zeg87tVgqnlkrirjhTi/D08QvgnoSjCihq4vBqVDICrzZ6wwmlmU1E0Rar1hWy3GTpnCcn8tdZqQ==} engines: {node: '>=18.0.0'} '@wolfy1339/lru-cache@11.0.2-patch.1': @@ -11296,15 +10843,6 @@ packages: '@xobotyi/scrollbar-width@1.9.5': resolution: {integrity: sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==} - '@xstate/react@4.1.2': - resolution: {integrity: sha512-orAidFrKCrU0ZwN5l/ABPlBfW2ziRDT2RrYoktRlZ0WRoLvA2E/uAC1JpZt43mCLtc8jrdwYCgJiqx1V8NvGTw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - xstate: ^5.18.1 - peerDependenciesMeta: - xstate: - optional: true - '@xtuc/ieee754@1.2.0': resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -12027,10 +11565,6 @@ packages: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} engines: {node: '>=4'} - chalk@3.0.0: - resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} - engines: {node: '>=8'} - chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} @@ -12497,9 +12031,6 @@ packages: resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==} engines: {node: '>= 6'} - css.escape@1.5.1: - resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} - cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -13007,9 +12538,6 @@ packages: dom-accessibility-api@0.5.15: resolution: {integrity: sha512-8o+oVqLQZoruQPYy3uAAQtc6YbtSiRq5aPJBhJ82YTJRHvI6ofhYAkC81WmjFTnfUbqg6T3aCglIpU9p/5e7Cw==} - dom-accessibility-api@0.6.3: - resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} - dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} @@ -14593,9 +14121,6 @@ packages: resolution: {integrity: sha512-YFMSV91JNBOSjw1cOfw2tup6hDP7mkz+2AUV7W1L1AM6ntgI75qC1ZeFpjPGMrWp+upmBRTX2fJWQ8c7jsUWpA==} engines: {node: '>=14'} - invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} - ioredis@5.3.2: resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} engines: {node: '>=12.22.0'} @@ -16834,9 +16359,6 @@ packages: performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} - performant-array-to-tree@1.11.0: - resolution: {integrity: sha512-YwCqIDvnaebXaKuKQhI5yJD6ryDc3FxvoeX/5ougXTKDUWb7s5S2BuBgIyftCa4sBe1+ZU5Kmi4RJy+pjjjrpw==} - periscopic@3.1.0: resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} @@ -17529,11 +17051,11 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-aria@3.34.3: - resolution: {integrity: sha512-wSprEI5EojDFCm357MxnKAxJZN68OYIt6UH6N0KCo6MEUAVZMbhMSmGYjw/kLK4rI7KrbJDqGqUMQkwc93W9Ng==} + react-aria@3.48.0: + resolution: {integrity: sha512-jQjd4rBEIMqecBaAKYJbVGK6EqIHLa5znVQ7jwFyK5vCyljoj6KhgtiahmcIPsG5vG5vEDLw+ba+bEWn6A2P4w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-collapse@5.1.1: resolution: {integrity: sha512-k6cd7csF1o9LBhQ4AGBIdxB60SUEUMQDAnL2z1YvYNr9KoKr+nDkhN6FK7uGaBd/rYrYfrMpzpmJEIeHRYogBw==} @@ -17674,6 +17196,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-stately@3.46.0: + resolution: {integrity: sha512-OdxhWvHgs2L4OJGIs7hnuTr5WjjMM6enhNEAMRqiekhF8+ITvA2LRwNftOZwcogaoCslGYq5S2VQTQwnm0GbCA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-style-singleton@2.2.3: resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==} engines: {node: '>=10'} @@ -17702,14 +17229,6 @@ packages: react: '*' react-dom: '*' - react-window-splitter@0.4.1: - resolution: {integrity: sha512-7XjNxlsBqOySyPEf32GZXLIA7gIPLWqswnOwM4Aw15qiMChMm8einkz40RbLfvrD11EKHIU35vcUH1RDA+we9w==} - engines: {node: '>=18.0.0'} - deprecated: This package has moved to @window-splitter/react - peerDependencies: - react: '>=16' - react-dom: '>=16' - react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} @@ -17812,11 +17331,6 @@ packages: reduce-css-calc@2.1.8: resolution: {integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==} - reforest@0.13.0: - resolution: {integrity: sha512-f0It/s51f1UWCCCni0viULALDBhxWBPFnLmZRYtKcz4zYeNWqeNTdcnU/OpBry9tk+jyMQcH3MLK8UdzsAvA5w==} - peerDependencies: - react: '>=16.8' - regenerator-runtime@0.13.11: resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} @@ -19504,9 +19018,6 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} - universal-cookie@7.2.0: - resolution: {integrity: sha512-PvcyflJAYACJKr28HABxkGemML5vafHmiL4ICe3e+BEKXRMt0GaFLZhAwgv637kFFnnfiSJ8e6jknrKkMrU+PQ==} - universal-github-app-jwt@1.2.0: resolution: {integrity: sha512-dncpMpnsKBk0eetwfN8D8OUHGfiDhhJ+mtsbMl+7PfW7mYjiH8LIcqRmYMtzYLgSh47HjfdBtrBwIQ/gizKR3g==} @@ -19602,6 +19113,11 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 + use-sync-external-store@1.6.0: + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -20060,9 +19576,6 @@ packages: resolution: {integrity: sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==} engines: {node: '>=0.4.0'} - xstate@5.18.1: - resolution: {integrity: sha512-m02IqcCQbaE/kBQLunwub/5i8epvkD2mFutnL17Oeg1eXTShe1sRF4D5mhv1dlaFO4vbW5gRGRhraeAD5c938g==} - xtend@4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} @@ -20176,28 +19689,11 @@ packages: zod@3.25.76: resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} - zustand@4.5.5: - resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@types/react': '>=16.8' - immer: '>=9.0.6' - react: '>=16.8' - peerDependenciesMeta: - '@types/react': - optional: true - immer: - optional: true - react: - optional: true - zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} snapshots: - '@adobe/css-tools@4.4.0': {} - '@ai-sdk/anthropic@2.0.4(zod@3.25.76)': dependencies: '@ai-sdk/provider': 2.0.0 @@ -23059,7 +22555,7 @@ snapshots: '@epic-web/test-server@0.1.0(bufferutil@4.0.9)': dependencies: '@hono/node-server': 1.12.2(hono@4.5.11) - '@hono/node-ws': 1.0.4(@hono/node-server@1.12.2(hono@4.5.11))(bufferutil@4.0.9) + '@hono/node-ws': 1.0.4(@hono/node-server@1.12.2(hono@4.11.8))(bufferutil@4.0.9) '@open-draft/deferred-promise': 2.2.0 '@types/ws': 8.5.12 hono: 4.5.11 @@ -23745,7 +23241,7 @@ snapshots: dependencies: hono: 4.11.8 - '@hono/node-ws@1.0.4(@hono/node-server@1.12.2(hono@4.5.11))(bufferutil@4.0.9)': + '@hono/node-ws@1.0.4(@hono/node-server@1.12.2(hono@4.11.8))(bufferutil@4.0.9)': dependencies: '@hono/node-server': 1.12.2(hono@4.5.11) ws: 8.18.3(bufferutil@4.0.9) @@ -23952,20 +23448,15 @@ snapshots: '@img/sharp-win32-x64@0.34.5': optional: true - '@internationalized/date@3.5.1': - dependencies: - '@swc/helpers': 0.5.2 - - '@internationalized/date@3.5.5': + '@internationalized/date@3.12.1': dependencies: '@swc/helpers': 0.5.15 - '@internationalized/message@3.1.1': + '@internationalized/date@3.5.1': dependencies: - '@swc/helpers': 0.5.15 - intl-messageformat: 10.5.8 + '@swc/helpers': 0.5.2 - '@internationalized/message@3.1.4': + '@internationalized/message@3.1.1': dependencies: '@swc/helpers': 0.5.15 intl-messageformat: 10.5.8 @@ -23974,7 +23465,7 @@ snapshots: dependencies: '@swc/helpers': 0.5.15 - '@internationalized/number@3.5.3': + '@internationalized/number@3.6.6': dependencies: '@swc/helpers': 0.5.15 @@ -23982,7 +23473,7 @@ snapshots: dependencies: '@swc/helpers': 0.5.15 - '@internationalized/string@3.2.3': + '@internationalized/string@3.2.8': dependencies: '@swc/helpers': 0.5.15 @@ -25732,12 +25223,6 @@ snapshots: optionalDependencies: '@types/react': 18.3.1 - '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.69)(react@18.2.0)': - dependencies: - react: 18.2.0 - optionalDependencies: - '@types/react': 18.2.69 - '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.1)(react@18.3.1)': dependencies: react: 18.3.1 @@ -27000,166 +26485,78 @@ snapshots: dependencies: '@babel/runtime': 7.28.4 - '@react-aria/breadcrumbs@3.5.16(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/link': 3.7.4(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/breadcrumbs': 3.7.7(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/breadcrumbs@3.5.9(react@18.2.0)': + '@react-aria/breadcrumbs@3.5.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/link': 3.6.3(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/link': 3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/breadcrumbs': 3.7.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/button@3.9.1(react@18.2.0)': + '@react-aria/button@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/toggle': 3.7.0(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - - '@react-aria/button@3.9.8(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/toggle': 3.7.7(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/calendar@3.5.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/calendar': 3.5.4(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/calendar': 3.4.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - react-dom '@react-aria/calendar@3.5.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.1 - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@internationalized/date': 3.12.1 + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.1 - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/calendar': 3.4.3(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/calendar': 3.4.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/checkbox@3.13.0(react@18.2.0)': + '@react-aria/checkbox@3.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/form': 3.0.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) - '@react-aria/toggle': 3.10.0(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/form': 3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/toggle': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/checkbox': 3.6.1(react@18.2.0) '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/toggle': 3.7.0(react@18.2.0) '@react-types/checkbox': 3.6.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/checkbox@3.14.6(react@18.2.0)': - dependencies: - '@react-aria/form': 3.0.8(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/toggle': 3.10.7(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/checkbox': 3.6.8(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/toggle': 3.7.7(react@18.2.0) - '@react-types/checkbox': 3.8.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - - '@react-aria/combobox@3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/listbox': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/menu': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.8(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/combobox': 3.9.2(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/combobox': 3.12.1(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - react-dom '@react-aria/combobox@3.8.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.0(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/listbox': 3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.1 '@react-aria/menu': 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/textfield': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/combobox': 3.8.1(react@18.2.0) '@react-stately/form': 3.0.0(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/combobox': 3.10.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/datepicker@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@internationalized/number': 3.5.3 - '@internationalized/string': 3.2.3 - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/form': 3.0.8(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/spinbutton': 3.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/datepicker': 3.10.2(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/calendar': 3.4.9(react@18.2.0) - '@react-types/datepicker': 3.8.2(react@18.2.0) - '@react-types/dialog': 3.5.12(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -27169,11 +26566,11 @@ snapshots: '@internationalized/date': 3.5.1 '@internationalized/number': 3.5.0 '@internationalized/string': 3.2.0 - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/form': 3.0.1(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/form': 3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/spinbutton': 3.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.23.0(react@18.2.0) '@react-stately/datepicker': 3.9.1(react@18.2.0) @@ -27189,257 +26586,140 @@ snapshots: '@react-aria/dialog@3.5.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/dialog': 3.5.7(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/dialog@3.5.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/dialog': 3.5.12(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/dnd@3.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@internationalized/string': 3.2.0 - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@internationalized/string': 3.2.8 + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.1 '@react-aria/overlays': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/dnd': 3.2.7(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/dnd@3.7.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/string': 3.2.3 - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/dnd': 3.4.2(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/focus@3.16.0(react@18.2.0)': + '@react-aria/focus@3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - clsx: 2.1.1 - react: 18.2.0 - - '@react-aria/focus@3.18.2(react@18.2.0)': - dependencies: - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 clsx: 2.1.1 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/form@3.0.1(react@18.2.0)': + '@react-aria/form@3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/form': 3.0.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - - '@react-aria/form@3.0.8(react@18.2.0)': - dependencies: - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/grid@3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/grid': 3.9.2(react@18.2.0) - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-types/checkbox': 3.8.3(react@18.2.0) - '@react-types/grid': 3.2.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + transitivePeerDependencies: + - react-dom '@react-aria/grid@3.8.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.1 '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/grid': 3.8.4(react@18.2.0) '@react-stately/selection': 3.14.2(react@18.2.0) - '@react-stately/virtualizer': 3.6.6(react@18.2.0) + '@react-stately/virtualizer': 3.6.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/checkbox': 3.6.0(react@18.2.0) '@react-types/grid': 3.2.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/gridlist@3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/grid': 3.8.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/list': 3.10.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/gridlist@3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/grid': 3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/list': 3.10.8(react@18.2.0) - '@react-stately/tree': 3.8.4(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/i18n@3.10.0(react@18.2.0)': + '@react-aria/i18n@3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.1 + '@internationalized/date': 3.12.1 '@internationalized/message': 3.1.1 - '@internationalized/number': 3.5.0 - '@internationalized/string': 3.2.0 + '@internationalized/number': 3.6.6 + '@internationalized/string': 3.2.8 '@react-aria/ssr': 3.9.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/i18n@3.12.2(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@internationalized/message': 3.1.4 - '@internationalized/number': 3.5.3 - '@internationalized/string': 3.2.3 - '@react-aria/ssr': 3.9.5(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/interactions@3.20.1(react@18.2.0)': + '@react-aria/interactions@3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/ssr': 3.9.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/interactions@3.22.2(react@18.2.0)': - dependencies: - '@react-aria/ssr': 3.9.5(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/label@3.7.11(react@18.2.0)': - dependencies: - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/label@3.7.4(react@18.2.0)': + '@react-aria/label@3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/link@3.6.3(react@18.2.0)': + '@react-aria/link@3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/link': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/link@3.7.4(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/link': 3.5.7(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-aria/listbox@3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/list': 3.10.2(react@18.2.0) '@react-types/listbox': 3.4.6(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/listbox@3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/list': 3.10.8(react@18.2.0) - '@react-types/listbox': 3.5.1(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -27448,318 +26728,170 @@ snapshots: dependencies: '@swc/helpers': 0.5.15 - '@react-aria/live-announcer@3.3.4': - dependencies: - '@swc/helpers': 0.5.15 - '@react-aria/menu@3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/menu': 3.6.0(react@18.2.0) '@react-stately/tree': 3.7.5(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/menu': 3.9.6(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/menu@3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/menu': 3.8.2(react@18.2.0) - '@react-stately/tree': 3.8.4(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/menu': 3.9.11(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/meter@3.4.16(react@18.2.0)': - dependencies: - '@react-aria/progress': 3.4.16(react@18.2.0) - '@react-types/meter': 3.4.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/meter@3.4.9(react@18.2.0)': + '@react-aria/meter@3.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/progress': 3.4.9(react@18.2.0) + '@react-aria/progress': 3.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/meter': 3.3.6(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-aria/numberfield@3.10.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/spinbutton': 3.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/textfield': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/numberfield': 3.8.0(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/numberfield': 3.7.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/numberfield@3.11.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/spinbutton': 3.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.8(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/numberfield': 3.9.6(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/numberfield': 3.8.5(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/overlays@3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/ssr': 3.9.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.8(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/visually-hidden': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/overlays': 3.6.4(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/overlays': 3.8.4(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/overlays@3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/ssr': 3.9.5(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.15(react@18.2.0) - '@react-stately/overlays': 3.6.10(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/overlays': 3.8.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/progress@3.4.16(react@18.2.0)': + '@react-aria/progress@3.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/progress': 3.5.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/progress@3.4.9(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/progress': 3.5.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/radio@3.10.0(react@18.2.0)': + '@react-aria/radio@3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/form': 3.0.1(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/form': 3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/radio': 3.10.1(react@18.2.0) '@react-types/radio': 3.7.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/radio@3.10.7(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/form': 3.0.8(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/radio': 3.10.7(react@18.2.0) - '@react-types/radio': 3.8.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/searchfield@3.7.1(react@18.2.0)': + '@react-aria/searchfield@3.7.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/textfield': 3.14.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/textfield': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/searchfield': 3.5.0(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/searchfield': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/searchfield@3.7.8(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/textfield': 3.14.8(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/searchfield': 3.5.6(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/searchfield': 3.5.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-aria/select@3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/form': 3.0.1(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) + '@react-aria/form': 3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/listbox': 3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/menu': 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.8(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/visually-hidden': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/select': 3.6.1(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) '@react-types/select': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/select@3.14.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/form': 3.0.8(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/listbox': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/menu': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.15(react@18.2.0) - '@react-stately/select': 3.6.7(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/select': 3.9.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/selection@3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/selection': 3.14.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/selection@3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/separator@3.3.9(react@18.2.0)': - dependencies: - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/separator@3.4.2(react@18.2.0)': - dependencies: - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/slider@3.7.11(react@18.2.0)': + '@react-aria/separator@3.3.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/slider': 3.5.7(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/slider': 3.7.5(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/slider@3.7.4(react@18.2.0)': + '@react-aria/slider@3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/slider': 3.5.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/slider': 3.7.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-aria/spinbutton@3.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.0(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.1 - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/spinbutton@3.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -27769,227 +26901,131 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-aria/ssr@3.9.5(react@18.2.0)': - dependencies: - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/switch@3.6.0(react@18.2.0)': + '@react-aria/switch@3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/toggle': 3.10.0(react@18.2.0) + '@react-aria/toggle': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/toggle': 3.7.0(react@18.2.0) '@react-types/switch': 3.5.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - - '@react-aria/switch@3.6.7(react@18.2.0)': - dependencies: - '@react-aria/toggle': 3.10.7(react@18.2.0) - '@react-stately/toggle': 3.7.7(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/switch': 3.5.5(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-aria/table@3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/grid': 3.8.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.1 - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.8(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/visually-hidden': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/flags': 3.0.0 '@react-stately/table': 3.11.4(react@18.2.0) - '@react-stately/virtualizer': 3.6.6(react@18.2.0) + '@react-stately/virtualizer': 3.6.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/checkbox': 3.6.0(react@18.2.0) '@react-types/grid': 3.2.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/table': 3.9.2(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/table@3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/grid': 3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.15(react@18.2.0) - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/flags': 3.0.3 - '@react-stately/table': 3.12.2(react@18.2.0) - '@react-types/checkbox': 3.8.3(react@18.2.0) - '@react-types/grid': 3.2.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/table': 3.10.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - '@react-aria/tabs@3.8.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/tabs': 3.6.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/tabs': 3.3.4(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/tabs@3.9.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/tabs': 3.6.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/tabs': 3.3.9(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - '@react-aria/tag@3.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/gridlist': 3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/list': 3.10.2(react@18.2.0) '@react-types/button': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/tag@3.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/gridlist': 3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/list': 3.10.8(react@18.2.0) - '@react-types/button': 3.9.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/textfield@3.14.1(react@18.2.0)': + '@react-aria/textfield@3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/form': 3.0.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/form': 3.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/textfield': 3.9.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/textfield@3.14.8(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/form': 3.0.8(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/textfield': 3.9.6(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/toggle@3.10.0(react@18.2.0)': + '@react-aria/toggle@3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/toggle': 3.7.0(react@18.2.0) '@react-types/checkbox': 3.6.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom - '@react-aria/toggle@3.10.7(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/toggle': 3.7.7(react@18.2.0) - '@react-types/checkbox': 3.8.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-aria/tooltip@3.7.0(react@18.2.0)': + '@react-aria/tooltip@3.7.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-stately/tooltip': 3.4.6(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/tooltip': 3.4.6(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - - '@react-aria/tooltip@3.7.7(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-stately/tooltip': 3.4.12(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/tooltip': 3.4.11(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-aria/utils@3.23.0(react@18.2.0)': dependencies: '@react-aria/ssr': 3.9.1(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 clsx: 2.1.1 react: 18.2.0 - '@react-aria/utils@3.25.2(react@18.2.0)': + '@react-aria/utils@3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/ssr': 3.9.5(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - clsx: 2.1.1 - react: 18.2.0 - - '@react-aria/visually-hidden@3.8.15(react@18.2.0)': - dependencies: - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + react-aria: 3.48.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + react-stately: 3.46.0(react@18.2.0) - '@react-aria/visually-hidden@3.8.8(react@18.2.0)': + '@react-aria/visually-hidden@3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-email/body@0.0.7(react@18.3.1)': dependencies: @@ -28219,23 +27255,12 @@ snapshots: dependencies: react: 18.3.1 - '@react-spring/rafz@9.7.4': {} - '@react-stately/calendar@3.4.3(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.1 + '@internationalized/date': 3.12.1 '@react-stately/utils': 3.9.0(react@18.2.0) '@react-types/calendar': 3.4.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/calendar@3.5.4(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/calendar': 3.4.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28244,28 +27269,13 @@ snapshots: '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) '@react-types/checkbox': 3.6.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/checkbox@3.6.8(react@18.2.0)': - dependencies: - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/checkbox': 3.8.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 '@react-stately/collections@3.10.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/collections@3.10.9(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28278,38 +27288,13 @@ snapshots: '@react-stately/select': 3.6.1(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) '@react-types/combobox': 3.10.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/combobox@3.9.2(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/list': 3.10.8(react@18.2.0) - '@react-stately/overlays': 3.6.10(react@18.2.0) - '@react-stately/select': 3.6.7(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/combobox': 3.12.1(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 '@react-stately/data@3.11.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/datepicker@3.10.2(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@internationalized/string': 3.2.3 - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/overlays': 3.6.10(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/datepicker': 3.8.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28328,14 +27313,7 @@ snapshots: '@react-stately/dnd@3.2.7(react@18.2.0)': dependencies: '@react-stately/selection': 3.14.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/dnd@3.4.2(react@18.2.0)': - dependencies: - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28343,19 +27321,9 @@ snapshots: dependencies: '@swc/helpers': 0.4.14 - '@react-stately/flags@3.0.3': - dependencies: - '@swc/helpers': 0.5.15 - '@react-stately/form@3.0.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/form@3.0.5(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28364,16 +27332,7 @@ snapshots: '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/selection': 3.14.2(react@18.2.0) '@react-types/grid': 3.2.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/grid@3.9.2(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-types/grid': 3.2.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28382,16 +27341,7 @@ snapshots: '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/selection': 3.14.2(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/list@3.10.8(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28399,43 +27349,19 @@ snapshots: dependencies: '@react-stately/overlays': 3.6.4(react@18.2.0) '@react-types/menu': 3.9.6(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/menu@3.8.2(react@18.2.0)': - dependencies: - '@react-stately/overlays': 3.6.10(react@18.2.0) - '@react-types/menu': 3.9.11(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 '@react-stately/numberfield@3.8.0(react@18.2.0)': dependencies: - '@internationalized/number': 3.5.0 + '@internationalized/number': 3.6.6 '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) '@react-types/numberfield': 3.7.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/numberfield@3.9.6(react@18.2.0)': - dependencies: - '@internationalized/number': 3.5.3 - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/numberfield': 3.8.5(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/overlays@3.6.10(react@18.2.0)': - dependencies: - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/overlays': 3.8.9(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/overlays@3.6.4(react@18.2.0)': dependencies: '@react-stately/utils': 3.9.0(react@18.2.0) @@ -28448,16 +27374,7 @@ snapshots: '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) '@react-types/radio': 3.7.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/radio@3.10.7(react@18.2.0)': - dependencies: - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/radio': 3.8.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28468,30 +27385,13 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/searchfield@3.5.6(react@18.2.0)': - dependencies: - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/searchfield': 3.5.8(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/select@3.6.1(react@18.2.0)': dependencies: '@react-stately/form': 3.0.0(react@18.2.0) '@react-stately/list': 3.10.2(react@18.2.0) '@react-stately/overlays': 3.6.4(react@18.2.0) '@react-types/select': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/select@3.6.7(react@18.2.0)': - dependencies: - '@react-stately/form': 3.0.5(react@18.2.0) - '@react-stately/list': 3.10.8(react@18.2.0) - '@react-stately/overlays': 3.6.10(react@18.2.0) - '@react-types/select': 3.9.6(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28499,34 +27399,18 @@ snapshots: dependencies: '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/selection@3.16.2(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 '@react-stately/slider@3.5.0(react@18.2.0)': dependencies: '@react-stately/utils': 3.9.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/slider': 3.7.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/slider@3.5.7(react@18.2.0)': - dependencies: - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/slider': 3.7.5(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/table@3.11.4(react@18.2.0)': dependencies: '@react-stately/collections': 3.10.4(react@18.2.0) @@ -28535,40 +27419,19 @@ snapshots: '@react-stately/selection': 3.14.2(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) '@react-types/grid': 3.2.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/table': 3.9.2(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/table@3.12.2(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/flags': 3.0.3 - '@react-stately/grid': 3.9.2(react@18.2.0) - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/grid': 3.2.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/table': 3.10.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/tabs@3.6.3(react@18.2.0)': dependencies: '@react-stately/list': 3.10.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/tabs': 3.3.4(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/tabs@3.6.9(react@18.2.0)': - dependencies: - '@react-stately/list': 3.10.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/tabs': 3.3.9(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/toggle@3.7.0(react@18.2.0)': dependencies: '@react-stately/utils': 3.9.0(react@18.2.0) @@ -28576,20 +27439,6 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/toggle@3.7.7(react@18.2.0)': - dependencies: - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/checkbox': 3.8.3(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/tooltip@3.4.12(react@18.2.0)': - dependencies: - '@react-stately/overlays': 3.6.10(react@18.2.0) - '@react-types/tooltip': 3.4.11(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - '@react-stately/tooltip@3.4.6(react@18.2.0)': dependencies: '@react-stately/overlays': 3.6.4(react@18.2.0) @@ -28602,21 +27451,7 @@ snapshots: '@react-stately/collections': 3.10.4(react@18.2.0) '@react-stately/selection': 3.14.2(react@18.2.0) '@react-stately/utils': 3.9.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/tree@3.8.4(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.9(react@18.2.0) - '@react-stately/selection': 3.16.2(react@18.2.0) - '@react-stately/utils': 3.10.3(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - '@swc/helpers': 0.5.15 - react: 18.2.0 - - '@react-stately/utils@3.10.3(react@18.2.0)': - dependencies: + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 @@ -28625,65 +27460,40 @@ snapshots: '@swc/helpers': 0.5.15 react: 18.2.0 - '@react-stately/virtualizer@3.6.6(react@18.2.0)': + '@react-stately/virtualizer@3.6.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@swc/helpers': 0.5.15 react: 18.2.0 + transitivePeerDependencies: + - react-dom '@react-types/breadcrumbs@3.7.2(react@18.2.0)': dependencies: '@react-types/link': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/breadcrumbs@3.7.7(react@18.2.0)': - dependencies: - '@react-types/link': 3.5.7(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/button@3.9.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/button@3.9.6(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/calendar@3.4.3(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.1 - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/calendar@3.4.9(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@react-types/shared': 3.24.1(react@18.2.0) + '@internationalized/date': 3.12.1 + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/checkbox@3.6.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/checkbox@3.8.3(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/combobox@3.10.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/combobox@3.12.1(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/datepicker@3.7.1(react@18.2.0)': @@ -28694,66 +27504,31 @@ snapshots: '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 - '@react-types/datepicker@3.8.2(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.5 - '@react-types/calendar': 3.4.9(react@18.2.0) - '@react-types/overlays': 3.8.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - react: 18.2.0 - - '@react-types/dialog@3.5.12(react@18.2.0)': - dependencies: - '@react-types/overlays': 3.8.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) - react: 18.2.0 - '@react-types/dialog@3.5.7(react@18.2.0)': dependencies: '@react-types/overlays': 3.8.4(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/grid@3.2.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/grid@3.2.8(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/link@3.5.2(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/link@3.5.7(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/listbox@3.4.6(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/listbox@3.5.1(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) - react: 18.2.0 - - '@react-types/menu@3.9.11(react@18.2.0)': - dependencies: - '@react-types/overlays': 3.8.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/menu@3.9.6(react@18.2.0)': dependencies: '@react-types/overlays': 3.8.4(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/meter@3.3.6(react@18.2.0)': @@ -28761,143 +27536,75 @@ snapshots: '@react-types/progress': 3.5.1(react@18.2.0) react: 18.2.0 - '@react-types/meter@3.4.3(react@18.2.0)': - dependencies: - '@react-types/progress': 3.5.6(react@18.2.0) - react: 18.2.0 - '@react-types/numberfield@3.7.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/numberfield@3.8.5(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/overlays@3.8.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/overlays@3.8.9(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/progress@3.5.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/progress@3.5.6(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/radio@3.7.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/radio@3.8.3(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/searchfield@3.5.2(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) '@react-types/textfield': 3.9.0(react@18.2.0) react: 18.2.0 - '@react-types/searchfield@3.5.8(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) - '@react-types/textfield': 3.9.6(react@18.2.0) - react: 18.2.0 - '@react-types/select@3.9.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/select@3.9.6(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/shared@3.22.0(react@18.2.0)': dependencies: react: 18.2.0 - '@react-types/shared@3.24.1(react@18.2.0)': + '@react-types/shared@3.34.0(react@18.2.0)': dependencies: react: 18.2.0 '@react-types/slider@3.7.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/slider@3.7.5(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/switch@3.5.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/switch@3.5.5(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) - react: 18.2.0 - - '@react-types/table@3.10.1(react@18.2.0)': - dependencies: - '@react-types/grid': 3.2.8(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/table@3.9.2(react@18.2.0)': dependencies: '@react-types/grid': 3.2.3(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/tabs@3.3.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/tabs@3.3.9(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/textfield@3.9.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.0(react@18.2.0) - react: 18.2.0 - - '@react-types/textfield@3.9.6(react@18.2.0)': - dependencies: - '@react-types/shared': 3.24.1(react@18.2.0) - react: 18.2.0 - - '@react-types/tooltip@3.4.11(react@18.2.0)': - dependencies: - '@react-types/overlays': 3.8.9(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@react-types/tooltip@3.4.6(react@18.2.0)': dependencies: '@react-types/overlays': 3.8.4(react@18.2.0) - '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/shared': 3.34.0(react@18.2.0) react: 18.2.0 '@remix-run/changelog-github@0.0.5(encoding@0.1.13)': @@ -30650,16 +29357,6 @@ snapshots: lz-string: 1.4.4 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.5.0': - dependencies: - '@adobe/css-tools': 4.4.0 - aria-query: 5.3.0 - chalk: 3.0.0 - css.escape: 1.5.1 - dom-accessibility-api: 0.6.3 - lodash: 4.18.1 - redent: 3.0.0 - '@tokenizer/token@0.3.0': {} '@tootallnate/quickjs-emscripten@0.23.0': {} @@ -30941,8 +29638,6 @@ snapshots: dependencies: '@types/node': 20.14.14 - '@types/invariant@2.2.37': {} - '@types/is-ci@3.0.0': dependencies: ci-info: 3.8.0 @@ -31722,29 +30417,26 @@ snapshots: fast-url-parser: 1.1.3 tslib: 2.8.1 - '@window-splitter/state@0.4.1(patch_hash=da01382a3c0d3f4f66db5b09d6f0833cc21eaf8db00f97e2c1738797673b57c0)': + '@window-splitter/interface@1.1.3': + dependencies: + '@window-splitter/state': 1.1.3(patch_hash=ecf02927f78361c14d8f8347604fd355ba36f2fc4f9ba9a08cd63adc101b7327) + + '@window-splitter/react@1.1.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/utils': 3.34.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@window-splitter/interface': 1.1.3 + '@window-splitter/state': 1.1.3(patch_hash=ecf02927f78361c14d8f8347604fd355ba36f2fc4f9ba9a08cd63adc101b7327) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@window-splitter/state@1.1.3(patch_hash=ecf02927f78361c14d8f8347604fd355ba36f2fc4f9ba9a08cd63adc101b7327)': dependencies: - '@react-spring/rafz': 9.7.4 - '@types/invariant': 2.2.37 big.js: 6.2.2 - invariant: 2.2.4 - universal-cookie: 7.2.0 - xstate: 5.18.1 '@wolfy1339/lru-cache@11.0.2-patch.1': {} '@xobotyi/scrollbar-width@1.9.5': {} - '@xstate/react@4.1.2(@types/react@18.2.69)(react@18.2.0)(xstate@5.18.1)': - dependencies: - react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.69)(react@18.2.0) - use-sync-external-store: 1.2.2(react@18.2.0) - optionalDependencies: - xstate: 5.18.1 - transitivePeerDependencies: - - '@types/react' - '@xtuc/ieee754@1.2.0': {} '@xtuc/long@4.2.2': {} @@ -32557,11 +31249,6 @@ snapshots: escape-string-regexp: 1.0.5 supports-color: 5.5.0 - chalk@3.0.0: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - chalk@4.1.2: dependencies: ansi-styles: 4.3.0 @@ -33042,8 +31729,6 @@ snapshots: css-what@5.1.0: {} - css.escape@1.5.1: {} - cssesc@3.0.0: {} csstype@3.1.1: {} @@ -33523,8 +32208,6 @@ snapshots: dom-accessibility-api@0.5.15: {} - dom-accessibility-api@0.6.3: {} - dom-helpers@5.2.1: dependencies: '@babel/runtime': 7.28.4 @@ -35670,10 +34353,6 @@ snapshots: intl-parse-accept-language@1.0.0: {} - invariant@2.2.4: - dependencies: - loose-envify: 1.4.0 - ioredis@5.3.2: dependencies: '@ioredis/commands': 1.2.0 @@ -38258,8 +36937,6 @@ snapshots: performance-now@2.1.0: {} - performant-array-to-tree@1.11.0: {} - periscopic@3.1.0: dependencies: '@types/estree': 1.0.8 @@ -38931,86 +37608,58 @@ snapshots: react-aria@3.31.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@internationalized/string': 3.2.0 - '@react-aria/breadcrumbs': 3.5.9(react@18.2.0) - '@react-aria/button': 3.9.1(react@18.2.0) + '@react-aria/breadcrumbs': 3.5.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/button': 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/calendar': 3.5.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/checkbox': 3.13.0(react@18.2.0) + '@react-aria/checkbox': 3.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/combobox': 3.8.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/datepicker': 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/dialog': 3.5.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/dnd': 3.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/focus': 3.16.0(react@18.2.0) + '@react-aria/focus': 3.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/gridlist': 3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.0(react@18.2.0) - '@react-aria/interactions': 3.20.1(react@18.2.0) - '@react-aria/label': 3.7.4(react@18.2.0) - '@react-aria/link': 3.6.3(react@18.2.0) + '@react-aria/i18n': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/interactions': 3.20.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/label': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/link': 3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/listbox': 3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/menu': 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/meter': 3.4.9(react@18.2.0) + '@react-aria/meter': 3.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/numberfield': 3.10.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/progress': 3.4.9(react@18.2.0) - '@react-aria/radio': 3.10.0(react@18.2.0) - '@react-aria/searchfield': 3.7.1(react@18.2.0) + '@react-aria/progress': 3.4.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/radio': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/searchfield': 3.7.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/select': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/separator': 3.3.9(react@18.2.0) - '@react-aria/slider': 3.7.4(react@18.2.0) + '@react-aria/separator': 3.3.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/slider': 3.7.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/ssr': 3.9.1(react@18.2.0) - '@react-aria/switch': 3.6.0(react@18.2.0) + '@react-aria/switch': 3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/table': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/tabs': 3.8.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/tag': 3.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.1(react@18.2.0) - '@react-aria/tooltip': 3.7.0(react@18.2.0) + '@react-aria/textfield': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/tooltip': 3.7.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/utils': 3.23.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.8(react@18.2.0) + '@react-aria/visually-hidden': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-aria@3.34.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@internationalized/string': 3.2.3 - '@react-aria/breadcrumbs': 3.5.16(react@18.2.0) - '@react-aria/button': 3.9.8(react@18.2.0) - '@react-aria/calendar': 3.5.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/checkbox': 3.14.6(react@18.2.0) - '@react-aria/combobox': 3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/datepicker': 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/dialog': 3.5.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/dnd': 3.7.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/focus': 3.18.2(react@18.2.0) - '@react-aria/gridlist': 3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.12.2(react@18.2.0) - '@react-aria/interactions': 3.22.2(react@18.2.0) - '@react-aria/label': 3.7.11(react@18.2.0) - '@react-aria/link': 3.7.4(react@18.2.0) - '@react-aria/listbox': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/menu': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/meter': 3.4.16(react@18.2.0) - '@react-aria/numberfield': 3.11.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/progress': 3.4.16(react@18.2.0) - '@react-aria/radio': 3.10.7(react@18.2.0) - '@react-aria/searchfield': 3.7.8(react@18.2.0) - '@react-aria/select': 3.14.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/separator': 3.4.2(react@18.2.0) - '@react-aria/slider': 3.7.11(react@18.2.0) - '@react-aria/ssr': 3.9.5(react@18.2.0) - '@react-aria/switch': 3.6.7(react@18.2.0) - '@react-aria/table': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/tabs': 3.9.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/tag': 3.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.8(react@18.2.0) - '@react-aria/tooltip': 3.7.7(react@18.2.0) - '@react-aria/utils': 3.25.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.15(react@18.2.0) - '@react-types/shared': 3.24.1(react@18.2.0) + react-aria@3.48.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + '@internationalized/date': 3.12.1 + '@internationalized/number': 3.6.6 + '@internationalized/string': 3.2.8 + '@react-types/shared': 3.34.0(react@18.2.0) + '@swc/helpers': 0.5.15 + aria-hidden: 1.2.4 + clsx: 2.1.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + react-stately: 3.46.0(react@18.2.0) + use-sync-external-store: 1.6.0(react@18.2.0) react-collapse@5.1.1(react@18.2.0): dependencies: @@ -39057,7 +37706,7 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-email@2.1.2(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.15)(bufferutil@4.0.9)(eslint@8.31.0): + react-email@2.1.2(@opentelemetry/api@1.9.0)(@swc/helpers@0.5.15)(eslint@8.31.0): dependencies: '@babel/parser': 7.24.1 '@radix-ui/colors': 1.0.1 @@ -39094,8 +37743,8 @@ snapshots: react: 18.3.1 react-dom: 18.2.0(react@18.3.1) shelljs: 0.8.5 - socket.io: 4.7.3(bufferutil@4.0.9) - socket.io-client: 4.7.3(bufferutil@4.0.9) + socket.io: 4.7.3 + socket.io-client: 4.7.3 sonner: 1.3.1(react-dom@18.2.0(react@18.3.1))(react@18.3.1) source-map-js: 1.0.2 stacktrace-parser: 0.1.10 @@ -39320,6 +37969,16 @@ snapshots: '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 + react-stately@3.46.0(react@18.2.0): + dependencies: + '@internationalized/date': 3.12.1 + '@internationalized/number': 3.6.6 + '@internationalized/string': 3.2.8 + '@react-types/shared': 3.34.0(react@18.2.0) + '@swc/helpers': 0.5.15 + react: 18.2.0 + use-sync-external-store: 1.6.0(react@18.2.0) + react-style-singleton@2.2.3(@types/react@18.2.69)(react@18.2.0): dependencies: get-nonce: 1.0.1 @@ -39377,22 +38036,6 @@ snapshots: ts-easing: 0.2.0 tslib: 2.8.1 - react-window-splitter@0.4.1(@types/react@18.2.69)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.69)(react@18.2.0) - '@testing-library/jest-dom': 6.5.0 - '@window-splitter/state': 0.4.1(patch_hash=da01382a3c0d3f4f66db5b09d6f0833cc21eaf8db00f97e2c1738797673b57c0) - '@xstate/react': 4.1.2(@types/react@18.2.69)(react@18.2.0)(xstate@5.18.1) - invariant: 2.2.4 - react: 18.2.0 - react-aria: 3.34.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-dom: 18.2.0(react@18.2.0) - reforest: 0.13.0(@types/react@18.2.69)(react@18.2.0) - xstate: 5.18.1 - transitivePeerDependencies: - - '@types/react' - - immer - react@18.2.0: dependencies: loose-envify: 1.4.0 @@ -39520,15 +38163,6 @@ snapshots: css-unit-converter: 1.1.2 postcss-value-parser: 3.3.1 - reforest@0.13.0(@types/react@18.2.69)(react@18.2.0): - dependencies: - performant-array-to-tree: 1.11.0 - react: 18.2.0 - zustand: 4.5.5(@types/react@18.2.69)(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - immer - regenerator-runtime@0.13.11: {} regenerator-runtime@0.14.1: {} @@ -40322,7 +38956,7 @@ snapshots: - supports-color - utf-8-validate - socket.io-client@4.7.3(bufferutil@4.0.9): + socket.io-client@4.7.3: dependencies: '@socket.io/component-emitter': 3.1.0 debug: 4.3.7(supports-color@10.0.0) @@ -40351,7 +38985,7 @@ snapshots: transitivePeerDependencies: - supports-color - socket.io@4.7.3(bufferutil@4.0.9): + socket.io@4.7.3: dependencies: accepts: 1.3.8 base64id: 2.0.0 @@ -41663,11 +40297,6 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - universal-cookie@7.2.0: - dependencies: - '@types/cookie': 0.6.0 - cookie: 0.6.0 - universal-github-app-jwt@1.2.0: dependencies: '@types/jsonwebtoken': 9.0.10 @@ -41785,6 +40414,10 @@ snapshots: dependencies: react: 19.0.0 + use-sync-external-store@1.6.0(react@18.2.0): + dependencies: + react: 18.2.0 + util-deprecate@1.0.2: {} util@0.12.5: @@ -42350,8 +40983,6 @@ snapshots: xmlhttprequest-ssl@2.0.0: {} - xstate@5.18.1: {} - xtend@4.0.2: {} y18n@4.0.3: {} @@ -42470,11 +41101,4 @@ snapshots: zod@3.25.76: {} - zustand@4.5.5(@types/react@18.2.69)(react@18.2.0): - dependencies: - use-sync-external-store: 1.2.2(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.69 - react: 18.2.0 - zwitch@2.0.4: {}