diff --git a/.changeset/drive-auth-decline-reporting.md b/.changeset/drive-auth-decline-reporting.md deleted file mode 100644 index 80e90205e..000000000 --- a/.changeset/drive-auth-decline-reporting.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -'@useupup/core': patch -'@useupup/react': patch -'@useupup/vue': patch -'@useupup/svelte': patch -'@useupup/angular': patch -'@useupup/vanilla': patch ---- - -Declining an OAuth consent screen is reported as a cancellation, not as -"Popup was blocked by the browser". - -Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so -the tile click's transient user activation is still live — but OneDrive, Dropbox -and Box rendered it WITHOUT passing `error` (it stayed inside the -`...uploaderProps` rest), so its `|| error` guard could never fire. A decline -drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it -retried by itself. That second `window.open` had no activation left, returned -null, and `popup-oauth-plugin` reported the block — truthful about its own call, -misleading about the user, who was sent into their browser's popup settings over -a choice they had made themselves. - -The decline was also never surfaced on its own: the popup poll accepted only -`href.startsWith(redirectUri) && href.includes('code=')`, so an -`?error=access_denied` redirect fell through until the window closed, and a -closed window resolved silently with no error and no state. - -Now: - -- Every drive component in every framework forwards `error` into its auth - fallback, so the existing no-auto-retry-after-an-error guard is reachable - across the remount (the guard itself stays React-only — no other framework's - fallback auto-triggers on mount). The three popup providers had the same gap - in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google - Drive explicitly. -- The poll reads `error` / `error_description` off the redirect and reports a - refused or admin-walled consent as a cancellation; a closed window is a - cancellation too, rather than a silent resolve. `authenticateViaPopup()` still - RESOLVES in both cases — the promise contract is unchanged, and the - cancellation travels on the provider's existing error event. -- Cancellations carry `AUTH_DENIED` and a real popup block carries the new - `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive - controller turns those into a `messageKey` on `DriveBrowserError`, and the - renderer shows the matching catalogue string — the nine-locale `popupBlocked` - that shipped unused, or a new `errors.authCancelled`. Every other failure keeps - its own message, which carries detail a generic string would throw away. -- A popup attempt that ends without a session now clears `isLoading`, cannot - become an unhandled rejection, and ALWAYS leaves an error behind. A blocked - popup threw before the state ever moved to `authenticating`, so the view sat on - the spinner and the auth fallback carrying the error never rendered at all. - Recording the error is not cosmetic: the React auth fallback opens one popup on - mount while the tile click's user activation is live, and reads `error` to know - an attempt has already happened — its own ref cannot, because clearing - `isLoading` remounts the view with a fresh one. Most failures arrive on the - provider's error event and are already in state; the gap was the ones that only - THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never - emits. - -`UpupAuthError` takes an optional third `code` argument, defaulting to the -`AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. - -`ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still -type-checks — that is why this is a patch and not a breaking minor. The uploader -wires en-US as the fallback bundle and would resolve the key anyway; -`driveErrorText` also carries the English wording for a translator built with no -fallback at all, so an omission renders English rather than the key. - -The redirect poll reads the fragment as well as the query. The check it replaced -matched `code=` anywhere in the href, so narrowing to `searchParams` alone would -have left a spec-legal fragment-mode redirect unread until the window closed — -reported, wrongly again, as a cancellation. diff --git a/.changeset/google-drive-shared-drives-review.md b/.changeset/google-drive-shared-drives-review.md deleted file mode 100644 index 41b82d25f..000000000 --- a/.changeset/google-drive-shared-drives-review.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -'@useupup/core': patch -'@useupup/server': patch ---- - -Review fixes for the Google Drive shared-drives support that shipped in 3.3.1, -behind the same default-off `cloudDrives.googleDrive.sharedDrives` flag. Nothing -changes for a picker that leaves the flag unset. - -A `drives.list` failure — a 403 under a Workspace sharing policy, a 429, a 5xx — -now degrades to no shared-drive rows instead of taking the whole root listing -down with it. The call was awaited unguarded inside `loadFiles`, so for a user -with the flag on, one non-2xx from that endpoint threw away the My Drive -children the listing had already fetched and left the picker empty. The failure -is reported on a new non-fatal `google-drive:shared-drives-error` event, and -drives collected before a mid-pagination failure are kept. - -Drive folder ids are escaped into the `files.list` query instead of interpolated -raw, using the same `escapeDriveQueryValue` the server-mode drive client uses. -That escaper moved from `@useupup/server` into `@useupup/core/internal` and -`@useupup/server` re-exports it, so the two halves share ONE implementation that -cannot drift. - -The shared-drive rows and the virtual "Shared with me" row lead the root's first -page rather than trailing it, so they stay above a second page of My Drive files -instead of being pushed below one. They are still emitted on the first page only, -so they appear exactly once and pagination is unaffected in either view. diff --git a/.changeset/hide-impossible-capture-sources.md b/.changeset/hide-impossible-capture-sources.md deleted file mode 100644 index 5b213b310..000000000 --- a/.changeset/hide-impossible-capture-sources.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -'@useupup/core': patch ---- - -The default source set no longer shows capture sources whose output can never -satisfy `allowedFileTypes` (#340). - -`allowedFileTypes: 'application/pdf'` used to leave the camera, microphone and -screen chips in place, and every recording they produced was rejected the moment -it was added. `normalizeUploaderOptions` now drops a default capture source when -no entry in the resolved accept list could match anything that source can emit — -camera emits `image/jpeg` (with `image/png` as the `toDataURL` fallback), -microphone `audio/webm` / `audio/ogg` / `audio/mp4`, screen `video/webm` / -`video/mp4`, all read off the code that builds the `File`. - -The match fails open: a wildcard, an unrecognized extension, or anything that is -neither a MIME type nor an extension keeps every source. `local` and `url` are -never filtered, cloud drives are untouched, and an explicitly passed `sources` -array is always honored verbatim. A dropped source logs one dev-only -`console.warn` naming the source and the accept list. diff --git a/.changeset/host-error-message-and-exif-skip-signal.md b/.changeset/host-error-message-and-exif-skip-signal.md deleted file mode 100644 index fad93eab1..000000000 --- a/.changeset/host-error-message-and-exif-skip-signal.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -'@useupup/core': patch -'@useupup/react': patch -'@useupup/vue': patch -'@useupup/svelte': patch -'@useupup/angular': patch -'@useupup/vanilla': patch ---- - -The default panel now shows your error message next to the machine code, and a -skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). - -A failure carrying a code used to render as `uploadFailedWithCode`, which -interpolated the code and nothing else — so an endpoint that returned a useful -sentence watched it disappear between `onError` and the panel. The key now has a -second `{message}` slot carrying the error's own message, added to all nine -locale bundles so translators control placement (override the key to reorder the -slots, drop the code, or show only your own wording). All six framework panels -pass both values, and the message is rendered as text, never as markup. - -`stripExifData` skips animated GIF/WebP/APNG because canvas has no animated -encoder, which means an animated WebP or APNG reaches storage with the EXIF you -asked to remove. The `exif` step now records that on the file: -`metadata.metadataStripSkipped === true` with -`metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF -really was stripped carries `exifStripped: true` and no marker, and -`imageCompression` skipping an animated image does not set it — nothing was asked -to be removed. No new event, no new option. diff --git a/.changeset/prefix-sniff-clean-presign.md b/.changeset/prefix-sniff-clean-presign.md deleted file mode 100644 index ff4b5786a..000000000 --- a/.changeset/prefix-sniff-clean-presign.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -'@useupup/core': patch ---- - -Presign failures no longer surface a reverse proxy's HTML error page, and the -animated-image guard stops reading whole files. - -`TokenEndpointCredentials.getPresignedUrl` reads a failed presign body so the -endpoint's own sentence reaches `onError`, but `parseErrorBody`'s text fallback -also caught the error pages nginx and Cloudflare write for a 502 or 413 — so a -handler that used to get `Presign request failed: 502 Bad Gateway` got 200 -characters of `` instead. A markup body carrying no error code is now -treated as nothing to surface and the status-line wording is kept. An S3-style -`` body is unaffected: it parses to a real code and still comes -through. The error is also built with its final message rather than having -`message` reassigned afterwards, so the body is parsed once and the error never -carries wording it does not keep. `uploadErrorFromResponse` gained two optional -arguments for this — `fallbackMessage` (wording to use when the body carries -nothing) and `ignoreErrorPageBody` (opt into the markup guard); callers that -pass neither behave exactly as before. - -`isAnimatedImage` — the guard that keeps `imageCompression` and `stripExifData` -from flattening animated GIF/WebP/APNG — used to call `arrayBuffer()` on the -whole file, a read the main-thread path never made before that guard existed, -so a still 40 MB photo was materialized in full just to learn it was still. It -now sniffs the first 64 KiB, which is where every one of these formats declares -animation (APNG's `acTL` before the first `IDAT`, WebP's `VP8X`/`ANIM` at the -top of the container, a looping GIF's `NETSCAPE2.0` extension in the header). -Only a GIF that has announced nothing by then is read in full, because its -second Image Descriptor can sit anywhere in the stream. Verdicts are unchanged. diff --git a/.changeset/progress-at-zero-and-smaller-logos.md b/.changeset/progress-at-zero-and-smaller-logos.md deleted file mode 100644 index 5e77dd568..000000000 --- a/.changeset/progress-at-zero-and-smaller-logos.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -'@useupup/react': patch -'@useupup/vue': patch -'@useupup/svelte': patch -'@useupup/angular': patch -'@useupup/vanilla': patch -'@useupup/preact': patch ---- - -The compact file row shows its progress bar as soon as a run starts (#352), and -the branding logo assets are ~92% smaller (#229). - -`ProgressBar` already renders whenever the run is active or progress is -non-zero, but every framework's compact `FileRow` wrapped it in a second -`!!progress` gate. That outer gate won whenever it was falsy, so the row stayed -blank between "upload started" and "first byte acknowledged" while the grid -tile, the single-file hero and the list footer all showed their bars. The -redundant wrapper is removed in all five row templates; the self-gate inside -`ProgressBar` is now the only one. No change at idle — with no progress and no -active run the bar is still absent, so the parity fixtures do not move. - -The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at -122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. -They were shipping at up to 1905x580 — roughly 30x the rendered area. Each -package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off -every UI bundle, with the rendered appearance unchanged. The assets stay PNG: -there is no vector source for them in the repo. diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 9d2ce322c..42fc6de5e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -24,6 +24,7 @@ jobs: Resolve-Affected: name: Resolve affected suites runs-on: ubuntu-latest + timeout-minutes: 30 outputs: e2e: ${{ steps.resolve.outputs.e2e }} minio: ${{ steps.resolve.outputs.minio }} @@ -55,6 +56,7 @@ jobs: E2E: name: Cross-framework E2E (Playwright + MinIO) runs-on: ubuntu-latest + timeout-minutes: 45 needs: [Resolve-Affected] if: needs.Resolve-Affected.outputs.e2e == 'true' || needs.Resolve-Affected.outputs.minio == 'true' steps: @@ -62,7 +64,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -153,7 +155,7 @@ jobs: # nothing, which means the capture layer itself broke. - name: Upload visual product-state screenshots if: always() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: e2e-visual-screenshots path: apps/e2e-test/screenshots/ @@ -162,7 +164,7 @@ jobs: - name: Upload Playwright traces and reports if: failure() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: e2e-playwright-artifacts path: | @@ -182,6 +184,7 @@ jobs: LocalStack-Integration: name: Server integration suite (LocalStack — AWS ListParts semantics) runs-on: ubuntu-latest + timeout-minutes: 45 needs: [Resolve-Affected] if: needs.Resolve-Affected.outputs.minio == 'true' steps: @@ -189,7 +192,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -238,6 +241,7 @@ jobs: Smoke-Packages: name: Package smoke (real tarball consumer) runs-on: ubuntu-latest + timeout-minutes: 30 needs: [Resolve-Affected] if: needs.Resolve-Affected.outputs.smoke == 'true' steps: @@ -245,7 +249,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -269,6 +273,7 @@ jobs: Docs-E2E: name: Docs E2E (landing /docs Playwright project) runs-on: ubuntu-latest + timeout-minutes: 45 needs: [Resolve-Affected] if: needs.Resolve-Affected.outputs.docsE2e == 'true' steps: @@ -276,7 +281,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -312,7 +317,7 @@ jobs: - name: Upload Playwright report if: failure() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: docs-e2e-playwright-artifacts path: | @@ -330,6 +335,7 @@ jobs: Storybook-Builds: name: Static storybook builds (all six frameworks) runs-on: ubuntu-latest + timeout-minutes: 30 needs: [Resolve-Affected] if: needs.Resolve-Affected.outputs.storybook == 'true' steps: @@ -337,7 +343,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -360,6 +366,7 @@ jobs: E2E-Status: name: E2E Status Check runs-on: ubuntu-latest + timeout-minutes: 45 needs: [ Resolve-Affected, diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fcf88850..068e3945c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,12 +19,13 @@ jobs: Prettier-check: name: Prettier Check runs-on: ubuntu-latest + timeout-minutes: 15 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -41,13 +42,14 @@ jobs: Test: name: Run Tests and Coverage runs-on: ubuntu-latest + timeout-minutes: 20 needs: [Prettier-check] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -77,7 +79,7 @@ jobs: run: pnpm run vocab:check - name: Archive code coverage results - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: code-coverage-report path: coverage/ @@ -86,13 +88,14 @@ jobs: Build: name: Build project runs-on: ubuntu-latest + timeout-minutes: 30 needs: [Prettier-check, Test] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -116,13 +119,14 @@ jobs: Typecheck: name: Typecheck project runs-on: ubuntu-latest + timeout-minutes: 15 needs: [Prettier-check] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -139,13 +143,14 @@ jobs: Bundle-Size: name: Bundle size check runs-on: ubuntu-latest + timeout-minutes: 30 needs: [Build] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -172,13 +177,14 @@ jobs: Dependency-Audit: name: Dependency audit (packages/*, production scope) runs-on: ubuntu-latest + timeout-minutes: 30 needs: [Prettier-check] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -195,13 +201,14 @@ jobs: Lint: name: Lint runs-on: ubuntu-latest + timeout-minutes: 15 needs: [Prettier-check] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -218,12 +225,13 @@ jobs: Oxlint: name: Oxlint (fast lint) runs-on: ubuntu-latest + timeout-minutes: 15 steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -240,13 +248,14 @@ jobs: Knip: name: Knip (dead code) runs-on: ubuntu-latest + timeout-minutes: 15 needs: [Prettier-check] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -263,13 +272,14 @@ jobs: Docs-Gate: name: Docs sync gate runs-on: ubuntu-latest + timeout-minutes: 30 needs: [Prettier-check] steps: - name: Checkout repo uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -309,6 +319,7 @@ jobs: Status-Check: name: Status Check runs-on: ubuntu-latest + timeout-minutes: 15 needs: [ Prettier-check, diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3a5372e1b..e9ff58346 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -27,12 +27,13 @@ jobs: E2E-Full: name: Full E2E + a11y sweep (Playwright + MinIO) runs-on: ubuntu-latest + timeout-minutes: 45 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -110,7 +111,7 @@ jobs: # future snapvisor.io baseline feed. - name: Upload visual product-state screenshots if: always() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-visual-screenshots path: apps/e2e-test/screenshots/ @@ -119,7 +120,7 @@ jobs: - name: Upload Playwright traces and reports if: failure() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-playwright-artifacts path: | @@ -130,12 +131,13 @@ jobs: Storybook-Builds: name: Static storybook builds (all six frameworks) runs-on: ubuntu-latest + timeout-minutes: 30 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -152,12 +154,13 @@ jobs: Smoke-Packages: name: Package smoke (real tarball consumer) runs-on: ubuntu-latest + timeout-minutes: 30 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -174,6 +177,7 @@ jobs: Mastra-Evals: name: Mastra LLM evals (paid key; explicit skip without it) runs-on: ubuntu-latest + timeout-minutes: 30 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -193,7 +197,7 @@ jobs: - name: Setup pnpm if: steps.creds.outputs.present == 'true' - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js if: steps.creds.outputs.present == 'true' @@ -232,6 +236,7 @@ jobs: Drive-Sandbox: name: Cloud-drive live integration (sandbox creds; explicit skip without them) runs-on: ubuntu-latest + timeout-minutes: 45 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -254,7 +259,7 @@ jobs: - name: Setup pnpm if: steps.creds.outputs.present == 'true' - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js if: steps.creds.outputs.present == 'true' @@ -362,12 +367,13 @@ jobs: Lighthouse: name: Lighthouse (landing SEO + Best Practices + mobile perf ratchet) runs-on: ubuntu-latest + timeout-minutes: 45 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -399,7 +405,7 @@ jobs: - name: Upload Lighthouse reports if: always() - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: nightly-lighthouse-reports path: | @@ -415,6 +421,7 @@ jobs: Landing-Feedback: name: Landing feedback e2e + PostHog ingestion (capture token; explicit skip without it) runs-on: ubuntu-latest + timeout-minutes: 45 steps: - name: Checkout the repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -434,7 +441,7 @@ jobs: - name: Setup pnpm if: steps.creds.outputs.present == 'true' - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - name: Setup Node.js if: steps.creds.outputs.present == 'true' @@ -480,7 +487,7 @@ jobs: - name: Upload Playwright report if: failure() && steps.creds.outputs.present == 'true' - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: landing-feedback-playwright-artifacts path: | @@ -491,6 +498,7 @@ jobs: Nightly-Status: name: Nightly Status Check runs-on: ubuntu-latest + timeout-minutes: 45 # issues:write is granted HERE only (the workflow default stays # contents:read) so the single job that files the tracking issue is the # only thing in this file holding a write scope. diff --git a/.github/workflows/publish-sdk.yml b/.github/workflows/publish-sdk.yml index 44e40b0db..ed4063b0c 100644 --- a/.github/workflows/publish-sdk.yml +++ b/.github/workflows/publish-sdk.yml @@ -11,6 +11,7 @@ on: jobs: publish: runs-on: ubuntu-latest + timeout-minutes: 60 defaults: run: working-directory: sdk diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2d7243b2e..3fea017ad 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,6 +20,7 @@ permissions: jobs: publish: runs-on: ubuntu-latest + timeout-minutes: 30 # prepare:husky wires the git hooks during pnpm install, so the # changesets action's version-bump commit/push would run the pre-commit # unit suites against unbuilt sibling dist/ (they can never pass here) @@ -35,7 +36,7 @@ jobs: # (git shortlog over the range) and the previous v-tag from them. fetch-depth: 0 - - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 + - uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0 - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: diff --git a/apps/landing/package.json b/apps/landing/package.json index 4c3123896..52e7c6e01 100644 --- a/apps/landing/package.json +++ b/apps/landing/package.json @@ -28,7 +28,7 @@ "gray-matter": "^4.0.3", "gsap": "^3.13.0", "lucide-react": "^0.503.0", - "next": "16.2.11", + "next": "16.3.3", "nodemailer": "^9.0.3", "posthog-js": "^1.399.2", "posthog-node": "^5.45.2", @@ -61,6 +61,6 @@ "tailwindcss-elevation": "^2.0.0", "typescript": "^5", "typescript-eslint": "^8.63.0", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/apps/mastra/package.json b/apps/mastra/package.json index 9f44f3dc2..f02af4306 100644 --- a/apps/mastra/package.json +++ b/apps/mastra/package.json @@ -25,6 +25,6 @@ "mastra": "^1.18.1", "tsx": "^4.0.0", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/apps/next-example/CHANGELOG.md b/apps/next-example/CHANGELOG.md index 0f69544cf..ce31def7c 100644 --- a/apps/next-example/CHANGELOG.md +++ b/apps/next-example/CHANGELOG.md @@ -1,5 +1,26 @@ # @useupup/next-example +## 0.0.7 + +### Patch Changes + +- Updated dependencies []: + - @useupup/next@3.3.3 + +## 0.0.6 + +### Patch Changes + +- Updated dependencies []: + - @useupup/next@3.3.2 + +## 0.0.5 + +### Patch Changes + +- Updated dependencies []: + - @useupup/next@3.3.1 + ## 0.0.4 ### Patch Changes diff --git a/apps/next-example/package.json b/apps/next-example/package.json index 57ba7083e..cfa491cd9 100644 --- a/apps/next-example/package.json +++ b/apps/next-example/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/next-example", - "version": "0.0.4", + "version": "0.0.7", "private": true, "scripts": { "dev": "dotenv -e ../../local-dev/.env.minio -- next dev -p 53070", @@ -10,7 +10,7 @@ }, "dependencies": { "@useupup/next": "workspace:*", - "next": "16.2.11", + "next": "16.3.3", "react": "^19.2.0", "react-dom": "^19.2.0", "zod": "^4.4.3" diff --git a/apps/playground/package.json b/apps/playground/package.json index d1c4b1591..fe022cc1e 100644 --- a/apps/playground/package.json +++ b/apps/playground/package.json @@ -19,7 +19,7 @@ "@useupup/server": "workspace:*", "clsx": "^2.1.1", "lucide-react": "^0.503.0", - "next": "16.2.11", + "next": "16.3.3", "prettier-plugin-tailwindcss": "^0.5.14", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/apps/storybook-angular/CHANGELOG.md b/apps/storybook-angular/CHANGELOG.md index 6b3226c37..53f93325d 100644 --- a/apps/storybook-angular/CHANGELOG.md +++ b/apps/storybook-angular/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/storybook-angular +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/angular@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/angular@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/angular@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/apps/storybook-angular/package.json b/apps/storybook-angular/package.json index 46e951ad9..7e98808bf 100644 --- a/apps/storybook-angular/package.json +++ b/apps/storybook-angular/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/storybook-angular", - "version": "0.1.4", + "version": "0.1.7", "private": true, "scripts": { "storybook": "ng run storybook-angular:storybook", diff --git a/apps/storybook-preact/CHANGELOG.md b/apps/storybook-preact/CHANGELOG.md index 7c7b5c73c..b518e009f 100644 --- a/apps/storybook-preact/CHANGELOG.md +++ b/apps/storybook-preact/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/storybook-preact +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/preact@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/preact@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/preact@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/apps/storybook-preact/package.json b/apps/storybook-preact/package.json index 8957d9435..981f2b88b 100644 --- a/apps/storybook-preact/package.json +++ b/apps/storybook-preact/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/storybook-preact", - "version": "0.1.4", + "version": "0.1.7", "private": true, "type": "module", "scripts": { @@ -29,7 +29,7 @@ "tailwindcss": "^3.4.17", "typescript": "^5.3.2", "vite": "^7", - "vitest": "^4.1.2" + "vitest": "^4.1.11" }, "msw": { "workerDirectory": [ diff --git a/apps/storybook-react/CHANGELOG.md b/apps/storybook-react/CHANGELOG.md index 39f74ac53..7e7a0669b 100644 --- a/apps/storybook-react/CHANGELOG.md +++ b/apps/storybook-react/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/storybook-react +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/react@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/react@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/react@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/apps/storybook-react/package.json b/apps/storybook-react/package.json index bd004c0d0..66c40ae0a 100644 --- a/apps/storybook-react/package.json +++ b/apps/storybook-react/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/storybook-react", - "version": "0.1.4", + "version": "0.1.7", "private": true, "type": "module", "scripts": { @@ -32,7 +32,7 @@ "postcss": "^8.5.2", "tailwindcss": "^3.4.17", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" }, "msw": { "workerDirectory": [ diff --git a/apps/storybook-svelte/CHANGELOG.md b/apps/storybook-svelte/CHANGELOG.md index d2666d073..5c331c34d 100644 --- a/apps/storybook-svelte/CHANGELOG.md +++ b/apps/storybook-svelte/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/storybook-svelte +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/svelte@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/svelte@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/svelte@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/apps/storybook-svelte/package.json b/apps/storybook-svelte/package.json index cd6ddc9df..3576e44ab 100644 --- a/apps/storybook-svelte/package.json +++ b/apps/storybook-svelte/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/storybook-svelte", - "version": "0.1.4", + "version": "0.1.7", "private": true, "type": "module", "scripts": { @@ -32,7 +32,7 @@ "typescript": "^5.3.2", "vite": "^7", "svelte-check": "^4.1.0", - "vitest": "^4.1.2" + "vitest": "^4.1.11" }, "msw": { "workerDirectory": [ diff --git a/apps/storybook-vanilla/CHANGELOG.md b/apps/storybook-vanilla/CHANGELOG.md index a0ca13bd0..919989ded 100644 --- a/apps/storybook-vanilla/CHANGELOG.md +++ b/apps/storybook-vanilla/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/storybook-vanilla +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/vanilla@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/vanilla@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/vanilla@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/apps/storybook-vanilla/package.json b/apps/storybook-vanilla/package.json index 58db6878a..3b7f0e6cc 100644 --- a/apps/storybook-vanilla/package.json +++ b/apps/storybook-vanilla/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/storybook-vanilla", - "version": "0.1.4", + "version": "0.1.7", "private": true, "type": "module", "scripts": { @@ -29,7 +29,7 @@ "tailwindcss": "^3.4.17", "typescript": "^5.3.2", "vite": "^7", - "vitest": "^4.1.2" + "vitest": "^4.1.11" }, "msw": { "workerDirectory": [ diff --git a/apps/storybook-vue/CHANGELOG.md b/apps/storybook-vue/CHANGELOG.md index 055603162..0b7df26ab 100644 --- a/apps/storybook-vue/CHANGELOG.md +++ b/apps/storybook-vue/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/storybook-vue +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/vue@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/vue@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/vue@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/apps/storybook-vue/package.json b/apps/storybook-vue/package.json index 5d10f2a04..d51999aeb 100644 --- a/apps/storybook-vue/package.json +++ b/apps/storybook-vue/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/storybook-vue", - "version": "0.1.4", + "version": "0.1.7", "private": true, "type": "module", "scripts": { @@ -31,7 +31,7 @@ "typescript": "^5.3.2", "vite": "^7", "vue-tsc": "^2.0.0", - "vitest": "^4.1.2" + "vitest": "^4.1.11" }, "msw": { "workerDirectory": [ diff --git a/package.json b/package.json index f856b114e..84afd8e9e 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,8 @@ "react": "^19.2.0", "react-dom": "^19.2.0", "@types/react": "^19", - "@types/react-dom": "^19" + "@types/react-dom": "^19", + "js-yaml@3": "3.15.2" }, "patchedDependencies": { "@storybook/angular@9.1.20": "patches/@storybook__angular@9.1.20.patch" diff --git a/packages/angular/CHANGELOG.md b/packages/angular/CHANGELOG.md index aac508b9d..8891c56ad 100644 --- a/packages/angular/CHANGELOG.md +++ b/packages/angular/CHANGELOG.md @@ -1,5 +1,128 @@ # @useupup/angular +## 3.3.3 + +### Patch Changes + +- [#394](https://github.com/DevinoSolutions/upup/pull/394) [`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Declining an OAuth consent screen is reported as a cancellation, not as + "Popup was blocked by the browser". + + Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so + the tile click's transient user activation is still live — but OneDrive, Dropbox + and Box rendered it WITHOUT passing `error` (it stayed inside the + `...uploaderProps` rest), so its `|| error` guard could never fire. A decline + drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it + retried by itself. That second `window.open` had no activation left, returned + null, and `popup-oauth-plugin` reported the block — truthful about its own call, + misleading about the user, who was sent into their browser's popup settings over + a choice they had made themselves. + + The decline was also never surfaced on its own: the popup poll accepted only + `href.startsWith(redirectUri) && href.includes('code=')`, so an + `?error=access_denied` redirect fell through until the window closed, and a + closed window resolved silently with no error and no state. + + Now: + + - Every drive component in every framework forwards `error` into its auth + fallback, so the existing no-auto-retry-after-an-error guard is reachable + across the remount (the guard itself stays React-only — no other framework's + fallback auto-triggers on mount). The three popup providers had the same gap + in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google + Drive explicitly. + - The poll reads `error` / `error_description` off the redirect and reports a + refused or admin-walled consent as a cancellation; a closed window is a + cancellation too, rather than a silent resolve. `authenticateViaPopup()` still + RESOLVES in both cases — the promise contract is unchanged, and the + cancellation travels on the provider's existing error event. + - Cancellations carry `AUTH_DENIED` and a real popup block carries the new + `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive + controller turns those into a `messageKey` on `DriveBrowserError`, and the + renderer shows the matching catalogue string — the nine-locale `popupBlocked` + that shipped unused, or a new `errors.authCancelled`. Every other failure keeps + its own message, which carries detail a generic string would throw away. + - A popup attempt that ends without a session now clears `isLoading`, cannot + become an unhandled rejection, and ALWAYS leaves an error behind. A blocked + popup threw before the state ever moved to `authenticating`, so the view sat on + the spinner and the auth fallback carrying the error never rendered at all. + Recording the error is not cosmetic: the React auth fallback opens one popup on + mount while the tile click's user activation is live, and reads `error` to know + an attempt has already happened — its own ref cannot, because clearing + `isLoading` remounts the view with a fresh one. Most failures arrive on the + provider's error event and are already in state; the gap was the ones that only + THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never + emits. + + `UpupAuthError` takes an optional third `code` argument, defaulting to the + `AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. + + `ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still + type-checks — that is why this is a patch and not a breaking minor. The uploader + wires en-US as the fallback bundle and would resolve the key anyway; + `driveErrorText` also carries the English wording for a translator built with no + fallback at all, so an omission renders English rather than the key. + + The redirect poll reads the fragment as well as the query. The check it replaced + matched `code=` anywhere in the href, so narrowing to `searchParams` alone would + have left a spec-legal fragment-mode redirect unread until the window closed — + reported, wrongly again, as a cancellation. + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + +## 3.3.1 + +### Patch Changes + +- [#397](https://github.com/DevinoSolutions/upup/pull/397) [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default panel now shows your error message next to the machine code, and a + skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). + + A failure carrying a code used to render as `uploadFailedWithCode`, which + interpolated the code and nothing else — so an endpoint that returned a useful + sentence watched it disappear between `onError` and the panel. The key now has a + second `{message}` slot carrying the error's own message, added to all nine + locale bundles so translators control placement (override the key to reorder the + slots, drop the code, or show only your own wording). All six framework panels + pass both values, and the message is rendered as text, never as markup. + + `stripExifData` skips animated GIF/WebP/APNG because canvas has no animated + encoder, which means an animated WebP or APNG reaches storage with the EXIF you + asked to remove. The `exif` step now records that on the file: + `metadata.metadataStripSkipped === true` with + `metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF + really was stripped carries `exifStripped: true` and no marker, and + `imageCompression` skipping an animated image does not set it — nothing was asked + to be removed. No new event, no new option. + +- [#398](https://github.com/DevinoSolutions/upup/pull/398) [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The compact file row shows its progress bar as soon as a run starts (#352), and + the branding logo assets are ~92% smaller (#229). + + `ProgressBar` already renders whenever the run is active or progress is + non-zero, but every framework's compact `FileRow` wrapped it in a second + `!!progress` gate. That outer gate won whenever it was falsy, so the row stayed + blank between "upload started" and "first byte acknowledged" while the grid + tile, the single-file hero and the list footer all showed their bars. The + redundant wrapper is removed in all five row templates; the self-gate inside + `ProgressBar` is now the only one. No change at idle — with no progress and no + active run the bar is still absent, so the parity fixtures do not move. + + The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at + 122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. + They were shipping at up to 1905x580 — roughly 30x the rendered area. Each + package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off + every UI bundle, with the rendered appearance unchanged. The assets stay PNG: + there is no vector source for them in the repo. + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036)]: + - @useupup/core@3.3.1 + ## 3.3.0 ### Patch Changes diff --git a/packages/angular/package.json b/packages/angular/package.json index a75715716..d7f8af3a9 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/angular", - "version": "3.3.0", + "version": "3.3.3", "description": "Angular 19+ standalone file uploader with cloud-drive sources, resumable uploads, theming, and ICU i18n.", "keywords": [ "file-upload", @@ -103,7 +103,7 @@ "rxjs": "^7.8.0", "typescript": "~5.6.0", "vite": "^7", - "vitest": "^4.1.2", + "vitest": "^4.1.11", "zone.js": "^0.14.0" } } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 93f9aac9a..c11c42686 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,206 @@ # @useupup/core +## 3.3.3 + +### Patch Changes + +- [#394](https://github.com/DevinoSolutions/upup/pull/394) [`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Declining an OAuth consent screen is reported as a cancellation, not as + "Popup was blocked by the browser". + + Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so + the tile click's transient user activation is still live — but OneDrive, Dropbox + and Box rendered it WITHOUT passing `error` (it stayed inside the + `...uploaderProps` rest), so its `|| error` guard could never fire. A decline + drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it + retried by itself. That second `window.open` had no activation left, returned + null, and `popup-oauth-plugin` reported the block — truthful about its own call, + misleading about the user, who was sent into their browser's popup settings over + a choice they had made themselves. + + The decline was also never surfaced on its own: the popup poll accepted only + `href.startsWith(redirectUri) && href.includes('code=')`, so an + `?error=access_denied` redirect fell through until the window closed, and a + closed window resolved silently with no error and no state. + + Now: + + - Every drive component in every framework forwards `error` into its auth + fallback, so the existing no-auto-retry-after-an-error guard is reachable + across the remount (the guard itself stays React-only — no other framework's + fallback auto-triggers on mount). The three popup providers had the same gap + in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google + Drive explicitly. + - The poll reads `error` / `error_description` off the redirect and reports a + refused or admin-walled consent as a cancellation; a closed window is a + cancellation too, rather than a silent resolve. `authenticateViaPopup()` still + RESOLVES in both cases — the promise contract is unchanged, and the + cancellation travels on the provider's existing error event. + - Cancellations carry `AUTH_DENIED` and a real popup block carries the new + `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive + controller turns those into a `messageKey` on `DriveBrowserError`, and the + renderer shows the matching catalogue string — the nine-locale `popupBlocked` + that shipped unused, or a new `errors.authCancelled`. Every other failure keeps + its own message, which carries detail a generic string would throw away. + - A popup attempt that ends without a session now clears `isLoading`, cannot + become an unhandled rejection, and ALWAYS leaves an error behind. A blocked + popup threw before the state ever moved to `authenticating`, so the view sat on + the spinner and the auth fallback carrying the error never rendered at all. + Recording the error is not cosmetic: the React auth fallback opens one popup on + mount while the tile click's user activation is live, and reads `error` to know + an attempt has already happened — its own ref cannot, because clearing + `isLoading` remounts the view with a fresh one. Most failures arrive on the + provider's error event and are already in state; the gap was the ones that only + THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never + emits. + + `UpupAuthError` takes an optional third `code` argument, defaulting to the + `AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. + + `ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still + type-checks — that is why this is a patch and not a breaking minor. The uploader + wires en-US as the fallback bundle and would resolve the key anyway; + `driveErrorText` also carries the English wording for a translator built with no + fallback at all, so an omission renders English rather than the key. + + The redirect poll reads the fragment as well as the query. The check it replaced + matched `code=` anywhere in the href, so narrowing to `searchParams` alone would + have left a spec-legal fragment-mode redirect unread until the window closed — + reported, wrongly again, as a cancellation. + +## 3.3.2 + +### Patch Changes + +- [#407](https://github.com/DevinoSolutions/upup/pull/407) [`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Review fixes for the Google Drive shared-drives support that shipped in 3.3.1, + behind the same default-off `cloudDrives.googleDrive.sharedDrives` flag. Nothing + changes for a picker that leaves the flag unset. + + A `drives.list` failure — a 403 under a Workspace sharing policy, a 429, a 5xx — + now degrades to no shared-drive rows instead of taking the whole root listing + down with it. The call was awaited unguarded inside `loadFiles`, so for a user + with the flag on, one non-2xx from that endpoint threw away the My Drive + children the listing had already fetched and left the picker empty. The failure + is reported on a new non-fatal `google-drive:shared-drives-error` event, and + drives collected before a mid-pagination failure are kept. + + Drive folder ids are escaped into the `files.list` query instead of interpolated + raw, using the same `escapeDriveQueryValue` the server-mode drive client uses. + That escaper moved from `@useupup/server` into `@useupup/core/internal` and + `@useupup/server` re-exports it, so the two halves share ONE implementation that + cannot drift. + + The shared-drive rows and the virtual "Shared with me" row lead the root's first + page rather than trailing it, so they stay above a second page of My Drive files + instead of being pushed below one. They are still emitted on the first page only, + so they appear exactly once and pagination is unaffected in either view. + +## 3.3.1 + +### Patch Changes + +- [#393](https://github.com/DevinoSolutions/upup/pull/393) [`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - The Google Drive picker can browse shared drives and "Shared with me", behind a + default-off `cloudDrives.googleDrive.sharedDrives` flag. + + `GoogleDrivePlugin.loadFiles` and `loadMoreFiles` sent a Drive v3 `files.list` + with no `corpora`, no `includeItemsFromAllDrives` and no `supportsAllDrives`, so + the API answered from the signed-in user's own My Drive corpus only. For a + business account that is most of the person's files: a file living in a shared + drive never appeared at any depth, and the picker's search box did not + compensate because it filters the children already loaded rather than issuing a + query. The requested scope was never the limit — `drive.readonly` covers shared + drives, and `drives.list`, already. + + With `sharedDrives: true`: + + - Both listing calls send `corpora=allDrives`, `includeItemsFromAllDrives=true` + and `supportsAllDrives=true`, and the single-file download sends + `supportsAllDrives=true` so a file the widened listing surfaced can actually be + fetched instead of answering 404. `corpora` and `includeItemsFromAllDrives` are + `files.list`-only and stay off the download. + - The ROOT listing appends the user's shared drives, from a paginated + `drives.list`, as navigable folder rows after the My Drive children. Those + params widen which files a query CAN return, but every listing is still + `'' in parents` and `'root'` resolves to My Drive root — so without + an entry to click, a shared drive stayed unreachable. A shared drive's root + folder id IS its drive id, so once one is listed the ordinary parent listing + walks it with no further special-casing. + - The root listing also carries one virtual "Shared with me" folder. Drive has no + parent whose children are the files others shared with you — it is the query + `sharedWithMe = true` — so that row uses a synthetic id the plugin branches on + in both `loadFiles` and `loadMoreFiles`. Every other part of the picker treats + it as an ordinary folder. + + Both additions land on the root's first page only, never on a continuation page, + so they appear exactly once and pagination is unaffected in either the shared + drives or the "Shared with me" view. + + The flag defaults off. Nothing is sent, no `drives.list` is issued and no extra + row appears when it is unset or false, so no existing picker changes shape. + +- [#396](https://github.com/DevinoSolutions/upup/pull/396) [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default source set no longer shows capture sources whose output can never + satisfy `allowedFileTypes` (#340). + + `allowedFileTypes: 'application/pdf'` used to leave the camera, microphone and + screen chips in place, and every recording they produced was rejected the moment + it was added. `normalizeUploaderOptions` now drops a default capture source when + no entry in the resolved accept list could match anything that source can emit — + camera emits `image/jpeg` (with `image/png` as the `toDataURL` fallback), + microphone `audio/webm` / `audio/ogg` / `audio/mp4`, screen `video/webm` / + `video/mp4`, all read off the code that builds the `File`. + + The match fails open: a wildcard, an unrecognized extension, or anything that is + neither a MIME type nor an extension keeps every source. `local` and `url` are + never filtered, cloud drives are untouched, and an explicitly passed `sources` + array is always honored verbatim. A dropped source logs one dev-only + `console.warn` naming the source and the accept list. + +- [#397](https://github.com/DevinoSolutions/upup/pull/397) [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default panel now shows your error message next to the machine code, and a + skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). + + A failure carrying a code used to render as `uploadFailedWithCode`, which + interpolated the code and nothing else — so an endpoint that returned a useful + sentence watched it disappear between `onError` and the panel. The key now has a + second `{message}` slot carrying the error's own message, added to all nine + locale bundles so translators control placement (override the key to reorder the + slots, drop the code, or show only your own wording). All six framework panels + pass both values, and the message is rendered as text, never as markup. + + `stripExifData` skips animated GIF/WebP/APNG because canvas has no animated + encoder, which means an animated WebP or APNG reaches storage with the EXIF you + asked to remove. The `exif` step now records that on the file: + `metadata.metadataStripSkipped === true` with + `metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF + really was stripped carries `exifStripped: true` and no marker, and + `imageCompression` skipping an animated image does not set it — nothing was asked + to be removed. No new event, no new option. + +- [#381](https://github.com/DevinoSolutions/upup/pull/381) [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036) Thanks [@AminDhouib](https://github.com/AminDhouib)! - Presign failures no longer surface a reverse proxy's HTML error page, and the + animated-image guard stops reading whole files. + + `TokenEndpointCredentials.getPresignedUrl` reads a failed presign body so the + endpoint's own sentence reaches `onError`, but `parseErrorBody`'s text fallback + also caught the error pages nginx and Cloudflare write for a 502 or 413 — so a + handler that used to get `Presign request failed: 502 Bad Gateway` got 200 + characters of `` instead. A markup body carrying no error code is now + treated as nothing to surface and the status-line wording is kept. An S3-style + `` body is unaffected: it parses to a real code and still comes + through. The error is also built with its final message rather than having + `message` reassigned afterwards, so the body is parsed once and the error never + carries wording it does not keep. `uploadErrorFromResponse` gained two optional + arguments for this — `fallbackMessage` (wording to use when the body carries + nothing) and `ignoreErrorPageBody` (opt into the markup guard); callers that + pass neither behave exactly as before. + + `isAnimatedImage` — the guard that keeps `imageCompression` and `stripExifData` + from flattening animated GIF/WebP/APNG — used to call `arrayBuffer()` on the + whole file, a read the main-thread path never made before that guard existed, + so a still 40 MB photo was materialized in full just to learn it was still. It + now sniffs the first 64 KiB, which is where every one of these formats declares + animation (APNG's `acTL` before the first `IDAT`, WebP's `VP8X`/`ANIM` at the + top of the container, a looping GIF's `NETSCAPE2.0` extension in the header). + Only a GIF that has announced nothing by then is read in full, because its + second Image Descriptor can sit anywhere in the stream. Verdicts are unchanged. + ## 3.3.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 90f257098..8d4bb75a6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/core", - "version": "3.3.0", + "version": "3.3.3", "description": "Headless, framework-agnostic file-upload engine powering the upup uploader — file state, upload pipeline (compression, HEIC, web-worker offload), cloud-drive sources, i18n, and theming.", "keywords": [ "file-upload", @@ -177,6 +177,6 @@ "eslint": "^10.6.0", "tsup": "^8.4.0", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 3208951e3..586636d52 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -27,6 +27,6 @@ }, "devDependencies": { "eslint": "^10.6.0", - "vitest": "4.1.2" + "vitest": "4.1.11" } } diff --git a/packages/interactive-example/CHANGELOG.md b/packages/interactive-example/CHANGELOG.md index b27869d24..b5cdce660 100644 --- a/packages/interactive-example/CHANGELOG.md +++ b/packages/interactive-example/CHANGELOG.md @@ -1,5 +1,29 @@ # @useupup/interactive-example +## 0.1.7 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/react@3.3.3 + +## 0.1.6 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/react@3.3.2 + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/react@3.3.1 + ## 0.1.4 ### Patch Changes diff --git a/packages/interactive-example/package.json b/packages/interactive-example/package.json index afb189595..0db60a8b1 100644 --- a/packages/interactive-example/package.json +++ b/packages/interactive-example/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/interactive-example", - "version": "0.1.4", + "version": "0.1.7", "private": true, "type": "module", "exports": { @@ -36,6 +36,6 @@ "react": "^19.2.0", "react-dom": "^19.2.0", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index a64184ee7..188460c9f 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,32 @@ # @useupup/next +## 3.3.3 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/react@3.3.3 + - @useupup/server@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/server@3.3.2 + - @useupup/react@3.3.2 + +## 3.3.1 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/react@3.3.1 + - @useupup/server@3.3.1 + ## 3.3.0 ### Minor Changes diff --git a/packages/next/package.json b/packages/next/package.json index d799b3e9f..29120863c 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/next", - "version": "3.3.0", + "version": "3.3.3", "description": "Next.js integration for the upup uploader — App Router + Pages Router handlers, client UI, and serverless-correct config helpers.", "keywords": [ "file-upload", @@ -98,11 +98,11 @@ "@vitest/coverage-v8": "^4.1.2", "eslint": "^10.6.0", "jsdom": "22.1.0", - "next": "16.2.11", + "next": "16.3.3", "react": "^19.2.0", "react-dom": "^19.2.0", "tsup": "^8.4.0", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/preact/CHANGELOG.md b/packages/preact/CHANGELOG.md index 66d6a6590..34f4fa4e3 100644 --- a/packages/preact/CHANGELOG.md +++ b/packages/preact/CHANGELOG.md @@ -1,5 +1,48 @@ # @useupup/preact +## 3.3.3 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + - @useupup/react@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + - @useupup/react@3.3.2 + +## 3.3.1 + +### Patch Changes + +- [#398](https://github.com/DevinoSolutions/upup/pull/398) [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The compact file row shows its progress bar as soon as a run starts (#352), and + the branding logo assets are ~92% smaller (#229). + + `ProgressBar` already renders whenever the run is active or progress is + non-zero, but every framework's compact `FileRow` wrapped it in a second + `!!progress` gate. That outer gate won whenever it was falsy, so the row stayed + blank between "upload started" and "first byte acknowledged" while the grid + tile, the single-file hero and the list footer all showed their bars. The + redundant wrapper is removed in all five row templates; the self-gate inside + `ProgressBar` is now the only one. No change at idle — with no progress and no + active run the bar is still absent, so the parity fixtures do not move. + + The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at + 122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. + They were shipping at up to 1905x580 — roughly 30x the rendered area. Each + package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off + every UI bundle, with the rendered appearance unchanged. The assets stay PNG: + there is no vector source for them in the repo. + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036), [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82)]: + - @useupup/core@3.3.1 + - @useupup/react@3.3.1 + ## 3.3.0 ### Patch Changes diff --git a/packages/preact/package.json b/packages/preact/package.json index f5b93ec4b..02505a582 100644 --- a/packages/preact/package.json +++ b/packages/preact/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/preact", - "version": "3.3.0", + "version": "3.3.3", "description": "Preact file uploader with cloud-drive sources, resumable uploads, an image editor (real Filerobot as a lazy real-React island), theming, and ICU i18n.", "keywords": [ "file-upload", @@ -125,6 +125,6 @@ "styled-components": ">=5.0.0", "tsup": "^8.4.0", "typescript": "^5.6.0", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 57c9594d8..cd771ba84 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,128 @@ # @useupup/react +## 3.3.3 + +### Patch Changes + +- [#394](https://github.com/DevinoSolutions/upup/pull/394) [`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Declining an OAuth consent screen is reported as a cancellation, not as + "Popup was blocked by the browser". + + Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so + the tile click's transient user activation is still live — but OneDrive, Dropbox + and Box rendered it WITHOUT passing `error` (it stayed inside the + `...uploaderProps` rest), so its `|| error` guard could never fire. A decline + drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it + retried by itself. That second `window.open` had no activation left, returned + null, and `popup-oauth-plugin` reported the block — truthful about its own call, + misleading about the user, who was sent into their browser's popup settings over + a choice they had made themselves. + + The decline was also never surfaced on its own: the popup poll accepted only + `href.startsWith(redirectUri) && href.includes('code=')`, so an + `?error=access_denied` redirect fell through until the window closed, and a + closed window resolved silently with no error and no state. + + Now: + + - Every drive component in every framework forwards `error` into its auth + fallback, so the existing no-auto-retry-after-an-error guard is reachable + across the remount (the guard itself stays React-only — no other framework's + fallback auto-triggers on mount). The three popup providers had the same gap + in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google + Drive explicitly. + - The poll reads `error` / `error_description` off the redirect and reports a + refused or admin-walled consent as a cancellation; a closed window is a + cancellation too, rather than a silent resolve. `authenticateViaPopup()` still + RESOLVES in both cases — the promise contract is unchanged, and the + cancellation travels on the provider's existing error event. + - Cancellations carry `AUTH_DENIED` and a real popup block carries the new + `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive + controller turns those into a `messageKey` on `DriveBrowserError`, and the + renderer shows the matching catalogue string — the nine-locale `popupBlocked` + that shipped unused, or a new `errors.authCancelled`. Every other failure keeps + its own message, which carries detail a generic string would throw away. + - A popup attempt that ends without a session now clears `isLoading`, cannot + become an unhandled rejection, and ALWAYS leaves an error behind. A blocked + popup threw before the state ever moved to `authenticating`, so the view sat on + the spinner and the auth fallback carrying the error never rendered at all. + Recording the error is not cosmetic: the React auth fallback opens one popup on + mount while the tile click's user activation is live, and reads `error` to know + an attempt has already happened — its own ref cannot, because clearing + `isLoading` remounts the view with a fresh one. Most failures arrive on the + provider's error event and are already in state; the gap was the ones that only + THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never + emits. + + `UpupAuthError` takes an optional third `code` argument, defaulting to the + `AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. + + `ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still + type-checks — that is why this is a patch and not a breaking minor. The uploader + wires en-US as the fallback bundle and would resolve the key anyway; + `driveErrorText` also carries the English wording for a translator built with no + fallback at all, so an omission renders English rather than the key. + + The redirect poll reads the fragment as well as the query. The check it replaced + matched `code=` anywhere in the href, so narrowing to `searchParams` alone would + have left a spec-legal fragment-mode redirect unread until the window closed — + reported, wrongly again, as a cancellation. + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + +## 3.3.1 + +### Patch Changes + +- [#397](https://github.com/DevinoSolutions/upup/pull/397) [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default panel now shows your error message next to the machine code, and a + skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). + + A failure carrying a code used to render as `uploadFailedWithCode`, which + interpolated the code and nothing else — so an endpoint that returned a useful + sentence watched it disappear between `onError` and the panel. The key now has a + second `{message}` slot carrying the error's own message, added to all nine + locale bundles so translators control placement (override the key to reorder the + slots, drop the code, or show only your own wording). All six framework panels + pass both values, and the message is rendered as text, never as markup. + + `stripExifData` skips animated GIF/WebP/APNG because canvas has no animated + encoder, which means an animated WebP or APNG reaches storage with the EXIF you + asked to remove. The `exif` step now records that on the file: + `metadata.metadataStripSkipped === true` with + `metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF + really was stripped carries `exifStripped: true` and no marker, and + `imageCompression` skipping an animated image does not set it — nothing was asked + to be removed. No new event, no new option. + +- [#398](https://github.com/DevinoSolutions/upup/pull/398) [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The compact file row shows its progress bar as soon as a run starts (#352), and + the branding logo assets are ~92% smaller (#229). + + `ProgressBar` already renders whenever the run is active or progress is + non-zero, but every framework's compact `FileRow` wrapped it in a second + `!!progress` gate. That outer gate won whenever it was falsy, so the row stayed + blank between "upload started" and "first byte acknowledged" while the grid + tile, the single-file hero and the list footer all showed their bars. The + redundant wrapper is removed in all five row templates; the self-gate inside + `ProgressBar` is now the only one. No change at idle — with no progress and no + active run the bar is still absent, so the parity fixtures do not move. + + The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at + 122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. + They were shipping at up to 1905x580 — roughly 30x the rendered area. Each + package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off + every UI bundle, with the rendered appearance unchanged. The assets stay PNG: + there is no vector source for them in the repo. + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036)]: + - @useupup/core@3.3.1 + ## 3.3.0 ### Minor Changes diff --git a/packages/react/package.json b/packages/react/package.json index e5b679dcf..765392088 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/react", - "version": "3.3.0", + "version": "3.3.3", "description": "React file uploader with drag-and-drop, cloud-drive sources, resumable uploads, image editor, theming, and ICU i18n.", "keywords": [ "file-upload", @@ -105,6 +105,6 @@ "postcss-cli": "^11.0.1", "tsup": "^8.4.0", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 34594a955..017b7b1c0 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,49 @@ # @useupup/server +## 3.3.3 + +### Patch Changes + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + +## 3.3.2 + +### Patch Changes + +- [#407](https://github.com/DevinoSolutions/upup/pull/407) [`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Review fixes for the Google Drive shared-drives support that shipped in 3.3.1, + behind the same default-off `cloudDrives.googleDrive.sharedDrives` flag. Nothing + changes for a picker that leaves the flag unset. + + A `drives.list` failure — a 403 under a Workspace sharing policy, a 429, a 5xx — + now degrades to no shared-drive rows instead of taking the whole root listing + down with it. The call was awaited unguarded inside `loadFiles`, so for a user + with the flag on, one non-2xx from that endpoint threw away the My Drive + children the listing had already fetched and left the picker empty. The failure + is reported on a new non-fatal `google-drive:shared-drives-error` event, and + drives collected before a mid-pagination failure are kept. + + Drive folder ids are escaped into the `files.list` query instead of interpolated + raw, using the same `escapeDriveQueryValue` the server-mode drive client uses. + That escaper moved from `@useupup/server` into `@useupup/core/internal` and + `@useupup/server` re-exports it, so the two halves share ONE implementation that + cannot drift. + + The shared-drive rows and the virtual "Shared with me" row lead the root's first + page rather than trailing it, so they stay above a second page of My Drive files + instead of being pushed below one. They are still emitted on the first page only, + so they appear exactly once and pagination is unaffected in either view. + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + +## 3.3.1 + +### Patch Changes + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036)]: + - @useupup/core@3.3.1 + ## 3.3.0 ### Minor Changes diff --git a/packages/server/package.json b/packages/server/package.json index a4b7095b5..c636c94ab 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/server", - "version": "3.3.0", + "version": "3.3.3", "description": "Server-mode endpoints for the upup uploader — S3-compatible presign + proxy uploads, cloud-drive token exchange, and an HMAC-signed upload-token trust model. Framework-agnostic with Next.js/Express/Fastify/Hono adapters.", "keywords": [ "file-upload", @@ -97,6 +97,6 @@ "eslint": "^10.6.0", "tsup": "^8.4.0", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/storybook-config/package.json b/packages/storybook-config/package.json index 137eed7b9..b7fcb0587 100644 --- a/packages/storybook-config/package.json +++ b/packages/storybook-config/package.json @@ -25,6 +25,6 @@ "devDependencies": { "storybook": "^9", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 0b548969e..e908dd528 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,128 @@ # @useupup/svelte +## 3.3.3 + +### Patch Changes + +- [#394](https://github.com/DevinoSolutions/upup/pull/394) [`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Declining an OAuth consent screen is reported as a cancellation, not as + "Popup was blocked by the browser". + + Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so + the tile click's transient user activation is still live — but OneDrive, Dropbox + and Box rendered it WITHOUT passing `error` (it stayed inside the + `...uploaderProps` rest), so its `|| error` guard could never fire. A decline + drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it + retried by itself. That second `window.open` had no activation left, returned + null, and `popup-oauth-plugin` reported the block — truthful about its own call, + misleading about the user, who was sent into their browser's popup settings over + a choice they had made themselves. + + The decline was also never surfaced on its own: the popup poll accepted only + `href.startsWith(redirectUri) && href.includes('code=')`, so an + `?error=access_denied` redirect fell through until the window closed, and a + closed window resolved silently with no error and no state. + + Now: + + - Every drive component in every framework forwards `error` into its auth + fallback, so the existing no-auto-retry-after-an-error guard is reachable + across the remount (the guard itself stays React-only — no other framework's + fallback auto-triggers on mount). The three popup providers had the same gap + in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google + Drive explicitly. + - The poll reads `error` / `error_description` off the redirect and reports a + refused or admin-walled consent as a cancellation; a closed window is a + cancellation too, rather than a silent resolve. `authenticateViaPopup()` still + RESOLVES in both cases — the promise contract is unchanged, and the + cancellation travels on the provider's existing error event. + - Cancellations carry `AUTH_DENIED` and a real popup block carries the new + `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive + controller turns those into a `messageKey` on `DriveBrowserError`, and the + renderer shows the matching catalogue string — the nine-locale `popupBlocked` + that shipped unused, or a new `errors.authCancelled`. Every other failure keeps + its own message, which carries detail a generic string would throw away. + - A popup attempt that ends without a session now clears `isLoading`, cannot + become an unhandled rejection, and ALWAYS leaves an error behind. A blocked + popup threw before the state ever moved to `authenticating`, so the view sat on + the spinner and the auth fallback carrying the error never rendered at all. + Recording the error is not cosmetic: the React auth fallback opens one popup on + mount while the tile click's user activation is live, and reads `error` to know + an attempt has already happened — its own ref cannot, because clearing + `isLoading` remounts the view with a fresh one. Most failures arrive on the + provider's error event and are already in state; the gap was the ones that only + THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never + emits. + + `UpupAuthError` takes an optional third `code` argument, defaulting to the + `AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. + + `ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still + type-checks — that is why this is a patch and not a breaking minor. The uploader + wires en-US as the fallback bundle and would resolve the key anyway; + `driveErrorText` also carries the English wording for a translator built with no + fallback at all, so an omission renders English rather than the key. + + The redirect poll reads the fragment as well as the query. The check it replaced + matched `code=` anywhere in the href, so narrowing to `searchParams` alone would + have left a spec-legal fragment-mode redirect unread until the window closed — + reported, wrongly again, as a cancellation. + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + +## 3.3.1 + +### Patch Changes + +- [#397](https://github.com/DevinoSolutions/upup/pull/397) [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default panel now shows your error message next to the machine code, and a + skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). + + A failure carrying a code used to render as `uploadFailedWithCode`, which + interpolated the code and nothing else — so an endpoint that returned a useful + sentence watched it disappear between `onError` and the panel. The key now has a + second `{message}` slot carrying the error's own message, added to all nine + locale bundles so translators control placement (override the key to reorder the + slots, drop the code, or show only your own wording). All six framework panels + pass both values, and the message is rendered as text, never as markup. + + `stripExifData` skips animated GIF/WebP/APNG because canvas has no animated + encoder, which means an animated WebP or APNG reaches storage with the EXIF you + asked to remove. The `exif` step now records that on the file: + `metadata.metadataStripSkipped === true` with + `metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF + really was stripped carries `exifStripped: true` and no marker, and + `imageCompression` skipping an animated image does not set it — nothing was asked + to be removed. No new event, no new option. + +- [#398](https://github.com/DevinoSolutions/upup/pull/398) [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The compact file row shows its progress bar as soon as a run starts (#352), and + the branding logo assets are ~92% smaller (#229). + + `ProgressBar` already renders whenever the run is active or progress is + non-zero, but every framework's compact `FileRow` wrapped it in a second + `!!progress` gate. That outer gate won whenever it was falsy, so the row stayed + blank between "upload started" and "first byte acknowledged" while the grid + tile, the single-file hero and the list footer all showed their bars. The + redundant wrapper is removed in all five row templates; the self-gate inside + `ProgressBar` is now the only one. No change at idle — with no progress and no + active run the bar is still absent, so the parity fixtures do not move. + + The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at + 122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. + They were shipping at up to 1905x580 — roughly 30x the rendered area. Each + package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off + every UI bundle, with the rendered appearance unchanged. The assets stay PNG: + there is no vector source for them in the repo. + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036)]: + - @useupup/core@3.3.1 + ## 3.3.0 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index deccc08cb..25ff5713c 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/svelte", - "version": "3.3.0", + "version": "3.3.3", "description": "Svelte 5 file uploader with cloud-drive sources, resumable uploads, theming, and ICU i18n.", "keywords": [ "file-upload", @@ -96,6 +96,6 @@ "svelte-check": "^4.1.0", "typescript": "^5.3.2", "vite": "^7", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/vanilla/CHANGELOG.md b/packages/vanilla/CHANGELOG.md index 2dc52fc95..3add2fa36 100644 --- a/packages/vanilla/CHANGELOG.md +++ b/packages/vanilla/CHANGELOG.md @@ -1,5 +1,167 @@ # @useupup/vanilla +## 3.3.3 + +### Patch Changes + +- [#394](https://github.com/DevinoSolutions/upup/pull/394) [`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Declining an OAuth consent screen is reported as a cancellation, not as + "Popup was blocked by the browser". + + Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so + the tile click's transient user activation is still live — but OneDrive, Dropbox + and Box rendered it WITHOUT passing `error` (it stayed inside the + `...uploaderProps` rest), so its `|| error` guard could never fire. A decline + drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it + retried by itself. That second `window.open` had no activation left, returned + null, and `popup-oauth-plugin` reported the block — truthful about its own call, + misleading about the user, who was sent into their browser's popup settings over + a choice they had made themselves. + + The decline was also never surfaced on its own: the popup poll accepted only + `href.startsWith(redirectUri) && href.includes('code=')`, so an + `?error=access_denied` redirect fell through until the window closed, and a + closed window resolved silently with no error and no state. + + Now: + + - Every drive component in every framework forwards `error` into its auth + fallback, so the existing no-auto-retry-after-an-error guard is reachable + across the remount (the guard itself stays React-only — no other framework's + fallback auto-triggers on mount). The three popup providers had the same gap + in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google + Drive explicitly. + - The poll reads `error` / `error_description` off the redirect and reports a + refused or admin-walled consent as a cancellation; a closed window is a + cancellation too, rather than a silent resolve. `authenticateViaPopup()` still + RESOLVES in both cases — the promise contract is unchanged, and the + cancellation travels on the provider's existing error event. + - Cancellations carry `AUTH_DENIED` and a real popup block carries the new + `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive + controller turns those into a `messageKey` on `DriveBrowserError`, and the + renderer shows the matching catalogue string — the nine-locale `popupBlocked` + that shipped unused, or a new `errors.authCancelled`. Every other failure keeps + its own message, which carries detail a generic string would throw away. + - A popup attempt that ends without a session now clears `isLoading`, cannot + become an unhandled rejection, and ALWAYS leaves an error behind. A blocked + popup threw before the state ever moved to `authenticating`, so the view sat on + the spinner and the auth fallback carrying the error never rendered at all. + Recording the error is not cosmetic: the React auth fallback opens one popup on + mount while the tile click's user activation is live, and reads `error` to know + an attempt has already happened — its own ref cannot, because clearing + `isLoading` remounts the view with a fresh one. Most failures arrive on the + provider's error event and are already in state; the gap was the ones that only + THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never + emits. + + `UpupAuthError` takes an optional third `code` argument, defaulting to the + `AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. + + `ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still + type-checks — that is why this is a patch and not a breaking minor. The uploader + wires en-US as the fallback bundle and would resolve the key anyway; + `driveErrorText` also carries the English wording for a translator built with no + fallback at all, so an omission renders English rather than the key. + + The redirect poll reads the fragment as well as the query. The check it replaced + matched `code=` anywhere in the href, so narrowing to `searchParams` alone would + have left a spec-legal fragment-mode redirect unread until the window closed — + reported, wrongly again, as a cancellation. + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + +## 3.3.1 + +### Patch Changes + +- [#393](https://github.com/DevinoSolutions/upup/pull/393) [`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - The Google Drive picker can browse shared drives and "Shared with me", behind a + default-off `cloudDrives.googleDrive.sharedDrives` flag. + + `GoogleDrivePlugin.loadFiles` and `loadMoreFiles` sent a Drive v3 `files.list` + with no `corpora`, no `includeItemsFromAllDrives` and no `supportsAllDrives`, so + the API answered from the signed-in user's own My Drive corpus only. For a + business account that is most of the person's files: a file living in a shared + drive never appeared at any depth, and the picker's search box did not + compensate because it filters the children already loaded rather than issuing a + query. The requested scope was never the limit — `drive.readonly` covers shared + drives, and `drives.list`, already. + + With `sharedDrives: true`: + + - Both listing calls send `corpora=allDrives`, `includeItemsFromAllDrives=true` + and `supportsAllDrives=true`, and the single-file download sends + `supportsAllDrives=true` so a file the widened listing surfaced can actually be + fetched instead of answering 404. `corpora` and `includeItemsFromAllDrives` are + `files.list`-only and stay off the download. + - The ROOT listing appends the user's shared drives, from a paginated + `drives.list`, as navigable folder rows after the My Drive children. Those + params widen which files a query CAN return, but every listing is still + `'' in parents` and `'root'` resolves to My Drive root — so without + an entry to click, a shared drive stayed unreachable. A shared drive's root + folder id IS its drive id, so once one is listed the ordinary parent listing + walks it with no further special-casing. + - The root listing also carries one virtual "Shared with me" folder. Drive has no + parent whose children are the files others shared with you — it is the query + `sharedWithMe = true` — so that row uses a synthetic id the plugin branches on + in both `loadFiles` and `loadMoreFiles`. Every other part of the picker treats + it as an ordinary folder. + + Both additions land on the root's first page only, never on a continuation page, + so they appear exactly once and pagination is unaffected in either the shared + drives or the "Shared with me" view. + + The flag defaults off. Nothing is sent, no `drives.list` is issued and no extra + row appears when it is unset or false, so no existing picker changes shape. + +- [#397](https://github.com/DevinoSolutions/upup/pull/397) [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default panel now shows your error message next to the machine code, and a + skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). + + A failure carrying a code used to render as `uploadFailedWithCode`, which + interpolated the code and nothing else — so an endpoint that returned a useful + sentence watched it disappear between `onError` and the panel. The key now has a + second `{message}` slot carrying the error's own message, added to all nine + locale bundles so translators control placement (override the key to reorder the + slots, drop the code, or show only your own wording). All six framework panels + pass both values, and the message is rendered as text, never as markup. + + `stripExifData` skips animated GIF/WebP/APNG because canvas has no animated + encoder, which means an animated WebP or APNG reaches storage with the EXIF you + asked to remove. The `exif` step now records that on the file: + `metadata.metadataStripSkipped === true` with + `metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF + really was stripped carries `exifStripped: true` and no marker, and + `imageCompression` skipping an animated image does not set it — nothing was asked + to be removed. No new event, no new option. + +- [#398](https://github.com/DevinoSolutions/upup/pull/398) [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The compact file row shows its progress bar as soon as a run starts (#352), and + the branding logo assets are ~92% smaller (#229). + + `ProgressBar` already renders whenever the run is active or progress is + non-zero, but every framework's compact `FileRow` wrapped it in a second + `!!progress` gate. That outer gate won whenever it was falsy, so the row stayed + blank between "upload started" and "first byte acknowledged" while the grid + tile, the single-file hero and the list footer all showed their bars. The + redundant wrapper is removed in all five row templates; the self-gate inside + `ProgressBar` is now the only one. No change at idle — with no progress and no + active run the bar is still absent, so the parity fixtures do not move. + + The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at + 122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. + They were shipping at up to 1905x580 — roughly 30x the rendered area. Each + package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off + every UI bundle, with the rendered appearance unchanged. The assets stay PNG: + there is no vector source for them in the repo. + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036)]: + - @useupup/core@3.3.1 + ## 3.3.0 ### Patch Changes diff --git a/packages/vanilla/package.json b/packages/vanilla/package.json index 745a71698..d85a8bd87 100644 --- a/packages/vanilla/package.json +++ b/packages/vanilla/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/vanilla", - "version": "3.3.0", + "version": "3.3.3", "description": "Framework-free DOM file uploader (lit-html) with cloud-drive sources, resumable uploads, theming, and ICU i18n.", "keywords": [ "file-upload", @@ -97,6 +97,6 @@ "tsup": "^8.4.0", "@types/node": "^20.19.37", "typescript": "^5.3.2", - "vitest": "^4.1.2" + "vitest": "^4.1.11" } } diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index ea05e2aa4..8202abdd2 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,128 @@ # @useupup/vue +## 3.3.3 + +### Patch Changes + +- [#394](https://github.com/DevinoSolutions/upup/pull/394) [`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d) Thanks [@BSalaeddin](https://github.com/BSalaeddin)! - Declining an OAuth consent screen is reported as a cancellation, not as + "Popup was blocked by the browser". + + Three things compounded. `DriveAuthFallback` auto-triggers sign-in on mount so + the tile click's transient user activation is still live — but OneDrive, Dropbox + and Box rendered it WITHOUT passing `error` (it stayed inside the + `...uploaderProps` rest), so its `|| error` guard could never fire. A decline + drove `isLoading` false, the view re-mounted with a fresh `attemptedRef`, and it + retried by itself. That second `window.open` had no activation left, returned + null, and `popup-oauth-plugin` reported the block — truthful about its own call, + misleading about the user, who was sent into their browser's popup settings over + a choice they had made themselves. + + The decline was also never surfaced on its own: the popup poll accepted only + `href.startsWith(redirectUri) && href.includes('code=')`, so an + `?error=access_denied` redirect fell through until the window closed, and a + closed window resolved silently with no error and no state. + + Now: + + - Every drive component in every framework forwards `error` into its auth + fallback, so the existing no-auto-retry-after-an-error guard is reachable + across the remount (the guard itself stays React-only — no other framework's + fallback auto-triggers on mount). The three popup providers had the same gap + in React, Vue, Svelte, Angular and vanilla; vanilla gated the prop on Google + Drive explicitly. + - The poll reads `error` / `error_description` off the redirect and reports a + refused or admin-walled consent as a cancellation; a closed window is a + cancellation too, rather than a silent resolve. `authenticateViaPopup()` still + RESOLVES in both cases — the promise contract is unchanged, and the + cancellation travels on the provider's existing error event. + - Cancellations carry `AUTH_DENIED` and a real popup block carries the new + `AUTH_POPUP_BLOCKED` code, so the two can finally be told apart. The drive + controller turns those into a `messageKey` on `DriveBrowserError`, and the + renderer shows the matching catalogue string — the nine-locale `popupBlocked` + that shipped unused, or a new `errors.authCancelled`. Every other failure keeps + its own message, which carries detail a generic string would throw away. + - A popup attempt that ends without a session now clears `isLoading`, cannot + become an unhandled rejection, and ALWAYS leaves an error behind. A blocked + popup threw before the state ever moved to `authenticating`, so the view sat on + the spinner and the auth fallback carrying the error never rendered at all. + Recording the error is not cosmetic: the React auth fallback opens one popup on + mount while the tile click's user activation is live, and reads `error` to know + an attempt has already happened — its own ref cannot, because clearing + `isLoading` remounts the view with a fresh one. Most failures arrive on the + provider's error event and are already in state; the gap was the ones that only + THROW, such as an unconfigured `clientId`, which `getAuthUrl()` throws and never + emits. + + `UpupAuthError` takes an optional third `code` argument, defaulting to the + `AUTH_PROVIDER_ERROR` it always used, so existing call sites are unchanged. + + `ErrorMessages.authCancelled` is OPTIONAL, so a hand-written locale bundle still + type-checks — that is why this is a patch and not a breaking minor. The uploader + wires en-US as the fallback bundle and would resolve the key anyway; + `driveErrorText` also carries the English wording for a translator built with no + fallback at all, so an omission renders English rather than the key. + + The redirect poll reads the fragment as well as the query. The check it replaced + matched `code=` anywhere in the href, so narrowing to `searchParams` alone would + have left a spec-legal fragment-mode redirect unread until the window closed — + reported, wrongly again, as a cancellation. + +- Updated dependencies [[`bf817fc`](https://github.com/DevinoSolutions/upup/commit/bf817fc1bf57b56cc4ca7e6e11209a6ab4429f4d)]: + - @useupup/core@3.3.3 + +## 3.3.2 + +### Patch Changes + +- Updated dependencies [[`5921da4`](https://github.com/DevinoSolutions/upup/commit/5921da4d1c3094d76fbbd0f5deee7a1c5e7efbe9)]: + - @useupup/core@3.3.2 + +## 3.3.1 + +### Patch Changes + +- [#397](https://github.com/DevinoSolutions/upup/pull/397) [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The default panel now shows your error message next to the machine code, and a + skipped EXIF strip leaves a marker on the file (#367 items 2 and 4). + + A failure carrying a code used to render as `uploadFailedWithCode`, which + interpolated the code and nothing else — so an endpoint that returned a useful + sentence watched it disappear between `onError` and the panel. The key now has a + second `{message}` slot carrying the error's own message, added to all nine + locale bundles so translators control placement (override the key to reorder the + slots, drop the code, or show only your own wording). All six framework panels + pass both values, and the message is rendered as text, never as markup. + + `stripExifData` skips animated GIF/WebP/APNG because canvas has no animated + encoder, which means an animated WebP or APNG reaches storage with the EXIF you + asked to remove. The `exif` step now records that on the file: + `metadata.metadataStripSkipped === true` with + `metadata.metadataStripSkippedReason === 'animated-image'`. A file whose EXIF + really was stripped carries `exifStripped: true` and no marker, and + `imageCompression` skipping an animated image does not set it — nothing was asked + to be removed. No new event, no new option. + +- [#398](https://github.com/DevinoSolutions/upup/pull/398) [`32ae800`](https://github.com/DevinoSolutions/upup/commit/32ae80094b21ea7064a5061d14d652b0e8bc7d82) Thanks [@AminDhouib](https://github.com/AminDhouib)! - The compact file row shows its progress bar as soon as a run starts (#352), and + the branding logo assets are ~92% smaller (#229). + + `ProgressBar` already renders whenever the run is active or progress is + non-zero, but every framework's compact `FileRow` wrapped it in a second + `!!progress` gate. That outer gate won whenever it was falsy, so the row stayed + blank between "upload started" and "first byte acknowledged" while the grid + tile, the single-file hero and the list footer all showed their bars. The + redundant wrapper is removed in all five row templates; the self-gate inside + `ProgressBar` is now the only one. No change at idle — with no progress and no + active run the bar is still absent, so the parity fixtures do not move. + + The four base64 PNG logo assets in `src/assets/logos.ts` are re-exported at + 122x26, twice the fixed 61x13 CSS-pixel box every framework renders them in. + They were shipping at up to 1905x580 — roughly 30x the rendered area. Each + package's copy of that file drops from 167 KB to 13 KB, about 109 KB gzipped off + every UI bundle, with the rendered appearance unchanged. The assets stay PNG: + there is no vector source for them in the repo. + +- Updated dependencies [[`7df75e6`](https://github.com/DevinoSolutions/upup/commit/7df75e6b430e080bf8f3931297ec171d86ff19ce), [`e4393b5`](https://github.com/DevinoSolutions/upup/commit/e4393b5652add229c9d5fa849cba2ba97913f7cf), [`db9ea90`](https://github.com/DevinoSolutions/upup/commit/db9ea90af5b1916763d607baee81e118b6d7c718), [`720d273`](https://github.com/DevinoSolutions/upup/commit/720d2735d268b242338b70afa380161cf7107036)]: + - @useupup/core@3.3.1 + ## 3.3.0 ### Patch Changes diff --git a/packages/vue/package.json b/packages/vue/package.json index 6c9fce14e..1893dc23e 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@useupup/vue", - "version": "3.3.0", + "version": "3.3.3", "description": "Vue 3 file uploader with cloud-drive sources, resumable uploads, theming, and ICU i18n.", "keywords": [ "file-upload", @@ -93,7 +93,7 @@ "tsup": "^8.4.0", "typescript": "^5.3.2", "unplugin-vue": "^7.2.0", - "vitest": "^4.1.2", + "vitest": "^4.1.11", "vue": "^3.4.0", "vue-tsc": "^2.0.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f9631722c..6cd3f1fe9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -18,6 +18,7 @@ overrides: react-dom: ^19.2.0 '@types/react': ^19 '@types/react-dom': ^19 + js-yaml@3: 3.15.2 patchedDependencies: '@storybook/angular@9.1.20': @@ -36,7 +37,7 @@ importers: version: 2.31.1(@types/node@26.1.2) '@napi-rs/canvas': specifier: ^1.0.2 - version: 1.0.8 + version: 1.0.9 '@size-limit/file': specifier: ^11.0.0 version: 11.2.0(size-limit@11.2.0) @@ -51,22 +52,22 @@ importers: version: 7.4.4 express: specifier: ^4.21.0 - version: 4.22.2 + version: 4.22.3 husky: specifier: ^9.1.7 version: 9.1.7 knip: specifier: ^6.24.0 - version: 6.34.0 + version: 6.36.0 lint-staged: specifier: ^17.0.8 - version: 17.4.1 + version: 17.5.1 oxlint: specifier: ^1.72.0 - version: 1.81.0 + version: 1.83.0 prettier: specifier: ^3.9.4 - version: 3.9.6 + version: 3.9.7 size-limit: specifier: ^11.0.0 version: 11.2.0 @@ -81,44 +82,44 @@ importers: version: link:../../packages/react react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) devDependencies: '@aws-sdk/client-s3': specifier: ^3.1004.0 - version: 3.1125.0 + version: 3.1134.0 '@playwright/test': specifier: ^1.58.2 - version: 1.62.1 + version: 1.63.0 '@types/node': specifier: ^22.0.0 - version: 22.20.1 + version: 22.20.3 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@useupup/server': specifier: workspace:* version: link:../../packages/server '@vitejs/plugin-react': specifier: ^4.2.0 - version: 4.7.0(vite@8.2.2(@types/node@22.20.1)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 4.7.0(vite@8.3.0(@types/node@22.20.3)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) typescript: specifier: ~5.3.0 version: 5.3.3 vite: specifier: ^8.0.3 - version: 8.2.2(@types/node@22.20.1)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 8.3.0(@types/node@22.20.3)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) apps/landing: dependencies: '@material-tailwind/react': specifier: ^2.1.9 - version: 2.1.10(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 2.1.10(react-dom@19.3.0(react@19.3.0))(react@19.3.0) '@stackblitz/sdk': specifier: ^1.11.0 version: 1.11.1 @@ -142,13 +143,13 @@ importers: version: 2.1.1 framer-motion: specifier: ^12.8.0 - version: 12.43.0(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 12.43.0(@emotion/is-prop-valid@1.4.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) fumadocs-core: specifier: 16.11.5 - version: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.18)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.2.8))(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(zod@4.5.4) + version: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.3.0)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.3.0))(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(zod@4.6.5) fumadocs-mdx: specifier: 15.2.0 - version: 15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.18)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.18)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.2.8))(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(zod@4.5.4))(mdast-util-directive@3.1.0)(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react@19.2.8)(rolldown@1.2.7)(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.3.0)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.3.0)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.3.0))(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(zod@4.6.5))(mdast-util-directive@3.1.0)(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react@19.3.0)(rolldown@1.2.7)(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) gray-matter: specifier: ^4.0.3 version: 4.0.3 @@ -157,59 +158,59 @@ importers: version: 3.15.0 lucide-react: specifier: ^0.503.0 - version: 0.503.0(react@19.2.8) + version: 0.503.0(react@19.3.0) next: - specifier: 16.2.11 - version: 16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0) + specifier: 16.3.3 + version: 16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0) nodemailer: specifier: ^9.0.3 version: 9.1.1 posthog-js: specifier: ^1.399.2 - version: 1.425.1(@types/react@19.2.18)(preact-render-to-string@6.7.0)(react@19.2.8) + version: 1.433.6(@types/react@19.3.0)(preact-render-to-string@6.7.0)(react@19.3.0) posthog-node: specifier: ^5.45.2 - version: 5.51.6(rxjs@7.8.2) + version: 5.52.4(rxjs@7.8.2) postprocessing: specifier: ^6.37.6 - version: 6.39.4(three@0.178.0) + version: 6.39.5(three@0.178.0) prettier-plugin-tailwindcss: specifier: ^0.5.14 - version: 0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.9.6)(typescript@5.9.3))(prettier@3.9.6) + version: 0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.9.7)(typescript@5.6.3))(prettier@3.9.7) react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) react-filerobot-image-editor: specifier: ^4.9.1 - version: 4.9.1(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react-konva@19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(react@19.2.8)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)) + version: 4.9.1(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react-konva@19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0))(react@19.3.0)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)) react-icons: specifier: 5.5.0 - version: 5.5.0(react@19.2.8) + version: 5.5.0(react@19.3.0) react-toastify: specifier: ^11.0.5 - version: 11.1.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 11.1.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) react-tooltip: specifier: ^5.29.1 - version: 5.30.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 5.30.1(react-dom@19.3.0(react@19.3.0))(react@19.3.0) three: specifier: ^0.178.0 version: 0.178.0 zod: specifier: ^4.4.3 - version: 4.5.4 + version: 4.6.5 devDependencies: '@lhci/cli': specifier: ^0.15.1 version: 0.15.1(encoding@0.1.13) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@types/mdx': specifier: ^2.0.14 version: 2.0.14 @@ -218,13 +219,13 @@ importers: version: 20.19.43 '@types/nodemailer': specifier: ^8.0.1 - version: 8.0.1 + version: 8.0.2 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@types/three': specifier: ^0.178.1 version: 0.178.1 @@ -233,43 +234,43 @@ importers: version: link:../../packages/eslint-config autoprefixer: specifier: ^10.4.19 - version: 10.5.4(postcss@8.5.25) + version: 10.6.1(postcss@8.5.25) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@1.21.7) + version: 10.10.0(jiti@1.21.7) react-syntax-highlighter: specifier: ^15.6.1 - version: 15.6.6(react@19.2.8) + version: 15.6.6(react@19.3.0) tailwindcss: specifier: ^3.4.3 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) tailwindcss-elevation: specifier: ^2.0.0 - version: 2.0.0(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 2.0.0(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) typescript: specifier: ^5 - version: 5.9.3 + version: 5.6.3 typescript-eslint: specifier: ^8.63.0 - version: 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) + version: 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) apps/mastra: dependencies: '@mastra/client-js': specifier: ^1.31.0 - version: 1.42.4(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + version: 1.46.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) '@mastra/core': specifier: ^1.50.0 - version: 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + version: 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) '@mastra/observability': specifier: 1.16.1 - version: 1.16.1(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76) + version: 1.16.1(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76) '@mastra/posthog': specifier: ^1.1.4 - version: 1.3.6(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(zod@3.25.76) + version: 1.3.10(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(zod@3.25.76) zod: specifier: ^3.23.8 version: 3.25.76 @@ -282,16 +283,16 @@ importers: version: link:../../packages/core mastra: specifier: ^1.18.1 - version: 1.27.2(@hono/node-server@1.19.14(hono@4.13.5))(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(typescript@5.9.3)(zod@3.25.76) + version: 1.30.0(@hono/node-server@1.19.14(hono@4.13.8))(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(typescript@5.6.3)(zod@3.25.76) tsx: specifier: ^4.0.0 version: 4.23.13 typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) apps/next-example: dependencies: @@ -299,33 +300,33 @@ importers: specifier: workspace:* version: link:../../packages/next next: - specifier: 16.2.11 - version: 16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0) + specifier: 16.3.3 + version: 16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0) react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) zod: specifier: ^4.4.3 - version: 4.5.4 + version: 4.6.5 devDependencies: '@types/node': specifier: ^20 version: 20.19.43 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) dotenv-cli: specifier: ^7.4.2 version: 7.4.4 typescript: specifier: ^5 - version: 5.9.3 + version: 5.6.3 apps/playground: dependencies: @@ -346,28 +347,28 @@ importers: version: 2.1.1 lucide-react: specifier: ^0.503.0 - version: 0.503.0(react@19.2.8) + version: 0.503.0(react@19.3.0) next: - specifier: 16.2.11 - version: 16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0) + specifier: 16.3.3 + version: 16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0) prettier-plugin-tailwindcss: specifier: ^0.5.14 - version: 0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.9.6)(typescript@5.9.3))(prettier@3.9.6) + version: 0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.9.7)(typescript@5.6.3))(prettier@3.9.7) react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) react-icons: specifier: ^5.5.0 - version: 5.7.0(react@19.2.8) + version: 5.5.0(react@19.3.0) react-toastify: specifier: ^11.0.5 - version: 11.1.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 11.1.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) react-tooltip: specifier: ^5.29.1 - version: 5.30.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 5.30.1(react-dom@19.3.0(react@19.3.0))(react@19.3.0) zod: specifier: ^3.25.76 version: 3.25.76 @@ -377,43 +378,43 @@ importers: version: 3.3.7 '@playwright/test': specifier: ^1.58.2 - version: 1.62.1 + version: 1.63.0 '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/postcss': specifier: ^4 version: 4.3.3 '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@types/node': specifier: ^20 version: 20.19.43 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@useupup/eslint-config': specifier: workspace:* version: link:../../packages/eslint-config autoprefixer: specifier: ^10.4.19 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) tailwindcss: specifier: ^3.4.3 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ^5 - version: 5.9.3 + version: 5.6.3 typescript-eslint: specifier: ^8.63.0 - version: 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) + version: 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) apps/storybook-angular: dependencies: @@ -426,7 +427,7 @@ importers: devDependencies: '@angular-devkit/build-angular': specifier: ^19 - version: 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)))(jiti@2.7.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tsx@4.23.13)(typescript@5.6.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(yaml@2.9.0) + version: 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)))(jiti@2.7.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tsx@4.23.13)(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(yaml@2.9.1) '@angular/animations': specifier: ^19 version: 19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)) @@ -453,28 +454,28 @@ importers: version: 19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/compiler@19.2.25)(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(@angular/platform-browser@19.2.25(@angular/animations@19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)))(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))) '@storybook/addon-a11y': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-docs': specifier: ^9 - version: 9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-themes': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/angular': specifier: ^9 - version: 9.1.20(patch_hash=83db53ac924d0e2c6306ac0345c066abab5ced2d8ee36d5b65599e628531bacd)(073572bfd1eab8156726d001b4f96377) + version: 9.1.20(patch_hash=83db53ac924d0e2c6306ac0345c066abab5ced2d8ee36d5b65599e628531bacd)(9de10245a6373d9580b7fa48b1edd12e) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@useupup/storybook-config': specifier: workspace:* version: link:../../packages/storybook-config autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) msw: specifier: ^2.7.0 version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) @@ -483,16 +484,16 @@ importers: version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3)) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 rxjs: specifier: ^7.8.0 version: 7.8.2 storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ~5.6.0 version: 5.6.3 @@ -514,49 +515,49 @@ importers: devDependencies: '@preact/preset-vite': specifier: ^2.9.0 - version: 2.10.6(@babel/core@8.0.1)(preact@10.29.8)(rollup@3.30.0)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 2.10.6(@babel/core@8.0.5)(preact@10.29.8)(rollup@3.30.0)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@storybook/addon-a11y': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-docs': specifier: ^9 - version: 9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-themes': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/preact-vite': specifier: ^9 - version: 9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@useupup/storybook-config': specifier: workspace:* version: link:../../packages/storybook-config autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) msw: specifier: ^2.7.0 - version: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) + version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) msw-storybook-addon: specifier: ^2.0.4 - version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3)) + version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3)) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vite: specifier: ^7 - version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) apps/storybook-react: dependencies: @@ -568,62 +569,62 @@ importers: version: link:../../packages/react react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) devDependencies: '@storybook/addon-a11y': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-docs': specifier: ^9 - version: 9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-themes': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/react-vite': specifier: ^9 - version: 9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(rollup@3.30.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(typescript@5.9.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(rollup@3.30.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@useupup/storybook-config': specifier: workspace:* version: link:../../packages/storybook-config autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) msw: specifier: ^2.7.0 - version: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) + version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) msw-storybook-addon: specifier: ^2.0.4 - version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3)) + version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3)) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) apps/storybook-svelte: dependencies: @@ -635,62 +636,62 @@ importers: version: link:../../packages/svelte svelte: specifier: ^5.0.0 - version: 5.57.0(@typescript-eslint/types@8.69.0) + version: 5.57.0(@typescript-eslint/types@8.70.0) devDependencies: '@storybook/addon-a11y': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-docs': specifier: ^9 - version: 9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-themes': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/svelte-vite': specifier: ^9 - version: 9.1.20(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@sveltejs/vite-plugin-svelte': specifier: ^6.0.0 - version: 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@useupup/storybook-config': specifier: workspace:* version: link:../../packages/storybook-config autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) msw: specifier: ^2.7.0 - version: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) + version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) msw-storybook-addon: specifier: ^2.0.4 - version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3)) + version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3)) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) svelte-check: specifier: ^4.1.0 - version: 4.7.6(picomatch@4.0.7)(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3) + version: 4.7.6(picomatch@4.0.7)(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vite: specifier: ^7 - version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) apps/storybook-vanilla: dependencies: @@ -703,52 +704,52 @@ importers: devDependencies: '@storybook/addon-a11y': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-docs': specifier: ^9 - version: 9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-themes': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/html-vite': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@useupup/storybook-config': specifier: workspace:* version: link:../../packages/storybook-config autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) msw: specifier: ^2.7.0 - version: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) + version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) msw-storybook-addon: specifier: ^2.0.4 - version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3)) + version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3)) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vite: specifier: ^7 - version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) apps/storybook-vue: dependencies: @@ -760,65 +761,65 @@ importers: version: link:../../packages/vue vue: specifier: ^3.4.0 - version: 3.5.42(typescript@5.9.3) + version: 3.5.42(typescript@5.6.3) devDependencies: '@storybook/addon-a11y': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-docs': specifier: ^9 - version: 9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/addon-themes': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) '@storybook/vue3-vite': specifier: ^9 - version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(vue@3.5.42(typescript@5.9.3)) + version: 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(vue@3.5.42(typescript@5.6.3)) '@tailwindcss/forms': specifier: ^0.5.7 - version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@tailwindcss/typography': specifier: ^0.5.16 - version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) '@useupup/storybook-config': specifier: workspace:* version: link:../../packages/storybook-config autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) msw: specifier: ^2.7.0 - version: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) + version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) msw-storybook-addon: specifier: ^2.0.4 - version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3)) + version: 2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3)) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vite: specifier: ^7 - version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) vue-tsc: specifier: ^2.0.0 - version: 2.2.12(typescript@5.9.3) + version: 2.2.12(typescript@5.6.3) packages/angular: dependencies: '@tanstack/virtual-core': specifier: ^3.13.0 - version: 3.17.8 + version: 3.17.11 '@useupup/core': specifier: workspace:* version: link:../core @@ -828,13 +829,13 @@ importers: devDependencies: '@analogjs/vite-plugin-angular': specifier: ^1.10.0 - version: 1.22.5(47674aaa8bd722cf95da225b75b3b84f) + version: 1.22.5(4a0966a570ed98a9cff00a91974d9a01) '@analogjs/vitest-angular': specifier: ^1.10.0 - version: 1.22.5(@analogjs/vite-plugin-angular@1.22.5(47674aaa8bd722cf95da225b75b3b84f))(@angular-devkit/architect@0.2003.28(chokidar@4.0.3))(vitest@4.1.11) + version: 1.22.5(@analogjs/vite-plugin-angular@1.22.5(4a0966a570ed98a9cff00a91974d9a01))(@angular-devkit/architect@0.2003.28(chokidar@4.0.3))(vitest@4.1.11) '@angular/build': specifier: ^19.0.0 - version: 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@4.3.3)(terser@5.46.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0) + version: 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@4.3.3)(terser@5.46.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) '@angular/common': specifier: ^19.0.0 version: 19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2) @@ -864,7 +865,7 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jsdom: specifier: 22.1.0 version: 22.1.0 @@ -873,10 +874,10 @@ importers: version: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3) postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 postcss-cli: specifier: ^11.0.1 - version: 11.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13) + version: 11.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13) rxjs: specifier: ^7.8.0 version: 7.8.2 @@ -885,10 +886,10 @@ importers: version: 5.6.3 vite: specifier: ^7 - version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) zone.js: specifier: ^0.14.0 version: 0.14.10 @@ -900,14 +901,14 @@ importers: version: 2.1.1 intl-messageformat: specifier: ^11.2.0 - version: 11.2.14 + version: 11.2.15 tailwind-merge: specifier: ^3.6.0 - version: 3.6.0 + version: 3.7.0 devDependencies: '@types/node': specifier: ^22 - version: 22.20.1 + version: 22.20.3 '@useupup/eslint-config': specifier: workspace:* version: link:../eslint-config @@ -916,16 +917,16 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@22.20.1)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@22.20.1)(typescript@5.9.3))(vite@8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@22.20.3)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@22.20.3)(typescript@5.6.3))(vite@8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) optionalDependencies: libheif-js: specifier: ^1.19.8 @@ -938,35 +939,35 @@ importers: dependencies: '@eslint-community/eslint-plugin-eslint-comments': specifier: ^4.7.2 - version: 4.7.2(eslint@10.9.1(jiti@2.7.0)) + version: 4.8.1(eslint@10.10.0(jiti@2.7.0)) '@eslint/js': specifier: ^10.0.1 - version: 10.0.1(eslint@10.9.1(jiti@2.7.0)) + version: 10.0.1(eslint@10.10.0(jiti@2.7.0)) eslint-plugin-oxlint: specifier: ^1.72.0 - version: 1.81.0(oxlint@1.81.0) + version: 1.83.0(oxlint@1.83.0) eslint-plugin-react-hooks: specifier: ^7.1.1 - version: 7.1.1(eslint@10.9.1(jiti@2.7.0)) + version: 7.1.1(eslint@10.10.0(jiti@2.7.0)) globals: specifier: ^17.7.0 version: 17.12.0 typescript-eslint: specifier: ^8.63.0 - version: 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) + version: 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) devDependencies: eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) vitest: - specifier: 4.1.2 - version: 4.1.2(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: 4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/interactive-example: dependencies: '@mastra/client-js': specifier: ^1.31.0 - version: 1.42.4(express@4.22.2)(zod@4.5.4) + version: 1.46.0(express@4.22.3)(zod@4.6.5) '@useupup/core': specifier: workspace:* version: link:../core @@ -975,14 +976,14 @@ importers: version: link:../react lucide-react: specifier: ^0.503.0 - version: 0.503.0(react@19.2.8) + version: 0.503.0(react@19.3.0) pako: specifier: ^2.1.0 version: 2.2.0 devDependencies: '@testing-library/react': specifier: ^16.0.1 - version: 16.3.3(@testing-library/dom@10.4.0)(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 16.3.3(@testing-library/dom@10.4.0)(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) '@testing-library/user-event': specifier: ^14.6.1 version: 14.6.7(@testing-library/dom@10.4.0) @@ -991,25 +992,25 @@ importers: version: 2.0.4 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) jsdom: specifier: 22.1.0 version: 22.1.0 react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/next: dependencies: @@ -1028,10 +1029,10 @@ importers: version: 20.19.43 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@useupup/eslint-config': specifier: workspace:* version: link:../eslint-config @@ -1040,28 +1041,28 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jsdom: specifier: 22.1.0 version: 22.1.0 next: - specifier: 16.2.11 - version: 16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0) + specifier: 16.3.3 + version: 16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0) react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/preact: dependencies: @@ -1080,10 +1081,10 @@ importers: version: 20.19.43 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@useupup/eslint-config': specifier: workspace:* version: link:../eslint-config @@ -1092,13 +1093,13 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jsdom: specifier: 22.1.0 version: 22.1.0 konva: specifier: ^10.3.0 - version: 10.3.2 + version: 10.5.0 preact: specifier: ^10.29.2 version: 10.29.8(preact-render-to-string@6.7.0) @@ -1107,65 +1108,65 @@ importers: version: 6.7.0(preact@10.29.8) react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) react-filerobot-image-editor: specifier: ^4.9.1 - version: 4.9.1(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react-konva@19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(react@19.2.8)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)) + version: 4.9.1(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react-konva@19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0))(react@19.3.0)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)) react-konva: specifier: ^19.2.4 - version: 19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) styled-components: specifier: '>=5.0.0' - version: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.6.0 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/react: dependencies: '@tanstack/react-virtual': specifier: ^3.13.23 - version: 3.14.10(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 3.14.13(react-dom@19.3.0(react@19.3.0))(react@19.3.0) '@useupup/core': specifier: workspace:* version: link:../core konva: specifier: ^10.3.0 - version: 10.3.2 + version: 10.5.0 pako: specifier: ^2.1.0 version: 2.2.0 react: specifier: ^19.2.0 - version: 19.2.8 + version: 19.3.0 react-dom: specifier: ^19.2.0 - version: 19.2.8(react@19.2.8) + version: 19.3.0(react@19.3.0) react-filerobot-image-editor: specifier: ^4.9.1 - version: 4.9.1(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react-konva@19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(react@19.2.8)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)) + version: 4.9.1(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react-konva@19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0))(react@19.3.0)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)) react-konva: specifier: ^19.2.4 - version: 19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) react-webcam: specifier: ^7.2.0 - version: 7.2.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 7.2.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) styled-components: specifier: '>=5.0.0' - version: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) devDependencies: '@testing-library/react': specifier: ^16.0.1 - version: 16.3.3(@testing-library/dom@10.4.0)(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + version: 16.3.3(@testing-library/dom@10.4.0)(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) '@testing-library/user-event': specifier: ^14.6.1 version: 14.6.7(@testing-library/dom@10.4.0) @@ -1177,10 +1178,10 @@ importers: version: 2.0.4 '@types/react': specifier: ^19 - version: 19.2.18 + version: 19.3.0 '@types/react-dom': specifier: ^19 - version: 19.2.5(@types/react@19.2.18) + version: 19.3.0(@types/react@19.3.0) '@useupup/eslint-config': specifier: workspace:* version: link:../eslint-config @@ -1192,7 +1193,7 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jest-axe: specifier: ^10.0.0 version: 10.0.0 @@ -1201,28 +1202,28 @@ importers: version: 22.1.0 postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 postcss-cli: specifier: ^11.0.1 - version: 11.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13) + version: 11.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/server: dependencies: '@aws-sdk/client-s3': specifier: ^3.689.0 - version: 3.1125.0 + version: 3.1134.0 '@aws-sdk/s3-request-presigner': specifier: ^3.689.0 - version: 3.1125.0 + version: 3.1134.0 '@useupup/core': specifier: workspace:* version: link:../core @@ -1238,51 +1239,51 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/storybook-config: dependencies: msw: specifier: ^2.7.0 - version: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) + version: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) devDependencies: storybook: specifier: ^9 - version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/svelte: dependencies: '@tanstack/svelte-virtual': specifier: ^3.13.0 - version: 3.13.36(svelte@5.57.0(@typescript-eslint/types@8.69.0)) + version: 3.13.39(svelte@5.57.0(@typescript-eslint/types@8.70.0)) '@useupup/core': specifier: workspace:* version: link:../core devDependencies: '@sveltejs/package': specifier: ^2.3.0 - version: 2.5.8(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3) + version: 2.5.8(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3) '@sveltejs/vite-plugin-svelte': specifier: ^6.0.0 - version: 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + version: 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@testing-library/svelte': specifier: ^5.2.0 - version: 5.4.2(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(vitest@4.1.11) + version: 5.4.2(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(vitest@4.1.11) '@useupup/eslint-config': specifier: workspace:* version: link:../eslint-config @@ -1294,52 +1295,52 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jsdom: specifier: 22.1.0 version: 22.1.0 postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 postcss-cli: specifier: ^11.0.1 - version: 11.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13) + version: 11.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13) svelte: specifier: ^5.0.0 - version: 5.57.0(@typescript-eslint/types@8.69.0) + version: 5.57.0(@typescript-eslint/types@8.70.0) svelte-check: specifier: ^4.1.0 - version: 4.7.6(picomatch@4.0.7)(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3) + version: 4.7.6(picomatch@4.0.7)(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vite: specifier: ^7 - version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + version: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/tailwind-config: dependencies: '@tailwindcss/container-queries': specifier: ^0.1.1 - version: 0.1.1(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)) + version: 0.1.1(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)) autoprefixer: specifier: ^10.4.20 - version: 10.5.4(postcss@8.5.26) + version: 10.6.1(postcss@8.5.28) postcss-prefix-selector: specifier: ^2.1.1 - version: 2.2.0(postcss@8.5.26) + version: 2.2.1(postcss@8.5.28) tailwindcss: specifier: ^3.4.17 - version: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + version: 3.4.19(tsx@4.23.13)(yaml@2.9.1) packages/vanilla: dependencies: '@tanstack/virtual-core': specifier: ^3.13.0 - version: 3.17.8 + version: 3.17.11 '@useupup/core': specifier: workspace:* version: link:../core @@ -1361,31 +1362,31 @@ importers: version: 4.1.11(vitest@4.1.11) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jsdom: specifier: 22.1.0 version: 22.1.0 postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 postcss-cli: specifier: ^11.0.1 - version: 11.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13) + version: 11.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) packages/vue: dependencies: '@tanstack/vue-virtual': specifier: ^3.13.0 - version: 3.13.36(vue@3.5.42(typescript@5.9.3)) + version: 3.13.39(vue@3.5.42(typescript@5.6.3)) '@useupup/core': specifier: workspace:* version: link:../core @@ -1398,43 +1399,43 @@ importers: version: link:../tailwind-config '@vitejs/plugin-vue': specifier: ^5.0.0 - version: 5.2.4(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(vue@3.5.42(typescript@5.9.3)) + version: 5.2.4(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(vue@3.5.42(typescript@5.6.3)) '@vitest/coverage-v8': specifier: ^4.1.2 version: 4.1.11(vitest@4.1.11) '@vue/test-utils': specifier: ^2.4.6 - version: 2.5.0(@vue/compiler-dom@3.5.42)(@vue/server-renderer@3.5.42)(vue@3.5.42(typescript@5.9.3)) + version: 2.5.1(@vue/compiler-dom@3.5.42)(@vue/server-renderer@3.5.42)(vue@3.5.42(typescript@5.6.3)) eslint: specifier: ^10.6.0 - version: 10.9.1(jiti@2.7.0) + version: 10.10.0(jiti@2.7.0) jsdom: specifier: 22.1.0 version: 22.1.0 postcss: specifier: '>=8.5.18' - version: 8.5.26 + version: 8.5.28 postcss-cli: specifier: ^11.0.1 - version: 11.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13) + version: 11.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13) tsup: specifier: ^8.4.0 - version: 8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0) + version: 8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) typescript: specifier: ^5.3.2 - version: 5.9.3 + version: 5.6.3 unplugin-vue: specifier: ^7.2.0 - version: 7.2.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(vue@3.5.42(typescript@5.9.3))(yaml@2.9.0) + version: 7.2.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(vue@3.5.42(typescript@5.6.3))(yaml@2.9.1) vitest: - specifier: ^4.1.2 - version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + specifier: ^4.1.11 + version: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) vue: specifier: ^3.4.0 - version: 3.5.42(typescript@5.9.3) + version: 3.5.42(typescript@5.6.3) vue-tsc: specifier: ^2.0.0 - version: 2.2.12(typescript@5.9.3) + version: 2.2.12(typescript@5.6.3) packages: @@ -1477,12 +1478,6 @@ packages: peerDependencies: zod: ^3.23.8 - '@ai-sdk/provider-utils@3.0.30': - resolution: {integrity: sha512-NCJ9JKow5ENAgEZxzvEvF20thwDiH+hutvzmrUDbloRX0azpJHNst8+7pZIVryYhLM9wgpT5/ShTSjPTFhkxEQ==} - engines: {node: '>=18'} - peerDependencies: - zod: ^3.25.76 || ^4.1.8 - '@ai-sdk/provider-utils@4.0.40': resolution: {integrity: sha512-OL5IrpUm9Y8Dwy+w/vvFwPotS6m52O9W0op2oXgXdCROMJIBalBI0oro6OIBYkPxvm5Xg02GSkoQN25RlR0bnw==} engines: {node: '>=18'} @@ -1783,68 +1778,68 @@ packages: '@angular/animations': optional: true - '@aws-sdk/checksums@3.1000.29': - resolution: {integrity: sha512-Dtu0gr4dnATZAPwEYbpCsG+MpLM7OAliy2gTepEFQwl1vZ6DL3QMH2FveMa3HLvPsOdhJsPRB3KtxVhph9T75A==} + '@aws-sdk/checksums@3.1001.0': + resolution: {integrity: sha512-6uTniZc87q+B5eXouGTl+7Tmc482rEeCcvxpsvREP8EfF0gvloRZ41UOA9sbSJlyy8TbqIBXb3kKfKarEArUQA==} engines: {node: '>=20.0.0'} - '@aws-sdk/client-s3@3.1125.0': - resolution: {integrity: sha512-l0npObtjYgqDfUHiifnWGFuAuMVq5r4AVf4C+jY+thJ/2iAr/eHqAjBR4clbmXxSoJ5w3+ZFGRPyci/CCkUoyg==} + '@aws-sdk/client-s3@3.1134.0': + resolution: {integrity: sha512-dHgbuWMkladVNpR5gEQ7K9ub20w/hcf9IJXtMr+S3/rYpr6Z4gWUEX1seAPj00nAxJqtAaYvX3wdr2BVukZXXQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/core@3.977.9': - resolution: {integrity: sha512-reqPFEQrZxDZpeGj4PFMepBeR5LGYHRqq/L0motTzgFkCRBA4rFdaVXDSLYyGHhxVz7sT2PDnPN9CluGSfgyJA==} + '@aws-sdk/core@3.978.0': + resolution: {integrity: sha512-2yX9LUmxPklVjSGTb8dfnWRJSiFQ3TeH2nn7G1mdKHTfnabzF0+gfrS8rYfLWmZrQ8A3mEcxMJjRc51dL5KWaA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-env@3.972.70': - resolution: {integrity: sha512-H404B7dJl2mCrBqahDEYsanB0xhdDp6tXnXcTUnXmmpy2Q3J0Ho0bUajZ2jr/RdwzCyS59Gi8xXIFwPLGBl6Uw==} + '@aws-sdk/credential-provider-env@3.972.71': + resolution: {integrity: sha512-JN+JHruYZw3GUZB8YGAlDk4wTDPOEAEEdEzj5nS0xodWR4smzHsN7PnK2j6IeOsDIj2aqua5DSbhXl9Gtf90FQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-http@3.972.72': - resolution: {integrity: sha512-X98zYOrVOeuosCX+6ktf29FC2N2GHPLia7qv6mzPzTc+RPAuHWCDS++Z6JK7eGYqb/v6uaW7bAXaOvDBfol+0w==} + '@aws-sdk/credential-provider-http@3.972.73': + resolution: {integrity: sha512-uyYYnJOnlis8uQzaYGPd7N1JoioCoNpXgnkXYixsWJXHXgXyYi8WXJSDfofxJeWfQIGWLe2Nwyq60Uc7MZdVOg==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-ini@3.973.15': - resolution: {integrity: sha512-Rykg6s5ceBuynMOGWgoowO4N+27JfnqXAnVaSunZl0hOO1XodSrxGNz6sCEbnmS0lAfQZDKyb3fbr46gSuv6Sg==} + '@aws-sdk/credential-provider-ini@3.973.16': + resolution: {integrity: sha512-i++ly+0Uxa+u3ebSSyr0S/3CFhFJDxCXT3+Zj+mW2bXenEx5bKGCdTIKFu39SgXBNhWDjex/8cXUx9MUTMCrTw==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-login@3.972.77': - resolution: {integrity: sha512-Jb59xfEISoN5mmbnA+HYqdtrSX3CgCtJoof+V5D8/TgUI56W63GEEd5Y58WijU3Ou6+WEgaLD1feVzaRXV5IDQ==} + '@aws-sdk/credential-provider-login@3.972.78': + resolution: {integrity: sha512-eUtswnXu0+Ii9ieRK+0L7aPFV3Z/dnW2VntJzjBP9xs8s+8p5nBNuymIXtXwZ+5r5+XJP3e32nMkuZ/r0HozEA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-node@3.972.82': - resolution: {integrity: sha512-znDkEOGXB8W3kG1LJUKP3foBZY/9qLM0eil/DxWXSp37XsdsRLQHE/d/OaCGGVgKpA6znR38h/+INk8do1FjiA==} + '@aws-sdk/credential-provider-node@3.972.83': + resolution: {integrity: sha512-jdso7ejzfRnatxMUZK4S/U6KbaDPCvfIV4XL+IQAPFDBt5rj5Fq595euqlK8Le4lNCMFR9oUpt+1l0aMgaayOQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-process@3.972.70': - resolution: {integrity: sha512-2ry03fGRJr4sV3jI+ocjj5JqALnFD6ymM5KiNCDZMvq8bX2GSbE0vji4aM43TVCl2nXqqLRZaUxdq/KeWRAY4Q==} + '@aws-sdk/credential-provider-process@3.972.71': + resolution: {integrity: sha512-lYmXJa4gvq4xN1lrT5NiP5vIYYKcGWAdj8y+8o6dlcateB5eF3Dn8DtmjjHKfMBrTPAMr2pebIiX/UOj8c1/UA==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-sso@3.973.14': - resolution: {integrity: sha512-jkhg/8ocAAoc0RFyLMhCw+/zZh7gystQgd4F4hznNa8P4Cc501PQmxd+jGLiMHodPJ+7Zv/3znM62gZojyasmA==} + '@aws-sdk/credential-provider-sso@3.973.15': + resolution: {integrity: sha512-6Jhcf4v0pSFdjk1EW2kvzuEBKD+UZ2uNcHUIglKKLndD20YhvkL2kdmDOV5/j4mYuWWwe/a1FQ1aomU86/Cg5Q==} engines: {node: '>=20.0.0'} - '@aws-sdk/credential-provider-web-identity@3.972.76': - resolution: {integrity: sha512-d3AGyVu759PGr35mEB2s22xxlNEA5rpdxtSPJthfPFJvoQ8dt357iVPECqWfUxXp1toJAvKmbtcIYVGigaGsCA==} + '@aws-sdk/credential-provider-web-identity@3.972.77': + resolution: {integrity: sha512-uylIQSUWpfLuH2LovxEEfwzJGM/SabLOfLMg6YXu/E8jJEKUdpdILCVCQCdFvHyu/7dLJOHPMfrSwduxO56NkQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/middleware-sdk-s3@3.972.75': - resolution: {integrity: sha512-wMIsNumRVKaNMKhvU/s9VrdEwE8S6gSzXp4RygFG5BEMnGkkXf8cjh8zf7cKJBpUDpqTWqwbz5isEgp9rH6Lng==} + '@aws-sdk/middleware-sdk-s3@3.972.76': + resolution: {integrity: sha512-NfnTkVUTBKTBuBgqaapFK9r3YdkKt1b2oRvgLzZq91bwNKh6ZS0S7sEcheguttREaL4iyfs/xQnqD7Z7AsWSsA==} engines: {node: '>=20.0.0'} - '@aws-sdk/nested-clients@3.997.44': - resolution: {integrity: sha512-NhEgryjlBF9w38ZXqGymQV28IhkYa1mKhlbYnqIis57AYwWGVYfUPgg/qC2rLRqOUfblxx++irvju10kVTa8Vw==} + '@aws-sdk/nested-clients@3.997.45': + resolution: {integrity: sha512-mooq9Q+jLa18VoM7HouczmslZU60iiB0aKc/Ztnq/luIL1ud0z4DnYprLR/ZO1gp331S9tJctM1HZr7u6YKBXQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/s3-request-presigner@3.1125.0': - resolution: {integrity: sha512-WGK4s9XWk57ZvzfUw0j1m9xgKqCElZHVp5P80MQJCGV8A3Rpy2fAjDKrfauXQvBRHdECpijXpajpI/+X8Tsv+A==} + '@aws-sdk/s3-request-presigner@3.1134.0': + resolution: {integrity: sha512-75DC3biOXXmSWqCN2hwJmhMPjDdgc1twjNJEknuWhY9M/E9eFIQufXkwOQx5raNTg6P/FbCgk9tp4y2SZ7vZFA==} engines: {node: '>=20.0.0'} '@aws-sdk/signature-v4-multi-region@3.996.46': resolution: {integrity: sha512-L+2xZTye/2T96f3lwCws0Zw6GG2JHZW9e8FpVgGBeeExSKyeoZ6CWRpBml/7DNiK/O26jrgPM9F+Ay8VkgzUWQ==} engines: {node: '>=20.0.0'} - '@aws-sdk/token-providers@3.1116.0': - resolution: {integrity: sha512-ygIivKqh8aHzNkucOCXHyIBgBpLPfrSI0mCqXF+vLBsPTUKqj0VSqAY0GFPe7lQl4HntjOcQ+KSyS7oUV2C54Q==} + '@aws-sdk/token-providers@3.1129.0': + resolution: {integrity: sha512-Sbl3rpzQdsG4ZK2zh0JWUYyZPKKorJlVOddA2T0DVbKJFrsW8J6wgnslxxUH04+WaBMr4A1HzJZvZX0xUvkniA==} engines: {node: '>=20.0.0'} '@aws-sdk/types@3.974.5': @@ -1875,8 +1870,8 @@ packages: resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==} engines: {node: '>=6.9.0'} - '@babel/compat-data@8.0.0': - resolution: {integrity: sha512-DOjnob/cXOUgDOozCDeq/aK2p5y8dUIVdf6tNhEV1HQRd6I8aQ4f4fbtHRVEvb6lP3BGomrKHiS8ICAASSVQSw==} + '@babel/compat-data@8.0.5': + resolution: {integrity: sha512-YLsYoQMvL8l8WrGpN3Zj7O1wK5LEBN+cQtux7BcuHyxIXve724XG+zuJ1n3U1cUweRtTzQOA4IHbuQw3N34SZw==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/core@7.26.10': @@ -1891,8 +1886,8 @@ packages: resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} engines: {node: '>=6.9.0'} - '@babel/core@8.0.1': - resolution: {integrity: sha512-5FgxM4dLQpMJHSiVATk8foW263dVHQHBVpXYiimNECVWG01f4nFyEbQixeT6Mwvg7TayREJ2gpKl3o2RoMdnqw==} + '@babel/core@8.0.5': + resolution: {integrity: sha512-2/oWkgTbBYoqioCWAE4XJobOrzwxTDa5/XjDP3tJ1BhDr/owcd9qnXBp4xc3/2G5X4bvXM04nrxbRJxFcXAxFQ==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/generator@7.26.10': @@ -1907,8 +1902,8 @@ packages: resolution: {integrity: sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==} engines: {node: '>=6.9.0'} - '@babel/generator@8.0.0': - resolution: {integrity: sha512-NT9NrVwJsbSV6Y2FSstWa71EETOnzrjkL5/wX3D2mYHtKM+qvqB1DvR4D0Setb/gDBsHzRICifwEWMO8CnTF6g==} + '@babel/generator@8.0.5': + resolution: {integrity: sha512-f/TuhuMAxJqhwxEGNsJrswuG9VHmh0oNFoQoo6TbpgtFAz9wYZXcTAcWZMHfp7ljesr0RG04bp3Aos9GI59L7w==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/helper-annotate-as-pure@7.25.9': @@ -1927,8 +1922,8 @@ packages: resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==} engines: {node: '>=6.9.0'} - '@babel/helper-compilation-targets@8.0.0': - resolution: {integrity: sha512-JwculLABZvyPvyLBpwU/E/IbH2uM3mnxNtIJpxnIfb24y1PrdVxK5Dqjle4DpgqpGRnwgC7G8IkzPdSXZrO1Ew==} + '@babel/helper-compilation-targets@8.0.5': + resolution: {integrity: sha512-Qk8ahMGooH5mz6uuhoDvfZGkUf/Mf3RTBucVVl4MKx4LKMTv872TeW8O92h15iVtlN8wAROBIpI1aV6x1z0LCQ==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/helper-create-class-features-plugin@7.28.6': @@ -1937,8 +1932,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-create-class-features-plugin@8.0.1': - resolution: {integrity: sha512-++t3ZktzlLmASAxIlxeXQK9Z2YwUafYGYcvGBFevqOqt16HozVHStUoQvWD09fzAZOb/uJGpUTBuGK41AJAuOA==} + '@babel/helper-create-class-features-plugin@8.0.5': + resolution: {integrity: sha512-ckUE7tmolBbW4QV02lD874sWSPy8da2A09i/h0qS+IWolR+WiNhpq7C/rHZm00uOIkUb0Cp6+0Cy1ku/wj5uQQ==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: '@babel/core': ^8.0.0 @@ -1970,8 +1965,8 @@ packages: resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} engines: {node: '>=6.9.0'} - '@babel/helper-member-expression-to-functions@8.0.0': - resolution: {integrity: sha512-xkXrMbtk87Gk7+oKBVmBc6EORg/Qwx++AHESldmHkpvG8wgccdhJJFwrzqlF382Fk8wfXhJHWE/g/43QvEGNPQ==} + '@babel/helper-member-expression-to-functions@8.0.5': + resolution: {integrity: sha512-GLe05QD98BkNFTkjaqeqF9QSRoHLKrrB4tpoplyQuuPrQJ72rtmkM4wvqJLX/sjZPqkbK5MUYSsuUTqdJoOVjA==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/helper-module-imports@7.28.6': @@ -1988,8 +1983,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/helper-module-transforms@8.0.1': - resolution: {integrity: sha512-UgAhl1kqiW5ciE0yCXqqvnb4H2n3IELJ7lIIQRezwDPilPEZX5i+Rvbja9MFTkwUn2biEiSMeV31aUzR4Lwakw==} + '@babel/helper-module-transforms@8.0.5': + resolution: {integrity: sha512-lUsSqMD0l5cJKl+3vlTV/hPDA/IvNkcHWVI3zFud2Vur+C9bCKdpqbpkN9eABembedbdWwF0qow6nbdIpNlpcw==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: '@babel/core': ^8.0.0 @@ -2092,8 +2087,8 @@ packages: resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==} engines: {node: '>=6.9.0'} - '@babel/helpers@8.0.0': - resolution: {integrity: sha512-wfbi91pM3py96oIiJEz7qIpyXDytgr9zQC1HEWwlGNVRAEmItuU/0a41ZUKu1sJGyhhOIpc4t5vk4PYzt8wpsg==} + '@babel/helpers@8.0.5': + resolution: {integrity: sha512-fQtPOXjYOYv85PIdwotp2TJGVYOycX0PQq+l844fFAxOULtBy8BVF35GyeueX0r4KvDthqPH5xAI1clQPk/2uA==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/parser@7.29.0': @@ -2116,6 +2111,11 @@ packages: engines: {node: ^22.18.0 || >=24.11.0} hasBin: true + '@babel/parser@8.0.5': + resolution: {integrity: sha512-51RXvQNFakaS0bTpYiGkxNbUVwkPO4kONv6EVLorZABxsx+KZ6Z7uSYvi/wmKS/+X+rfj9RvOw0/ZNh+cmI0Rw==} + engines: {node: ^22.18.0 || >=24.11.0} + hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5': resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==} engines: {node: '>=6.9.0'} @@ -2512,8 +2512,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@8.0.1': - resolution: {integrity: sha512-0Svqp3413Eg0GElldykF/T7SNsxQO5YVGD70fZyAdZTnX8WRgcopmbiU7GTa5xY5ZnJcEpNbfns8/GjX+/1yeA==} + '@babel/plugin-transform-typescript@8.0.5': + resolution: {integrity: sha512-o6XW6OngFfpEQat3J1MxUDEd94Rjh80BZQqWmOXa9YTtoyDnk8Zim3NXcx3RTgGiOgkoayCMYp+Xk5NxEmzoMg==} engines: {node: ^22.18.0 || >=24.11.0} peerDependencies: '@babel/core': ^8.0.0 @@ -2591,8 +2591,8 @@ packages: resolution: {integrity: sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==} engines: {node: '>=6.9.0'} - '@babel/traverse@8.0.4': - resolution: {integrity: sha512-bZnmqzGG8UZneG1lLxBoWIH0G6Gr1D846Yu4/3XnY6FhCndMR49u26nTY08u/dAxWmLWF9vGQOuC+84FfIUoeg==} + '@babel/traverse@8.0.5': + resolution: {integrity: sha512-XFfnuvapSc/vJOcUO7kwORSvpBIvraofKEZ2dhT0PjiF21BRCD7YbAFC8UEeDJNeLoQz82/gVqzgX5hCzkCbdg==} engines: {node: ^22.18.0 || >=24.11.0} '@babel/types@7.29.0': @@ -2607,10 +2607,20 @@ packages: resolution: {integrity: sha512-eY+Yn3dCqTGmyiq2QRU66lA5FL8lqqqvecHt0fF3uHONIa7ToYsaCiWV8lOKqAs0Rb2SjixiKFROngnulPtt2g==} engines: {node: ^22.18.0 || >=24.11.0} + '@babel/types@8.0.5': + resolution: {integrity: sha512-eVdMqi3ej5aHhyQ2Si6yD2cAWeV8FJK9UrhK5aL0Sd8hu5GhT+YswhVNbVheOGVYMg8kuGuMaUpkB3stjj4z8A==} + engines: {node: ^22.18.0 || >=24.11.0} + '@bcoe/v8-coverage@1.0.2': resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} engines: {node: '>=18'} + '@cacheable/memory@2.2.0': + resolution: {integrity: sha512-CTLKqLItRCEixEAewD3/j9DB3/o96gpTPD4eJ1v+DGOlxZRZncRQkGYqqnAGCscYd6RNeXfGeiuCphsPtqyIfQ==} + + '@cacheable/utils@2.5.0': + resolution: {integrity: sha512-buipgOVDkkPXNR5+xBpDw7Zk2n1EvU7qBJCNUcL7rhQ//kfpOXPAvQ511Os0vpLYJ1pZnvudNytkQt2hst3wqA==} + '@changesets/apply-release-plan@7.1.1': resolution: {integrity: sha512-9qPCm/rLx/xoOFXIHGB229+4GOL76S4MC+7tyOuTsR6+1jYlfFDQORdvwR5hDA6y4FL2BPt3qpbcQIS+dW85LA==} @@ -3491,8 +3501,8 @@ packages: cpu: [x64] os: [win32] - '@eslint-community/eslint-plugin-eslint-comments@4.7.2': - resolution: {integrity: sha512-LF03qURSwEWm2dz5wtdDCzNk+7Opl0X7q6I3undsaIuNsEiNvRV3BCtqu14Q/6Pzg1tBj44LcxpW2EpSLZStZw==} + '@eslint-community/eslint-plugin-eslint-comments@4.8.1': + resolution: {integrity: sha512-vafrdi15JHBFh1qWOAucyJwlEEuhdoMof28jOdKdgnwZ7bXwd6v4wzHYSmAVLwnx0yc7bqAtfJ0EZQV1WAzV/Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 @@ -3542,8 +3552,8 @@ packages: resolution: {integrity: sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} - '@eslint/plugin-kit@0.7.2': - resolution: {integrity: sha512-+CNAzxglkrpNf/kKywqQfk74QjtceuOE7Qm+AF8miRvPF/wmmK5+OJOgVh3AVTT3RP2mH3+FOaxlE5v72owk0A==} + '@eslint/plugin-kit@0.7.3': + resolution: {integrity: sha512-IkO+/KEUvwbVpiURZg+P7zF74z5Jxe0UgJxVni+RtoHQ6IZieXaO02kmadomap/q+l6bc/jdPGGqTjhuZnuz1Q==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} '@expo/devcert@1.2.1': @@ -3585,8 +3595,8 @@ packages: '@formatjs/icu-messageformat-parser@2.11.4': resolution: {integrity: sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw==} - '@formatjs/icu-messageformat-parser@3.5.17': - resolution: {integrity: sha512-cN9jhVqT7u0K9tix43fhjoUwL0nazyW6zsNIXs2QdPADr+nurPfYyssUiMqcSCGlPcCiqnYVxgSn7zBSuI+5Bg==} + '@formatjs/icu-messageformat-parser@3.5.18': + resolution: {integrity: sha512-wX1efcL8d7K5QapOTRsP/OLTA/kpwe4LwqWyNxDNg5iRs8i9jJbCyxB5P8jc4KOW5oiLzz2DJr+BRY5xMV9+bA==} '@formatjs/icu-skeleton-parser@1.8.16': resolution: {integrity: sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ==} @@ -3639,136 +3649,145 @@ packages: resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} engines: {node: '>=18'} - '@img/sharp-darwin-arm64@0.34.5': - resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-darwin-arm64@0.35.4': + resolution: {integrity: sha512-Uhfl4V4lhP2nbUVF9+hyH1+luj86f1gUFeo8ALYxFoULoU+G87D43BfeMP8XHsk9boxAnCY/bf2EHwhA7MuGsA==} + engines: {node: '>=20.9.0'} cpu: [arm64] os: [darwin] - '@img/sharp-darwin-x64@0.34.5': - resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-darwin-x64@0.35.4': + resolution: {integrity: sha512-hWniXY3bG5qKpkKrAwPe4y+VTPmf086YQAnkxWh7uA1YrlRouWGa0M0Mxj3ZjnXFkv7/TD1bTy9lGUK26vRvWw==} + engines: {node: '>=20.9.0'} cpu: [x64] os: [darwin] - '@img/sharp-libvips-darwin-arm64@1.2.4': - resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} + '@img/sharp-freebsd-wasm32@0.35.4': + resolution: {integrity: sha512-lIsKw/BU+kjB4eZjxrYrZmwOJYi3Ajrv66iAlBmUPyKc3HpnloevB1g3wxGD9P/5BbQ1brBGl65VRRrCvQDEqA==} + engines: {node: '>=20.9.0'} + os: [freebsd] + + '@img/sharp-libvips-darwin-arm64@1.3.3': + resolution: {integrity: sha512-suTBPTDGrI9WodccaDdwZItTSaBYASlBk1NSfElSHrUfzu3szG6lvIF58+WiFvnfzuK8ZBFS5zE00PxqxnRiPg==} cpu: [arm64] os: [darwin] - '@img/sharp-libvips-darwin-x64@1.2.4': - resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} + '@img/sharp-libvips-darwin-x64@1.3.3': + resolution: {integrity: sha512-FVJZ5mITMobmXIz/hPDTw0EintTW5H3WfrxwLqEqjiIihlu+hVRyGrFQ60xl0Lxn7Bt3zdpevPaQi0HEzqz9fw==} cpu: [x64] os: [darwin] - '@img/sharp-libvips-linux-arm64@1.2.4': - resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} + '@img/sharp-libvips-linux-arm64@1.3.3': + resolution: {integrity: sha512-0DaL0A6Xu6sQSQFwe4iVCrKWU2cCTItnRsYsCdxAMm9NF6twAA9BKnoqy4hqz4+azQ0JHuA26qiUKsf1XJ/v5A==} cpu: [arm64] os: [linux] - '@img/sharp-libvips-linux-arm@1.2.4': - resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} + '@img/sharp-libvips-linux-arm@1.3.3': + resolution: {integrity: sha512-3rbU4vqXXc3hY/OiXdl52xZvT0F1yEngWfvqudtPJg/KkyiaQw2DRsFrNzpmLvfavbwOq3qXn36GP8obHRULQA==} cpu: [arm] os: [linux] - '@img/sharp-libvips-linux-ppc64@1.2.4': - resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} + '@img/sharp-libvips-linux-ppc64@1.3.3': + resolution: {integrity: sha512-cdn1OvUBwsXhbC0zSzJnNzf5MZ/mTrobawDvNXBTxe8VtqKAm0sRuEY2Evzovb/w9JMk4TvRxqt1mekSuJz64w==} cpu: [ppc64] os: [linux] - '@img/sharp-libvips-linux-riscv64@1.2.4': - resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} + '@img/sharp-libvips-linux-riscv64@1.3.3': + resolution: {integrity: sha512-HjPVx7yKz+0lqdhDlTw1tt90wamBoxhiXpvl1XZpJLiHH4RCJ5yDTqH+VlYPv2fwFs89JFw4c1IexYOcQUi4IQ==} cpu: [riscv64] os: [linux] - '@img/sharp-libvips-linux-s390x@1.2.4': - resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} + '@img/sharp-libvips-linux-s390x@1.3.3': + resolution: {integrity: sha512-neWLh+3yCNThxnfy3c4BbVBeGgt9aftno+XbT56iK28RgeDs3UOFWviLWlUu0bArYVYJaFDK+RRohbicUNCm8Q==} cpu: [s390x] os: [linux] - '@img/sharp-libvips-linux-x64@1.2.4': - resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} + '@img/sharp-libvips-linux-x64@1.3.3': + resolution: {integrity: sha512-4vKmvAst9nrowcqquKFAyZJUDolUaIp8uRiN0mWFguJ1IplC9/pitXtlnnlU4aa/eJw3J7i67V+pwUL+wZGdsA==} cpu: [x64] os: [linux] - '@img/sharp-libvips-linuxmusl-arm64@1.2.4': - resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} + '@img/sharp-libvips-linuxmusl-arm64@1.3.3': + resolution: {integrity: sha512-Y9kQaLMuNoB0bPYOOdcZMaseNrFpPodIWWMrx+CZyydf2xn68j9WYc6sWWRrDwNkzCQjKYfc68L7jKjGlHMibw==} cpu: [arm64] os: [linux] - '@img/sharp-libvips-linuxmusl-x64@1.2.4': - resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} + '@img/sharp-libvips-linuxmusl-x64@1.3.3': + resolution: {integrity: sha512-fj8Mv0HHfD1Rr+4I68+3agJynxDWtBFgicTbSOb9Bke6pIwzGcJ+RX/yHjmiEGFMCavY/dxvem7MyNaJF+wDiw==} cpu: [x64] os: [linux] - '@img/sharp-linux-arm64@0.34.5': - resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linux-arm64@0.35.4': + resolution: {integrity: sha512-De4jpEnAU8Hd5oT0j1G3uL4ZvTuipVMn7YC6vPaJhy6/7EwEae0SVAoBrUMYQbkLGDm85taVWwuPc1a44LTzCQ==} + engines: {node: '>=20.9.0'} cpu: [arm64] os: [linux] - '@img/sharp-linux-arm@0.34.5': - resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linux-arm@0.35.4': + resolution: {integrity: sha512-7OAS8gI0EReKGVN2HssHlM6umJgxF5VI3xN0p9FA91p/YO+ou5hiNghLdZ5BEHztwaaK5+bLKRf8x/o2L2nk9A==} + engines: {node: '>=20.9.0'} cpu: [arm] os: [linux] - '@img/sharp-linux-ppc64@0.34.5': - resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linux-ppc64@0.35.4': + resolution: {integrity: sha512-2oYZJeIl4kCcMGk4ouZVjnkCtFrpQFlNEtJ6GbxzhHQchwH0NH/qEb9ykmOl29dqwMq+JhFdZn+1ak2FKhI9fQ==} + engines: {node: '>=20.9.0'} cpu: [ppc64] os: [linux] - '@img/sharp-linux-riscv64@0.34.5': - resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linux-riscv64@0.35.4': + resolution: {integrity: sha512-cPbNChoRURAWdebDIHSenxRpgEdy7JkPydSnUxRm9VvKD7m0/xVaR/8Fzlu81pk5nHEvHH87UZUA7cTtwnbJSA==} + engines: {node: '>=20.9.0'} cpu: [riscv64] os: [linux] - '@img/sharp-linux-s390x@0.34.5': - resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linux-s390x@0.35.4': + resolution: {integrity: sha512-RY0JFY8Fd6RonCBtHz+DvadaPkXDSI1AUn6yWL9TipqkZ1vY8w8evqdgyDFnkm4/K1ve1TvZiaePP5oSd4+WVQ==} + engines: {node: '>=20.9.0'} cpu: [s390x] os: [linux] - '@img/sharp-linux-x64@0.34.5': - resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linux-x64@0.35.4': + resolution: {integrity: sha512-9qvvEAuk8k89TfWUoX2htWjbAMX8p+NxCppjpcg5k6xMsjhBQPTsoIh36h9Qde4WRuGpJeYnOjdosDn/cnv+OA==} + engines: {node: '>=20.9.0'} cpu: [x64] os: [linux] - '@img/sharp-linuxmusl-arm64@0.34.5': - resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linuxmusl-arm64@0.35.4': + resolution: {integrity: sha512-KB5jxpfWQTr0nc3xdHtWChdbifHrBGsd2SM62Eyxrl8afikm+f5qGBU75SJIZBT/S1MC8XyacdlXBMSWq6OURA==} + engines: {node: '>=20.9.0'} cpu: [arm64] os: [linux] - '@img/sharp-linuxmusl-x64@0.34.5': - resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-linuxmusl-x64@0.35.4': + resolution: {integrity: sha512-f+eZJZIQNEEd26RPSW+76chwOf1XtA2Y/O+5ocVyLliHkeih3e+jhLVBdNTd2rS3IbNXK8+ug93Vf5ZXtF5Lxg==} + engines: {node: '>=20.9.0'} cpu: [x64] os: [linux] - '@img/sharp-wasm32@0.34.5': - resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-wasm32@0.35.4': + resolution: {integrity: sha512-zQnl4Kwp7Q6NHsENtU2T/00Zi+w3AQNwz3+UaTyVBy2FpXrzXzGjndpK61onhZjRtRpQXxCTeqw19bVyXOh7jA==} + engines: {node: '>=20.9.0'} + + '@img/sharp-webcontainers-wasm32@0.35.4': + resolution: {integrity: sha512-ESfNkywmCfPNyaZjxooddJQiQ+l/nTpGEOGthxiLnIHXC/CmcBixnfwUleX9mCz9ovrUUvKMap/pm8RYbzfwaA==} + engines: {node: '>=20.9.0'} cpu: [wasm32] - '@img/sharp-win32-arm64@0.34.5': - resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-win32-arm64@0.35.4': + resolution: {integrity: sha512-iNdlBX9gLVvqe2I3uIJSIKTq6wckP/DYxZtcqxm09x5Gi24DnFBmPAWZmr60ZyYMG0xlzo6goG3670ar+RXvRw==} + engines: {node: '>=20.9.0'} cpu: [arm64] os: [win32] - '@img/sharp-win32-ia32@0.34.5': - resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-win32-ia32@0.35.4': + resolution: {integrity: sha512-kqRsbaa5CS6KHlpxnN7WhE6vAAugXyZButpRdvDWetlv6Qv4N9WTcrWzF7tXfB9T7MsoadqdI8hmwLq6UlLvtw==} + engines: {node: ^20.9.0} cpu: [ia32] os: [win32] - '@img/sharp-win32-x64@0.34.5': - resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + '@img/sharp-win32-x64@0.35.4': + resolution: {integrity: sha512-XtmnYhBcrORsJ4XJngyzr/EWP0hRZLAZRFaApdKuviyqF78+ylxh2y06ZmtULAMOnObJ3ucpN0AcwSWnMowTRg==} + engines: {node: '>=20.9.0'} cpu: [x64] os: [win32] @@ -3994,6 +4013,9 @@ packages: '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} + '@jridgewell/gen-mapping@0.4.0-beta.0': + resolution: {integrity: sha512-JdGNkbE4GlNPYQhM0L95fBQr7ctLZJ276QXQLTad4t1oSdnnCI3fDq9DW3BqYAWv8Wc3+HS+4Gsii1oPMCfz1w==} + '@jridgewell/remapping@2.3.5': resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} @@ -4007,6 +4029,9 @@ packages: '@jridgewell/sourcemap-codec@1.5.5': resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/sourcemap-codec@1.6.0': + resolution: {integrity: sha512-T7jf+5zgsZHwNJ4lvQ7/aezbyk0nNX+zJVWpmHA7VYsEx7a7qr5Rg5IbtJFqkgze5Y2sruq1RUY8Q837Od7iFw==} + '@jridgewell/trace-mapping@0.3.31': resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} @@ -4133,6 +4158,15 @@ packages: peerDependencies: tslib: '2' + '@keyv/bigmap@1.3.1': + resolution: {integrity: sha512-WbzE9sdmQtKy8vrNPa9BRnwZh5UF4s1KTmSK0KUVLo3eff5BlQNNWDnFOouNpKfPKDnms9xynJjsMYjMaT/aFQ==} + engines: {node: '>= 18'} + peerDependencies: + keyv: ^5.6.0 + + '@keyv/serialize@1.1.1': + resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==} + '@leichtgewicht/ip-codec@2.0.5': resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} @@ -4193,26 +4227,26 @@ packages: '@manypkg/get-packages@1.1.3': resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - '@mastra/client-js@1.42.4': - resolution: {integrity: sha512-+cqP21hpJSEplF64ktyDOi4zbChL31uwcShjMkdMV/L3gGV3xHnWwrNSp2dl0MjTjsph/b9aMUC2Jig8HVh1/Q==} + '@mastra/client-js@1.46.0': + resolution: {integrity: sha512-Ma+A1lPJQrtFhK7/xCgiICI9dwxef/kxfkU1noTyjV2LErWyPJ3YVJ0vdvezlL7HacDetrXKyBci1SnZSwBOlg==} engines: {node: '>=22.13.0'} peerDependencies: zod: ^3.25.0 || ^4.0.0 - '@mastra/core@1.63.2': - resolution: {integrity: sha512-BHVDF4GtQnIqRND/lPVVoTnmoNzZ7+voz+EpI4YSY0W7In6c/EOrmMnshuNQSDJ9NpxQNrwip0WGYpRYwzFirQ==} + '@mastra/core@1.67.0': + resolution: {integrity: sha512-Z+kVa5SXpZ7c1xrycGOZ8tGFTDAeXYR+6rC8gAKY/m6Ac9dOPDaPCfQRmFHFxAgKIuxDj+bsauFPTnpkl9S4lw==} engines: {node: '>=22.13.0'} peerDependencies: zod: ^3.25.0 || ^4.0.0 - '@mastra/deployer@1.63.2': - resolution: {integrity: sha512-4lU+Vv9YnWOffX/GG1bDn7fMHild3cDR7YHuQqf2rUG3rMQvZV84Y+tlRlHR7VCl/sK1HsclxoYePGINmjAl/Q==} + '@mastra/deployer@1.67.0': + resolution: {integrity: sha512-C1pDaZowdY0Kv337/A9rv7+HEWLYFTiRkLy5YLAAlz8JetssnMRNwHu2ftV6lIE54HQtqopMwKtlKyJaYXZ0jQ==} engines: {node: '>=22.13.0'} peerDependencies: '@mastra/core': '>=1.50.0-0 <2.0.0-0' - '@mastra/loggers@1.3.0': - resolution: {integrity: sha512-xqPce9tCQeWEuaFeCQwchnImtAuiSayWNb3d8kXlFEHSsXz6fdWvvvAsKFWiBZaJaC/vGPgB0Bhhjg7l8pJDJQ==} + '@mastra/loggers@1.3.2': + resolution: {integrity: sha512-8rw+hVlXFiw28UjZ6uaKlyXqsn55aOtyA3n+tVzPGU7+mg0FJmuGNKsIFDz+gaATi5b5vZPjPDgOXWZGRFYoAg==} engines: {node: '>=22.13.0'} peerDependencies: '@mastra/core': '>=1.0.0-0 <2.0.0-0' @@ -4224,27 +4258,27 @@ packages: '@mastra/core': '>=1.16.0-0 <2.0.0-0' zod: ^3.25.0 || ^4.0.0 - '@mastra/observability@1.17.4': - resolution: {integrity: sha512-7TzbNNPR6h1LPUPW+kPkqqBKyubF9fZapGWJF4Y2f5JAhGva8Qj/NX0hbDgx54hqtvkTNh56+flAerwuNf1mMw==} + '@mastra/observability@1.17.8': + resolution: {integrity: sha512-lbJKipnZXLsixURQVP+M5RMtP8VwPj9vwmN51lVB17PRxk5vg1sWsgrTH3UL9Yt+kRX407Ei6SydQ/j6GvOiPg==} engines: {node: '>=22.13.0'} peerDependencies: '@mastra/core': '>=1.16.0-0 <2.0.0-0' zod: ^3.25.0 || ^4.0.0 - '@mastra/posthog@1.3.6': - resolution: {integrity: sha512-oFjwUX1B8T60iGqrKxJtJchxve5dqruc73yWNamIBRLngDdXlDAH5Om1CZQoxdZvEpiuZymaljkVuKu9CqbvNQ==} + '@mastra/posthog@1.3.10': + resolution: {integrity: sha512-o/Rb8tJU5MWahQiUIMR7HEPv3/Upjz7tPPCzV14vqg1g0IgveOTFxyuJkel22ExwlHHzXd8/mWvaSrnsbXbchg==} engines: {node: '>=22.13.0'} peerDependencies: '@mastra/core': '>=1.16.0-0 <2.0.0-0' - '@mastra/schema-compat@1.3.7': - resolution: {integrity: sha512-06WfY+j9rulYnDp8CM7pL7JIyrntkMolqmyyb1VJNEzlYTQCIcJcY0SwQiubZv2tztmoYGikszDiRVyXp0E9gA==} + '@mastra/schema-compat@1.3.10': + resolution: {integrity: sha512-ZrjvutWy3QJoJROA5PeSFdeFwDgyfGN1sOOObFirex9h9c/R4ReqRllCojNHSN0cKsKxkRlH6zBbWVTiybamUw==} engines: {node: '>=22.13.0'} peerDependencies: zod: ^3.25.0 || ^4.0.0 - '@mastra/server@1.63.2': - resolution: {integrity: sha512-Bered/g7K+MhDKdYb3qkmtTS93Hf/Qb78EZGxGQSwVjizuPRguFJZr5nTckE4VzQxqY6Tg7v4Jqjc6afugO3oQ==} + '@mastra/server@1.67.0': + resolution: {integrity: sha512-tHez2qnKWMhfmjZrz6jFgSYxGAgIxm5Cb840qB7XmCr7o6Cjf1vlwOwCR4+112osBKu2lrnO0FNeNyg/7ueL/w==} engines: {node: '>=22.13.0'} peerDependencies: '@mastra/core': '>=1.50.0-0 <2.0.0-0' @@ -4325,74 +4359,74 @@ packages: resolution: {integrity: sha512-VVPPgHyQ6ShqnrmDWuxjmUIsO9gWyOZFmuOfLd9LfBGQJwZfy0gvv9pbHSJuoFNIYC7ZDX9aoFwowjcdSC4E8w==} engines: {node: '>=18'} - '@napi-rs/canvas-android-arm64@1.0.8': - resolution: {integrity: sha512-5+nkh8i3gt6lqS/d2jTZ1xAn6tdgtB4Lf1mW6T0Qm5/rXNwBuV1sAEyLEWan5o9gJPU/GuvHR3rvSeZ+FaGrbw==} + '@napi-rs/canvas-android-arm64@1.0.9': + resolution: {integrity: sha512-4LGXk2/0HVzE29K8SzML5WubgCp++B1FH3qgl35XmSZE+lLdr6P9VRQEnZ0MCLZMTSuJP41yyhtoiVNEuvrTIA==} engines: {node: '>= 10'} cpu: [arm64] os: [android] - '@napi-rs/canvas-darwin-arm64@1.0.8': - resolution: {integrity: sha512-7jQ47gi+fZ7KJmfc/5rNyy1CYw/cu4kZ0KPIYbo9UUgSdW0bKQJpt+WihEor6s4Lyp7+xc3a+3HeyXmAEbbnPg==} + '@napi-rs/canvas-darwin-arm64@1.0.9': + resolution: {integrity: sha512-YNdfLBzY0W/Pep9fo2L6RmoNlNksnn05LRnX66W63R3ij58S25QOTcjdtEt2v8+PnCESzqZsYzUo+QPeIR44NA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@napi-rs/canvas-darwin-x64@1.0.8': - resolution: {integrity: sha512-rRjDMZs9pIRKGxgijwezplKc1RnJsqUokrA9h88bbTkqQ+7ePj0ZN4ZnZDy8Vu0tXs7KRlI2tQLaK4mx9QlxHg==} + '@napi-rs/canvas-darwin-x64@1.0.9': + resolution: {integrity: sha512-ceZQSknTEcy3dOXoekv59LTCkXjvnLsq+VW5PeNNDHEPQbRS5Ervkm1EaDa7WLAjiYWMLuSQTRTHao1dEX4prg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@napi-rs/canvas-linux-arm-gnueabihf@1.0.8': - resolution: {integrity: sha512-jGcCd+8ra6Q61xKqZeiItujTpp9a9eRLcQ0jW6qYNku+WpupqOPFPY0SrsuSnXFviJwkpKYT9p7QrB4lsf3LNQ==} + '@napi-rs/canvas-linux-arm-gnueabihf@1.0.9': + resolution: {integrity: sha512-XhfI0Wwv4llhd6nnWDtY3kQKjq0r+y1i91PlJlJI24ag2U9WrnwbG1qS3+fDLEyouwEVFchiKkTEHozK+5iUNA==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@napi-rs/canvas-linux-arm64-gnu@1.0.8': - resolution: {integrity: sha512-od6I2Y7kU7i1SwZYG2EKW8rWz6JiedtPpko4WEe1DDsiikrfaotVBCRaUTM5/yeZKaZ92EatoAS+5xG+6uJlYA==} + '@napi-rs/canvas-linux-arm64-gnu@1.0.9': + resolution: {integrity: sha512-012oiYtKaE7i9oxc8q7nraT7kDOpLcaCmFLzVe9Ty34RHDdoDzbWLrVh827CNxYh/EADX1eSikA3ymLjo/nNuw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@napi-rs/canvas-linux-arm64-musl@1.0.8': - resolution: {integrity: sha512-yYkPbJDJiWj6N0gASA3CAvRypZmVpJnxU0DQg3aBhneLDQde9TPLKADsQkobNoJUtTT/lj46aWpzT48PDb3Qcg==} + '@napi-rs/canvas-linux-arm64-musl@1.0.9': + resolution: {integrity: sha512-Ls5UWYFFn63casTZEczbeyEg3vRDRkv9lscuGwfchtY5yLLQhgOB8SN4YGxmfJ5vTaBwZ2YUxBS3NtmjJmFXdA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@napi-rs/canvas-linux-riscv64-gnu@1.0.8': - resolution: {integrity: sha512-PB00MSKAp4VwK/xwe6duKxRKmH8UH4GIl1pqHSbxng0jnU9Dr7FwaDypDiqwNFZ774N+8G7mJLGuLtg9NTcQsg==} + '@napi-rs/canvas-linux-riscv64-gnu@1.0.9': + resolution: {integrity: sha512-hLKEGxV7ZiRHqndePTokgDMdBlo/rDfzg7P4p4QIv9pUhuYobnu3R2NIFLCRghG0nwfo+s2sw+c1xZFeCmEAsw==} engines: {node: '>= 10'} cpu: [riscv64] os: [linux] - '@napi-rs/canvas-linux-x64-gnu@1.0.8': - resolution: {integrity: sha512-TWM2XWJoitLiIPCvgJh7SriC+L/T9qkYCVzC66AidsZy0QP1hkKzBzVwshCdcA3q6fIn3yE0ISbq4lMJSy8jFw==} + '@napi-rs/canvas-linux-x64-gnu@1.0.9': + resolution: {integrity: sha512-6kaz3w0QMy77PDWk6rJ1ksIihdad3qzEyX2o2oGT8GwCaypfT5mhjr8buOO5hstyLxcWXDScuz56RsINLtBPIQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@napi-rs/canvas-linux-x64-musl@1.0.8': - resolution: {integrity: sha512-hb20MxKXXb5IB7AAwN8UHz9WRsa2HmdZfjsDCzjElwJoeV1aotVEwFU4FrFQcYQVzsJQLeaCc/2Qdt/0Q72mMg==} + '@napi-rs/canvas-linux-x64-musl@1.0.9': + resolution: {integrity: sha512-xrGvmS3v55hmZ86ls/kBLVNMUTYio3f6Ik0DireemG994VfPAwiA3ZXA0Uf1bByctkB3NQ1Sfb+H5bkdUnnzfQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@napi-rs/canvas-win32-arm64-msvc@1.0.8': - resolution: {integrity: sha512-WwPN08IXE4SkL+FhJyPz/iFnycMAUkbphFIT4cmKLlvbSU0Zfn1R7BGJ3Hqky1S89QUYc0Q4IOScXb/42Re9wQ==} + '@napi-rs/canvas-win32-arm64-msvc@1.0.9': + resolution: {integrity: sha512-yjmVS3ArZeRVCP7jqbPq4rpZa/BhTeI7ELE2XqJg3snICQBDevLZyArxswHkiTnT34KRic33/4fLirrHI+SY8A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@napi-rs/canvas-win32-x64-msvc@1.0.8': - resolution: {integrity: sha512-XkrVqKb+pxyba7kjy2LJvABFVBTE0DNpEl7MrG4OYUmaWarrXH+t54z/Czj2YxCKtizYTV4mg6phNm3x24qjhQ==} + '@napi-rs/canvas-win32-x64-msvc@1.0.9': + resolution: {integrity: sha512-QlSYQdMQslB81nlABo9wNfQ6npFhE7/O+saCZdqVGueGanyRk4jCogD5EwQenfP3kIq9e+mm6GreQBjX5MrA8g==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@napi-rs/canvas@1.0.8': - resolution: {integrity: sha512-/SaLcvlqGWdm0HSCWMgHu7cjJiQXfP8/mOY+6dUyV9flQz7sPBBZ+ed2zYtoukojPmxOaL7bm+d/G4GeWWoN7g==} + '@napi-rs/canvas@1.0.9': + resolution: {integrity: sha512-QviPdJImDi/jMAvBfqaw+19BndMd/sizXVW3NnpMd3VJGz++QXkOHcP9kWR/smHG0hNjHeyuHFyrx/5lD0oNcQ==} engines: {node: '>= 10'} '@napi-rs/nice-android-arm-eabi@1.1.1': @@ -4508,53 +4542,53 @@ packages: '@emnapi/core': ^1.7.1 || ^2.0.0-alpha.3 '@emnapi/runtime': ^1.7.1 || ^2.0.0-alpha.3 - '@next/env@16.2.11': - resolution: {integrity: sha512-0do5A3BJ2gxWr0ZCMcD6BhW+e595jyxdTl3rXTS6lOtD8ektMiW6CO+EPwt1Eca1DBnm90r/7GdiKWBKxH++DA==} + '@next/env@16.3.3': + resolution: {integrity: sha512-U2eYQRwXj+dsqxV79zFqExDdatnNY/ZWc2nsJU1p/OgT7fd3dXwlF6OjYaFQCfMoeTA19PWq+wVmYgimVA+V+g==} - '@next/swc-darwin-arm64@16.2.11': - resolution: {integrity: sha512-wryL4pjKmDwGv2ox6+GZDFxvmtSRLqApBR8kL1j4+vhB7Z5vJC/zAnXpiR9Xkfzl0AS8WLMnsuGV/UKI67/rrw==} + '@next/swc-darwin-arm64@16.3.3': + resolution: {integrity: sha512-8Hiv32QJPwdV6KYJ8meR9SBA061tQqnIKTJDocvOXlEQqib0xMFpzArosuffFUUc0sslbh7QQ8a3Yey1QV8EIw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@16.2.11': - resolution: {integrity: sha512-aZl2j4f/fLyjQvOhv0Oe9UaMAQHolYpKhctsoYzplSumKJKPUmgjcf6545aBtysLTcu994TREd0+pSgNE4ohmg==} + '@next/swc-darwin-x64@16.3.3': + resolution: {integrity: sha512-A1lgKgwVchRYmSe467zdwhxT9040dd8lH+o65sL5Jet8fjB4kegw/rDyPIpYVRb6jAqwXFOJpjIXJLxQKLiE3A==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@16.2.11': - resolution: {integrity: sha512-5jEriyEnH/LWFy27L2ZG0XaLlyEJIjhsImEsiS9P563PKEVp2BVups/xfOucIrsvVntp11oNcZwjHvaDPYVB5g==} + '@next/swc-linux-arm64-gnu@16.3.3': + resolution: {integrity: sha512-bf0FIssMFueU2dm7vQEWWxk0c8UjKTdW0yzuh0sQsD8pf1+KCLDdaqhYZNMYGmXwEOiHAUzgBKudovIlcvvBjg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@16.2.11': - resolution: {integrity: sha512-eIjcpx2fnnFSSkZDbTxy74KnokUXDjfoLClpWelfgHLf621aTqswhwXQ7GkD5K5rplrS6LZ/Bj+mVuvzluBOEg==} + '@next/swc-linux-arm64-musl@16.3.3': + resolution: {integrity: sha512-W7viwCk9JY/cAkdz/A273rd5bb3RgT/IHwR7Upv90tunjBWNtAAhGhoecHh+teRNRSinuAFmE+l7fwZ4YKkrXg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@16.2.11': - resolution: {integrity: sha512-8WgzpaWMs46qJT9kiV47cje86L0x/Mu9t8/Gwj+pnbgW3rETVfCnaScPjlYUwNScpOozdcIMHWmAvuZJUonR2w==} + '@next/swc-linux-x64-gnu@16.3.3': + resolution: {integrity: sha512-0W46zw1N3ODpI6n0GeivHvvob1pooozgZVqy65k0mh4/7vr+FbY9+WpHzNVXjHipJf/A3FDheBG19H1s5A25rA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@16.2.11': - resolution: {integrity: sha512-I3UgPds7G4ZYnTb/H+5GBGuUT2DhAk6j0mL6A4s63RjFs74wB2hOWP0vaxsK+3NJraExt3eYEPQ/UtT0x/64Nw==} + '@next/swc-linux-x64-musl@16.3.3': + resolution: {integrity: sha512-H4mBso8ZTMBPtdT0PN0pBx2ayTvQuTuvS6qT13d77yVFJXAPCxkyIhLTmdMaGTJs0krQYI/qpzdHijCeihXhbg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@16.2.11': - resolution: {integrity: sha512-n89CjtcThnjrwgJMAiI5xbqwLY51zvwC9tSlArmVndAJLYVl9T9UAdlkXTmZvE++idoXe8KdglQlhNRdUp1c6g==} + '@next/swc-win32-arm64-msvc@16.3.3': + resolution: {integrity: sha512-cTMUJpcEGmeywofCUfhR+rSsoE33+rVPnPEYNTNdLNlsOeEg/vktOsKUSTb28vUGqD2jkm4Zaskcwn7OCI6FQg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-x64-msvc@16.2.11': - resolution: {integrity: sha512-md8CLNggS1Dx9pUgApzps5uAf+N8GN9xywzmNx9vHAWo94HtBwCCqkSnhIrdfQe83Dhz8Lfo/20Nb1Zxal092w==} + '@next/swc-win32-x64-msvc@16.3.3': + resolution: {integrity: sha512-2VR4cTBzHXaBjnGsuH6GyJjENzQOmHeAh11uY1iUhjm3j5dEUrVJuUj+VL78jaGi/Dik8xS76zEj18BsFhlVZQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -4649,123 +4683,120 @@ packages: resolution: {integrity: sha512-a61ljmRVVyG5MC/698C8/FfFDw5a8LOIvyOLW5fztgUXqUpc1jOfQzOitSCbge657OgXXThmY3Tk8fpiDb4UcA==} engines: {node: '>= 20.0.0'} - '@oxc-parser/binding-android-arm-eabi@0.147.0': - resolution: {integrity: sha512-fOtoGvIoirkvxQVw9J1WJPxz571XPgLsPf9uhRD+PJteUnvrJHMDmK9pw2yZEGGyismtRoEsp+JcXUdF/JDMDw==} + '@oxc-parser/binding-android-arm-eabi@0.148.0': + resolution: {integrity: sha512-pHASv9g5pASxb7akHERZNSkrEqPhFaUix98o7d9hbTpolnnFWl7UiRrcMhCsV1+iVO4/cJwKsbKRJTFNs2tdBQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - '@oxc-parser/binding-android-arm64@0.147.0': - resolution: {integrity: sha512-emjQHOYJaomo4ykaXQ1EItunr/I94Nk01oqBmU4dSkKSTupIDx6OysVDf2e8Eytm77rb+4ZxzgElyWP7rcEX7A==} + '@oxc-parser/binding-android-arm64@0.148.0': + resolution: {integrity: sha512-sg/6Ez0KdAygsu0POELux9wN1Po2CP93WY8eNl4DBKIGprsd4QSHBXOb471Pu9i2OCD5sLkISSb2agZEhVn2Zw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@oxc-parser/binding-darwin-arm64@0.147.0': - resolution: {integrity: sha512-kXvBPJL7RmDPJ2mze/vXPPVQimCDtFr9OFLjf7dyhV5Dx64cgcXh9KKrA1sMWvCObvJll9CZZUO0FBlFwD0l6A==} + '@oxc-parser/binding-darwin-arm64@0.148.0': + resolution: {integrity: sha512-yiSJmzGUvCUaJT8X3j40gVcX+ckuHQMuiOtF8DvzTs5+JtB/7XuHFPp4M+vv5u+HlBtDUd4Ks5pyHpWz8mfnkg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@oxc-parser/binding-darwin-x64@0.147.0': - resolution: {integrity: sha512-mgFF8pLU6R64LbT27lSrtVRspVC/3IcZ0qyIikzmi78Y3Ik2OPnlAHHI0UEBRcC3qmNgtjaef7zkFt7/uPxIcw==} + '@oxc-parser/binding-darwin-x64@0.148.0': + resolution: {integrity: sha512-6ZeklaamrMy4H2JmhvcJg6iip59tYILtuLaILxyAHT3l5FDxnI5ihVievAft5ZmAbqtlWHErOi1OpJK8gy1wcA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@oxc-parser/binding-freebsd-x64@0.147.0': - resolution: {integrity: sha512-v38aiF11qufOTBcCAKL4skgQf0zJ4NEvRlivq7B5kHrlyvjCLjvNrMtNWDTz1SDUL6/xVsJRmLDxv2e+Cp4oWw==} + '@oxc-parser/binding-freebsd-x64@0.148.0': + resolution: {integrity: sha512-vFsPx+a/qFECPnz/H8nC6x6MDvnWscLTCo/5muojEF54ERUq1kdgbvnWo95YnkhjF9sTIcG/uDxQBh1gffaufQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@oxc-parser/binding-linux-arm-gnueabihf@0.147.0': - resolution: {integrity: sha512-AeIiBbwUaP0H1+4/qGW9l5qHecS/+XA5iMuieVcGb1T+tyc2dVGspFW13BWk/XrLsiGP/CiDJTJqAPLLCzZHkw==} + '@oxc-parser/binding-linux-arm-gnueabihf@0.148.0': + resolution: {integrity: sha512-eOr3M+6iGbbxNL4PSS0VtsyQ2eOUxSBh00BqO22SbolDimPSYsBuLr/LCrZBkiqW2BoabhR6V4R8jrRAay7hjg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@oxc-parser/binding-linux-arm-musleabihf@0.147.0': - resolution: {integrity: sha512-/41MKPW4RgPY4DJco0NCF0RYX3IMZaVlRNMNzvhaxRavc7tN3Txm+qllZbh0aMRs0VHdgUlbI8TcAOiTai4TKg==} + '@oxc-parser/binding-linux-arm-musleabihf@0.148.0': + resolution: {integrity: sha512-58ZKDw0mQRbCNfrd2IDyV4o8T7enzGERJn41BH2tjrZVGyiKiFzcfDicuB7Zcpb/1xIOrObovr8Dja6lZi8dLw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@oxc-parser/binding-linux-arm64-gnu@0.147.0': - resolution: {integrity: sha512-bmpw/RPhVXgZbtb3xBDuwW5s8+LvZYdqcDSX/sP2ltL77aTio3DP/B5ZTwwgoJ6Mr9vJs4RrmgEKW9XkLNUU1g==} + '@oxc-parser/binding-linux-arm64-gnu@0.148.0': + resolution: {integrity: sha512-Fnu95O4eZ5i++GPvIzBEZ8y4ddTLR+D9paYa8JRaRk6ZK7nHQiWP5xtrhcPQsXqgat1d7sU/d5rbbI0p1FTHSQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - '@oxc-parser/binding-linux-arm64-musl@0.147.0': - resolution: {integrity: sha512-gd7VX/FDVOw6mjQcu45iIcp4QkgybgJwh3a0OFG2NxmPCj628mQWD96QGu1kK8+mZF9qK4b/gIEyC63vQoB7+Q==} + '@oxc-parser/binding-linux-arm64-musl@0.148.0': + resolution: {integrity: sha512-3CQy/BMdx7N7H3qrcPxUL+a2CwUZodUcf6oq8iJuNZ9C6Ol1aq3mcWzsgySJ7CHFLvpX21ZDPp1r1X0QLbu/AQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - '@oxc-parser/binding-linux-ppc64-gnu@0.147.0': - resolution: {integrity: sha512-HnAzcfki7dSUNHf510Q2NmbJlz8Ys7rn8l9l588Pkx0tYe1BHLZnmELIgqizJ4WPhHGSwN8Ce+B/menVxS3odA==} + '@oxc-parser/binding-linux-ppc64-gnu@0.148.0': + resolution: {integrity: sha512-9LkaYvfiF8hMOw900csAvkf1oxE8XlmMeGowu5BcastSSwV8mKvKRMNU7HsV+ycyj1dQD8pX5qgOw8ja6SJacg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - '@oxc-parser/binding-linux-riscv64-gnu@0.147.0': - resolution: {integrity: sha512-qlkOL6wT44U+fT5s/+sR6Shx0OdwvQF83JyIPZUxG/ovqZF5/7atOtjH+JPZ5/7ATQLbFBBSmghcy/+2NVB/ew==} + '@oxc-parser/binding-linux-riscv64-gnu@0.148.0': + resolution: {integrity: sha512-2GBiM9h26dR4WJfhoMvnFMnFLf7m/kYs4UMqjvrOfQG4BV1nuTJDH22Zc2MQr3INZF7nSKYQ6xlhD3hQ7A6gug==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - '@oxc-parser/binding-linux-riscv64-musl@0.147.0': - resolution: {integrity: sha512-DlefD7L7sMXs/3hIBH23Egk0phj8kG0SA81dVGOQ3S1ekjOlmTLH2E+F2Thwfh1slKx6aH+lNc5fQYAw0GU7/g==} + '@oxc-parser/binding-linux-riscv64-musl@0.148.0': + resolution: {integrity: sha512-uPqZexvKJmEgq4mAu36qe2xTfXZE7oyik1R7KtZ5tl8qKlq1U1fIqTFRUEBZqRGvforoTrGIpatRzcoPKO66RA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - '@oxc-parser/binding-linux-s390x-gnu@0.147.0': - resolution: {integrity: sha512-Xqpagk/031IvZ4svrk2FF01YEqM/iN3MJV3SVZadKg/CsGlDCGoREqKHXYnoV5+8SfGe/m6RM1szXFLusTu/Uw==} + '@oxc-parser/binding-linux-s390x-gnu@0.148.0': + resolution: {integrity: sha512-9oUHvnTbp7ZraFsTC8PN6XhdhPSSxZumYvixWl7Smi353gEULvK6yV0sXNVrdFMHQeaDKFCi8TgDhNK7/A+Y+Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - '@oxc-parser/binding-linux-x64-gnu@0.147.0': - resolution: {integrity: sha512-QioQOeUbI4ATUr0S2z88uA3Cds2R3Mm5Ge7U8XNYtlTb2GJF3rWlcj70z0AJhhOlbdm0YgVjqPBldUNbFylDIg==} + '@oxc-parser/binding-linux-x64-gnu@0.148.0': + resolution: {integrity: sha512-2qhDSJwKzbSZzF7lDqqk8sr/yXsmwr3PeUa4/nazIF+zFAYz1gVPEfC34GQtGxzJUUmklaYAL63368LEfrMeyw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - '@oxc-parser/binding-linux-x64-musl@0.147.0': - resolution: {integrity: sha512-NXy1tv/OdC+pPTwf9RiCZWPK53V/Xq/2cjSnjOSyKopajdaDqMIkgtDY+jXZemp2e8px5FeWfY2L2LwhKZQovg==} + '@oxc-parser/binding-linux-x64-musl@0.148.0': + resolution: {integrity: sha512-qQoPDZUFV0bh9xA09XydmkjMBpgc1ukJuhMvzQ9QeVmFaHTS9W5TE5CoLmSl3QQyUP9OuHO3x/WPZTIIZPWR3Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - '@oxc-parser/binding-openharmony-arm64@0.147.0': - resolution: {integrity: sha512-GpGWZ6oKz4bjCWW9Mz5pCaGPyk2Aaze6zEoaslIQqpSLtpx5pXj/ap5gUNb5Jn2LIbqWyjkGLX9yv3NMuNcBVQ==} + '@oxc-parser/binding-openharmony-arm64@0.148.0': + resolution: {integrity: sha512-1UGbaQWEXUCLqAmaR5kwRDjx/R4S5LQKZkM9CHmaHkuKhriOF32aRLfS0jCRNE2yGQJLMEA1z9UucbBVqjXnDw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@oxc-parser/binding-win32-arm64-msvc@0.147.0': - resolution: {integrity: sha512-a8mlt7CC8z7LUdCfaxhff4kCd+vSjE+NEFL0cxA8ukfuSnvAto/pWTjytW4BuVLnQGcCVdHJwcRKOfs++H+tjw==} + '@oxc-parser/binding-win32-arm64-msvc@0.148.0': + resolution: {integrity: sha512-pWKdzRDNG2+NK4h/V6U/CYERcfYD6u28h5IB/VJVsrZaD3muvE58tUj22lieL5vLZ+XFi1GPv9YXckZbJZ9BLA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@oxc-parser/binding-win32-ia32-msvc@0.147.0': - resolution: {integrity: sha512-M5ViVDBcFLnl2632AuuWuP35zEL5oikK1jTx8r3+902VEDeSNHxFZAB6RZyfZ7MU6Oi5QTOG8MmMkIeHsudSaw==} + '@oxc-parser/binding-win32-ia32-msvc@0.148.0': + resolution: {integrity: sha512-i3p4x+mvwtjcE1J5HM6V7ggsbXiznExN/4MkNyOy3dfXrVV3bnkSfmZxvo6/84qCVX4ShkpNE1SKt9biIF31GQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - '@oxc-parser/binding-win32-x64-msvc@0.147.0': - resolution: {integrity: sha512-DUaE13OwnUSlHpLZNcC/nuT10ivlWqc5EZgsfgXuAmWYw0r3nDxGeLD1zlGwYwIgVk1/ZMAxoXpV+05stvbHaA==} + '@oxc-parser/binding-win32-x64-msvc@0.148.0': + resolution: {integrity: sha512-Ye6vB7VQulghWYkYkECOBYFRVEizz4XyRTUAv+t8BuyurhKU7uD0P9eowL+mKG5Mf8MSYx+DI3Cm8SKZvYG7bQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - '@oxc-project/types@0.147.0': - resolution: {integrity: sha512-IJ3s6ltHLp45S0bh7phkX+gJO7A1Wuz2EaqpAhb8WjqDwbzMiWKHhyyT42tskaWjEYXtHtVCPpnBJVT9+dcRLg==} - '@oxc-project/types@0.148.0': resolution: {integrity: sha512-Nm4s/jB+4FpFsPhWGEC4h7rzksesmtnMXomo6rCMcg/b8zLQuOziRgkCS1fxDCXOlJB/6Q8oABOZ/OP6RIPj9A==} @@ -4864,116 +4895,116 @@ packages: cpu: [x64] os: [win32] - '@oxlint/binding-android-arm-eabi@1.81.0': - resolution: {integrity: sha512-IcCRsXiedJoJopY6mpZUBEeVFsUrutmrG7dZ87zMuKJlhg70Ora9bBl1WcCxZQtyI10YpnVdEso5oCg7YcfSHw==} + '@oxlint/binding-android-arm-eabi@1.83.0': + resolution: {integrity: sha512-0yGY24EwsLk5YDe6F+VkmZyRHSwJDALa3nIrPpq7FXmp2lV2d0TzvBCGeZk+wgiULRGr5blhyr4QMp5KCXJUqA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [android] - '@oxlint/binding-android-arm64@1.81.0': - resolution: {integrity: sha512-GRrIPyTGVhx3L3h+0T5xT2A0jFAcdPv4+IfuXpGDLIdl6XeYhgg/zw72A5ILZoUgRqZuM8F1y+V/gfDriXSxzQ==} + '@oxlint/binding-android-arm64@1.83.0': + resolution: {integrity: sha512-hHfJ0vc17A4iUjH5p9BsTUPYbYRNxGpvD2lbu1aBRk54bzNIx9o5TtYF39QPZcV95DagZd+4DEAw2RH3G2ZsMg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@oxlint/binding-darwin-arm64@1.81.0': - resolution: {integrity: sha512-qNQ9tXRgLuKbqSV1S2h9h4KPHjbovO7RRR2/enUOtHzTkFZ7B9X5zqqHJua8dRyc7dBy7Aoyq5pqTSLFVcAzGQ==} + '@oxlint/binding-darwin-arm64@1.83.0': + resolution: {integrity: sha512-hsOjYjszLb/3zym/TkzUMPAoQlTJcuzSyEPOAyA+skXJIX9M0o+4JfOtqopX/Vf4hSLrJ98j0nvFo23gzk8auQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@oxlint/binding-darwin-x64@1.81.0': - resolution: {integrity: sha512-q0QTm32jWga2Gv4j7IaVZN0jYMi9UV73sWVgFtDA4iIfqwMCLLZ3ve+9KwfYtsaKZSgQhmPaogeZWqDZpcY1Pw==} + '@oxlint/binding-darwin-x64@1.83.0': + resolution: {integrity: sha512-mjh5oH2EA+wl5yRJYT9K9G61O2zFlpuv+yf2JwZOi0+dq2FnTUtm1h8i+5Ik0fXPWIu/k84I1psZR9aQsLAnyA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@oxlint/binding-freebsd-x64@1.81.0': - resolution: {integrity: sha512-/+8wVWDXEC7wHVAhOc59Fw/SkMc1arLkFD8iQCaSsmzenK1X4doFqquL9H1wrtGUzaiycVqkf/sSpcILK6W1UA==} + '@oxlint/binding-freebsd-x64@1.83.0': + resolution: {integrity: sha512-fNHr64/YaO8YssuoDVC8+F4Uk5enR86q5uxfHkQrjAPs1dbAILOrD2uaud+J7MO8Fx774g44ERLD0IGIvZE48w==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@oxlint/binding-linux-arm-gnueabihf@1.81.0': - resolution: {integrity: sha512-4xt422FEgioRq9hAL4Tq7fujGUWnc8z1BJ+Oi8RN8vB8axaP+sdK6a2xdlcQCCYnJg9QMuMFS0AucuIFx/EacA==} + '@oxlint/binding-linux-arm-gnueabihf@1.83.0': + resolution: {integrity: sha512-Qpwy3zzAwMj+8/lyYItHmkSMwbkprFNWTK7jPYDOxSyxEhaSLOWYUTCMkjF334J8/WD0nznCCsoBbIH6hpsuIw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@oxlint/binding-linux-arm-musleabihf@1.81.0': - resolution: {integrity: sha512-u3vna8KdGplH4DRCW9K54D68fcMo7IxVrkCJWwXnIhwtBdnDnYrmzOUA/XjmBlPpcLsgw9Z5BNdY4za9+Dj+MQ==} + '@oxlint/binding-linux-arm-musleabihf@1.83.0': + resolution: {integrity: sha512-s+BirYLFq7JL2k9sP0XI3ZXJ9dYvJ8sX3jLCLoag7tt+zrSHpZxP0jqznfL+Gdgwu7ay0dYgGYJXrQvq3iWloA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@oxlint/binding-linux-arm64-gnu@1.81.0': - resolution: {integrity: sha512-3j9k+gsYsE7nv71GWotXsqsa2l9/aJenD7dVHNt/CBvsb0SgRjSMnHFeP59IXUAl1wvVFhqGl2wJNMwWU3UBlA==} + '@oxlint/binding-linux-arm64-gnu@1.83.0': + resolution: {integrity: sha512-7lihXt3vKr+GIyapNbHrnFHm/biiW30le6Zv/DExbAFPF6YwCQXVFlONPFehxs0CpGO4CBfYPM9rdDT+XMoIlg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - '@oxlint/binding-linux-arm64-musl@1.81.0': - resolution: {integrity: sha512-k5iAp3dNxW0/uDCBY+WSm8jKB2szu7SkEQZdgRRpDXvuDd69vvDcqhB3A/pWCfCwXyenjNjFn9Td1fVoyAc+Yg==} + '@oxlint/binding-linux-arm64-musl@1.83.0': + resolution: {integrity: sha512-q63JalLYVkZiZvls1z3PPUnpmQluOMXp0khqQMznCeAPLGydfNY8JhvuA4WlK57JfrvikU8wB5lPVveqpIXvew==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] - '@oxlint/binding-linux-ppc64-gnu@1.81.0': - resolution: {integrity: sha512-TFqLja3uYmVSte6nof9GWrex9Z8WgdZrNiLC6Te5rXGDqXB2y4j/26iFhwosXiAFqDhE9JJVuuCkDKLwptTn1g==} + '@oxlint/binding-linux-ppc64-gnu@1.83.0': + resolution: {integrity: sha512-krQmDF+dRbxvdqVPV88ZuOoPPu8X5BuqDA8Hd+qcS4YMRQCb+nexA57DazgGsc/rGdKBe3QmV0mnv0bdpW/p5g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] - '@oxlint/binding-linux-riscv64-gnu@1.81.0': - resolution: {integrity: sha512-UEcySvGS0NOVo7h7n7CYyJL9+6gFAh7Zc/ToDXVScFvzHSTIxtzkMVU30rmQ6+nQ1LF+UdiRDdJajpDu+OylLg==} + '@oxlint/binding-linux-riscv64-gnu@1.83.0': + resolution: {integrity: sha512-MmOl8Y6txEAXZU1RG8Rr264jQ6D7VPmqFsU/45x/FeWsGe32hklTqGrLE6UxHzp5Rjt0wP+20tY8YXKgSFB3mw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - '@oxlint/binding-linux-riscv64-musl@1.81.0': - resolution: {integrity: sha512-H+diDbhD00+wI1IRP8Kz88x/lat+DgtoBJzoTthS16xkTJGNaEkfb8gzmd1rzc/2uDQQMl7GNl+JFUacVeWxIA==} + '@oxlint/binding-linux-riscv64-musl@1.83.0': + resolution: {integrity: sha512-u1rMymh0W3JZkq370kzQsYPULGWqhE09pZRqnZvUSoYaI9pVO5yVX+iYIslmWuEgwuzH9YAaOsScJiobWCHoOw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [riscv64] os: [linux] - '@oxlint/binding-linux-s390x-gnu@1.81.0': - resolution: {integrity: sha512-8znJ/5TekjOKg1j1Acho4PJMdiAHLtlcXuWEiipOhAMV6rQcXdmDdXCbheyDczN6TjBwiNfjcP81k4AthrKRzw==} + '@oxlint/binding-linux-s390x-gnu@1.83.0': + resolution: {integrity: sha512-y0zK3HNwGysu7rqtE+BQG/d0bx5gh/KwlOtghN8oWeK1KcWzeaLqtZrbm8owqdma1lFyrce/hTO5ismuNu+INQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] - '@oxlint/binding-linux-x64-gnu@1.81.0': - resolution: {integrity: sha512-Q2Wj70yFsvn5QjlmifFzbj4H+kJy53bwqc41o1fzoM7MpLV1NIbhg/LpWXRfC6KOkSAdUx1Wd8VJsdPmhp/HRA==} + '@oxlint/binding-linux-x64-gnu@1.83.0': + resolution: {integrity: sha512-rS5gM0NgD7ngmuJmbIehsidtrOwKkLFwCQbKEeb9KuyQrrWNq5Zkn0uV6AYdXOMJ0grrWEiLwBuvMxt8w5vsNw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - '@oxlint/binding-linux-x64-musl@1.81.0': - resolution: {integrity: sha512-cPInHp/ddEe5qkyK2IiyQ8Q3Mp2oLLEhhsGgTK2oZx4L6+llGam1H1yBvJZ7qHfOXj8N3hxBS8sj4tO+gtFlIg==} + '@oxlint/binding-linux-x64-musl@1.83.0': + resolution: {integrity: sha512-W2IH4EtpcPaWcvNGCA95YoDg4vxqE/ZiPCi3arrxEEpsK7+JQN9WYwrlYFx9pcdP6KPXqRqkv3zdQPHcx7b6YQ==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] - '@oxlint/binding-openharmony-arm64@1.81.0': - resolution: {integrity: sha512-0CQxSX4ajqm07AHBf5U33qQzXKdd7wtq/oTL/7vpY6RNNuxrRi8W4bqUV1Jyu/vj+9KmxQyDhxfeVX1nQL6kfg==} + '@oxlint/binding-openharmony-arm64@1.83.0': + resolution: {integrity: sha512-6LyKkUyoajssTPLlZmDbZIbu4IZ5B4bGuRUnBgCGpEvHP3FQMaYITncHA/unPUo7q+Z+pIu2HhdkQ+8d1SG7iA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@oxlint/binding-win32-arm64-msvc@1.81.0': - resolution: {integrity: sha512-l0hbeISm9673hVrrQU8j/p2M7YH9Ouoj7p7E/QM55NTrKVLP+P3PF8hLu+OY+x0VtGRW+ggiQKZqmdYps9H+TA==} + '@oxlint/binding-win32-arm64-msvc@1.83.0': + resolution: {integrity: sha512-Uz/fObEtF0jmNJQJ8CGRBKfefYstS0/wjD3s6IGzP8nUwsJykHQJBiN3npHwKiGRGn/vvBEgNr4B3cCzmmatvg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@oxlint/binding-win32-ia32-msvc@1.81.0': - resolution: {integrity: sha512-ksqPP5jbFXcYreEQ7zdJh06rJQBymCTyGRCdaXjfcf2aG4f8KxUWY5wcgYHmaTK+FJ4bPG5sUAdOX+6trnH1JA==} + '@oxlint/binding-win32-ia32-msvc@1.83.0': + resolution: {integrity: sha512-u7XcvPW6Bk58tY5iWs2ESb0vJjoE/kuSpHxopbwp/p3ZtWVQXZ6wor5w3ssVTHOqd/v8b+QdhSFWQ4grEUNWpA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ia32] os: [win32] - '@oxlint/binding-win32-x64-msvc@1.81.0': - resolution: {integrity: sha512-IZuUCwGw9emG5JtCp+fYGB+Z4OWEoeEcM8R5BA1pYw63/ieYFVdcU2ylxTpHbVHSenZnsYE+ZZ20uHAJszQ4cA==} + '@oxlint/binding-win32-x64-msvc@1.83.0': + resolution: {integrity: sha512-LZRubd7ph13QmAg4fFecTYVZkiYbROR2Htaxh/ufWRkDhPOm2wrwaEYR89e0YpPFD3dqBrPoxS7myBw5hmYA7Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] @@ -5070,22 +5101,22 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@playwright/test@1.62.1': - resolution: {integrity: sha512-DTcUc8qii+cpHvtOwggMtBRMjKZHXYWdw8syRYu2vtzuq4Wxphqq4NfCs5Zt44L6mA8rfDfj+PHnxFc/FeK6mQ==} + '@playwright/test@1.63.0': + resolution: {integrity: sha512-oxMK4vllB9RK5NQ2l1pq1IfOf2AvnEuj/vYGDj0H2nMtmtZpKtCwt/l00GEO6xjGfpBNAvjovvYdCm50dRQkpQ==} engines: {node: '>=20'} hasBin: true '@popperjs/core@2.11.8': resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@posthog/browser-common@0.7.1': - resolution: {integrity: sha512-JO/5dIVx3NTrbg0W2VciDDmmizsvwaYYHE5cnJE1Gra+UqBnEuVGH9DTE/kBFgVMp+08z5uj/aAprsYD2WG/QQ==} + '@posthog/browser-common@0.8.3': + resolution: {integrity: sha512-4Hlbwyn+Hioc2+pjqSGWMTDrA5XsDshssPnGfv34khPKoJaeBe2YvPvsEPoH78jezOS6Wo3LJvCPhqyolg3S8w==} - '@posthog/core@1.50.2': - resolution: {integrity: sha512-El7y/ipZ45OFBRTN/+ixat9Nw21bW+pKKnX0G+rG4rWxBtDA47Ub/ZUnHvZNhAufNInQr4AYCUeWQsuJsTcoKg==} + '@posthog/core@1.54.2': + resolution: {integrity: sha512-p0NuMjiZkploKG/aASj4nw4QDuhF87SIFWkelaFRrr3G0Myb7KWWUZot2hm5qXpPx7zKozVZJrJkGzC2kGBqbg==} - '@posthog/types@1.408.0': - resolution: {integrity: sha512-xMY8QrRKsTYu4A4Of7XF/xEt0HcnZOWwnICm3do7tGKA0lTlnnr4YW0AHQN1Uv2P3BDqf5GQoqh91MKE+dgdcA==} + '@posthog/types@1.412.1': + resolution: {integrity: sha512-FxXsb9YOOME8bJI5K09qKeSvLjnZQ2dPV7wZpI7a8sERQtXkAuhBcPB/balCnVE7TYwhgtHj5NQss9BgQ5bAfQ==} '@preact/preset-vite@2.10.6': resolution: {integrity: sha512-ZZ5RIT2ZVXg8UxRA8VZpoT8CdpDG7RFIqOT4bELqNBp85+HKvQBbgmh3gsoW1UOQXx26TLe+ZRNKI7q281Kckw==} @@ -5580,6 +5611,7 @@ packages: '@smithy/node-http-handler@4.12.0': resolution: {integrity: sha512-0mq1pHadfyXCYCqm2cNpbjNIT+fbaUpNxewZb/YNr2L0IrEVMOb8gM/Fl4K6XvHCW3uSNDFwPl/+iKm0bx9jYg==} engines: {node: '>=18.0.0'} + deprecated: Depreacted due to a memory leak issue https://github.com/smithy-lang/smithy-typescript/issues/2258 '@smithy/signature-v4@5.7.3': resolution: {integrity: sha512-7ImGm+FkHRLcBaRttIAMZ6bzJZWb2cJGoYjq46F2UjycujWzrL9GEN9h4w7eQyXJYnltrUhxbbieBAIRrdqpow==} @@ -5788,8 +5820,8 @@ packages: svelte: ^5.0.0 vite: ^6.3.0 || ^7.0.0 - '@swc/helpers@0.5.15': - resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + '@swc/helpers@0.5.23': + resolution: {integrity: sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==} '@tailwindcss/container-queries@0.1.1': resolution: {integrity: sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==} @@ -5894,22 +5926,22 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || >=4.0.0 || insiders' - '@tanstack/react-virtual@3.14.10': - resolution: {integrity: sha512-SRyoUbdFMRHuYXMijV5H4ZarQWpXkj3iANq8OFre+pybeVap8ZJjZ3Nz9bVjx4d8PfobVUQUdKyyyHYk3E+djw==} + '@tanstack/react-virtual@3.14.13': + resolution: {integrity: sha512-JbDTAwtzZ99aOeCrAfW5EsE5KSq5RWh6Af2dtFwyLIIk48Ja7vm6n4axu/43T3vfjFnEGJalxJ1wyYjSQD6bSg==} peerDependencies: react: ^19.2.0 react-dom: ^19.2.0 - '@tanstack/svelte-virtual@3.13.36': - resolution: {integrity: sha512-q5z39QWDQriLDc0aAcDY/htR0Sg9mrItQnhXNy/DNtEDQsdkTFTR7ZnMA6idJpLwnUg6PYa8Fb9O3RcCu+H7FQ==} + '@tanstack/svelte-virtual@3.13.39': + resolution: {integrity: sha512-MTBnp0N9YEuShNc2m8MywsiFeHSSE0J8KvMISpU26tbO+8CEUYpRyNDV2H7rce1wTOH6wuRmDzahH20Zprdt9A==} peerDependencies: svelte: ^3.48.0 || ^4.0.0 || ^5.0.0 - '@tanstack/virtual-core@3.17.8': - resolution: {integrity: sha512-BfEvehNpOT75r5Ksc5xW6NZuXujTfb7nlSEyVu4XHG3gdxNg1KqXruWbDewXOUaUYIo4oRbSfkjIajz4MAT8tA==} + '@tanstack/virtual-core@3.17.11': + resolution: {integrity: sha512-+ILjvtHup6Y2hzQ6YzwMgX1Q+oQpxEGOXCEsCNaPoIP0VxMbizIBTmYTDtkerkIQS8/CbP1BRuyt8V/8BCsy1g==} - '@tanstack/vue-virtual@3.13.36': - resolution: {integrity: sha512-gKpExv4RbB9luVG+SucTXoqPZv/gzu/Yvz6BNO+8kpNxJ2x+I/ulryzl5W9BRciahZGp5Tls3Dp5XP1ztVGbMw==} + '@tanstack/vue-virtual@3.13.39': + resolution: {integrity: sha512-AG8sI+6nfrDvN6ixuHJL9LaJTf3//0V5VITZYW3UOaIuSVexnEzsbMu4LH/JhMfRTxwhUXPnLqkl1DlzkZbRtg==} peerDependencies: vue: ^2.7.0 || ^3.0.0 @@ -6142,14 +6174,14 @@ packages: '@types/node@20.19.43': resolution: {integrity: sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==} - '@types/node@22.20.1': - resolution: {integrity: sha512-EANqOCF9QFyra+4pfxUcX9STKJpCLjMbObVzljIJomAWSnuSIEAvyzEU53GaajbXJEgdh0iEcPL+DGvpUd4k1Q==} + '@types/node@22.20.3': + resolution: {integrity: sha512-DZmzkmwHzXrLPAXPyKNDzlIwMMUZCVacoD25ywdy5YTKGbOx/2ld+Q38Im2zJ0vBuZP5Prd3VZutKZyXwkOS8A==} '@types/node@26.1.2': resolution: {integrity: sha512-Vu4a5UFA9rIIFJ7rB/Vaafh9lrCQszopTCx6KjFboXTGQbPNasehVR5TEiithSDGyd1DEiUByggTZsg8jukeIg==} - '@types/nodemailer@8.0.1': - resolution: {integrity: sha512-PxpaInm8V1JQDd4j0ds5HfvWQk8JupS1C0Picb96QJsrrRDjBH+DlK7L4ZdNSqNULhiZRQHc40nLVShaGxXAMw==} + '@types/nodemailer@8.0.2': + resolution: {integrity: sha512-c7M5ox8p0nEOfbJ2E9Qcmt8/QCu/VzsiAhzBiZbvky2PhKZDHpKB3sQHBM5MEZNkCfBOaS6S9//AGPRTNB7IaA==} '@types/pako@2.0.4': resolution: {integrity: sha512-VWDCbrLeVXJM9fihYodcLiIv0ku+AlOa/TQ1SvYOaBuyrSKgEcro95LJyIsJ4vSo6BXIxOKxiJAat04CmST9Fw==} @@ -6163,8 +6195,8 @@ packages: '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react-dom@19.2.5': - resolution: {integrity: sha512-fMPwH9v7r/pp43yUd2/Mbiex5KouJwwR3dzHkhLREUC6764VyDsqxhAxv6OFEYR1RhjOyD1naqba8ECDBe7ZQg==} + '@types/react-dom@19.3.0': + resolution: {integrity: sha512-ZI7bU42mZXXKHn/qNLEw2IrbiINU7X5+vfgdixBHkCNpYWXjKgfQ/P+uyGb5CjOLB9UcnTeg3rylQtV2hym44Q==} peerDependencies: '@types/react': ^19 @@ -6178,8 +6210,8 @@ packages: peerDependencies: '@types/react': ^19 - '@types/react@19.2.18': - resolution: {integrity: sha512-AnzbBERsrLKtk2XSfTbYRLjQPdy116Sty4q+T+Bp3IC4l6jNBvreVPAHmpq9qhXQM7CXZPjLVmGMw9sy+hxQ3w==} + '@types/react@19.3.0': + resolution: {integrity: sha512-N0rFCuH9YoxG9/m61l9MfpJKfmLOVU0em7ipIz6TRgSSkvReLB9vL85GB+yr8Bs5leqpvg96JSwF4ZS1s4viQg==} '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -6241,63 +6273,63 @@ packages: '@types/yauzl@2.10.3': resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - '@typescript-eslint/eslint-plugin@8.69.0': - resolution: {integrity: sha512-t5jQTKPIgVW1PE6dR6H6Qz5gm8zjMlX5/2gRaOGd9eO6V7J+tQc6iWKukEe7dY8u9HyYasQ0yfF0/FSSTEO2gA==} + '@typescript-eslint/eslint-plugin@8.70.0': + resolution: {integrity: sha512-/v8HZt6RlyIZxB3ntehELOcUcfxKPVGWXnQdJuHRmzrqgF8nQypcC/oxGW+Ot4VGKDq81XugPKxx0n5PBtf9PA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^8.69.0 + '@typescript-eslint/parser': ^8.70.0 eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/parser@8.69.0': - resolution: {integrity: sha512-l4b0DhWioGg6Gt2ebGlvfkFMOjRsauxtsnDRwUSRX1qHq3HdTfQHV8wW9zEXeciai6HfeaKOedQn2Zoofx3WBw==} + '@typescript-eslint/parser@8.70.0': + resolution: {integrity: sha512-zYvrmj9Yxd63UGaXw+kdt6A0F0s0qveJyuatIM77bYC2DE4pgmg7a50u8LR7PRtXd0x+h+Tl3eXabGm06SWd3Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/project-service@8.69.0': - resolution: {integrity: sha512-yi4obFrHMmnsesWehHbkg9zMA7Jt8cXT+mKM08G999pH1yT6nqgsHx7MYm0uY1wAj8CqiBXYRJ7WAT0QdQHQXg==} + '@typescript-eslint/project-service@8.70.0': + resolution: {integrity: sha512-hFHbTNqhU9G+2eKFXCBVb1tjFT/LceiJ4+HfLO4pTpDI0KHi6iajpcFFkaSQ9gXmCh7n82A0PthaayEdN6mspQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/scope-manager@8.69.0': - resolution: {integrity: sha512-ewfspqWvSxKSOaplqAUNbaSFO0eB6w1EtQ+esfYFRm3614Ty4uNtExkcbgd6nWsXphbqKyf9ZYdbZdv2xEoWEQ==} + '@typescript-eslint/scope-manager@8.70.0': + resolution: {integrity: sha512-8nP3Kwh5hlgZ4FicGvmznAmJe8UL4sdU8tLukrPaMuQmDuk4Y8xYfzu/aYZW4xT2JCgc7H/TpDI5cGlxcWJSqQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/tsconfig-utils@8.69.0': - resolution: {integrity: sha512-xNqK7YTDZsLniQMV/4rpFR8Z5JlqeRvVjuG1YgF/mdPVH84HSD19L8CczMA0qg2RfwEV231GHH3VnToJDo4MfQ==} + '@typescript-eslint/tsconfig-utils@8.70.0': + resolution: {integrity: sha512-adnkeeNq9Sq1sUf4+FRVc0KdgYghzsgFpZSQVZVvY0LCuUuN0FnQgyGzCJeC4fW1cdXseBAjU2EOqUIjbNcZUw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/type-utils@8.69.0': - resolution: {integrity: sha512-ZfoJAVg3JZndQEpEl9petVlxau3lRuElc4HRMuAlLCf8to04/iHz692RUSNmXKDjEuJmIL+KZ2/BsOcBc16dsA==} + '@typescript-eslint/type-utils@8.70.0': + resolution: {integrity: sha512-NUMKIhYVaVIVLnRL9CRt+VVcuLgSHUCpXn4/+K8wql+vdInUzvx8BjUO1oJ7cG9shjFJKtF8F8Hh2kCh3/KBVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/types@8.69.0': - resolution: {integrity: sha512-K3VrubUPhlo9VDBS6QdI8YB5j7ClpqLRdefcz6PFrhnwicehBweqQ9Evhl4l+FYz0HdDmMqIiSX0aldGRYtDCA==} + '@typescript-eslint/types@8.70.0': + resolution: {integrity: sha512-asTOIYhDg4zdzOScCyaytrsV3cR6B4ecPQlXw/dJIm7J/MZTtCtfVII9JD8Geh4jTCrK/Xe6cg5UevoleMcoJQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.69.0': - resolution: {integrity: sha512-AdFkgqck3Vudb/kWnxlyafU/4aBhHrbQ9locP2N4psXTy5mOBg0SHJumnLvx7r6g1gV4DKvUFwV2nJZBoqOD8w==} + '@typescript-eslint/typescript-estree@8.70.0': + resolution: {integrity: sha512-d9NmHMPEKQ7QCLLm1jI3zmoQBwT5KwFYjXBJ9ymZfKCUU+5rmTRykKAFvH5Qn/ZCds3CEAFS9OC9M/jkl0X2bA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/utils@8.69.0': - resolution: {integrity: sha512-tUbx60BBqQa31kXF5MCsOOLL5E/WzUuxIn7YpAvq+eaUlqvk8/NXnXMBNAdLCr0icjkzem7iUA5QqWHe/hJ1aw==} + '@typescript-eslint/utils@8.70.0': + resolution: {integrity: sha512-oZmtKJz/4fufZ2p3+Cn3ijEojcdfR+1zYDH2xKYrEly0dR/Q/1xUPRCOlKGxod78nWlU2UnDe09GZ3TaknBFGA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 typescript: '>=4.8.4 <6.1.0' - '@typescript-eslint/visitor-keys@8.69.0': - resolution: {integrity: sha512-+rmdgPA+EXkNgKYvHvFfhrs35utXbwaC5PGpDquSXcoXQDKUA5UjV0LmTucG/4JXkM31BTu4TilHtrN8IVBe8w==} + '@typescript-eslint/visitor-keys@8.70.0': + resolution: {integrity: sha512-BoC8PiO4Hkdo0TVJh9Ntxr5MxPDI7/oFsrygN5ADelFSeXG/qgNuucIGA+L5Z6JpPTE/uRfcTWtscjbUaufepQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@ungap/structured-clone@1.3.0': @@ -6338,9 +6370,6 @@ packages: '@vitest/expect@4.1.11': resolution: {integrity: sha512-VX2x5vNJXET47KAFzwERI+KRMtTTCSWTfSMKsW7JsUsXV4psq++e3DvZpuTDOpHcxytiDs6p2nhVb2tVDiiUYw==} - '@vitest/expect@4.1.2': - resolution: {integrity: sha512-gbu+7B0YgUJ2nkdsRJrFFW6X7NTP44WlhiclHniUhxADQJH5Szt9mZ9hWnJPJ8YwOK5zUOSSlSvyzRf0u1DSBQ==} - '@vitest/mocker@3.2.4': resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} peerDependencies: @@ -6363,56 +6392,30 @@ packages: vite: optional: true - '@vitest/mocker@4.1.2': - resolution: {integrity: sha512-Ize4iQtEALHDttPRCmN+FKqOl2vxTiNUhzobQFFt/BM1lRUTG7zRCLOykG/6Vo4E4hnUdfVLo5/eqKPukcWW7Q==} - peerDependencies: - msw: ^2.4.9 - vite: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true - '@vitest/pretty-format@3.2.4': resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} '@vitest/pretty-format@4.1.11': resolution: {integrity: sha512-yiZzPbGTS9Sr/JpFl8zHrcIkAofNbFV6k21vIgQN/cY/oxZeXhJv5sc/MBJ5jFKWmWs+oJHw0UXLZjmf931+Vw==} - '@vitest/pretty-format@4.1.2': - resolution: {integrity: sha512-dwQga8aejqeuB+TvXCMzSQemvV9hNEtDDpgUKDzOmNQayl2OG241PSWeJwKRH3CiC+sESrmoFd49rfnq7T4RnA==} - '@vitest/runner@4.1.11': resolution: {integrity: sha512-LztvUgdwMNJMIkj3hQnnxiC2Xy1zNxq928W/xhjCLaNCzqTZOudjwbQf6v9IntZGPw132i2Lq2rgTRZHD3JHNw==} - '@vitest/runner@4.1.2': - resolution: {integrity: sha512-Gr+FQan34CdiYAwpGJmQG8PgkyFVmARK8/xSijia3eTFgVfpcpztWLuP6FttGNfPLJhaZVP/euvujeNYar36OQ==} - '@vitest/snapshot@4.1.11': resolution: {integrity: sha512-pN7ikn1ON7h8ee4gIAp4AzyK+zBtJPzVbqOgu5LCEh4VaJVbPQcgYQYJIMGQPXVeJJq1fnfazis7a5pFNPahog==} - '@vitest/snapshot@4.1.2': - resolution: {integrity: sha512-g7yfUmxYS4mNxk31qbOYsSt2F4m1E02LFqO53Xpzg3zKMhLAPZAjjfyl9e6z7HrW6LvUdTwAQR3HHfLjpko16A==} - '@vitest/spy@3.2.4': resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} '@vitest/spy@4.1.11': resolution: {integrity: sha512-apNa/prQy2qCeywhnixOHPRCgGNhvg7T4Dapfl1GahLp/R+uhBm5cPyFoNVyqsNd2h1nJxL6BqqdIjiABL60YA==} - '@vitest/spy@4.1.2': - resolution: {integrity: sha512-DU4fBnbVCJGNBwVA6xSToNXrkZNSiw59H8tcuUspVMsBDBST4nfvsPsEHDHGtWRRnqBERBQu7TrTKskmjqTXKA==} - '@vitest/utils@3.2.4': resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} '@vitest/utils@4.1.11': resolution: {integrity: sha512-zTCVGpyFsGWBhllOyKlTw/vnr6D9qxsfSDyfbyZmTyjHw5N/VuvzHpHoQjm2ZJzn4RJgx5w4r7V0er69CmLgPQ==} - '@vitest/utils@4.1.2': - resolution: {integrity: sha512-xw2/TiX82lQHA06cgbqRKFb5lCAy3axQ4H4SoUFhUsg+wztiet+co86IAMDtF6Vm1hc7J6j09oh/rgDn+JdKIQ==} - '@volar/language-core@2.4.15': resolution: {integrity: sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==} @@ -6472,8 +6475,8 @@ packages: '@vue/shared@3.5.42': resolution: {integrity: sha512-2rPxex1jQf4jvl9MOHl6YaXCPcrNqz/FstMOEh3QWY+/OME9nQTvl9WYeCwhW7AFjaR0SnngZGlp/wkR6rkI6g==} - '@vue/test-utils@2.5.0': - resolution: {integrity: sha512-6Clu5EKR/r6cDPYrKsu+8wenciWJJ3rhS9OEGsfDlZeZIhlJeEPGIZQHxE4lHRJCzPSq3EWMsFxQUqCvrbHQuQ==} + '@vue/test-utils@2.5.1': + resolution: {integrity: sha512-V/4a99odJ7hapr0bRt35XxljGk8hefq31gSOnlKTcEq2fUeoj2qb+FcpJYfQu4qfYhW9Ug+O2+CZ3QmZ7gXDzA==} peerDependencies: '@vue/compiler-dom': 3.x '@vue/server-renderer': 3.x @@ -6855,8 +6858,8 @@ packages: peerDependencies: postcss: '>=8.5.18' - autoprefixer@10.5.4: - resolution: {integrity: sha512-MaU0U/za7N3r6brxD4YB/l4NSrFzLPlANv6wEuQVaIPlD3L4W9rFcQPbL/EilY9BHhHvhfcz3gInDLrEtWT4EA==} + autoprefixer@10.6.1: + resolution: {integrity: sha512-cL1Qz6ADZhcEbny/8HPfe99J6HhNoYtpX2LFLIbhgGE7Q1hlQVkYFdetDN7Id3KiQxhDrHwzlHr/YQCnZ8+xSA==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: @@ -6989,6 +6992,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + baseline-browser-mapping@2.11.24: + resolution: {integrity: sha512-hYrgxie335U08WqICoGqKRzV1HFXv6zdxwJE4ekCb80CM9a0SVVsN4QPwT67RraRo+9h8IATk6uxHJw7QSkdOg==} + engines: {node: '>=6.0.0'} + hasBin: true + basic-ftp@5.3.1: resolution: {integrity: sha512-bopVNp6ugyA150DDuZfPFdt1KZ5a94ZDiwX4hMgZDzF+GttD80lEy8kj98kbyhLXnPvhtIo93mdnLIjpCAeeOw==} engines: {node: '>=10.0.0'} @@ -7058,13 +7066,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true - browserslist@4.28.7: - resolution: {integrity: sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - browserslist@4.28.8: - resolution: {integrity: sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==} + browserslist@4.29.0: + resolution: {integrity: sha512-3GSvyjvDI4Dur1Meg2BekJquu5uF+9R9a1+5M1Mde192eZoXbeXjzgOsgqPS2V8D5wrrip0gR5Hf/GhWQ9ZzaA==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true @@ -7114,6 +7117,9 @@ packages: resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==} engines: {node: ^18.17.0 || >=20.5.0} + cacheable@2.5.0: + resolution: {integrity: sha512-60cyAOytib/OzBw1JNSoSV/boK1AtHryDIjvVBk7XbN4ugfkM3+Sry7fEjNgPMGgOjuaZPAp8ruZ0Cxafwyq9g==} + call-bind-apply-helpers@1.0.2: resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} engines: {node: '>= 0.4'} @@ -7144,9 +7150,6 @@ packages: camelize@1.0.1: resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - caniuse-lite@1.0.30001806: - resolution: {integrity: sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==} - caniuse-lite@1.0.30001810: resolution: {integrity: sha512-TITQPUkaz+aVk5GL6NhOdwk1aEaNTSDPsGFWrTuhKGtjTF70jL/Oht2W4c6rXUe5fu7Ie19VIahAXHIIiWWNeg==} @@ -7859,11 +7862,8 @@ packages: electron-to-chromium@1.5.307: resolution: {integrity: sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==} - electron-to-chromium@1.5.399: - resolution: {integrity: sha512-lEcqhErbHjXRvd41rnWLpzbyU/IXfIYo7QwaFWmxGeLiLyY2TBCdHnWY88vB+p3ubnihRypDm66panXl7TylLA==} - - electron-to-chromium@1.5.420: - resolution: {integrity: sha512-2yD6XreGusOfNV+dUcvipJEXc3n/n7fgr7996aszTG+YY5E4mqM4tOq/3uhP129cazL9YHbVWSpc79ePotWtPA==} + electron-to-chromium@1.5.430: + resolution: {integrity: sha512-e1QEj72Y4zd8RlNZVmoTg+iCOSVwpk05IOiiQwdrkwCSVlZfPthevErhE+nckGd2YbsXfp1SkisznhGVIXP2NQ==} emoji-regex@10.6.0: resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} @@ -7959,8 +7959,8 @@ packages: es-module-lexer@1.7.0: resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} - es-module-lexer@2.0.0: - resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==} + es-module-lexer@2.3.2: + resolution: {integrity: sha512-poHGpORABojJJucnV9KbOavETW8lBVnphkW77ER5/BQ5Fz7oXSoCNek7IH3vR5nRjdsEz926ibFYX8KtLQmdyw==} es-object-atoms@1.1.1: resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} @@ -8039,10 +8039,10 @@ packages: engines: {node: '>=6.0'} hasBin: true - eslint-plugin-oxlint@1.81.0: - resolution: {integrity: sha512-yoig+eqijGmt+09wBOi71H8teCXFuDnOePWOiU1ynrME1WiOkw7zEFtkQwbacPYGjrbqhd5XXU4lQDzRWojW0g==} + eslint-plugin-oxlint@1.83.0: + resolution: {integrity: sha512-DbR3PG6Yk9Yd71eBIylT5PH47mD+FVnsqUXLq/9+FVbNFjy+vm4Z5hquZIzlmNw55Qz6xSePnzoHIERqhzXO/g==} peerDependencies: - oxlint: ~1.81.0 + oxlint: ~1.83.0 eslint-plugin-react-hooks@7.1.1: resolution: {integrity: sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==} @@ -8070,8 +8070,8 @@ packages: resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} - eslint@10.9.1: - resolution: {integrity: sha512-9VaAkDURekixUQJy0oJYl2DcN6oKMfxay7XzaGYAWQwsb6qfKf+x76R2k1L8kb1boc+FyCAaTA9GmiKaaiaF+A==} + eslint@10.10.0: + resolution: {integrity: sha512-NPXn6r5zl4uET1DAVPaOwzX3rut4c0wcmw3dWJAfOsTM5+TogXo0DDjz8pwm/hL8cyVNpHqeK4JpN0NjnyFFNw==} engines: {node: ^20.19.0 || ^22.13.0 || >=24} hasBin: true peerDependencies: @@ -8183,8 +8183,8 @@ packages: resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==} engines: {node: ^18.19.0 || >=20.5.0} - expect-type@1.3.0: - resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} + expect-type@1.4.0: + resolution: {integrity: sha512-KfYbmpRm0VbLjEvVa9yGwCi9GI34xvi7A/HXYWQO65CSD2u3MczUJSuwXKFIxlGsgBQizV9q5J9NHj4VG0n+pA==} engines: {node: '>=12.0.0'} expect@29.7.0: @@ -8198,8 +8198,8 @@ packages: resolution: {integrity: sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==} engines: {node: '>= 0.10.0'} - express@4.22.2: - resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==} + express@4.22.3: + resolution: {integrity: sha512-Bdcs4+3qlpVlx2NRn6fgX2Ue2/gGRaPeawebgclM0ERSCqDpA+owF1fdPwjJUTAJWMTuAaxjDf+hzb0/4eKvvw==} engines: {node: '>= 0.10.0'} express@5.2.1: @@ -8304,9 +8304,8 @@ packages: resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} engines: {node: '>=18'} - file-entry-cache@8.0.0: - resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} - engines: {node: '>=16.0.0'} + file-entry-cache@11.1.5: + resolution: {integrity: sha512-+PFTHITI08JIGhnNpGNI8T8inUpgZfk3GNEqfT9R2zZV2iFXg3CvqzSl/uEhs7TSGujYRELEANyDvS8Fj7+S7Q==} fill-range@7.1.1: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} @@ -8353,16 +8352,15 @@ packages: fix-dts-default-cjs-exports@1.0.1: resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==} - flat-cache@4.0.1: - resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} - engines: {node: '>=16'} + flat-cache@6.1.23: + resolution: {integrity: sha512-f++BY9pTk+983xK1FLzlLpmM0i0z+jHmx3QESGkURMXujQZz1k5wzwX6hjnQ8goaD0B+sYnDK1yZ6MTyZfUaqA==} flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true - flatted@3.3.3: - resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + flatted@3.4.4: + resolution: {integrity: sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==} follow-redirects@1.15.11: resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==} @@ -8476,11 +8474,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} - os: [darwin] - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -8723,6 +8716,10 @@ packages: hash-sum@2.0.0: resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} + hashery@1.5.1: + resolution: {integrity: sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==} + engines: {node: '>=20'} + hasown@2.0.2: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} @@ -8778,10 +8775,16 @@ packages: highlightjs-vue@1.0.0: resolution: {integrity: sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==} - hono@4.13.5: - resolution: {integrity: sha512-O6+/eCYRkzzzy0rPWwKLiGBR1nFuUPZynnwjxN1MBA62NNqbT0wQEzQyK2gSO5yDIDB336sXQleAhOHrzlYyKw==} + hono@4.13.8: + resolution: {integrity: sha512-/Gng7NfoykZl2pjukW5Z6+8Yxm3BPRf86GTbQnt0SbySkvax4fyL4H3HhY1cCpBGmiW9XDRFzRV+CXK2W8QudQ==} engines: {node: '>=16.9.0'} + hookified@1.15.1: + resolution: {integrity: sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==} + + hookified@2.2.0: + resolution: {integrity: sha512-p/LgFzRN5FeoD3DLS6bkUapeye6E4SI6yJs6KetENd18S+FBthqYq2amJUWpt5z0EQwwHemidjY5OqJGEKm5uA==} + hosted-git-info@8.1.0: resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==} engines: {node: ^18.17.0 || >=20.5.0} @@ -8937,8 +8940,8 @@ packages: resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} engines: {node: '>= 4'} - ignore@7.0.8: - resolution: {integrity: sha512-YYNsSlXBjMk92SKnkwvB5LOVSa6OznlFUGcsvrFgNJbJCd0M1XKeFVRc8ZByeCqz32FivYNHJVooLmdqrmvp/Q==} + ignore@7.0.9: + resolution: {integrity: sha512-brTTsvFRt5C1gGHtPst/281UjPD5t9fBqbgoMPlVWy11ZLTPfu7HxK4ZYqO9H7o/yC9rSTCI85EaQ4OoY12qYw==} engines: {node: '>= 4'} image-size@0.5.5: @@ -9004,8 +9007,8 @@ packages: intl-messageformat@10.7.18: resolution: {integrity: sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g==} - intl-messageformat@11.2.14: - resolution: {integrity: sha512-9f2VD1HFuxUvMw0RxsaP8WmMns6JRTnsNB/zghTFrp11ZktiXWwVDeZBPQchBKEmo+Gx/ZhxI7Qht7YglFD4PA==} + intl-messageformat@11.2.15: + resolution: {integrity: sha512-W4VNytsXyWgW5lvVchmsb9xgA5rSKqoflu3/IQ9UCtB0z4R+Bx9MoEkwFT/+30RCl/KzUoH0QGGe9lppF5SuvQ==} ip-address@10.2.0: resolution: {integrity: sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==} @@ -9347,8 +9350,8 @@ packages: resolution: {integrity: sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==} hasBin: true - jose@6.2.10: - resolution: {integrity: sha512-iiW7J9qRFlGxvCOIBDBDxFePQSn7ZMAnrYGhrrOo6siO/MIqwfyilLR27pkfDgUk+raLuzADS8A3S/KLBisc0g==} + jose@6.2.12: + resolution: {integrity: sha512-9NiFmJEex0sy2Dk58j2UGBSHgUs2ypF9eZSu4L6vjOX3Dp96Sw1F3uL+H+D1sx02jZZdzUT0HgvCy59CuvXcWw==} jose@6.2.3: resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==} @@ -9384,14 +9387,6 @@ packages: js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - - js-yaml@3.14.2: - resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==} - hasBin: true - js-yaml@3.15.2: resolution: {integrity: sha512-6EuL879VkRA+1Cz578mKMiKvjPNEuk6+r1JaFzoSWejZmtf7xWbIyw1e3KkxlkzTIt9Taw6JBhEppG7utc1P+w==} hasBin: true @@ -9414,9 +9409,6 @@ packages: engines: {node: '>=6'} hasBin: true - json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} - json-parse-even-better-errors@2.3.1: resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} @@ -9464,8 +9456,8 @@ packages: karma-source-map-support@1.4.0: resolution: {integrity: sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==} - keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + keyv@5.6.0: + resolution: {integrity: sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==} kind-of@6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} @@ -9475,16 +9467,16 @@ packages: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} - knip@6.34.0: - resolution: {integrity: sha512-bbHIrnGspYwe4EBPjjx+lvkUor0F2qfKQc5BPzPI4SOAImYA+k2ueVpIcF7d/W1LEVT7XoJUPt6zELeGZhXBgA==} + knip@6.36.0: + resolution: {integrity: sha512-DWETufDYX4UdaLeCK9gI5rfROanxVxbrsyEPzHFIrrn1H+W04f3XdQ6HPWMnA7O2u2VOKOLWt+EV23K/kb5jlA==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true kolorist@1.8.0: resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} - konva@10.3.2: - resolution: {integrity: sha512-A9GLx+Vj0PNnybjNq/St/S8utrksuSKOR8EzO2RTjA0SlmR9JipahcCXWW0vXz/9wjZCwAEtBtJFCUGe5mD/4g==} + konva@10.5.0: + resolution: {integrity: sha512-gTVQ12CVE2vCaP8g+Ag6lYf9LIo1s1lr7bXLNTbF5pcXbdRFCA3Oy1fFxDN/wK7RklJ9e8oqTiSsqmUtfQx91w==} peerDependencies: canvas: ^3.0.0 skia-canvas: ^3.0.0 @@ -9710,8 +9702,8 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - lint-staged@17.4.1: - resolution: {integrity: sha512-FmJeudcalbSfg1du+JCfvi5vS6Qt08KgbfLWiHinbef+2JJwUZwAWVoaO1AcJVUTWPfk0t30PMQNwPAeCzYQ+Q==} + lint-staged@17.5.1: + resolution: {integrity: sha512-7EDuco1xnBMeVpvAbeMq1U5KXwJGLmY8q6l+Ye78r36C4mPc+Vg1Z2SK8gHyRTyvPro90A0q5/FAZ+Au23d6QQ==} engines: {node: '>=22.22.1'} hasBin: true @@ -9902,8 +9894,8 @@ packages: marky@1.3.0: resolution: {integrity: sha512-ocnPZQLNpvbedwTy9kNrQEsknEfgvcLMvOtz3sFeWApDq1MXH1TqkCIx58xlpESsfwQOnuBO9beyQuNGzVvuhQ==} - mastra@1.27.2: - resolution: {integrity: sha512-RYkMpNbKXSLJhq0DhNmpSKf3+RaySg56Zg4rlQTMFGIYp6aE/d7PTQWORTAfVra33h2gJkS7t+d6R+iFGOLEIA==} + mastra@1.30.0: + resolution: {integrity: sha512-fed0N9+0PuXfit8lEDDk+EP3amwczgon6W1EVlXV5ZB7ZyJyz+dzzcRh1TIeugVls34zBJvRjgbaqy0v6IJXlA==} engines: {node: '>=22.13.0'} hasBin: true peerDependencies: @@ -10370,8 +10362,8 @@ packages: resolution: {integrity: sha512-eonl3sLUha+S1GzTPxychyhnUzKyeQkZ7jLjKrBagJgPla13F+uQ71HgpFefyHgqrjEbCPkDArxYsjY8/+gLKA==} engines: {node: '>= 0.4.0'} - next@16.2.11: - resolution: {integrity: sha512-B339zaqbyK8cmxhoAvLrcwoabwCP1wz21zSzfqxqXAemTu2BXnH7tQnfcglKv1vnMUIDBc+Hth7XODQriTZiRQ==} + next@16.3.3: + resolution: {integrity: sha512-tuRTx1nQ/yVw83cwJBo9F+njGUgMn3UHQycreWHB8XsStvvAh1AthbI8/4IpKnFaF58F+iSiHejYOlMQ/eq83g==} engines: {node: '>=20.9.0'} hasBin: true peerDependencies: @@ -10444,12 +10436,8 @@ packages: node-releases@2.0.36: resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==} - node-releases@2.0.51: - resolution: {integrity: sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==} - engines: {node: '>=18'} - - node-releases@2.0.54: - resolution: {integrity: sha512-YHs7BmmcsdAI5Ozuf8JZo6PT0mv2GIWC9vMfvUC3dp65M8hn7Ux8CPL+2oBI7juNuj9d0ndhTcznq2ODBps9cQ==} + node-releases@2.0.55: + resolution: {integrity: sha512-mIrE/Cw9y+9Au6dS5vDKDhQza9YvG6w+ZrS6X+ZzA7yFW/soAeaups4Qzn1bL6g5FVy8WtP79+0j82oPIbqRjQ==} engines: {node: '>=18'} nodemailer@9.1.1: @@ -10542,8 +10530,8 @@ packages: obug@2.1.1: resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} - obug@2.1.4: - resolution: {integrity: sha512-4a+OsYv9UktOJKE+l1A4OufDgdRF9PifWj+tJnHURo/P+WOxpG4GzUFL9qCalmWauao6ogiG+QvnCovwPoyAWA==} + obug@2.2.1: + resolution: {integrity: sha512-XrsrhT5sybtKI6wakr2SPOlGZWWYbUXZ7a0jT8/QOeAPau+1X/bSegNe5YR75oJmEZQbKningirmGOEJCIk61Q==} engines: {node: '>=12.20.0'} on-exit-leak-free@2.1.2: @@ -10622,15 +10610,15 @@ packages: outvariant@1.4.3: resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==} - oxc-parser@0.147.0: - resolution: {integrity: sha512-5xaug6t7GfV3BO5Iv+xHW1rmQkDEQ3BEu3L8g3InsvWO5i8CYGc4tCZ2X985QcwWNycFJam+aOns6Nr2XAThTA==} + oxc-parser@0.148.0: + resolution: {integrity: sha512-syxUKHeUll89RIABQADcI7sikYrwyssvA6gj4phSSIPezKVM8yMaLAiLLSc7fmzVvrwybfFGFbW5zme9sX87rg==} engines: {node: ^20.19.0 || >=22.12.0} oxc-resolver@11.24.2: resolution: {integrity: sha512-FY91FiDBj7ls5MsFS9jN3tjz2o0/zsdSsymlakySaBwVJZorHhkWyICLZMKxlu1R9vYo+sd3z1jwb4J8x7bNDw==} - oxlint@1.81.0: - resolution: {integrity: sha512-HyrJYqeoOCL0iqaLEzGewGT48ZX99P3hxYh8udAF9RGGIghSamkXE4ClUyBpEDNqasamThgmlPbuMOe7SAZmHg==} + oxlint@1.83.0: + resolution: {integrity: sha512-cyDzSzaw3uzP0TeCeq3lLRPPoaUxkbB4ZOXj+kn+5r+BX9V+4bNVGk9lxer+WrgcpebH4JxLlJ3KQjveVztOLQ==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -10799,6 +10787,9 @@ packages: path-to-regexp@0.1.12: resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} + path-to-regexp@0.1.13: + resolution: {integrity: sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==} + path-to-regexp@3.3.0: resolution: {integrity: sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==} @@ -10891,13 +10882,13 @@ packages: pkg-types@2.3.0: resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} - playwright-core@1.62.1: - resolution: {integrity: sha512-wPYSwEBJY9GHraISXqyqtx0na0LpO3XEX7jNDhntbex7tzUS7kLnZsOlFruFJB4Hi/rhDMjXGqHewDZ68nYZVw==} + playwright-core@1.63.0: + resolution: {integrity: sha512-rYCsBF/M5HjUch52bbtVONEFjv6Xu8sm8h72dNlR5bzIE1fvC/bxgspzkjSfU+MweEMmPM8KJebG6nnyxo5mCg==} engines: {node: '>=20'} hasBin: true - playwright@1.62.1: - resolution: {integrity: sha512-0M+L3LAD8/nm554LOla9Ayx0j0tmFZ0FBcoQ7F1VuVHpM/XpiC8RcDzBQB8W5+hA8L22THxELzeF+2WcUzvcLg==} + playwright@1.63.0: + resolution: {integrity: sha512-+7ziBLidS4NaNCdt57SUDT+wYmmd5fmiQejUic/kb+YsYSCPyOOE9sebzMjNmQrsnNpDJqd4WHvV/8lfKfUDUg==} engines: {node: '>=20'} hasBin: true @@ -11006,8 +10997,8 @@ packages: peerDependencies: postcss: '>=8.5.18' - postcss-prefix-selector@2.2.0: - resolution: {integrity: sha512-pGKK57v2SXKo5CD41tAnFh82Y+cxvS3lgTtt7e2YatH1nS3ADTI+U3Lk/NfG+xBz9fyU0KAYoBs1YVwqmGZ9nA==} + postcss-prefix-selector@2.2.1: + resolution: {integrity: sha512-oMvY0GLVjg6b/N09B4h/xWYczc+LsX1O+laIpXDBbP6tZll+Cj5kXxdI0IZ23NOQ+XIko8VDsCFj+bhgYsmP8g==} peerDependencies: postcss: '>=8.5.18' @@ -11040,8 +11031,12 @@ packages: resolution: {integrity: sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==} engines: {node: ^10 || ^12 || >=14} - posthog-js@1.425.1: - resolution: {integrity: sha512-GfdAUf402Prjt3ofkj4dh4k/m1SkYvgCeASyWj1xxcIVT7QnB9gGsslDwAZBZ6Wrtwxkq91gFbpSo/v633Q+1w==} + postcss@8.5.28: + resolution: {integrity: sha512-RRuzqDtt5Y9h3quz5hWhK+TPnsmVs6WwSU6LkJMeY4HstUEDuYTG8UJSdawMRzmzAtV+KEoG8N3Qg2qLy5vM/A==} + engines: {node: ^10 || ^12 || >=14} + + posthog-js@1.433.6: + resolution: {integrity: sha512-wGCGLHTDxwwWefyJ02tZaw3zVOURqidzGL9Ytv4MTbNuCo12X511TvLV1k+QLiohsB+aZ0c84K5o0clGqn0qgA==} peerDependencies: '@types/react': ^19 react: ^19.2.0 @@ -11051,8 +11046,8 @@ packages: react: optional: true - posthog-node@5.51.6: - resolution: {integrity: sha512-r+Ge3p0OnOcOWeTnvKZmAtDwECeIoyNTyxBxuZc8wM6RHCQ9j2Xrhogrf39HSq1Y2gIOpWLqIDRmWDcu7xmqcA==} + posthog-node@5.52.4: + resolution: {integrity: sha512-P3p4OouGQfw/ouv+Px4gcVWLNwYsFB4JPyksYmxv7QRX4niwp1/C9XjQSUyl0nt+KoQnK14zFDfONHWVthwKDA==} engines: {node: ^20.20.0 || >=22.22.0} peerDependencies: rxjs: ^7.0.0 @@ -11060,10 +11055,10 @@ packages: rxjs: optional: true - postprocessing@6.39.4: - resolution: {integrity: sha512-oAS/PjAbc/xT3OzjUrGsorJ4J064XwhVD2t0OwKLP/E8QwDMUJ0oOv6ZI1SYMtLchv4g0ySEx+JcLy92+48vlA==} + postprocessing@6.39.5: + resolution: {integrity: sha512-YmH+t74J2X1lwYjKzK/tgs9C9kqWWPB9JwZiDF5mEf4BdCEAmEFbO8lXBA7NM0/j4g+x6FgD/Tt5/kT7ogbEDA==} peerDependencies: - three: '>= 0.168.0 < 0.186.0' + three: '>= 0.168.0 < 0.187.0' preact-render-to-string@6.7.0: resolution: {integrity: sha512-Z4WR8fmLMRpdYqJ9i7vrlXSsSrxVJydwrkEXHapexfARbWfGb7vGcnvNQnIzN0cXciMVOlz/XLoiMCi9gUsy9Q==} @@ -11160,8 +11155,8 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - prettier@3.9.6: - resolution: {integrity: sha512-OpN0zzVdiaiAhxpuuj5efpIS4sY9j7bY6uR5mnj5yPzGkdkjNKSJeUThPb60Jw29QuAZgA4o+/iB49kFiaBX6g==} + prettier@3.9.7: + resolution: {integrity: sha512-T3mF5P7HFzZVLDQuCUNtJj6WK1pcpLMweMNUVwGb01bLNkH9AkKxtZvmInw8K6bnn2O3d6/5RHl6zSHiBAD0Og==} engines: {node: '>=14'} hasBin: true @@ -11239,6 +11234,10 @@ packages: resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} engines: {node: '>= 0.10'} + proxy-addr@2.0.8: + resolution: {integrity: sha512-5nnx0yGyVUcY6t9RnWcARWtwT9F1D8O9rt08htPvnd49W1IgZtmLkhu9WfMzQj1cFxjHIO6connUNVW5k7AVyQ==} + engines: {node: '>= 0.10'} + proxy-agent@6.5.0: resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} engines: {node: '>= 14'} @@ -11299,6 +11298,10 @@ packages: resolution: {integrity: sha512-T5ScUMAsmhdNbgDR41AGESYeS6V9MSgetkSnVhhW+gXvzC42VesKCn5ld87gAZDJ6vLHL9GkRvY9WtQWSnwFbw==} engines: {node: '>=18'} + qified@0.10.1: + resolution: {integrity: sha512-+Owyggi9IxT1ePKGafcI87ubSmxol6smwJ+RAHDQlx9+9cPwFWDiKFFCPuWhr9ignlGpZ9vDQLw67N4dcTVFEA==} + engines: {node: '>=20'} + qs@6.14.2: resolution: {integrity: sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==} engines: {node: '>=0.6'} @@ -11358,8 +11361,8 @@ packages: resolution: {integrity: sha512-aEZ9qP+/M+58x2qgfSFEWH1BxLyHe5+qkLNJOZQb5iGS017jpbRnoKhNRrXPeA6RfBrZO5wZrT9DMC1UqE1f1w==} engines: {node: ^20.9.0 || >=22} - react-dom@19.2.8: - resolution: {integrity: sha512-rVprimfGBG3DR+Tq0IQG2DT5PxKth1WIGDmj5yPmlzr4YBe7uyE+Du4oVqTDXZSHGGGXRtTJEGSSePyQCMBglQ==} + react-dom@19.3.0: + resolution: {integrity: sha512-JDk8dgif51OjFoDE70+OT9ICyYr+69HlmihNwp1+Nsfbna3t5sIiCa9ZJktDmQ4/1b/rn26hIAR2uYXDMr5r0Q==} peerDependencies: react: ^19.2.0 @@ -11376,11 +11379,6 @@ packages: peerDependencies: react: ^19.2.0 - react-icons@5.7.0: - resolution: {integrity: sha512-LBLy340Rzqy6+/yVhZKT3B/QpP1BZaesGqasf09HPOBzRarcDIFH0WwXlXQfE7q7ipxK4MSiC5DIBWURCny6fw==} - peerDependencies: - react: ^19.2.0 - react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} @@ -11390,15 +11388,15 @@ packages: react-is@18.3.1: resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} - react-konva@19.2.5: - resolution: {integrity: sha512-AdsuDB59GdB86QdenTAqRzr6Tfw3z9x9Opxo4BoqDjdNLsjekF9a1VhN4FlMPvg0qtrMl3d4dNmagaUTGH7fSA==} + react-konva@19.3.0: + resolution: {integrity: sha512-YEDAdM0PUUUJcTzXAKXMRO2+krSE+hhjGsupWjy6UBtzyFI6f2LkwSYQresl7WwvD+j3fbMy0uj3jtnytKqk9Q==} peerDependencies: konva: ^8.0.1 || ^7.2.5 || ^9.0.0 || ^10.0.0 react: ^19.2.0 react-dom: ^19.2.0 - react-reconciler@0.33.0: - resolution: {integrity: sha512-KetWRytFv1epdpJc3J4G75I4WrplZE5jOL7Yq0p34+OVOKF4Se7WrdIdVC45XsSSmUTlht2FM/fM1FZb1mfQeA==} + react-reconciler@0.34.0: + resolution: {integrity: sha512-eVibvB1fc9j5Qf1KRkiM3GzRPBdjg2P6G6QV2f3P6Eb3OGMxRBhdg2rrUwjbV5JrQaJj8nOa8uajmmJA5tJWjQ==} engines: {node: '>=0.10.0'} peerDependencies: react: ^19.2.0 @@ -11430,8 +11428,8 @@ packages: react: ^19.2.0 react-dom: ^19.2.0 - react@19.2.8: - resolution: {integrity: sha512-PWaYA1L/q9u2u7xYQi+Y3L3Yfnie7XyLeaJICV1MGD6LprsBxcAqGjYyr0eY3p+QdsA+x/Irkt4Qif8D63+Sbw==} + react@19.3.0: + resolution: {integrity: sha512-E8LUcbtBWt20bbl2YoHfx4ZDBdxVTfOKtCZn9cDSJ4l6/nuoApcpIBcj47t2wZoVX8g2ZHuMHbiShgCR1T5Sog==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -11777,8 +11775,8 @@ packages: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - scheduler@0.27.0: - resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} + scheduler@0.28.0: + resolution: {integrity: sha512-juorfCmIkIw8tT+p5BXSm6PJjQF/ycEYmKyzURCIt/RaZIhL+PulbQ9Yu2z1HdOJDdqDTlxA1+xKBmHXJsczAw==} schema-utils@3.3.0: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} @@ -11884,9 +11882,14 @@ packages: resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} engines: {node: '>=8'} - sharp@0.34.5: - resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + sharp@0.35.4: + resolution: {integrity: sha512-n++8XWcj+jCOr2IOl7h8LbKnGBDY4aPbmprMONBNFdn0ImXqpGVv5zliDs0V9HbmbCQLpbuo2ej9rAoOQTvMDA==} + engines: {node: '>=20.9.0'} + peerDependencies: + '@types/node': '*' + peerDependenciesMeta: + '@types/node': + optional: true shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} @@ -12089,6 +12092,9 @@ packages: std-env@4.0.0: resolution: {integrity: sha512-zUMPtQ/HBY3/50VbpkupYHbRroTRZJPRLvreamgErJVys0ceuzMkD44J/QjqhHjOzK42GQ3QZIeFG1OYfOtKqQ==} + std-env@4.2.0: + resolution: {integrity: sha512-oCUKSupKTHX53EyjDtuZQ64pjLJ6yYCtpmEw0goYxtjG9KpbRe8KAsl2tBUGU9DyMcJ0RwJ8GqJAFzMXcXW1Rw==} + stop-iteration-iterator@1.1.0: resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} engines: {node: '>= 0.4'} @@ -12287,8 +12293,8 @@ packages: tailwind-merge@1.8.1: resolution: {integrity: sha512-+fflfPxvHFr81hTJpQ3MIwtqgvefHZFUHFiIHpVIRXvG/nX9+gu2P7JNlFu2bfDMJ+uHhi/pUgzaYacMoXv+Ww==} - tailwind-merge@3.6.0: - resolution: {integrity: sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==} + tailwind-merge@3.7.0: + resolution: {integrity: sha512-XPPUyAc+cvspz3lHTcR/QgPfW2A0lv/xQNIjX3HGhLR+Nq2lHaLq5MtTesHn8GUr3W3DguT2KT5x3NVgRtYwmA==} tailwindcss-elevation@2.0.0: resolution: {integrity: sha512-ejQ9bCTiilb/aOF2l9fLF9sWGc2QvxepePTGlLIxGZzJpRYKODf1tJlIN51W9ho4tXD2GKbBb10jd3bKm3THKQ==} @@ -12432,8 +12438,8 @@ packages: third-party-web@0.26.7: resolution: {integrity: sha512-buUzX4sXC4efFX6xg2bw6/eZsCUh8qQwSavC4D9HpONMFlRbcHhD8Je5qwYdCpViR6q0qla2wPP+t91a2vgolg==} - third-party-web@0.29.2: - resolution: {integrity: sha512-fegtha91tq2DHphyoiBXVHjVi2YG9zFaRnboT9C28tO1en9Y3wJsfspuy40F+u5wl3hHVbw7cnd1b67kEGHb8g==} + third-party-web@0.30.0: + resolution: {integrity: sha512-p+PfyL5U0ediGzvwPzMSdD9MnC8rHW6nWJJVLIQvqN7RsSqfaZ+7n4c9GILqH36EYR0eXB9CzAeCRnKFr/9uJg==} thread-stream@4.2.0: resolution: {integrity: sha512-e2zZ96wSChazBsbENf/Pcm/4swHt2cEKQ92rhUjkL9GCKiTDJIaTBenjE/m9DXi0QBmTMDkFDdOomUy20A1tDQ==} @@ -12461,8 +12467,8 @@ packages: resolution: {integrity: sha512-SHf/r48b7vOrjve9PxJo3MN5v5yuyjHvdUcrQffT3WXMUfnGmHDVbC4k3sHJaJTgZCwpUplIaAo5ANtMyp3YHg==} engines: {node: '>=18'} - tinyexec@1.3.0: - resolution: {integrity: sha512-QKAl9m8gWWGHV8jZcPeym6j+XULi6tOf1mT83WYJ4Lk2ytW/uwAWkrP0uFsdoYMdueVJ0qs26wZ+23xeB4ibNQ==} + tinyexec@1.3.1: + resolution: {integrity: sha512-GCvB3aoys96IuDFBMcTB46JOR6mdMtAToqwiW8JlWhsoh1mhHi/xn9ss/Dg7N555GiJyEt2qzoG/NHCwM6h1EA==} engines: {node: '>=18'} tinyglobby@0.2.16: @@ -12481,6 +12487,10 @@ packages: resolution: {integrity: sha512-Bf+ILmBgretUrdJxzXM0SgXLZ3XfiaUuOj/IKQHuTXip+05Xn+uyEYdVg0kYDipTBcLrCVyUzAPz7QmArb0mmw==} engines: {node: '>=14.0.0'} + tinyrainbow@3.1.1: + resolution: {integrity: sha512-yau8yJdTt989Mm0Bd/236QnzEiPf2xLLTqUZRUJOo/3CB078LSwzei343DgtJVmfJKJE3TMINY1u42SQsP6mXw==} + engines: {node: '>=14.0.0'} + tinyspy@4.0.4: resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==} engines: {node: '>=14.0.0'} @@ -12671,8 +12681,8 @@ packages: typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} - typescript-eslint@8.69.0: - resolution: {integrity: sha512-B3MltX0VqjUBNEe3b3sSuiRbfa6XrfHFtBiPamjT5AsW/dfq+y+bc0wyuS9DxAS1LyzCxRp2+rxzpLUvqM2BvA==} + typescript-eslint@8.70.0: + resolution: {integrity: sha512-P/W5cz70/cQAuKfY3xwQMWWTV7BvJ0mAQmi+9mBcsVPaBUpd6Ohpa+fECv9rBFrQcig86jAiNBFNWUqnTjr4pw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 @@ -12817,8 +12827,8 @@ packages: peerDependencies: browserslist: '>= 4.21.0' - update-browserslist-db@1.3.2: - resolution: {integrity: sha512-UQ+MSxlhRm1bzjhU+DcuXfjFO1FzNtqhK5+9Yvlp90ItDLk5vT932A0rFu619nf7RVS+Y/VeaUW1jaRDqZ8VJw==} + update-browserslist-db@1.3.3: + resolution: {integrity: sha512-pJ2sYawQS0R/WI928Gj5GlPhTGzbMelq0+4INtSYNDV9ErKJcX6xjGWkoG/VnB3dpUm00zALaqkrUD77pO5TDQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -12859,6 +12869,10 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} + verkit@0.3.2: + resolution: {integrity: sha512-zj/ob3UsvJGN0whEAKFp53REA5X66hvffVqoCtVQAakJKnKlH+/PcOfMoFwIG/o4rElqLv/ycAFlx8ZlXUorCg==} + engines: {node: '>=18.12.0'} + vfile-message@4.0.3: resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} @@ -12950,13 +12964,13 @@ packages: yaml: optional: true - vite@8.2.2: - resolution: {integrity: sha512-cFKLV/PRgAUlIRm5WjMjJ86jrftzpqcgH+Us+DS8mI3CDNiH30Whrz8uHL3+MOLPAgqbMBAqWdAHAphOAM+z/Q==} + vite@8.3.0: + resolution: {integrity: sha512-lhZBVvEHefgE+HQZC9O7EBJgCU/nVzFNl7vkS4RE0APtWLP02/8QVIkQtzBxPquh7lq5/78NHipTj7ODQ6XuyQ==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: '@types/node': ^20.19.0 || >=22.12.0 - '@vitejs/devtools': ^0.4.0 || ^0.5.0 + '@vitejs/devtools': ^0.7.1 esbuild: ^0.27.0 || ^0.28.0 jiti: '>=1.21.0' less: ^4.0.0 @@ -13042,41 +13056,6 @@ packages: jsdom: optional: true - vitest@4.1.2: - resolution: {integrity: sha512-xjR1dMTVHlFLh98JE3i/f/WePqJsah4A0FK9cc8Ehp9Udk0AZk6ccpIZhh1qJ/yxVWRZ+Q54ocnD8TXmkhspGg==} - engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0} - hasBin: true - peerDependencies: - '@edge-runtime/vm': '*' - '@opentelemetry/api': ^1.9.0 - '@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0 - '@vitest/browser-playwright': 4.1.2 - '@vitest/browser-preview': 4.1.2 - '@vitest/browser-webdriverio': 4.1.2 - '@vitest/ui': 4.1.2 - happy-dom: '*' - jsdom: 22.1.0 - vite: ^6.0.0 || ^7.0.0 || ^8.0.0 - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@opentelemetry/api': - optional: true - '@types/node': - optional: true - '@vitest/browser-playwright': - optional: true - '@vitest/browser-preview': - optional: true - '@vitest/browser-webdriverio': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - void-elements@3.1.0: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} @@ -13437,6 +13416,11 @@ packages: engines: {node: '>= 14.6'} hasBin: true + yaml@2.9.1: + resolution: {integrity: sha512-3NxN8+78OdzbT7C/WjGsyfPAtJaN3FNDsWxv7Y7mcDsT/oOmgW8BpyQQFFBnvZE3j9Y2Sdz1ULFLezL7Eb2yFw==} + engines: {node: '>= 14.6'} + hasBin: true + yargs-parser@13.1.2: resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==} @@ -13513,8 +13497,8 @@ packages: zod@3.25.76: resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} - zod@4.5.4: - resolution: {integrity: sha512-sC95tT5iHHH9gtpj6A81kh+NEaRAUFN+qlUPDUbRfOMvNf5QCBqsb3WgvnpVtK5Y+4UfA6KqufotuTvMGiTlsA==} + zod@4.6.5: + resolution: {integrity: sha512-v5l/aFXZQeai4awLbOpSoHecE9UiMrnfx75tEXLjNonXVARxQ5mOeipTjROUchszUNCqnE+hqAMujRsRHsut2Q==} zone.js@0.14.10: resolution: {integrity: sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==} @@ -13531,26 +13515,26 @@ snapshots: '@grpc/grpc-js': 1.14.3 express: 5.2.1 - '@a2a-js/sdk@0.3.14(express@4.22.2)': + '@a2a-js/sdk@0.3.14(express@4.22.3)': dependencies: uuid: 11.1.1 optionalDependencies: - express: 4.22.2 + express: 4.22.3 '@a2a-js/sdk@1.0.1(@grpc/grpc-js@1.14.3)(express@5.2.1)': dependencies: - jose: 6.2.10 + jose: 6.2.12 uuid: 11.1.1 optionalDependencies: '@grpc/grpc-js': 1.14.3 express: 5.2.1 - '@a2a-js/sdk@1.0.1(express@4.22.2)': + '@a2a-js/sdk@1.0.1(express@4.22.3)': dependencies: - jose: 6.2.10 + jose: 6.2.12 uuid: 11.1.1 optionalDependencies: - express: 4.22.2 + express: 4.22.3 '@adobe/css-tools@4.5.0': {} @@ -13561,26 +13545,12 @@ snapshots: secure-json-parse: 2.7.0 zod: 3.25.76 - '@ai-sdk/provider-utils@2.2.8(zod@4.5.4)': + '@ai-sdk/provider-utils@2.2.8(zod@4.6.5)': dependencies: '@ai-sdk/provider': 1.1.3 nanoid: 3.3.18 secure-json-parse: 2.7.0 - zod: 4.5.4 - - '@ai-sdk/provider-utils@3.0.30(zod@3.25.76)': - dependencies: - '@ai-sdk/provider': 2.0.3 - '@standard-schema/spec': 1.1.0 - eventsource-parser: 3.1.1 - zod: 3.25.76 - - '@ai-sdk/provider-utils@3.0.30(zod@4.5.4)': - dependencies: - '@ai-sdk/provider': 2.0.3 - '@standard-schema/spec': 1.1.0 - eventsource-parser: 3.1.1 - zod: 4.5.4 + zod: 4.6.5 '@ai-sdk/provider-utils@4.0.40(zod@3.25.76)': dependencies: @@ -13589,12 +13559,12 @@ snapshots: eventsource-parser: 3.1.1 zod: 3.25.76 - '@ai-sdk/provider-utils@4.0.40(zod@4.5.4)': + '@ai-sdk/provider-utils@4.0.40(zod@4.6.5)': dependencies: '@ai-sdk/provider': 3.0.14 '@standard-schema/spec': 1.1.0 eventsource-parser: 3.1.1 - zod: 4.5.4 + zod: 4.6.5 '@ai-sdk/provider-utils@5.0.13(zod@3.25.76)': dependencies: @@ -13604,13 +13574,13 @@ snapshots: eventsource-parser: 3.1.1 zod: 3.25.76 - '@ai-sdk/provider-utils@5.0.13(zod@4.5.4)': + '@ai-sdk/provider-utils@5.0.13(zod@4.6.5)': dependencies: '@ai-sdk/provider': 4.0.4 '@standard-schema/spec': 1.1.0 '@workflow/serde': 4.1.0 eventsource-parser: 3.1.1 - zod: 4.5.4 + zod: 4.6.5 '@ai-sdk/provider@1.1.3': dependencies: @@ -13635,12 +13605,12 @@ snapshots: zod: 3.25.76 zod-to-json-schema: 3.25.2(zod@3.25.76) - '@ai-sdk/ui-utils@1.2.11(zod@4.5.4)': + '@ai-sdk/ui-utils@1.2.11(zod@4.6.5)': dependencies: '@ai-sdk/provider': 1.1.3 - '@ai-sdk/provider-utils': 2.2.8(zod@4.5.4) - zod: 4.5.4 - zod-to-json-schema: 3.25.2(zod@4.5.4) + '@ai-sdk/provider-utils': 2.2.8(zod@4.6.5) + zod: 4.6.5 + zod-to-json-schema: 3.25.2(zod@4.6.5) '@algolia/abtesting@1.8.0': dependencies: @@ -13747,19 +13717,19 @@ snapshots: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 - '@analogjs/vite-plugin-angular@1.22.5(47674aaa8bd722cf95da225b75b3b84f)': + '@analogjs/vite-plugin-angular@1.22.5(4a0966a570ed98a9cff00a91974d9a01)': dependencies: ts-morph: 21.0.1 vfile: 6.0.3 optionalDependencies: - '@angular-devkit/build-angular': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)))(jiti@2.7.0)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@4.3.3)(tsx@4.23.13)(typescript@5.6.3)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(yaml@2.9.0) - '@angular/build': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@4.3.3)(terser@5.46.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0) + '@angular-devkit/build-angular': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)))(jiti@2.7.0)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@4.3.3)(tsx@4.23.13)(typescript@5.6.3)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(yaml@2.9.1) + '@angular/build': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@4.3.3)(terser@5.46.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) - '@analogjs/vitest-angular@1.22.5(@analogjs/vite-plugin-angular@1.22.5(47674aaa8bd722cf95da225b75b3b84f))(@angular-devkit/architect@0.2003.28(chokidar@4.0.3))(vitest@4.1.11)': + '@analogjs/vitest-angular@1.22.5(@analogjs/vite-plugin-angular@1.22.5(4a0966a570ed98a9cff00a91974d9a01))(@angular-devkit/architect@0.2003.28(chokidar@4.0.3))(vitest@4.1.11)': dependencies: - '@analogjs/vite-plugin-angular': 1.22.5(47674aaa8bd722cf95da225b75b3b84f) + '@analogjs/vite-plugin-angular': 1.22.5(4a0966a570ed98a9cff00a91974d9a01) '@angular-devkit/architect': 0.2003.28(chokidar@4.0.3) - vitest: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + vitest: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@angular-devkit/architect@0.1902.27(chokidar@4.0.3)': dependencies: @@ -13775,13 +13745,13 @@ snapshots: transitivePeerDependencies: - chokidar - '@angular-devkit/build-angular@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)))(jiti@2.7.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tsx@4.23.13)(typescript@5.6.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(yaml@2.9.0)': + '@angular-devkit/build-angular@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)))(jiti@2.7.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tsx@4.23.13)(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(yaml@2.9.1)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + '@angular-devkit/build-webpack': 0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) '@angular-devkit/core': 19.2.27(chokidar@4.0.3) - '@angular/build': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0) + '@angular/build': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) '@angular/compiler-cli': 19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3) '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -13793,14 +13763,14 @@ snapshots: '@babel/preset-env': 7.26.9(@babel/core@7.26.10) '@babel/runtime': 7.26.10 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@ngtools/webpack': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ansi-colors: 4.1.3 - autoprefixer: 10.4.20(postcss@8.5.26) - babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + autoprefixer: 10.4.20(postcss@8.5.28) + babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) browserslist: 4.28.1 - copy-webpack-plugin: 12.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) - css-loader: 7.1.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + copy-webpack-plugin: 12.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) + css-loader: 7.1.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) esbuild-wasm: 0.28.0 fast-glob: 3.3.3 http-proxy-middleware: 3.0.5 @@ -13808,36 +13778,36 @@ snapshots: jsonc-parser: 3.3.1 karma-source-map-support: 1.4.0 less: 4.2.2 - less-loader: 12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) - license-webpack-plugin: 4.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + less-loader: 12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) + license-webpack-plugin: 4.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) loader-utils: 3.3.1 - mini-css-extract-plugin: 2.9.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + mini-css-extract-plugin: 2.9.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) open: 10.1.0 ora: 5.4.1 picomatch: 4.0.4 piscina: 4.8.0 - postcss: 8.5.26 - postcss-loader: 8.1.1(postcss@8.5.26)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + postcss: 8.5.28 + postcss-loader: 8.1.1(postcss@8.5.28)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) resolve-url-loader: 5.0.0 rxjs: 7.8.1 sass: 1.85.0 - sass-loader: 16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + sass-loader: 16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) semver: 7.7.1 - source-map-loader: 5.0.0(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + source-map-loader: 5.0.0(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) source-map-support: 0.5.21 terser: 5.39.0 tree-kill: 1.2.2 tslib: 2.8.1 typescript: 5.6.3 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) - webpack-dev-middleware: 7.4.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) + webpack-dev-middleware: 7.4.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) optionalDependencies: esbuild: 0.28.0 - ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3) - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3) + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) transitivePeerDependencies: - '@angular/compiler' - '@minify-html/node' @@ -13868,13 +13838,13 @@ snapshots: - webpack-cli - yaml - '@angular-devkit/build-angular@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)))(jiti@2.7.0)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@4.3.3)(tsx@4.23.13)(typescript@5.6.3)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(yaml@2.9.0)': + '@angular-devkit/build-angular@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)))(jiti@2.7.0)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@4.3.3)(tsx@4.23.13)(typescript@5.6.3)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(yaml@2.9.1)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) - '@angular-devkit/build-webpack': 0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + '@angular-devkit/build-webpack': 0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) '@angular-devkit/core': 19.2.27(chokidar@4.0.3) - '@angular/build': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@4.3.3)(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0) + '@angular/build': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@4.3.3)(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1) '@angular/compiler-cli': 19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3) '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -13886,14 +13856,14 @@ snapshots: '@babel/preset-env': 7.26.9(@babel/core@7.26.10) '@babel/runtime': 7.26.10 '@discoveryjs/json-ext': 0.6.3 - '@ngtools/webpack': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@ngtools/webpack': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ansi-colors: 4.1.3 - autoprefixer: 10.4.20(postcss@8.5.26) - babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + autoprefixer: 10.4.20(postcss@8.5.28) + babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) browserslist: 4.28.1 - copy-webpack-plugin: 12.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) - css-loader: 7.1.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + copy-webpack-plugin: 12.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) + css-loader: 7.1.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) esbuild-wasm: 0.28.0 fast-glob: 3.3.3 http-proxy-middleware: 3.0.5 @@ -13901,32 +13871,32 @@ snapshots: jsonc-parser: 3.3.1 karma-source-map-support: 1.4.0 less: 4.2.2 - less-loader: 12.2.0(less@4.2.2)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) - license-webpack-plugin: 4.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + less-loader: 12.2.0(less@4.2.2)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) + license-webpack-plugin: 4.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) loader-utils: 3.3.1 - mini-css-extract-plugin: 2.9.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + mini-css-extract-plugin: 2.9.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) open: 10.1.0 ora: 5.4.1 picomatch: 4.0.4 piscina: 4.8.0 - postcss: 8.5.26 - postcss-loader: 8.1.1(postcss@8.5.26)(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + postcss: 8.5.28 + postcss-loader: 8.1.1(postcss@8.5.28)(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) resolve-url-loader: 5.0.0 rxjs: 7.8.1 sass: 1.85.0 - sass-loader: 16.0.5(sass@1.85.0)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + sass-loader: 16.0.5(sass@1.85.0)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) semver: 7.7.1 - source-map-loader: 5.0.0(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + source-map-loader: 5.0.0(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) source-map-support: 0.5.21 terser: 5.39.0 tree-kill: 1.2.2 tslib: 2.8.1 typescript: 5.6.3 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) - webpack-dev-middleware: 7.4.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) + webpack-dev-middleware: 7.4.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) webpack-merge: 6.0.1 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) optionalDependencies: esbuild: 0.28.0 ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3) @@ -13962,21 +13932,21 @@ snapshots: - yaml optional: true - '@angular-devkit/build-webpack@0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26))': + '@angular-devkit/build-webpack@0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28))': dependencies: '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) rxjs: 7.8.1 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) transitivePeerDependencies: - chokidar - '@angular-devkit/build-webpack@0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26))': + '@angular-devkit/build-webpack@0.1902.27(chokidar@4.0.3)(webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28))': dependencies: '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) rxjs: 7.8.1 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) - webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) + webpack-dev-server: 5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) transitivePeerDependencies: - chokidar optional: true @@ -14019,7 +13989,7 @@ snapshots: '@angular/core': 19.2.25(rxjs@7.8.2)(zone.js@0.14.10) tslib: 2.8.1 - '@angular/build@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@4.3.3)(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0)': + '@angular/build@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@4.3.3)(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) @@ -14030,7 +14000,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) '@inquirer/confirm': 5.1.6(@types/node@26.1.2) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1)) beasties: 0.3.2 browserslist: 4.28.1 esbuild: 0.28.0 @@ -14048,13 +14018,13 @@ snapshots: semver: 7.7.1 source-map-support: 0.5.21 typescript: 5.6.3 - vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1) watchpack: 2.4.2 optionalDependencies: less: 4.2.2 lmdb: 3.2.6 ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3) - postcss: 8.5.26 + postcss: 8.5.28 tailwindcss: 4.3.3 transitivePeerDependencies: - '@types/node' @@ -14070,7 +14040,7 @@ snapshots: - yaml optional: true - '@angular/build@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0)': + '@angular/build@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.2.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(terser@5.39.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) @@ -14081,7 +14051,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) '@inquirer/confirm': 5.1.6(@types/node@26.1.2) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1)) beasties: 0.3.2 browserslist: 4.28.1 esbuild: 0.28.0 @@ -14099,14 +14069,14 @@ snapshots: semver: 7.7.1 source-map-support: 0.5.21 typescript: 5.6.3 - vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1) watchpack: 2.4.2 optionalDependencies: less: 4.2.2 lmdb: 3.2.6 - ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3) - postcss: 8.5.26 - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3) + postcss: 8.5.28 + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) transitivePeerDependencies: - '@types/node' - chokidar @@ -14120,7 +14090,7 @@ snapshots: - tsx - yaml - '@angular/build@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.26)(tailwindcss@4.3.3)(terser@5.46.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.0)': + '@angular/build@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3))(postcss@8.5.28)(tailwindcss@4.3.3)(terser@5.46.0)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1)': dependencies: '@ampproject/remapping': 2.3.0 '@angular-devkit/architect': 0.1902.27(chokidar@4.0.3) @@ -14131,7 +14101,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10) '@inquirer/confirm': 5.1.6(@types/node@26.1.2) - '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) beasties: 0.3.2 browserslist: 4.28.1 esbuild: 0.28.0 @@ -14149,13 +14119,13 @@ snapshots: semver: 7.7.1 source-map-support: 0.5.21 typescript: 5.6.3 - vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) watchpack: 2.4.2 optionalDependencies: less: 4.6.4 lmdb: 3.2.6 ng-packagr: 19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3) - postcss: 8.5.26 + postcss: 8.5.28 tailwindcss: 4.3.3 transitivePeerDependencies: - '@types/node' @@ -14249,20 +14219,20 @@ snapshots: optionalDependencies: '@angular/animations': 19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)) - '@aws-sdk/checksums@3.1000.29': + '@aws-sdk/checksums@3.1001.0': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/client-s3@3.1125.0': + '@aws-sdk/client-s3@3.1134.0': dependencies: - '@aws-sdk/checksums': 3.1000.29 - '@aws-sdk/core': 3.977.9 - '@aws-sdk/credential-provider-node': 3.972.82 - '@aws-sdk/middleware-sdk-s3': 3.972.75 + '@aws-sdk/checksums': 3.1001.0 + '@aws-sdk/core': 3.978.0 + '@aws-sdk/credential-provider-node': 3.972.83 + '@aws-sdk/middleware-sdk-s3': 3.972.76 '@aws-sdk/signature-v4-multi-region': 3.996.46 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 @@ -14271,7 +14241,7 @@ snapshots: '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/core@3.977.9': + '@aws-sdk/core@3.978.0': dependencies: '@aws-sdk/types': 3.974.5 '@aws-sdk/xml-builder': 3.972.40 @@ -14282,17 +14252,17 @@ snapshots: bowser: 2.14.1 tslib: 2.8.1 - '@aws-sdk/credential-provider-env@3.972.70': + '@aws-sdk/credential-provider-env@3.972.71': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-http@3.972.72': + '@aws-sdk/credential-provider-http@3.972.73': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/fetch-http-handler': 5.7.2 @@ -14300,84 +14270,84 @@ snapshots: '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-ini@3.973.15': + '@aws-sdk/credential-provider-ini@3.973.16': dependencies: - '@aws-sdk/core': 3.977.9 - '@aws-sdk/credential-provider-env': 3.972.70 - '@aws-sdk/credential-provider-http': 3.972.72 - '@aws-sdk/credential-provider-login': 3.972.77 - '@aws-sdk/credential-provider-process': 3.972.70 - '@aws-sdk/credential-provider-sso': 3.973.14 - '@aws-sdk/credential-provider-web-identity': 3.972.76 - '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/core': 3.978.0 + '@aws-sdk/credential-provider-env': 3.972.71 + '@aws-sdk/credential-provider-http': 3.972.73 + '@aws-sdk/credential-provider-login': 3.972.78 + '@aws-sdk/credential-provider-process': 3.972.71 + '@aws-sdk/credential-provider-sso': 3.973.15 + '@aws-sdk/credential-provider-web-identity': 3.972.77 + '@aws-sdk/nested-clients': 3.997.45 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/credential-provider-imds': 4.5.2 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-login@3.972.77': + '@aws-sdk/credential-provider-login@3.972.78': dependencies: - '@aws-sdk/core': 3.977.9 - '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/core': 3.978.0 + '@aws-sdk/nested-clients': 3.997.45 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-node@3.972.82': + '@aws-sdk/credential-provider-node@3.972.83': dependencies: - '@aws-sdk/credential-provider-env': 3.972.70 - '@aws-sdk/credential-provider-http': 3.972.72 - '@aws-sdk/credential-provider-ini': 3.973.15 - '@aws-sdk/credential-provider-process': 3.972.70 - '@aws-sdk/credential-provider-sso': 3.973.14 - '@aws-sdk/credential-provider-web-identity': 3.972.76 + '@aws-sdk/credential-provider-env': 3.972.71 + '@aws-sdk/credential-provider-http': 3.972.73 + '@aws-sdk/credential-provider-ini': 3.973.16 + '@aws-sdk/credential-provider-process': 3.972.71 + '@aws-sdk/credential-provider-sso': 3.973.15 + '@aws-sdk/credential-provider-web-identity': 3.972.77 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/credential-provider-imds': 4.5.2 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-process@3.972.70': + '@aws-sdk/credential-provider-process@3.972.71': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-sso@3.973.14': + '@aws-sdk/credential-provider-sso@3.973.15': dependencies: - '@aws-sdk/core': 3.977.9 - '@aws-sdk/nested-clients': 3.997.44 - '@aws-sdk/token-providers': 3.1116.0 + '@aws-sdk/core': 3.978.0 + '@aws-sdk/nested-clients': 3.997.45 + '@aws-sdk/token-providers': 3.1129.0 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/credential-provider-web-identity@3.972.76': + '@aws-sdk/credential-provider-web-identity@3.972.77': dependencies: - '@aws-sdk/core': 3.977.9 - '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/core': 3.978.0 + '@aws-sdk/nested-clients': 3.997.45 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/middleware-sdk-s3@3.972.75': + '@aws-sdk/middleware-sdk-s3@3.972.76': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/signature-v4-multi-region': 3.996.46 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/nested-clients@3.997.44': + '@aws-sdk/nested-clients@3.997.45': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/signature-v4-multi-region': 3.996.46 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 @@ -14386,9 +14356,9 @@ snapshots: '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/s3-request-presigner@3.1125.0': + '@aws-sdk/s3-request-presigner@3.1134.0': dependencies: - '@aws-sdk/core': 3.977.9 + '@aws-sdk/core': 3.978.0 '@aws-sdk/signature-v4-multi-region': 3.996.46 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 @@ -14402,10 +14372,10 @@ snapshots: '@smithy/types': 4.17.2 tslib: 2.8.1 - '@aws-sdk/token-providers@3.1116.0': + '@aws-sdk/token-providers@3.1129.0': dependencies: - '@aws-sdk/core': 3.977.9 - '@aws-sdk/nested-clients': 3.997.44 + '@aws-sdk/core': 3.978.0 + '@aws-sdk/nested-clients': 3.997.45 '@aws-sdk/types': 3.974.5 '@smithy/core': 3.33.3 '@smithy/types': 4.17.2 @@ -14442,7 +14412,7 @@ snapshots: '@babel/compat-data@7.29.0': {} - '@babel/compat-data@8.0.0': {} + '@babel/compat-data@8.0.5': {} '@babel/core@7.26.10': dependencies: @@ -14504,24 +14474,24 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/core@8.0.1': + '@babel/core@8.0.5': dependencies: '@babel/code-frame': 8.0.0 - '@babel/generator': 8.0.0 - '@babel/helper-compilation-targets': 8.0.0 - '@babel/helpers': 8.0.0 - '@babel/parser': 8.0.4 + '@babel/generator': 8.0.5 + '@babel/helper-compilation-targets': 8.0.5 + '@babel/helpers': 8.0.5 + '@babel/parser': 8.0.5 '@babel/template': 8.0.0 - '@babel/traverse': 8.0.4 - '@babel/types': 8.0.4 + '@babel/traverse': 8.0.5 + '@babel/types': 8.0.5 '@types/gensync': 1.0.5 convert-source-map: 2.0.0 empathic: 2.0.1 gensync: 1.0.0-beta.2 import-meta-resolve: 4.2.0 json5: 2.2.3 - obug: 2.1.4 - semver: 7.7.4 + obug: 2.2.1 + verkit: 0.3.2 '@babel/generator@7.26.10': dependencies: @@ -14547,11 +14517,11 @@ snapshots: '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 - '@babel/generator@8.0.0': + '@babel/generator@8.0.5': dependencies: - '@babel/parser': 8.0.4 - '@babel/types': 8.0.4 - '@jridgewell/gen-mapping': 0.3.13 + '@babel/parser': 8.0.5 + '@babel/types': 8.0.5 + '@jridgewell/gen-mapping': 0.4.0-beta.0 '@jridgewell/trace-mapping': 0.3.31 '@types/jsesc': 2.5.1 jsesc: 3.1.0 @@ -14572,17 +14542,17 @@ snapshots: dependencies: '@babel/compat-data': 7.29.0 '@babel/helper-validator-option': 7.27.1 - browserslist: 4.28.7 + browserslist: 4.29.0 lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-compilation-targets@8.0.0': + '@babel/helper-compilation-targets@8.0.5': dependencies: - '@babel/compat-data': 8.0.0 + '@babel/compat-data': 8.0.5 '@babel/helper-validator-option': 8.0.0 - browserslist: 4.28.8 + browserslist: 4.29.0 lru-cache: 11.5.2 - semver: 7.7.4 + verkit: 0.3.2 '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.26.10)': dependencies: @@ -14597,16 +14567,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-create-class-features-plugin@8.0.1(@babel/core@8.0.1)': + '@babel/helper-create-class-features-plugin@8.0.5(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 '@babel/helper-annotate-as-pure': 8.0.0 - '@babel/helper-member-expression-to-functions': 8.0.0 + '@babel/helper-member-expression-to-functions': 8.0.5 '@babel/helper-optimise-call-expression': 8.0.0 - '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.1) + '@babel/helper-replace-supers': 8.0.1(@babel/core@8.0.5) '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 - '@babel/traverse': 8.0.4 - semver: 7.7.4 + '@babel/traverse': 8.0.5 + verkit: 0.3.2 '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.26.10)': dependencies: @@ -14639,10 +14609,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-member-expression-to-functions@8.0.0': + '@babel/helper-member-expression-to-functions@8.0.5': dependencies: - '@babel/traverse': 8.0.4 - '@babel/types': 8.0.4 + '@babel/traverse': 8.0.5 + '@babel/types': 8.0.5 '@babel/helper-module-imports@7.28.6': dependencies: @@ -14653,7 +14623,7 @@ snapshots: '@babel/helper-module-imports@8.0.0': dependencies: - '@babel/traverse': 8.0.4 + '@babel/traverse': 8.0.5 '@babel/types': 8.0.4 '@babel/helper-module-transforms@7.28.6(@babel/core@7.26.10)': @@ -14683,12 +14653,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@8.0.1(@babel/core@8.0.1)': + '@babel/helper-module-transforms@8.0.5(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 '@babel/helper-module-imports': 8.0.0 '@babel/helper-validator-identifier': 8.0.4 - '@babel/traverse': 8.0.4 + '@babel/traverse': 8.0.5 '@babel/helper-optimise-call-expression@7.27.1': dependencies: @@ -14702,9 +14672,9 @@ snapshots: '@babel/helper-plugin-utils@7.28.6': {} - '@babel/helper-plugin-utils@8.0.1(@babel/core@8.0.1)': + '@babel/helper-plugin-utils@8.0.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.10)': dependencies: @@ -14733,12 +14703,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@8.0.1(@babel/core@8.0.1)': + '@babel/helper-replace-supers@8.0.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 - '@babel/helper-member-expression-to-functions': 8.0.0 + '@babel/core': 8.0.5 + '@babel/helper-member-expression-to-functions': 8.0.5 '@babel/helper-optimise-call-expression': 8.0.0 - '@babel/traverse': 8.0.4 + '@babel/traverse': 8.0.5 '@babel/helper-skip-transparent-expression-wrappers@7.27.1': dependencies: @@ -14749,7 +14719,7 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers@8.0.0': dependencies: - '@babel/traverse': 8.0.4 + '@babel/traverse': 8.0.5 '@babel/types': 8.0.4 '@babel/helper-split-export-declaration@7.24.7': @@ -14785,10 +14755,10 @@ snapshots: '@babel/template': 7.28.6 '@babel/types': 7.29.0 - '@babel/helpers@8.0.0': + '@babel/helpers@8.0.5': dependencies: '@babel/template': 8.0.0 - '@babel/types': 8.0.4 + '@babel/types': 8.0.5 '@babel/parser@7.29.0': dependencies: @@ -14806,6 +14776,10 @@ snapshots: dependencies: '@babel/types': 8.0.4 + '@babel/parser@8.0.5': + dependencies: + '@babel/types': 8.0.5 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.26.10)': dependencies: '@babel/core': 7.26.10 @@ -14860,15 +14834,15 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx@7.27.1(@babel/core@8.0.1)': + '@babel/plugin-syntax-jsx@7.27.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 '@babel/helper-plugin-utils': 7.27.1 - '@babel/plugin-syntax-typescript@8.0.3(@babel/core@8.0.1)': + '@babel/plugin-syntax-typescript@8.0.3(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 - '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1) + '@babel/core': 8.0.5 + '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.5) '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)': dependencies: @@ -15054,11 +15028,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@8.0.1(@babel/core@8.0.1)': + '@babel/plugin-transform-modules-commonjs@8.0.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 - '@babel/helper-module-transforms': 8.0.1(@babel/core@8.0.1) - '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1) + '@babel/core': 8.0.5 + '@babel/helper-module-transforms': 8.0.5(@babel/core@8.0.5) + '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.5) '@babel/plugin-transform-modules-systemjs@7.29.0(@babel/core@7.26.10)': dependencies: @@ -15158,10 +15132,10 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@8.0.1)': + '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@8.0.1) + '@babel/core': 8.0.5 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@8.0.5) transitivePeerDependencies: - supports-color @@ -15175,13 +15149,13 @@ snapshots: '@babel/core': 7.29.0 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@8.0.1)': + '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 '@babel/helper-annotate-as-pure': 7.27.3 '@babel/helper-module-imports': 7.28.6 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@8.0.1) + '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@8.0.5) '@babel/types': 7.29.8 transitivePeerDependencies: - supports-color @@ -15242,14 +15216,14 @@ snapshots: '@babel/core': 7.26.10 '@babel/helper-plugin-utils': 7.28.6 - '@babel/plugin-transform-typescript@8.0.1(@babel/core@8.0.1)': + '@babel/plugin-transform-typescript@8.0.5(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 '@babel/helper-annotate-as-pure': 8.0.0 - '@babel/helper-create-class-features-plugin': 8.0.1(@babel/core@8.0.1) - '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1) + '@babel/helper-create-class-features-plugin': 8.0.5(@babel/core@8.0.5) + '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.5) '@babel/helper-skip-transparent-expression-wrappers': 8.0.0 - '@babel/plugin-syntax-typescript': 8.0.3(@babel/core@8.0.1) + '@babel/plugin-syntax-typescript': 8.0.3(@babel/core@8.0.5) '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.10)': dependencies: @@ -15356,13 +15330,13 @@ snapshots: '@babel/types': 7.29.8 esutils: 2.0.3 - '@babel/preset-typescript@8.0.1(@babel/core@8.0.1)': + '@babel/preset-typescript@8.0.1(@babel/core@8.0.5)': dependencies: - '@babel/core': 8.0.1 - '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.1) + '@babel/core': 8.0.5 + '@babel/helper-plugin-utils': 8.0.1(@babel/core@8.0.5) '@babel/helper-validator-option': 8.0.0 - '@babel/plugin-transform-modules-commonjs': 8.0.1(@babel/core@8.0.1) - '@babel/plugin-transform-typescript': 8.0.1(@babel/core@8.0.1) + '@babel/plugin-transform-modules-commonjs': 8.0.1(@babel/core@8.0.5) + '@babel/plugin-transform-typescript': 8.0.5(@babel/core@8.0.5) '@babel/runtime@7.26.10': dependencies: @@ -15387,8 +15361,8 @@ snapshots: '@babel/template@8.0.0': dependencies: '@babel/code-frame': 8.0.0 - '@babel/parser': 8.0.4 - '@babel/types': 8.0.4 + '@babel/parser': 8.0.5 + '@babel/types': 8.0.5 '@babel/traverse@7.29.0': dependencies: @@ -15414,15 +15388,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/traverse@8.0.4': + '@babel/traverse@8.0.5': dependencies: '@babel/code-frame': 8.0.0 - '@babel/generator': 8.0.0 + '@babel/generator': 8.0.5 '@babel/helper-globals': 8.0.0 - '@babel/parser': 8.0.4 + '@babel/parser': 8.0.5 '@babel/template': 8.0.0 - '@babel/types': 8.0.4 - obug: 2.1.4 + '@babel/types': 8.0.5 + obug: 2.2.1 '@babel/types@7.29.0': dependencies: @@ -15439,8 +15413,25 @@ snapshots: '@babel/helper-string-parser': 8.0.0 '@babel/helper-validator-identifier': 8.0.4 + '@babel/types@8.0.5': + dependencies: + '@babel/helper-string-parser': 8.0.0 + '@babel/helper-validator-identifier': 8.0.4 + '@bcoe/v8-coverage@1.0.2': {} + '@cacheable/memory@2.2.0': + dependencies: + '@cacheable/utils': 2.5.0 + '@keyv/bigmap': 1.3.1(keyv@5.6.0) + hookified: 1.15.1 + keyv: 5.6.0 + + '@cacheable/utils@2.5.0': + dependencies: + hashery: 1.5.1 + keyv: 5.6.0 + '@changesets/apply-release-plan@7.1.1': dependencies: '@changesets/config': 3.1.4 @@ -16040,30 +16031,30 @@ snapshots: '@esbuild/win32-x64@0.28.2': optional: true - '@eslint-community/eslint-plugin-eslint-comments@4.7.2(eslint@10.9.1(jiti@2.7.0))': + '@eslint-community/eslint-plugin-eslint-comments@4.8.1(eslint@10.10.0(jiti@2.7.0))': dependencies: escape-string-regexp: 4.0.0 - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) ignore: 7.0.5 - '@eslint-community/eslint-utils@4.10.1(eslint@10.9.1(jiti@1.21.7))': + '@eslint-community/eslint-utils@4.10.1(eslint@10.10.0(jiti@1.21.7))': dependencies: - eslint: 10.9.1(jiti@1.21.7) + eslint: 10.10.0(jiti@1.21.7) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.10.1(eslint@10.9.1(jiti@2.7.0))': + '@eslint-community/eslint-utils@4.10.1(eslint@10.10.0(jiti@2.7.0))': dependencies: - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.9.1(eslint@10.9.1(jiti@1.21.7))': + '@eslint-community/eslint-utils@4.9.1(eslint@10.10.0(jiti@1.21.7))': dependencies: - eslint: 10.9.1(jiti@1.21.7) + eslint: 10.10.0(jiti@1.21.7) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.9.1(eslint@10.9.1(jiti@2.7.0))': + '@eslint-community/eslint-utils@4.9.1(eslint@10.10.0(jiti@2.7.0))': dependencies: - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.12.2': {} @@ -16098,13 +16089,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@10.0.1(eslint@10.9.1(jiti@2.7.0))': + '@eslint/js@10.0.1(eslint@10.10.0(jiti@2.7.0))': optionalDependencies: - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) '@eslint/object-schema@3.0.5': {} - '@eslint/plugin-kit@0.7.2': + '@eslint/plugin-kit@0.7.3': dependencies: '@eslint/core': 1.2.1 levn: 0.4.1 @@ -16127,18 +16118,18 @@ snapshots: '@floating-ui/core': 1.7.3 '@floating-ui/utils': 0.2.10 - '@floating-ui/react-dom@1.3.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@floating-ui/react-dom@1.3.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: '@floating-ui/dom': 1.7.4 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - '@floating-ui/react@0.19.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@floating-ui/react@0.19.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: - '@floating-ui/react-dom': 1.3.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + '@floating-ui/react-dom': 1.3.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) aria-hidden: 1.2.6 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) tabbable: 6.3.0 '@floating-ui/utils@0.2.10': {} @@ -16162,7 +16153,7 @@ snapshots: '@formatjs/icu-skeleton-parser': 1.8.16 tslib: 2.8.1 - '@formatjs/icu-messageformat-parser@3.5.17': + '@formatjs/icu-messageformat-parser@3.5.18': dependencies: '@formatjs/icu-skeleton-parser': 2.1.11 @@ -16191,14 +16182,14 @@ snapshots: yargs: 17.7.3 optional: true - '@hono/node-server@1.19.14(hono@4.13.5)': + '@hono/node-server@1.19.14(hono@4.13.8)': dependencies: - hono: 4.13.5 + hono: 4.13.8 - '@hono/node-ws@1.3.1(@hono/node-server@1.19.14(hono@4.13.5))(hono@4.13.5)': + '@hono/node-ws@1.3.1(@hono/node-server@1.19.14(hono@4.13.8))(hono@4.13.8)': dependencies: - '@hono/node-server': 1.19.14(hono@4.13.5) - hono: 4.13.5 + '@hono/node-server': 1.19.14(hono@4.13.8) + hono: 4.13.8 ws: 8.21.3 transitivePeerDependencies: - bufferutil @@ -16218,98 +16209,108 @@ snapshots: '@img/colour@1.1.0': optional: true - '@img/sharp-darwin-arm64@0.34.5': + '@img/sharp-darwin-arm64@0.35.4': optionalDependencies: - '@img/sharp-libvips-darwin-arm64': 1.2.4 + '@img/sharp-libvips-darwin-arm64': 1.3.3 optional: true - '@img/sharp-darwin-x64@0.34.5': + '@img/sharp-darwin-x64@0.35.4': optionalDependencies: - '@img/sharp-libvips-darwin-x64': 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.3.3 + optional: true + + '@img/sharp-freebsd-wasm32@0.35.4': + dependencies: + '@img/sharp-wasm32': 0.35.4 optional: true - '@img/sharp-libvips-darwin-arm64@1.2.4': + '@img/sharp-libvips-darwin-arm64@1.3.3': optional: true - '@img/sharp-libvips-darwin-x64@1.2.4': + '@img/sharp-libvips-darwin-x64@1.3.3': optional: true - '@img/sharp-libvips-linux-arm64@1.2.4': + '@img/sharp-libvips-linux-arm64@1.3.3': optional: true - '@img/sharp-libvips-linux-arm@1.2.4': + '@img/sharp-libvips-linux-arm@1.3.3': optional: true - '@img/sharp-libvips-linux-ppc64@1.2.4': + '@img/sharp-libvips-linux-ppc64@1.3.3': optional: true - '@img/sharp-libvips-linux-riscv64@1.2.4': + '@img/sharp-libvips-linux-riscv64@1.3.3': optional: true - '@img/sharp-libvips-linux-s390x@1.2.4': + '@img/sharp-libvips-linux-s390x@1.3.3': optional: true - '@img/sharp-libvips-linux-x64@1.2.4': + '@img/sharp-libvips-linux-x64@1.3.3': optional: true - '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + '@img/sharp-libvips-linuxmusl-arm64@1.3.3': optional: true - '@img/sharp-libvips-linuxmusl-x64@1.2.4': + '@img/sharp-libvips-linuxmusl-x64@1.3.3': optional: true - '@img/sharp-linux-arm64@0.34.5': + '@img/sharp-linux-arm64@0.35.4': optionalDependencies: - '@img/sharp-libvips-linux-arm64': 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.3.3 optional: true - '@img/sharp-linux-arm@0.34.5': + '@img/sharp-linux-arm@0.35.4': optionalDependencies: - '@img/sharp-libvips-linux-arm': 1.2.4 + '@img/sharp-libvips-linux-arm': 1.3.3 optional: true - '@img/sharp-linux-ppc64@0.34.5': + '@img/sharp-linux-ppc64@0.35.4': optionalDependencies: - '@img/sharp-libvips-linux-ppc64': 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.3.3 optional: true - '@img/sharp-linux-riscv64@0.34.5': + '@img/sharp-linux-riscv64@0.35.4': optionalDependencies: - '@img/sharp-libvips-linux-riscv64': 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.3.3 optional: true - '@img/sharp-linux-s390x@0.34.5': + '@img/sharp-linux-s390x@0.35.4': optionalDependencies: - '@img/sharp-libvips-linux-s390x': 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.3.3 optional: true - '@img/sharp-linux-x64@0.34.5': + '@img/sharp-linux-x64@0.35.4': optionalDependencies: - '@img/sharp-libvips-linux-x64': 1.2.4 + '@img/sharp-libvips-linux-x64': 1.3.3 optional: true - '@img/sharp-linuxmusl-arm64@0.34.5': + '@img/sharp-linuxmusl-arm64@0.35.4': optionalDependencies: - '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.3.3 optional: true - '@img/sharp-linuxmusl-x64@0.34.5': + '@img/sharp-linuxmusl-x64@0.35.4': optionalDependencies: - '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.3.3 optional: true - '@img/sharp-wasm32@0.34.5': + '@img/sharp-wasm32@0.35.4': dependencies: '@emnapi/runtime': 1.11.3 optional: true - '@img/sharp-win32-arm64@0.34.5': + '@img/sharp-webcontainers-wasm32@0.35.4': + dependencies: + '@img/sharp-wasm32': 0.35.4 + optional: true + + '@img/sharp-win32-arm64@0.35.4': optional: true - '@img/sharp-win32-ia32@0.34.5': + '@img/sharp-win32-ia32@0.35.4': optional: true - '@img/sharp-win32-x64@0.34.5': + '@img/sharp-win32-x64@0.35.4': optional: true '@inquirer/ansi@1.0.2': {} @@ -16341,12 +16342,12 @@ snapshots: '@types/node': 20.19.43 optional: true - '@inquirer/confirm@6.1.1(@types/node@22.20.1)': + '@inquirer/confirm@6.1.1(@types/node@22.20.3)': dependencies: - '@inquirer/core': 11.2.1(@types/node@22.20.1) - '@inquirer/type': 4.0.7(@types/node@22.20.1) + '@inquirer/core': 11.2.1(@types/node@22.20.3) + '@inquirer/type': 4.0.7(@types/node@22.20.3) optionalDependencies: - '@types/node': 22.20.1 + '@types/node': 22.20.3 optional: true '@inquirer/confirm@6.1.1(@types/node@26.1.2)': @@ -16382,17 +16383,17 @@ snapshots: '@types/node': 20.19.43 optional: true - '@inquirer/core@11.2.1(@types/node@22.20.1)': + '@inquirer/core@11.2.1(@types/node@22.20.3)': dependencies: '@inquirer/ansi': 2.0.7 '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@22.20.1) + '@inquirer/type': 4.0.7(@types/node@22.20.3) cli-width: 4.1.0 fast-wrap-ansi: 0.2.0 mute-stream: 3.0.0 signal-exit: 4.1.0 optionalDependencies: - '@types/node': 22.20.1 + '@types/node': 22.20.3 optional: true '@inquirer/core@11.2.1(@types/node@26.1.2)': @@ -16518,9 +16519,9 @@ snapshots: '@types/node': 20.19.43 optional: true - '@inquirer/type@4.0.7(@types/node@22.20.1)': + '@inquirer/type@4.0.7(@types/node@22.20.3)': optionalDependencies: - '@types/node': 22.20.1 + '@types/node': 22.20.3 optional: true '@inquirer/type@4.0.7(@types/node@26.1.2)': @@ -16557,24 +16558,29 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/yargs': 17.0.34 chalk: 4.1.2 - '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.9.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: glob: 10.4.5 magic-string: 0.30.21 - react-docgen-typescript: 2.4.0(typescript@5.9.3) - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + react-docgen-typescript: 2.4.0(typescript@5.6.3) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) optionalDependencies: - typescript: 5.9.3 + typescript: 5.6.3 '@jridgewell/gen-mapping@0.3.13': dependencies: '@jridgewell/sourcemap-codec': 1.5.5 '@jridgewell/trace-mapping': 0.3.31 + '@jridgewell/gen-mapping@0.4.0-beta.0': + dependencies: + '@jridgewell/sourcemap-codec': 1.6.0 + '@jridgewell/trace-mapping': 0.3.31 + '@jridgewell/remapping@2.3.5': dependencies: '@jridgewell/gen-mapping': 0.3.13 @@ -16589,6 +16595,8 @@ snapshots: '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/sourcemap-codec@1.6.0': {} + '@jridgewell/trace-mapping@0.3.31': dependencies: '@jridgewell/resolve-uri': 3.1.2 @@ -16724,6 +16732,14 @@ snapshots: '@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1) tslib: 2.8.1 + '@keyv/bigmap@1.3.1(keyv@5.6.0)': + dependencies: + hashery: 1.5.1 + hookified: 1.15.1 + keyv: 5.6.0 + + '@keyv/serialize@1.1.1': {} + '@leichtgewicht/ip-codec@2.0.5': {} '@lhci/cli@0.15.1(encoding@0.1.13)': @@ -16756,7 +16772,7 @@ snapshots: dependencies: debug: 4.4.3 isomorphic-fetch: 3.0.0(encoding@0.1.13) - js-yaml: 3.14.2 + js-yaml: 3.15.2 lighthouse: 12.6.1 tree-kill: 1.2.2 transitivePeerDependencies: @@ -16813,12 +16829,12 @@ snapshots: globby: 11.1.0 read-yaml-file: 1.1.0 - '@mastra/client-js@1.42.4(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76)': + '@mastra/client-js@1.46.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76)': dependencies: '@ai-sdk/ui-utils': 1.2.11(zod@3.25.76) '@lukeed/uuid': 2.0.1 - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) - '@mastra/schema-compat': 1.3.7(zod@3.25.76) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/schema-compat': 1.3.10(zod@3.25.76) canonicalize: 1.0.8 jose: 6.2.3 json-schema: 0.4.0 @@ -16834,16 +16850,16 @@ snapshots: - utf-8-validate - workflow - '@mastra/client-js@1.42.4(express@4.22.2)(zod@4.5.4)': + '@mastra/client-js@1.46.0(express@4.22.3)(zod@4.6.5)': dependencies: - '@ai-sdk/ui-utils': 1.2.11(zod@4.5.4) + '@ai-sdk/ui-utils': 1.2.11(zod@4.6.5) '@lukeed/uuid': 2.0.1 - '@mastra/core': 1.63.2(express@4.22.2)(zod@4.5.4) - '@mastra/schema-compat': 1.3.7(zod@4.5.4) + '@mastra/core': 1.67.0(express@4.22.3)(zod@4.6.5) + '@mastra/schema-compat': 1.3.10(zod@4.6.5) canonicalize: 1.0.8 jose: 6.2.3 json-schema: 0.4.0 - zod: 4.5.4 + zod: 4.6.5 transitivePeerDependencies: - '@bufbuild/protobuf' - '@grpc/grpc-js' @@ -16855,11 +16871,10 @@ snapshots: - utf-8-validate - workflow - '@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76)': + '@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76)': dependencies: '@a2a-js/sdk-v0_3': '@a2a-js/sdk@0.3.14(@grpc/grpc-js@1.14.3)(express@5.2.1)' '@a2a-js/sdk-v1': '@a2a-js/sdk@1.0.1(@grpc/grpc-js@1.14.3)(express@5.2.1)' - '@ai-sdk/provider-utils-v5': '@ai-sdk/provider-utils@3.0.30(zod@3.25.76)' '@ai-sdk/provider-utils-v6': '@ai-sdk/provider-utils@4.0.40(zod@3.25.76)' '@ai-sdk/provider-utils-v7': '@ai-sdk/provider-utils@5.0.13(zod@3.25.76)' '@ai-sdk/provider-v5': '@ai-sdk/provider@2.0.3' @@ -16867,7 +16882,7 @@ snapshots: '@ai-sdk/provider-v7': '@ai-sdk/provider@4.0.4' '@isaacs/ttlcache': 2.1.5 '@lukeed/uuid': 2.0.1 - '@mastra/schema-compat': 1.3.7(zod@3.25.76) + '@mastra/schema-compat': 1.3.10(zod@3.25.76) '@modelcontextprotocol/server': 2.0.0 '@sindresorhus/slugify': 2.2.1 '@standard-schema/spec': 1.1.0 @@ -16885,7 +16900,7 @@ snapshots: p-map: 7.0.4 p-retry: 7.1.1 picomatch: 4.0.4 - posthog-node: 5.51.6(rxjs@7.8.2) + posthog-node: 5.52.4(rxjs@7.8.2) tokenx: 1.3.0 ws: 8.21.0 xxhash-wasm: 1.1.0 @@ -16901,24 +16916,23 @@ snapshots: - utf-8-validate - workflow - '@mastra/core@1.63.2(express@4.22.2)(zod@4.5.4)': + '@mastra/core@1.67.0(express@4.22.3)(zod@4.6.5)': dependencies: - '@a2a-js/sdk-v0_3': '@a2a-js/sdk@0.3.14(express@4.22.2)' - '@a2a-js/sdk-v1': '@a2a-js/sdk@1.0.1(express@4.22.2)' - '@ai-sdk/provider-utils-v5': '@ai-sdk/provider-utils@3.0.30(zod@4.5.4)' - '@ai-sdk/provider-utils-v6': '@ai-sdk/provider-utils@4.0.40(zod@4.5.4)' - '@ai-sdk/provider-utils-v7': '@ai-sdk/provider-utils@5.0.13(zod@4.5.4)' + '@a2a-js/sdk-v0_3': '@a2a-js/sdk@0.3.14(express@4.22.3)' + '@a2a-js/sdk-v1': '@a2a-js/sdk@1.0.1(express@4.22.3)' + '@ai-sdk/provider-utils-v6': '@ai-sdk/provider-utils@4.0.40(zod@4.6.5)' + '@ai-sdk/provider-utils-v7': '@ai-sdk/provider-utils@5.0.13(zod@4.6.5)' '@ai-sdk/provider-v5': '@ai-sdk/provider@2.0.3' '@ai-sdk/provider-v6': '@ai-sdk/provider@3.0.14' '@ai-sdk/provider-v7': '@ai-sdk/provider@4.0.4' '@isaacs/ttlcache': 2.1.5 '@lukeed/uuid': 2.0.1 - '@mastra/schema-compat': 1.3.7(zod@4.5.4) + '@mastra/schema-compat': 1.3.10(zod@4.6.5) '@modelcontextprotocol/server': 2.0.0 '@sindresorhus/slugify': 2.2.1 '@standard-schema/spec': 1.1.0 ajv: 8.20.0 - chat: 4.36.0(zod@4.5.4) + chat: 4.36.0(zod@4.6.5) croner: 10.0.1 dotenv: 17.4.2 execa: 9.6.1 @@ -16931,11 +16945,11 @@ snapshots: p-map: 7.0.4 p-retry: 7.1.1 picomatch: 4.0.4 - posthog-node: 5.51.6(rxjs@7.8.2) + posthog-node: 5.52.4(rxjs@7.8.2) tokenx: 1.3.0 ws: 8.21.0 xxhash-wasm: 1.1.0 - zod: 4.5.4 + zod: 4.6.5 transitivePeerDependencies: - '@bufbuild/protobuf' - '@grpc/grpc-js' @@ -16947,14 +16961,14 @@ snapshots: - utf-8-validate - workflow - '@mastra/deployer@1.63.2(@hono/node-server@1.19.14(hono@4.13.5))(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(typescript@5.9.3)(zod@3.25.76)': + '@mastra/deployer@1.67.0(@hono/node-server@1.19.14(hono@4.13.8))(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(typescript@5.6.3)(zod@3.25.76)': dependencies: - '@babel/core': 8.0.1 - '@babel/preset-typescript': 8.0.1(@babel/core@8.0.1) - '@babel/traverse': 8.0.4 - '@hono/node-ws': 1.3.1(@hono/node-server@1.19.14(hono@4.13.5))(hono@4.13.5) - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) - '@mastra/server': 1.63.2(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76) + '@babel/core': 8.0.5 + '@babel/preset-typescript': 8.0.1(@babel/core@8.0.5) + '@babel/traverse': 8.0.5 + '@hono/node-ws': 1.3.1(@hono/node-server@1.19.14(hono@4.13.8))(hono@4.13.8) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/server': 1.67.0(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76) '@optimize-lodash/rollup-plugin': 5.1.0(rollup@3.30.0) '@rollup/plugin-commonjs': 29.0.2(rollup@3.30.0) '@rollup/plugin-esm-shim': 0.1.8(rollup@3.30.0) @@ -16967,16 +16981,16 @@ snapshots: find-workspaces: 0.3.1 fs-extra: 11.3.6 gray-matter: 4.0.3 - hono: 4.13.5 + hono: 4.13.8 local-pkg: 1.1.2 resolve.exports: 2.0.3 rollup: 3.30.0 rollup-plugin-esbuild: 6.2.1(esbuild@0.28.2)(rollup@3.30.0) strip-json-comments: 5.0.3 tinyglobby: 0.2.17 - typescript-paths: 1.5.2(typescript@5.9.3) + typescript-paths: 1.5.2(typescript@5.6.3) ws: 8.21.3 - yaml: 2.9.0 + yaml: 2.9.1 transitivePeerDependencies: - '@hono/node-server' - bufferutil @@ -16985,59 +16999,59 @@ snapshots: - utf-8-validate - zod - '@mastra/loggers@1.3.0(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))': + '@mastra/loggers@1.3.2(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))': dependencies: - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) pino: 10.3.1 pino-pretty: 13.1.3 - '@mastra/observability@1.16.1(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76)': + '@mastra/observability@1.16.1(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76)': dependencies: - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) zod: 3.25.76 - '@mastra/observability@1.17.4(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76)': + '@mastra/observability@1.17.8(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76)': dependencies: - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) zod: 3.25.76 - '@mastra/posthog@1.3.6(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(zod@3.25.76)': + '@mastra/posthog@1.3.10(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(zod@3.25.76)': dependencies: - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) - '@mastra/observability': 1.17.4(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76) - posthog-node: 5.51.6(rxjs@7.8.2) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/observability': 1.17.8(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76) + posthog-node: 5.52.4(rxjs@7.8.2) transitivePeerDependencies: - rxjs - zod - '@mastra/schema-compat@1.3.7(zod@3.25.76)': + '@mastra/schema-compat@1.3.10(zod@3.25.76)': dependencies: json-schema-to-zod: 2.8.1 zod: 3.25.76 zod-from-json-schema: 0.5.6 - '@mastra/schema-compat@1.3.7(zod@4.5.4)': + '@mastra/schema-compat@1.3.10(zod@4.6.5)': dependencies: json-schema-to-zod: 2.8.1 - zod: 4.5.4 + zod: 4.6.5 zod-from-json-schema: 0.5.6 - '@mastra/server@1.63.2(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76)': + '@mastra/server@1.67.0(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(zod@3.25.76)': dependencies: - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) - hono: 4.13.5 + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + hono: 4.13.8 zod: 3.25.76 - '@material-tailwind/react@2.1.10(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@material-tailwind/react@2.1.10(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: - '@floating-ui/react': 0.19.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + '@floating-ui/react': 0.19.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) classnames: 2.3.2 deepmerge: 4.2.2 - framer-motion: 6.5.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + framer-motion: 6.5.1(react-dom@19.3.0(react@19.3.0))(react@19.3.0) material-ripple-effects: 2.0.1 prop-types: 15.8.1 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) tailwind-merge: 1.8.1 '@mdx-js/mdx@3.1.1': @@ -17070,20 +17084,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@3.1.1(@types/react@19.2.18)(react@19.2.8)': + '@mdx-js/react@3.1.1(@types/react@19.3.0)(react@19.3.0)': dependencies: '@types/mdx': 2.0.13 - '@types/react': 19.2.18 - react: 19.2.8 + '@types/react': 19.3.0 + react: 19.3.0 '@modelcontextprotocol/core@2.0.0': dependencies: - zod: 4.5.4 + zod: 4.6.5 '@modelcontextprotocol/server@2.0.0': dependencies: '@modelcontextprotocol/core': 2.0.0 - zod: 4.5.4 + zod: 4.6.5 '@motionone/animation@10.18.0': dependencies: @@ -17147,52 +17161,52 @@ snapshots: outvariant: 1.4.3 strict-event-emitter: 0.5.1 - '@napi-rs/canvas-android-arm64@1.0.8': + '@napi-rs/canvas-android-arm64@1.0.9': optional: true - '@napi-rs/canvas-darwin-arm64@1.0.8': + '@napi-rs/canvas-darwin-arm64@1.0.9': optional: true - '@napi-rs/canvas-darwin-x64@1.0.8': + '@napi-rs/canvas-darwin-x64@1.0.9': optional: true - '@napi-rs/canvas-linux-arm-gnueabihf@1.0.8': + '@napi-rs/canvas-linux-arm-gnueabihf@1.0.9': optional: true - '@napi-rs/canvas-linux-arm64-gnu@1.0.8': + '@napi-rs/canvas-linux-arm64-gnu@1.0.9': optional: true - '@napi-rs/canvas-linux-arm64-musl@1.0.8': + '@napi-rs/canvas-linux-arm64-musl@1.0.9': optional: true - '@napi-rs/canvas-linux-riscv64-gnu@1.0.8': + '@napi-rs/canvas-linux-riscv64-gnu@1.0.9': optional: true - '@napi-rs/canvas-linux-x64-gnu@1.0.8': + '@napi-rs/canvas-linux-x64-gnu@1.0.9': optional: true - '@napi-rs/canvas-linux-x64-musl@1.0.8': + '@napi-rs/canvas-linux-x64-musl@1.0.9': optional: true - '@napi-rs/canvas-win32-arm64-msvc@1.0.8': + '@napi-rs/canvas-win32-arm64-msvc@1.0.9': optional: true - '@napi-rs/canvas-win32-x64-msvc@1.0.8': + '@napi-rs/canvas-win32-x64-msvc@1.0.9': optional: true - '@napi-rs/canvas@1.0.8': + '@napi-rs/canvas@1.0.9': optionalDependencies: - '@napi-rs/canvas-android-arm64': 1.0.8 - '@napi-rs/canvas-darwin-arm64': 1.0.8 - '@napi-rs/canvas-darwin-x64': 1.0.8 - '@napi-rs/canvas-linux-arm-gnueabihf': 1.0.8 - '@napi-rs/canvas-linux-arm64-gnu': 1.0.8 - '@napi-rs/canvas-linux-arm64-musl': 1.0.8 - '@napi-rs/canvas-linux-riscv64-gnu': 1.0.8 - '@napi-rs/canvas-linux-x64-gnu': 1.0.8 - '@napi-rs/canvas-linux-x64-musl': 1.0.8 - '@napi-rs/canvas-win32-arm64-msvc': 1.0.8 - '@napi-rs/canvas-win32-x64-msvc': 1.0.8 + '@napi-rs/canvas-android-arm64': 1.0.9 + '@napi-rs/canvas-darwin-arm64': 1.0.9 + '@napi-rs/canvas-darwin-x64': 1.0.9 + '@napi-rs/canvas-linux-arm-gnueabihf': 1.0.9 + '@napi-rs/canvas-linux-arm64-gnu': 1.0.9 + '@napi-rs/canvas-linux-arm64-musl': 1.0.9 + '@napi-rs/canvas-linux-riscv64-gnu': 1.0.9 + '@napi-rs/canvas-linux-x64-gnu': 1.0.9 + '@napi-rs/canvas-linux-x64-musl': 1.0.9 + '@napi-rs/canvas-win32-arm64-msvc': 1.0.9 + '@napi-rs/canvas-win32-x64-msvc': 1.0.9 '@napi-rs/nice-android-arm-eabi@1.1.1': optional: true @@ -17273,43 +17287,43 @@ snapshots: '@tybys/wasm-util': 0.10.3 optional: true - '@next/env@16.2.11': {} + '@next/env@16.3.3': {} - '@next/swc-darwin-arm64@16.2.11': + '@next/swc-darwin-arm64@16.3.3': optional: true - '@next/swc-darwin-x64@16.2.11': + '@next/swc-darwin-x64@16.3.3': optional: true - '@next/swc-linux-arm64-gnu@16.2.11': + '@next/swc-linux-arm64-gnu@16.3.3': optional: true - '@next/swc-linux-arm64-musl@16.2.11': + '@next/swc-linux-arm64-musl@16.3.3': optional: true - '@next/swc-linux-x64-gnu@16.2.11': + '@next/swc-linux-x64-gnu@16.3.3': optional: true - '@next/swc-linux-x64-musl@16.2.11': + '@next/swc-linux-x64-musl@16.3.3': optional: true - '@next/swc-win32-arm64-msvc@16.2.11': + '@next/swc-win32-arm64-msvc@16.3.3': optional: true - '@next/swc-win32-x64-msvc@16.2.11': + '@next/swc-win32-x64-msvc@16.3.3': optional: true - '@ngtools/webpack@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26))': + '@ngtools/webpack@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28))': dependencies: '@angular/compiler-cli': 19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3) typescript: 5.6.3 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - '@ngtools/webpack@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26))': + '@ngtools/webpack@19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28))': dependencies: '@angular/compiler-cli': 19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3) typescript: 5.6.3 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true '@nodelib/fs.scandir@2.1.5': @@ -17412,65 +17426,63 @@ snapshots: '@orama/orama@3.1.18': {} - '@oxc-parser/binding-android-arm-eabi@0.147.0': + '@oxc-parser/binding-android-arm-eabi@0.148.0': optional: true - '@oxc-parser/binding-android-arm64@0.147.0': + '@oxc-parser/binding-android-arm64@0.148.0': optional: true - '@oxc-parser/binding-darwin-arm64@0.147.0': + '@oxc-parser/binding-darwin-arm64@0.148.0': optional: true - '@oxc-parser/binding-darwin-x64@0.147.0': + '@oxc-parser/binding-darwin-x64@0.148.0': optional: true - '@oxc-parser/binding-freebsd-x64@0.147.0': + '@oxc-parser/binding-freebsd-x64@0.148.0': optional: true - '@oxc-parser/binding-linux-arm-gnueabihf@0.147.0': + '@oxc-parser/binding-linux-arm-gnueabihf@0.148.0': optional: true - '@oxc-parser/binding-linux-arm-musleabihf@0.147.0': + '@oxc-parser/binding-linux-arm-musleabihf@0.148.0': optional: true - '@oxc-parser/binding-linux-arm64-gnu@0.147.0': + '@oxc-parser/binding-linux-arm64-gnu@0.148.0': optional: true - '@oxc-parser/binding-linux-arm64-musl@0.147.0': + '@oxc-parser/binding-linux-arm64-musl@0.148.0': optional: true - '@oxc-parser/binding-linux-ppc64-gnu@0.147.0': + '@oxc-parser/binding-linux-ppc64-gnu@0.148.0': optional: true - '@oxc-parser/binding-linux-riscv64-gnu@0.147.0': + '@oxc-parser/binding-linux-riscv64-gnu@0.148.0': optional: true - '@oxc-parser/binding-linux-riscv64-musl@0.147.0': + '@oxc-parser/binding-linux-riscv64-musl@0.148.0': optional: true - '@oxc-parser/binding-linux-s390x-gnu@0.147.0': + '@oxc-parser/binding-linux-s390x-gnu@0.148.0': optional: true - '@oxc-parser/binding-linux-x64-gnu@0.147.0': + '@oxc-parser/binding-linux-x64-gnu@0.148.0': optional: true - '@oxc-parser/binding-linux-x64-musl@0.147.0': + '@oxc-parser/binding-linux-x64-musl@0.148.0': optional: true - '@oxc-parser/binding-openharmony-arm64@0.147.0': + '@oxc-parser/binding-openharmony-arm64@0.148.0': optional: true - '@oxc-parser/binding-win32-arm64-msvc@0.147.0': + '@oxc-parser/binding-win32-arm64-msvc@0.148.0': optional: true - '@oxc-parser/binding-win32-ia32-msvc@0.147.0': + '@oxc-parser/binding-win32-ia32-msvc@0.148.0': optional: true - '@oxc-parser/binding-win32-x64-msvc@0.147.0': + '@oxc-parser/binding-win32-x64-msvc@0.148.0': optional: true - '@oxc-project/types@0.147.0': {} - '@oxc-project/types@0.148.0': {} '@oxc-resolver/binding-android-arm-eabi@11.24.2': @@ -17534,61 +17546,61 @@ snapshots: '@oxc-resolver/binding-win32-x64-msvc@11.24.2': optional: true - '@oxlint/binding-android-arm-eabi@1.81.0': + '@oxlint/binding-android-arm-eabi@1.83.0': optional: true - '@oxlint/binding-android-arm64@1.81.0': + '@oxlint/binding-android-arm64@1.83.0': optional: true - '@oxlint/binding-darwin-arm64@1.81.0': + '@oxlint/binding-darwin-arm64@1.83.0': optional: true - '@oxlint/binding-darwin-x64@1.81.0': + '@oxlint/binding-darwin-x64@1.83.0': optional: true - '@oxlint/binding-freebsd-x64@1.81.0': + '@oxlint/binding-freebsd-x64@1.83.0': optional: true - '@oxlint/binding-linux-arm-gnueabihf@1.81.0': + '@oxlint/binding-linux-arm-gnueabihf@1.83.0': optional: true - '@oxlint/binding-linux-arm-musleabihf@1.81.0': + '@oxlint/binding-linux-arm-musleabihf@1.83.0': optional: true - '@oxlint/binding-linux-arm64-gnu@1.81.0': + '@oxlint/binding-linux-arm64-gnu@1.83.0': optional: true - '@oxlint/binding-linux-arm64-musl@1.81.0': + '@oxlint/binding-linux-arm64-musl@1.83.0': optional: true - '@oxlint/binding-linux-ppc64-gnu@1.81.0': + '@oxlint/binding-linux-ppc64-gnu@1.83.0': optional: true - '@oxlint/binding-linux-riscv64-gnu@1.81.0': + '@oxlint/binding-linux-riscv64-gnu@1.83.0': optional: true - '@oxlint/binding-linux-riscv64-musl@1.81.0': + '@oxlint/binding-linux-riscv64-musl@1.83.0': optional: true - '@oxlint/binding-linux-s390x-gnu@1.81.0': + '@oxlint/binding-linux-s390x-gnu@1.83.0': optional: true - '@oxlint/binding-linux-x64-gnu@1.81.0': + '@oxlint/binding-linux-x64-gnu@1.83.0': optional: true - '@oxlint/binding-linux-x64-musl@1.81.0': + '@oxlint/binding-linux-x64-musl@1.83.0': optional: true - '@oxlint/binding-openharmony-arm64@1.81.0': + '@oxlint/binding-openharmony-arm64@1.83.0': optional: true - '@oxlint/binding-win32-arm64-msvc@1.81.0': + '@oxlint/binding-win32-arm64-msvc@1.83.0': optional: true - '@oxlint/binding-win32-ia32-msvc@1.81.0': + '@oxlint/binding-win32-ia32-msvc@1.83.0': optional: true - '@oxlint/binding-win32-x64-msvc@1.81.0': + '@oxlint/binding-win32-x64-msvc@1.83.0': optional: true '@parcel/watcher-android-arm64@2.5.6': @@ -17635,7 +17647,7 @@ snapshots: detect-libc: 2.1.2 is-glob: 4.0.3 node-addon-api: 7.1.1 - picomatch: 4.0.4 + picomatch: 4.0.7 optionalDependencies: '@parcel/watcher-android-arm64': 2.5.6 '@parcel/watcher-darwin-arm64': 2.5.6 @@ -17655,43 +17667,43 @@ snapshots: '@paulirish/trace_engine@0.0.53': dependencies: legacy-javascript: 0.0.1 - third-party-web: 0.29.2 + third-party-web: 0.30.0 '@pinojs/redact@0.4.0': {} '@pkgjs/parseargs@0.11.0': optional: true - '@playwright/test@1.62.1': + '@playwright/test@1.63.0': dependencies: - playwright: 1.62.1 + playwright: 1.63.0 '@popperjs/core@2.11.8': {} - '@posthog/browser-common@0.7.1': + '@posthog/browser-common@0.8.3': dependencies: - '@posthog/core': 1.50.2 - '@posthog/types': 1.408.0 + '@posthog/core': 1.54.2 + '@posthog/types': 1.412.1 - '@posthog/core@1.50.2': + '@posthog/core@1.54.2': dependencies: - '@posthog/types': 1.408.0 + '@posthog/types': 1.412.1 - '@posthog/types@1.408.0': {} + '@posthog/types@1.412.1': {} - '@preact/preset-vite@2.10.6(@babel/core@8.0.1)(preact@10.29.8)(rollup@3.30.0)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@preact/preset-vite@2.10.6(@babel/core@8.0.5)(preact@10.29.8)(rollup@3.30.0)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@babel/core': 8.0.1 - '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@8.0.1) - '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@8.0.1) - '@prefresh/vite': 2.4.12(preact@10.29.8)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@babel/core': 8.0.5 + '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@8.0.5) + '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@8.0.5) + '@prefresh/vite': 2.4.12(preact@10.29.8)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@rollup/pluginutils': 5.3.0(rollup@3.30.0) - babel-plugin-transform-hook-names: 1.0.2(@babel/core@8.0.1) + babel-plugin-transform-hook-names: 1.0.2(@babel/core@8.0.5) debug: 4.4.3 magic-string: 0.30.21 picocolors: 1.1.1 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) - vite-prerender-plugin: 0.5.13(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) + vite-prerender-plugin: 0.5.13(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) zimmerframe: 1.1.4 transitivePeerDependencies: - preact @@ -17706,7 +17718,7 @@ snapshots: '@prefresh/utils@1.2.1': {} - '@prefresh/vite@2.4.12(preact@10.29.8)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@prefresh/vite@2.4.12(preact@10.29.8)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@babel/core': 7.29.0 '@prefresh/babel-plugin': 0.5.3 @@ -17714,7 +17726,7 @@ snapshots: '@prefresh/utils': 1.2.1 '@rollup/pluginutils': 4.2.1 preact: 10.29.8(preact-render-to-string@6.7.0) - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) transitivePeerDependencies: - supports-color @@ -17865,7 +17877,7 @@ snapshots: dependencies: '@types/estree': 1.0.9 estree-walker: 2.0.2 - picomatch: 4.0.5 + picomatch: 4.0.7 optionalDependencies: rollup: 3.29.5 @@ -17873,7 +17885,7 @@ snapshots: dependencies: '@types/estree': 1.0.9 estree-walker: 2.0.2 - picomatch: 4.0.5 + picomatch: 4.0.7 optionalDependencies: rollup: 3.30.0 @@ -17966,26 +17978,26 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - '@scaleflex/icons@2.10.27(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@scaleflex/icons@2.10.27(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: - '@types/react': 19.2.18 - '@types/react-dom': 19.2.5(@types/react@19.2.18) - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + '@types/react': 19.3.0 + '@types/react-dom': 19.3.0(@types/react@19.3.0) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - '@scaleflex/ui@2.10.27(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))': + '@scaleflex/ui@2.10.27(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0))': dependencies: '@popperjs/core': 2.11.8 - '@scaleflex/icons': 2.10.27(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) - '@tippyjs/react': 4.2.6(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + '@scaleflex/icons': 2.10.27(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) + '@tippyjs/react': 4.2.6(react-dom@19.3.0(react@19.3.0))(react@19.3.0) '@types/lodash.merge': 4.6.9 - '@types/react': 19.2.18 - '@types/react-dom': 19.2.5(@types/react@19.2.18) + '@types/react': 19.3.0 + '@types/react-dom': 19.3.0(@types/react@19.3.0) lodash.merge: 4.6.2 prop-types: 15.8.1 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - styled-components: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + styled-components: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) '@schematics/angular@19.2.27(chokidar@4.0.3)': dependencies: @@ -18157,82 +18169,82 @@ snapshots: '@standard-schema/spec@1.1.0': {} - '@storybook/addon-a11y@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-a11y@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: '@storybook/global': 5.0.0 axe-core: 4.11.1 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@storybook/addon-a11y@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-a11y@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: '@storybook/global': 5.0.0 axe-core: 4.11.1 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@storybook/addon-a11y@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-a11y@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: '@storybook/global': 5.0.0 axe-core: 4.11.1 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@storybook/addon-docs@9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-docs@9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - '@mdx-js/react': 3.1.1(@types/react@19.2.18)(react@19.2.8) - '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - '@storybook/icons': 1.6.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) - '@storybook/react-dom-shim': 9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@mdx-js/react': 3.1.1(@types/react@19.3.0)(react@19.3.0) + '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + '@storybook/icons': 1.6.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) + '@storybook/react-dom-shim': 9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' - '@storybook/addon-docs@9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-docs@9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - '@mdx-js/react': 3.1.1(@types/react@19.2.18)(react@19.2.8) - '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - '@storybook/icons': 1.6.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) - '@storybook/react-dom-shim': 9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@mdx-js/react': 3.1.1(@types/react@19.3.0)(react@19.3.0) + '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + '@storybook/icons': 1.6.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) + '@storybook/react-dom-shim': 9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' - '@storybook/addon-docs@9.1.20(@types/react@19.2.18)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-docs@9.1.20(@types/react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - '@mdx-js/react': 3.1.1(@types/react@19.2.18)(react@19.2.8) - '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - '@storybook/icons': 1.6.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8) - '@storybook/react-dom-shim': 9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@mdx-js/react': 3.1.1(@types/react@19.3.0)(react@19.3.0) + '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + '@storybook/icons': 1.6.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0) + '@storybook/react-dom-shim': 9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' - '@storybook/addon-themes@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-themes@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - '@storybook/addon-themes@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-themes@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - '@storybook/addon-themes@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/addon-themes@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - '@storybook/angular@9.1.20(patch_hash=83db53ac924d0e2c6306ac0345c066abab5ced2d8ee36d5b65599e628531bacd)(073572bfd1eab8156726d001b4f96377)': + '@storybook/angular@9.1.20(patch_hash=83db53ac924d0e2c6306ac0345c066abab5ced2d8ee36d5b65599e628531bacd)(9de10245a6373d9580b7fa48b1edd12e)': dependencies: '@angular-devkit/architect': 0.2003.28(chokidar@4.0.3) - '@angular-devkit/build-angular': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)))(jiti@2.7.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tsx@4.23.13)(typescript@5.6.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(yaml@2.9.0) + '@angular-devkit/build-angular': 19.2.27(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(@angular/compiler@19.2.25)(@types/node@26.1.2)(chokidar@4.0.3)(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)))(jiti@2.7.0)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tsx@4.23.13)(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(yaml@2.9.1) '@angular-devkit/core': 20.3.28(chokidar@4.0.3) '@angular/common': 19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2) '@angular/compiler': 19.2.25 @@ -18241,10 +18253,10 @@ snapshots: '@angular/forms': 20.3.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(@angular/platform-browser@19.2.25(@angular/animations@19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)))(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)))(rxjs@7.8.2) '@angular/platform-browser': 19.2.25(@angular/animations@19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)))(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)) '@angular/platform-browser-dynamic': 19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/compiler@19.2.25)(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(@angular/platform-browser@19.2.25(@angular/animations@19.2.25(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10)))(@angular/common@19.2.25(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))(rxjs@7.8.2))(@angular/core@19.2.25(rxjs@7.8.2)(zone.js@0.14.10))) - '@storybook/builder-webpack5': 9.1.20(esbuild@0.25.12)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(typescript@5.6.3) + '@storybook/builder-webpack5': 9.1.20(esbuild@0.25.12)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(typescript@5.6.3) '@storybook/global': 5.0.0 rxjs: 7.8.2 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) telejson: 8.0.0 ts-dedent: 2.2.0 tsconfig-paths-webpack-plugin: 4.2.0 @@ -18261,23 +18273,23 @@ snapshots: - uglify-js - webpack-cli - '@storybook/builder-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@storybook/builder-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@storybook/builder-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@storybook/builder-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@storybook/csf-plugin': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@storybook/builder-webpack5@9.1.20(esbuild@0.25.12)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(typescript@5.6.3)': + '@storybook/builder-webpack5@9.1.20(esbuild@0.25.12)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(typescript@5.6.3)': dependencies: - '@storybook/core-webpack': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + '@storybook/core-webpack': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.4.3 css-loader: 6.11.0(webpack@5.102.1(esbuild@0.25.12)) @@ -18285,7 +18297,7 @@ snapshots: fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.102.1(esbuild@0.25.12)) html-webpack-plugin: 5.6.4(webpack@5.102.1(esbuild@0.25.12)) magic-string: 0.30.21 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) style-loader: 3.3.4(webpack@5.102.1(esbuild@0.25.12)) terser-webpack-plugin: 5.3.14(esbuild@0.25.12)(webpack@5.102.1(esbuild@0.25.12)) ts-dedent: 2.2.0 @@ -18302,150 +18314,150 @@ snapshots: - uglify-js - webpack-cli - '@storybook/core-webpack@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/core-webpack@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - '@storybook/csf-plugin@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/csf-plugin@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) unplugin: 1.16.1 - '@storybook/csf-plugin@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/csf-plugin@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) unplugin: 1.16.1 - '@storybook/csf-plugin@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/csf-plugin@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) unplugin: 1.16.1 '@storybook/global@5.0.0': {} - '@storybook/html-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@storybook/html-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - '@storybook/html': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + '@storybook/html': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) transitivePeerDependencies: - vite - '@storybook/html@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/html@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: '@storybook/global': 5.0.0 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - '@storybook/icons@1.6.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@storybook/icons@1.6.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - '@storybook/preact-vite@9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@storybook/preact-vite@9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - '@storybook/preact': 9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) + '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + '@storybook/preact': 9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) preact: 10.29.8(preact-render-to-string@6.7.0) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) transitivePeerDependencies: - vite - '@storybook/preact@9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/preact@9.1.20(preact@10.29.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: '@storybook/global': 5.0.0 preact: 10.29.8(preact-render-to-string@6.7.0) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) ts-dedent: 2.2.0 - '@storybook/react-dom-shim@9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/react-dom-shim@9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@storybook/react-dom-shim@9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/react-dom-shim@9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@storybook/react-dom-shim@9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))': + '@storybook/react-dom-shim@9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))': dependencies: - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@storybook/react-vite@9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(rollup@3.30.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(typescript@5.9.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@storybook/react-vite@9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(rollup@3.30.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.9.3)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.6.3)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@rollup/pluginutils': 5.3.0(rollup@3.30.0) - '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - '@storybook/react': 9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(typescript@5.9.3) + '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + '@storybook/react': 9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(typescript@5.6.3) find-up: 7.0.0 magic-string: 0.30.21 - react: 19.2.8 + react: 19.3.0 react-docgen: 8.0.3 - react-dom: 19.2.8(react@19.2.8) + react-dom: 19.3.0(react@19.3.0) resolve: 1.22.11 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) tsconfig-paths: 4.2.0 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) transitivePeerDependencies: - rollup - supports-color - typescript - '@storybook/react@9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(typescript@5.9.3)': + '@storybook/react@9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(typescript@5.6.3)': dependencies: '@storybook/global': 5.0.0 - '@storybook/react-dom-shim': 9.1.20(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))) - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@storybook/react-dom-shim': 9.1.20(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) optionalDependencies: - typescript: 5.9.3 + typescript: 5.6.3 - '@storybook/svelte-vite@9.1.20(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@storybook/svelte-vite@9.1.20(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - '@storybook/svelte': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(svelte@5.57.0(@typescript-eslint/types@8.69.0)) - '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + '@storybook/svelte': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(svelte@5.57.0(@typescript-eslint/types@8.70.0)) + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) magic-string: 0.30.21 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - svelte: 5.57.0(@typescript-eslint/types@8.69.0) - svelte2tsx: 0.7.56(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3) - typescript: 5.9.3 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + svelte: 5.57.0(@typescript-eslint/types@8.70.0) + svelte2tsx: 0.7.56(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3) + typescript: 5.6.3 + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@storybook/svelte@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(svelte@5.57.0(@typescript-eslint/types@8.69.0))': + '@storybook/svelte@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(svelte@5.57.0(@typescript-eslint/types@8.70.0))': dependencies: - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - svelte: 5.57.0(@typescript-eslint/types@8.69.0) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + svelte: 5.57.0(@typescript-eslint/types@8.70.0) ts-dedent: 2.2.0 type-fest: 2.19.0 - '@storybook/vue3-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(vue@3.5.42(typescript@5.9.3))': + '@storybook/vue3-vite@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(vue@3.5.42(typescript@5.6.3))': dependencies: - '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - '@storybook/vue3': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vue@3.5.42(typescript@5.9.3)) + '@storybook/builder-vite': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + '@storybook/vue3': 9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vue@3.5.42(typescript@5.6.3)) find-package-json: 1.2.0 magic-string: 0.30.21 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) typescript: 5.9.3 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) vue-component-meta: 2.2.12(typescript@5.9.3) - vue-docgen-api: 4.79.2(vue@3.5.42(typescript@5.9.3)) + vue-docgen-api: 4.79.2(vue@3.5.42(typescript@5.6.3)) transitivePeerDependencies: - vue - '@storybook/vue3@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(vue@3.5.42(typescript@5.9.3))': + '@storybook/vue3@9.1.20(storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(vue@3.5.42(typescript@5.6.3))': dependencies: '@storybook/global': 5.0.0 - storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + storybook: 9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) type-fest: 2.19.0 - vue: 3.5.42(typescript@5.9.3) + vue: 3.5.42(typescript@5.6.3) vue-component-type-helpers: 3.3.11 '@sveltejs/acorn-typescript@1.0.10(acorn@8.16.0)': @@ -18454,46 +18466,46 @@ snapshots: '@sveltejs/load-config@0.2.3': {} - '@sveltejs/package@2.5.8(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3)': + '@sveltejs/package@2.5.8(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3)': dependencies: chokidar: 5.0.0 kleur: 4.1.5 sade: 1.8.1 semver: 7.7.4 - svelte: 5.57.0(@typescript-eslint/types@8.69.0) - svelte2tsx: 0.7.56(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3) + svelte: 5.57.0(@typescript-eslint/types@8.70.0) + svelte2tsx: 0.7.56(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3) transitivePeerDependencies: - typescript - '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - obug: 2.1.1 - svelte: 5.57.0(@typescript-eslint/types@8.69.0) - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + obug: 2.2.1 + svelte: 5.57.0(@typescript-eslint/types@8.70.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)))(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)))(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) deepmerge: 4.3.1 magic-string: 0.30.21 obug: 2.1.1 - svelte: 5.57.0(@typescript-eslint/types@8.69.0) - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) - vitefu: 1.1.3(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + svelte: 5.57.0(@typescript-eslint/types@8.70.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) + vitefu: 1.1.3(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) - '@swc/helpers@0.5.15': + '@swc/helpers@0.5.23': dependencies: tslib: 2.8.1 - '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))': + '@tailwindcss/container-queries@0.1.1(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))': dependencies: - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) - '@tailwindcss/forms@0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))': + '@tailwindcss/forms@0.5.11(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))': dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) '@tailwindcss/node@4.3.3': dependencies: @@ -18564,28 +18576,28 @@ snapshots: postcss: 8.5.25 tailwindcss: 4.3.3 - '@tailwindcss/typography@0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))': + '@tailwindcss/typography@0.5.20(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))': dependencies: postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) - '@tanstack/react-virtual@3.14.10(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@tanstack/react-virtual@3.14.13(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: - '@tanstack/virtual-core': 3.17.8 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + '@tanstack/virtual-core': 3.17.11 + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - '@tanstack/svelte-virtual@3.13.36(svelte@5.57.0(@typescript-eslint/types@8.69.0))': + '@tanstack/svelte-virtual@3.13.39(svelte@5.57.0(@typescript-eslint/types@8.70.0))': dependencies: - '@tanstack/virtual-core': 3.17.8 - svelte: 5.57.0(@typescript-eslint/types@8.69.0) + '@tanstack/virtual-core': 3.17.11 + svelte: 5.57.0(@typescript-eslint/types@8.70.0) - '@tanstack/virtual-core@3.17.8': {} + '@tanstack/virtual-core@3.17.11': {} - '@tanstack/vue-virtual@3.13.36(vue@3.5.42(typescript@5.9.3))': + '@tanstack/vue-virtual@3.13.39(vue@3.5.42(typescript@5.6.3))': dependencies: - '@tanstack/virtual-core': 3.17.8 - vue: 3.5.42(typescript@5.9.3) + '@tanstack/virtual-core': 3.17.11 + vue: 3.5.42(typescript@5.6.3) '@testing-library/dom@10.4.0': dependencies: @@ -18623,28 +18635,28 @@ snapshots: '@testing-library/dom': 8.20.1 preact: 10.29.8(preact-render-to-string@6.7.0) - '@testing-library/react@16.3.3(@testing-library/dom@10.4.0)(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@testing-library/react@16.3.3(@testing-library/dom@10.4.0)(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: '@babel/runtime': 7.28.4 '@testing-library/dom': 10.4.0 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) optionalDependencies: - '@types/react': 19.2.18 - '@types/react-dom': 19.2.5(@types/react@19.2.18) + '@types/react': 19.3.0 + '@types/react-dom': 19.3.0(@types/react@19.3.0) - '@testing-library/svelte-core@1.1.3(svelte@5.57.0(@typescript-eslint/types@8.69.0))': + '@testing-library/svelte-core@1.1.3(svelte@5.57.0(@typescript-eslint/types@8.70.0))': dependencies: - svelte: 5.57.0(@typescript-eslint/types@8.69.0) + svelte: 5.57.0(@typescript-eslint/types@8.70.0) - '@testing-library/svelte@5.4.2(svelte@5.57.0(@typescript-eslint/types@8.69.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(vitest@4.1.11)': + '@testing-library/svelte@5.4.2(svelte@5.57.0(@typescript-eslint/types@8.70.0))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(vitest@4.1.11)': dependencies: '@testing-library/dom': 10.4.0 - '@testing-library/svelte-core': 1.1.3(svelte@5.57.0(@typescript-eslint/types@8.69.0)) - svelte: 5.57.0(@typescript-eslint/types@8.69.0) + '@testing-library/svelte-core': 1.1.3(svelte@5.57.0(@typescript-eslint/types@8.70.0)) + svelte: 5.57.0(@typescript-eslint/types@8.70.0) optionalDependencies: - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) - vitest: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) + vitest: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)': dependencies: @@ -18654,10 +18666,10 @@ snapshots: dependencies: '@testing-library/dom': 10.4.0 - '@tippyjs/react@4.2.6(react-dom@19.2.8(react@19.2.8))(react@19.2.8)': + '@tippyjs/react@4.2.6(react-dom@19.3.0(react@19.3.0))(react@19.3.0)': dependencies: - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) tippy.js: 6.3.7 '@tootallnate/once@2.0.0': {} @@ -18711,11 +18723,11 @@ snapshots: '@types/body-parser@1.19.6': dependencies: '@types/connect': 3.4.38 - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/bonjour@3.5.13': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/chai@5.2.3': dependencies: @@ -18725,11 +18737,11 @@ snapshots: '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 5.1.0 - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/connect@3.4.38': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/debug@4.1.12': dependencies: @@ -18759,14 +18771,14 @@ snapshots: '@types/express-serve-static-core@4.19.7': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 '@types/express-serve-static-core@5.1.0': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/qs': 6.14.0 '@types/range-parser': 1.2.7 '@types/send': 1.2.1 @@ -18796,7 +18808,7 @@ snapshots: '@types/http-proxy@1.17.17': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/istanbul-lib-coverage@2.0.6': {} @@ -18842,7 +18854,7 @@ snapshots: '@types/node-forge@1.3.14': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/node@12.20.55': {} @@ -18850,15 +18862,16 @@ snapshots: dependencies: undici-types: 6.21.0 - '@types/node@22.20.1': + '@types/node@22.20.3': dependencies: undici-types: 6.21.0 '@types/node@26.1.2': dependencies: undici-types: 8.3.0 + optional: true - '@types/nodemailer@8.0.1': + '@types/nodemailer@8.0.2': dependencies: '@types/node': 20.19.43 @@ -18870,19 +18883,19 @@ snapshots: '@types/range-parser@1.2.7': {} - '@types/react-dom@19.2.5(@types/react@19.2.18)': + '@types/react-dom@19.3.0(@types/react@19.3.0)': dependencies: - '@types/react': 19.2.18 + '@types/react': 19.3.0 - '@types/react-reconciler@0.28.9(@types/react@19.2.18)': + '@types/react-reconciler@0.28.9(@types/react@19.3.0)': dependencies: - '@types/react': 19.2.18 + '@types/react': 19.3.0 - '@types/react-reconciler@0.33.0(@types/react@19.2.18)': + '@types/react-reconciler@0.33.0(@types/react@19.3.0)': dependencies: - '@types/react': 19.2.18 + '@types/react': 19.3.0 - '@types/react@19.2.18': + '@types/react@19.3.0': dependencies: csstype: 3.2.3 @@ -18893,11 +18906,11 @@ snapshots: '@types/send@0.17.6': dependencies: '@types/mime': 1.3.5 - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/send@1.2.1': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/serve-index@1.9.4': dependencies: @@ -18906,16 +18919,16 @@ snapshots: '@types/serve-static@1.15.10': dependencies: '@types/http-errors': 2.0.5 - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/send': 0.17.6 '@types/set-cookie-parser@2.4.10': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/sockjs@0.3.36': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/stack-utils@2.0.3': {} @@ -18943,7 +18956,7 @@ snapshots: '@types/ws@8.18.1': dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 '@types/yargs-parser@21.0.3': {} @@ -18956,112 +18969,180 @@ snapshots: '@types/node': 20.19.43 optional: true - '@typescript-eslint/eslint-plugin@8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3))(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.70.0(@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3))(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.69.0 - '@typescript-eslint/type-utils': 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) - '@typescript-eslint/utils': 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.69.0 - eslint: 10.9.1(jiti@1.21.7) - ignore: 7.0.8 + '@typescript-eslint/parser': 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/type-utils': 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.70.0 + eslint: 10.10.0(jiti@1.21.7) + ignore: 7.0.9 natural-compare: 1.4.0 - ts-api-utils: 2.5.0(typescript@5.9.3) - typescript: 5.9.3 + ts-api-utils: 2.5.0(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3))(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/eslint-plugin@8.70.0(@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3))(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.12.2 - '@typescript-eslint/parser': 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/scope-manager': 8.69.0 - '@typescript-eslint/type-utils': 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/utils': 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.69.0 - eslint: 10.9.1(jiti@2.7.0) - ignore: 7.0.8 + '@typescript-eslint/parser': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/type-utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.70.0 + eslint: 10.10.0(jiti@2.7.0) + ignore: 7.0.9 + natural-compare: 1.4.0 + ts-api-utils: 2.5.0(typescript@5.6.3) + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/eslint-plugin@8.70.0(@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3)': + dependencies: + '@eslint-community/regexpp': 4.12.2 + '@typescript-eslint/parser': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/type-utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.70.0 + eslint: 10.10.0(jiti@2.7.0) + ignore: 7.0.9 natural-compare: 1.4.0 ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3)': + '@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3)': dependencies: - '@typescript-eslint/scope-manager': 8.69.0 - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.69.0 + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.70.0 debug: 4.4.3 - eslint: 10.9.1(jiti@1.21.7) - typescript: 5.9.3 + eslint: 10.10.0(jiti@1.21.7) + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + '@typescript-eslint/visitor-keys': 8.70.0 + debug: 4.4.3 + eslint: 10.10.0(jiti@2.7.0) + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3)': dependencies: - '@typescript-eslint/scope-manager': 8.69.0 - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - '@typescript-eslint/visitor-keys': 8.69.0 + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.70.0 debug: 4.4.3 - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/project-service@8.69.0(typescript@5.9.3)': + '@typescript-eslint/project-service@8.70.0(typescript@5.6.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.70.0(typescript@5.6.3) + '@typescript-eslint/types': 8.70.0 + debug: 4.4.3 + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.70.0(typescript@5.9.3)': dependencies: - '@typescript-eslint/tsconfig-utils': 8.69.0(typescript@5.9.3) - '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/tsconfig-utils': 8.70.0(typescript@5.9.3) + '@typescript-eslint/types': 8.70.0 debug: 4.4.3 typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.69.0': + '@typescript-eslint/scope-manager@8.70.0': dependencies: - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/visitor-keys': 8.69.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/visitor-keys': 8.70.0 - '@typescript-eslint/tsconfig-utils@8.69.0(typescript@5.9.3)': + '@typescript-eslint/tsconfig-utils@8.70.0(typescript@5.6.3)': + dependencies: + typescript: 5.6.3 + + '@typescript-eslint/tsconfig-utils@8.70.0(typescript@5.9.3)': dependencies: typescript: 5.9.3 - '@typescript-eslint/type-utils@8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3)': dependencies: - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) debug: 4.4.3 - eslint: 10.9.1(jiti@1.21.7) - ts-api-utils: 2.5.0(typescript@5.9.3) - typescript: 5.9.3 + eslint: 10.10.0(jiti@1.21.7) + ts-api-utils: 2.5.0(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/type-utils@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3)': dependencies: - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) debug: 4.4.3 - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) + ts-api-utils: 2.5.0(typescript@5.6.3) + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/type-utils@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3)': + dependencies: + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + debug: 4.4.3 + eslint: 10.10.0(jiti@2.7.0) ts-api-utils: 2.5.0(typescript@5.9.3) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.69.0': {} + '@typescript-eslint/types@8.70.0': {} - '@typescript-eslint/typescript-estree@8.69.0(typescript@5.9.3)': + '@typescript-eslint/typescript-estree@8.70.0(typescript@5.6.3)': dependencies: - '@typescript-eslint/project-service': 8.69.0(typescript@5.9.3) - '@typescript-eslint/tsconfig-utils': 8.69.0(typescript@5.9.3) - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/visitor-keys': 8.69.0 + '@typescript-eslint/project-service': 8.70.0(typescript@5.6.3) + '@typescript-eslint/tsconfig-utils': 8.70.0(typescript@5.6.3) + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/visitor-keys': 8.70.0 + debug: 4.4.3 + minimatch: 10.2.6 + semver: 7.8.5 + tinyglobby: 0.2.17 + ts-api-utils: 2.5.0(typescript@5.6.3) + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/typescript-estree@8.70.0(typescript@5.9.3)': + dependencies: + '@typescript-eslint/project-service': 8.70.0(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.70.0(typescript@5.9.3) + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/visitor-keys': 8.70.0 debug: 4.4.3 minimatch: 10.2.6 semver: 7.8.5 @@ -19071,53 +19152,64 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3)': + '@typescript-eslint/utils@8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1(jiti@1.21.7)) - '@typescript-eslint/scope-manager': 8.69.0 - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - eslint: 10.9.1(jiti@1.21.7) - typescript: 5.9.3 + '@eslint-community/eslint-utils': 4.10.1(eslint@10.10.0(jiti@1.21.7)) + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + eslint: 10.10.0(jiti@1.21.7) + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3)': + '@typescript-eslint/utils@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3)': dependencies: - '@eslint-community/eslint-utils': 4.10.1(eslint@10.9.1(jiti@2.7.0)) - '@typescript-eslint/scope-manager': 8.69.0 - '@typescript-eslint/types': 8.69.0 - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - eslint: 10.9.1(jiti@2.7.0) + '@eslint-community/eslint-utils': 4.10.1(eslint@10.10.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + eslint: 10.10.0(jiti@2.7.0) + typescript: 5.6.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3)': + dependencies: + '@eslint-community/eslint-utils': 4.10.1(eslint@10.10.0(jiti@2.7.0)) + '@typescript-eslint/scope-manager': 8.70.0 + '@typescript-eslint/types': 8.70.0 + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.9.3) + eslint: 10.10.0(jiti@2.7.0) typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.69.0': + '@typescript-eslint/visitor-keys@8.70.0': dependencies: - '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/types': 8.70.0 eslint-visitor-keys: 5.0.1 '@ungap/structured-clone@1.3.0': {} - '@vitejs/plugin-basic-ssl@1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitejs/plugin-basic-ssl@1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitejs/plugin-basic-ssl@1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitejs/plugin-basic-ssl@1.2.0(vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitejs/plugin-basic-ssl@1.2.0(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitejs/plugin-basic-ssl@1.2.0(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) optional: true - '@vitejs/plugin-basic-ssl@1.2.0(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitejs/plugin-basic-ssl@1.2.0(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitejs/plugin-react@4.7.0(vite@8.2.2(@types/node@22.20.1)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitejs/plugin-react@4.7.0(vite@8.3.0(@types/node@22.20.3)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0) @@ -19125,14 +19217,14 @@ snapshots: '@rolldown/pluginutils': 1.0.0-beta.27 '@types/babel__core': 7.20.5 react-refresh: 0.17.0 - vite: 8.2.2(@types/node@22.20.1)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 8.3.0(@types/node@22.20.3)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@5.2.4(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))(vue@3.5.42(typescript@5.9.3))': + '@vitejs/plugin-vue@5.2.4(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))(vue@3.5.42(typescript@5.6.3))': dependencies: - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) - vue: 3.5.42(typescript@5.9.3) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) + vue: 3.5.42(typescript@5.6.3) '@vitest/coverage-v8@4.1.11(vitest@4.1.11)': dependencies: @@ -19146,7 +19238,7 @@ snapshots: obug: 2.1.1 std-env: 4.0.0 tinyrainbow: 3.1.0 - vitest: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + vitest: 4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/expect@3.2.4': dependencies: @@ -19163,106 +19255,97 @@ snapshots: '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 chai: 6.2.2 - tinyrainbow: 3.1.0 - - '@vitest/expect@4.1.2': - dependencies: - '@standard-schema/spec': 1.1.0 - '@types/chai': 5.2.3 - '@vitest/spy': 4.1.2 - '@vitest/utils': 4.1.2 - chai: 6.2.2 - tinyrainbow: 3.1.0 + tinyrainbow: 3.1.1 - '@vitest/mocker@3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 3.2.4 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@20.19.43)(typescript@5.9.3) - vite: 8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@20.19.43)(typescript@5.6.3) + vite: 8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@20.19.43)(typescript@5.9.3) - vite: 8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@20.19.43)(typescript@5.6.3) + vite: 8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@22.20.1)(typescript@5.9.3))(vite@8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@22.20.3)(typescript@5.6.3))(vite@8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@22.20.1)(typescript@5.9.3) - vite: 8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@22.20.3)(typescript@5.6.3) + vite: 8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: - msw: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - '@vitest/mocker@4.1.2(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0))': + '@vitest/mocker@4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1))': dependencies: - '@vitest/spy': 4.1.2 + '@vitest/spy': 4.1.11 estree-walker: 3.0.3 magic-string: 0.30.21 optionalDependencies: msw: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) '@vitest/pretty-format@3.2.4': dependencies: @@ -19270,22 +19353,13 @@ snapshots: '@vitest/pretty-format@4.1.11': dependencies: - tinyrainbow: 3.1.0 - - '@vitest/pretty-format@4.1.2': - dependencies: - tinyrainbow: 3.1.0 + tinyrainbow: 3.1.1 '@vitest/runner@4.1.11': dependencies: '@vitest/utils': 4.1.11 pathe: 2.0.3 - '@vitest/runner@4.1.2': - dependencies: - '@vitest/utils': 4.1.2 - pathe: 2.0.3 - '@vitest/snapshot@4.1.11': dependencies: '@vitest/pretty-format': 4.1.11 @@ -19293,21 +19367,12 @@ snapshots: magic-string: 0.30.21 pathe: 2.0.3 - '@vitest/snapshot@4.1.2': - dependencies: - '@vitest/pretty-format': 4.1.2 - '@vitest/utils': 4.1.2 - magic-string: 0.30.21 - pathe: 2.0.3 - '@vitest/spy@3.2.4': dependencies: tinyspy: 4.0.4 '@vitest/spy@4.1.11': {} - '@vitest/spy@4.1.2': {} - '@vitest/utils@3.2.4': dependencies: '@vitest/pretty-format': 3.2.4 @@ -19318,13 +19383,7 @@ snapshots: dependencies: '@vitest/pretty-format': 4.1.11 convert-source-map: 2.0.0 - tinyrainbow: 3.1.0 - - '@vitest/utils@4.1.2': - dependencies: - '@vitest/pretty-format': 4.1.2 - convert-source-map: 2.0.0 - tinyrainbow: 3.1.0 + tinyrainbow: 3.1.1 '@volar/language-core@2.4.15': dependencies: @@ -19373,7 +19432,7 @@ snapshots: '@vue/shared': 3.5.42 estree-walker: 2.0.2 magic-string: 0.30.21 - postcss: 8.5.26 + postcss: 8.5.28 source-map-js: 1.2.1 '@vue/compiler-ssr@3.5.42': @@ -19386,6 +19445,19 @@ snapshots: de-indent: 1.0.2 he: 1.2.0 + '@vue/language-core@2.2.12(typescript@5.6.3)': + dependencies: + '@volar/language-core': 2.4.15 + '@vue/compiler-dom': 3.5.34 + '@vue/compiler-vue2': 2.7.16 + '@vue/shared': 3.5.34 + alien-signals: 1.0.13 + minimatch: 9.0.9 + muggle-string: 0.4.1 + path-browserify: 1.0.1 + optionalDependencies: + typescript: 5.6.3 + '@vue/language-core@2.2.12(typescript@5.9.3)': dependencies: '@volar/language-core': 2.4.15 @@ -19429,11 +19501,11 @@ snapshots: '@vue/shared@3.5.42': {} - '@vue/test-utils@2.5.0(@vue/compiler-dom@3.5.42)(@vue/server-renderer@3.5.42)(vue@3.5.42(typescript@5.9.3))': + '@vue/test-utils@2.5.1(@vue/compiler-dom@3.5.42)(@vue/server-renderer@3.5.42)(vue@3.5.42(typescript@5.6.3))': dependencies: '@vue/compiler-dom': 3.5.42 js-beautify: 2.0.3 - vue: 3.5.42(typescript@5.9.3) + vue: 3.5.42(typescript@5.6.3) vue-component-type-helpers: 3.2.9 optionalDependencies: '@vue/server-renderer': 3.5.42 @@ -19792,32 +19864,32 @@ snapshots: atomic-sleep@1.0.0: {} - autoprefixer@10.4.20(postcss@8.5.26): + autoprefixer@10.4.20(postcss@8.5.28): dependencies: browserslist: 4.28.1 - caniuse-lite: 1.0.30001806 + caniuse-lite: 1.0.30001810 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 - postcss: 8.5.26 + postcss: 8.5.28 postcss-value-parser: 4.2.0 - autoprefixer@10.5.4(postcss@8.5.25): + autoprefixer@10.6.1(postcss@8.5.25): dependencies: - browserslist: 4.28.7 - caniuse-lite: 1.0.30001806 + browserslist: 4.29.0 + caniuse-lite: 1.0.30001810 fraction.js: 5.3.4 picocolors: 1.1.1 postcss: 8.5.25 postcss-value-parser: 4.2.0 - autoprefixer@10.5.4(postcss@8.5.26): + autoprefixer@10.6.1(postcss@8.5.28): dependencies: - browserslist: 4.28.7 - caniuse-lite: 1.0.30001806 + browserslist: 4.29.0 + caniuse-lite: 1.0.30001810 fraction.js: 5.3.4 picocolors: 1.1.1 - postcss: 8.5.26 + postcss: 8.5.28 postcss-value-parser: 4.2.0 available-typed-arrays@1.0.7: @@ -19837,19 +19909,19 @@ snapshots: b4a@1.8.1: optional: true - babel-loader@9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + babel-loader@9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: '@babel/core': 7.26.10 find-cache-dir: 4.0.0 schema-utils: 4.3.3 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - babel-loader@9.2.1(@babel/core@7.26.10)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + babel-loader@9.2.1(@babel/core@7.26.10)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: '@babel/core': 7.26.10 find-cache-dir: 4.0.0 schema-utils: 4.3.3 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.26.10): @@ -19876,9 +19948,9 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-transform-hook-names@1.0.2(@babel/core@8.0.1): + babel-plugin-transform-hook-names@1.0.2(@babel/core@8.0.5): dependencies: - '@babel/core': 8.0.1 + '@babel/core': 8.0.5 babel-walk@3.0.0-canary-5: dependencies: @@ -19929,6 +20001,8 @@ snapshots: baseline-browser-mapping@2.11.20: {} + baseline-browser-mapping@2.11.24: {} + basic-ftp@5.3.1: {} batch@0.6.1: {} @@ -19941,7 +20015,7 @@ snapshots: domhandler: 5.0.3 htmlparser2: 10.1.0 picocolors: 1.1.1 - postcss: 8.5.26 + postcss: 8.5.28 postcss-media-query-parser: 0.2.3 better-opn@3.0.2: @@ -20040,26 +20114,18 @@ snapshots: browserslist@4.28.1: dependencies: baseline-browser-mapping: 2.11.11 - caniuse-lite: 1.0.30001806 + caniuse-lite: 1.0.30001810 electron-to-chromium: 1.5.307 node-releases: 2.0.36 update-browserslist-db: 1.2.3(browserslist@4.28.1) - browserslist@4.28.7: + browserslist@4.29.0: dependencies: - baseline-browser-mapping: 2.11.11 - caniuse-lite: 1.0.30001806 - electron-to-chromium: 1.5.399 - node-releases: 2.0.51 - update-browserslist-db: 1.2.3(browserslist@4.28.7) - - browserslist@4.28.8: - dependencies: - baseline-browser-mapping: 2.11.20 + baseline-browser-mapping: 2.11.24 caniuse-lite: 1.0.30001810 - electron-to-chromium: 1.5.420 - node-releases: 2.0.54 - update-browserslist-db: 1.3.2(browserslist@4.28.8) + electron-to-chromium: 1.5.430 + node-releases: 2.0.55 + update-browserslist-db: 1.3.3(browserslist@4.29.0) buffer-crc32@0.2.13: {} @@ -20109,6 +20175,14 @@ snapshots: tar: 7.5.16 unique-filename: 4.0.0 + cacheable@2.5.0: + dependencies: + '@cacheable/memory': 2.2.0 + '@cacheable/utils': 2.5.0 + hookified: 1.15.1 + keyv: 5.6.0 + qified: 0.10.1 + call-bind-apply-helpers@1.0.2: dependencies: es-errors: 1.3.0 @@ -20140,8 +20214,6 @@ snapshots: camelize@1.0.1: optional: true - caniuse-lite@1.0.30001806: {} - caniuse-lite@1.0.30001810: {} canonicalize@1.0.8: {} @@ -20207,7 +20279,7 @@ snapshots: transitivePeerDependencies: - supports-color - chat@4.36.0(zod@4.5.4): + chat@4.36.0(zod@4.6.5): dependencies: '@workflow/serde': 4.1.0-beta.2 mdast-util-to-string: 4.0.0 @@ -20217,7 +20289,7 @@ snapshots: remend: 1.3.0 unified: 11.0.5 optionalDependencies: - zod: 4.5.4 + zod: 4.6.5 transitivePeerDependencies: - supports-color @@ -20479,7 +20551,7 @@ snapshots: dependencies: is-what: 4.1.16 - copy-webpack-plugin@12.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + copy-webpack-plugin@12.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: fast-glob: 3.3.3 glob-parent: 6.0.2 @@ -20487,9 +20559,9 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.3.3 serialize-javascript: 6.0.2 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - copy-webpack-plugin@12.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + copy-webpack-plugin@12.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: fast-glob: 3.3.3 glob-parent: 6.0.2 @@ -20497,7 +20569,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.3.3 serialize-javascript: 6.0.2 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true core-js-compat@3.48.0: @@ -20549,42 +20621,42 @@ snapshots: css-loader@6.11.0(webpack@5.102.1(esbuild@0.25.12)): dependencies: - icss-utils: 5.1.0(postcss@8.5.26) - postcss: 8.5.26 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.26) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.26) - postcss-modules-scope: 3.2.1(postcss@8.5.26) - postcss-modules-values: 4.0.0(postcss@8.5.26) + icss-utils: 5.1.0(postcss@8.5.28) + postcss: 8.5.28 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.28) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.28) + postcss-modules-scope: 3.2.1(postcss@8.5.28) + postcss-modules-values: 4.0.0(postcss@8.5.28) postcss-value-parser: 4.2.0 semver: 7.8.5 optionalDependencies: webpack: 5.102.1(esbuild@0.25.12) - css-loader@7.1.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + css-loader@7.1.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: - icss-utils: 5.1.0(postcss@8.5.26) - postcss: 8.5.26 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.26) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.26) - postcss-modules-scope: 3.2.1(postcss@8.5.26) - postcss-modules-values: 4.0.0(postcss@8.5.26) + icss-utils: 5.1.0(postcss@8.5.28) + postcss: 8.5.28 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.28) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.28) + postcss-modules-scope: 3.2.1(postcss@8.5.28) + postcss-modules-values: 4.0.0(postcss@8.5.28) postcss-value-parser: 4.2.0 semver: 7.7.4 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - css-loader@7.1.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + css-loader@7.1.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: - icss-utils: 5.1.0(postcss@8.5.26) - postcss: 8.5.26 - postcss-modules-extract-imports: 3.1.0(postcss@8.5.26) - postcss-modules-local-by-default: 4.2.0(postcss@8.5.26) - postcss-modules-scope: 3.2.1(postcss@8.5.26) - postcss-modules-values: 4.0.0(postcss@8.5.26) + icss-utils: 5.1.0(postcss@8.5.28) + postcss: 8.5.28 + postcss-modules-extract-imports: 3.1.0(postcss@8.5.28) + postcss-modules-local-by-default: 4.2.0(postcss@8.5.28) + postcss-modules-scope: 3.2.1(postcss@8.5.28) + postcss-modules-values: 4.0.0(postcss@8.5.28) postcss-value-parser: 4.2.0 semver: 7.7.4 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true css-select@4.3.0: @@ -20869,9 +20941,7 @@ snapshots: electron-to-chromium@1.5.307: {} - electron-to-chromium@1.5.399: {} - - electron-to-chromium@1.5.420: {} + electron-to-chromium@1.5.430: {} emoji-regex@10.6.0: {} @@ -20957,7 +21027,7 @@ snapshots: es-module-lexer@1.7.0: {} - es-module-lexer@2.0.0: {} + es-module-lexer@2.3.2: {} es-object-atoms@1.1.1: dependencies: @@ -21158,19 +21228,19 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-plugin-oxlint@1.81.0(oxlint@1.81.0): + eslint-plugin-oxlint@1.83.0(oxlint@1.83.0): dependencies: jsonc-parser: 3.3.1 - oxlint: 1.81.0 + oxlint: 1.83.0 - eslint-plugin-react-hooks@7.1.1(eslint@10.9.1(jiti@2.7.0)): + eslint-plugin-react-hooks@7.1.1(eslint@10.10.0(jiti@2.7.0)): dependencies: '@babel/core': 7.29.0 '@babel/parser': 7.29.3 - eslint: 10.9.1(jiti@2.7.0) + eslint: 10.10.0(jiti@2.7.0) hermes-parser: 0.25.1 - zod: 4.5.4 - zod-validation-error: 4.0.2(zod@4.5.4) + zod: 4.6.5 + zod-validation-error: 4.0.2(zod@4.6.5) transitivePeerDependencies: - supports-color @@ -21192,14 +21262,14 @@ snapshots: eslint-visitor-keys@5.0.1: {} - eslint@10.9.1(jiti@1.21.7): + eslint@10.10.0(jiti@1.21.7): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.9.1(jiti@1.21.7)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.10.0(jiti@1.21.7)) '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.23.5 '@eslint/config-helpers': 0.7.0 '@eslint/core': 1.2.1 - '@eslint/plugin-kit': 0.7.2 + '@eslint/plugin-kit': 0.7.3 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 @@ -21214,7 +21284,7 @@ snapshots: esquery: 1.7.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 8.0.0 + file-entry-cache: 11.1.5 find-up: 5.0.0 glob-parent: 6.0.2 ignore: 5.3.2 @@ -21229,14 +21299,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint@10.9.1(jiti@2.7.0): + eslint@10.10.0(jiti@2.7.0): dependencies: - '@eslint-community/eslint-utils': 4.9.1(eslint@10.9.1(jiti@2.7.0)) + '@eslint-community/eslint-utils': 4.9.1(eslint@10.10.0(jiti@2.7.0)) '@eslint-community/regexpp': 4.12.2 '@eslint/config-array': 0.23.5 '@eslint/config-helpers': 0.7.0 '@eslint/core': 1.2.1 - '@eslint/plugin-kit': 0.7.2 + '@eslint/plugin-kit': 0.7.3 '@humanfs/node': 0.16.7 '@humanwhocodes/module-importer': 1.0.1 '@humanwhocodes/retry': 0.4.3 @@ -21251,7 +21321,7 @@ snapshots: esquery: 1.7.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 8.0.0 + file-entry-cache: 11.1.5 find-up: 5.0.0 glob-parent: 6.0.2 ignore: 5.3.2 @@ -21288,11 +21358,11 @@ snapshots: dependencies: estraverse: 5.3.0 - esrap@2.3.0(@typescript-eslint/types@8.69.0): + esrap@2.3.0(@typescript-eslint/types@8.70.0): dependencies: '@jridgewell/sourcemap-codec': 1.5.5 optionalDependencies: - '@typescript-eslint/types': 8.69.0 + '@typescript-eslint/types': 8.70.0 esrecurse@4.3.0: dependencies: @@ -21376,7 +21446,7 @@ snapshots: strip-final-newline: 4.0.0 yoctocolors: 2.1.2 - expect-type@1.3.0: {} + expect-type@1.4.0: {} expect@29.7.0: dependencies: @@ -21424,7 +21494,7 @@ snapshots: transitivePeerDependencies: - supports-color - express@4.22.2: + express@4.22.3: dependencies: accepts: 1.3.8 array-flatten: 1.1.1 @@ -21445,9 +21515,9 @@ snapshots: methods: 1.1.2 on-finished: 2.4.1 parseurl: 1.3.3 - path-to-regexp: 0.1.12 + path-to-regexp: 0.1.13 proxy-addr: 2.0.7 - qs: 6.15.3 + qs: 6.16.0 range-parser: 1.2.1 safe-buffer: 5.2.1 send: 0.19.0 @@ -21481,7 +21551,7 @@ snapshots: on-finished: 2.4.1 once: 1.4.0 parseurl: 1.3.3 - proxy-addr: 2.0.7 + proxy-addr: 2.0.8 qs: 6.16.0 range-parser: 1.3.0 router: 2.2.0 @@ -21580,10 +21650,6 @@ snapshots: optionalDependencies: picomatch: 4.0.4 - fdir@6.5.0(picomatch@4.0.5): - optionalDependencies: - picomatch: 4.0.5 - fdir@6.5.0(picomatch@4.0.7): optionalDependencies: picomatch: 4.0.7 @@ -21600,9 +21666,9 @@ snapshots: dependencies: is-unicode-supported: 2.1.0 - file-entry-cache@8.0.0: + file-entry-cache@11.1.5: dependencies: - flat-cache: 4.0.1 + flat-cache: 6.1.23 fill-range@7.1.1: dependencies: @@ -21670,7 +21736,7 @@ snapshots: dependencies: fast-glob: 3.3.3 pkg-types: 1.3.1 - yaml: 2.9.0 + yaml: 2.9.1 fix-dts-default-cjs-exports@1.0.1: dependencies: @@ -21678,14 +21744,15 @@ snapshots: mlly: 1.8.0 rollup: 3.29.5 - flat-cache@4.0.1: + flat-cache@6.1.23: dependencies: - flatted: 3.3.3 - keyv: 4.5.4 + cacheable: 2.5.0 + flatted: 3.4.4 + hookified: 1.15.1 flat@5.0.2: {} - flatted@3.3.3: {} + flatted@3.4.4: {} follow-redirects@1.15.11(debug@4.4.3): optionalDependencies: @@ -21738,24 +21805,24 @@ snapshots: fraction.js@5.3.4: {} - framer-motion@12.43.0(@emotion/is-prop-valid@1.4.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + framer-motion@12.43.0(@emotion/is-prop-valid@1.4.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: motion-dom: 12.43.0 motion-utils: 12.39.0 tslib: 2.8.1 optionalDependencies: '@emotion/is-prop-valid': 1.4.0 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - framer-motion@6.5.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + framer-motion@6.5.1(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: '@motionone/dom': 10.12.0 framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) style-value-types: 5.0.0 tslib: 2.8.1 optionalDependencies: @@ -21812,13 +21879,10 @@ snapshots: fs.realpath@1.0.0: {} - fsevents@2.3.2: - optional: true - fsevents@2.3.3: optional: true - fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.18)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.2.8))(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(zod@4.5.4): + fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.3.0)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.3.0))(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(zod@4.6.5): dependencies: '@orama/orama': 3.1.18 estree-util-value-to-estree: 3.5.0 @@ -21842,24 +21906,24 @@ snapshots: '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 '@types/mdast': 4.0.4 - '@types/react': 19.2.18 + '@types/react': 19.3.0 algoliasearch: 5.42.0 - lucide-react: 0.503.0(react@19.2.8) - next: 16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0) - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - zod: 4.5.4 + lucide-react: 0.503.0(react@19.3.0) + next: 16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + zod: 4.6.5 transitivePeerDependencies: - supports-color - fumadocs-mdx@15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.2.18)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.18)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.2.8))(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(zod@4.5.4))(mdast-util-directive@3.1.0)(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react@19.2.8)(rolldown@1.2.7)(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + fumadocs-mdx@15.2.0(@types/mdast@4.0.4)(@types/mdx@2.0.14)(@types/react@19.3.0)(fumadocs-core@16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.3.0)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.3.0))(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(zod@4.6.5))(mdast-util-directive@3.1.0)(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react@19.3.0)(rolldown@1.2.7)(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@mdx-js/mdx': 3.1.1 '@standard-schema/spec': 1.1.0 chokidar: 5.0.0 esbuild: 0.28.1 estree-util-value-to-estree: 3.5.0 - fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.2.18)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.2.8))(next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0))(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(zod@4.5.4) + fumadocs-core: 16.11.5(@mdx-js/mdx@3.1.1)(@types/estree-jsx@1.0.5)(@types/hast@3.0.4)(@types/mdast@4.0.4)(@types/react@19.3.0)(algoliasearch@5.42.0)(lucide-react@0.503.0(react@19.3.0))(next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0))(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(zod@4.6.5) github-slugger: 2.0.0 magic-string: 0.30.21 mdast-util-mdx: 3.0.0 @@ -21873,16 +21937,16 @@ snapshots: vfile: 6.0.3 yaml: 2.9.0 yuku-analyzer: 0.6.12 - zod: 4.5.4 + zod: 4.6.5 optionalDependencies: '@types/mdast': 4.0.4 '@types/mdx': 2.0.14 - '@types/react': 19.2.18 + '@types/react': 19.3.0 mdast-util-directive: 3.1.0 - next: 16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0) - react: 19.2.8 + next: 16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0) + react: 19.3.0 rolldown: 1.2.7 - vite: 8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) transitivePeerDependencies: - supports-color @@ -21994,7 +22058,7 @@ snapshots: dependencies: '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.3 - ignore: 7.0.8 + ignore: 7.0.9 path-type: 6.0.0 slash: 5.1.0 unicorn-magic: 0.3.0 @@ -22007,7 +22071,7 @@ snapshots: gray-matter@4.0.3: dependencies: - js-yaml: 3.14.1 + js-yaml: 3.15.2 kind-of: 6.0.3 section-matter: 1.0.0 strip-bom-string: 1.0.0 @@ -22034,6 +22098,10 @@ snapshots: hash-sum@2.0.0: {} + hashery@1.5.1: + dependencies: + hookified: 1.15.1 + hasown@2.0.2: dependencies: function-bind: 1.1.2 @@ -22134,7 +22202,11 @@ snapshots: highlightjs-vue@1.0.0: {} - hono@4.13.5: {} + hono@4.13.8: {} + + hookified@1.15.1: {} + + hookified@2.2.0: {} hosted-git-info@8.1.0: dependencies: @@ -22177,7 +22249,7 @@ snapshots: optionalDependencies: webpack: 5.102.1(esbuild@0.25.12) - html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)): + html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -22185,10 +22257,10 @@ snapshots: pretty-error: 4.0.0 tapable: 2.3.0 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) optional: true - html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 @@ -22196,7 +22268,7 @@ snapshots: pretty-error: 4.0.0 tapable: 2.3.0 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true htmlparser2@10.1.0: @@ -22328,9 +22400,9 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.5.26): + icss-utils@5.1.0(postcss@8.5.28): dependencies: - postcss: 8.5.26 + postcss: 8.5.28 ieee754@1.2.1: {} @@ -22342,7 +22414,7 @@ snapshots: ignore@7.0.5: {} - ignore@7.0.8: {} + ignore@7.0.9: {} image-size@0.5.5: optional: true @@ -22412,10 +22484,10 @@ snapshots: '@formatjs/icu-messageformat-parser': 2.11.4 tslib: 2.8.1 - intl-messageformat@11.2.14: + intl-messageformat@11.2.15: dependencies: '@formatjs/fast-memoize': 3.1.7 - '@formatjs/icu-messageformat-parser': 3.5.17 + '@formatjs/icu-messageformat-parser': 3.5.18 ip-address@10.2.0: {} @@ -22661,10 +22733,10 @@ snapshots: html-escaper: 2.0.2 istanbul-lib-report: 3.0.1 - its-fine@2.0.0(@types/react@19.2.18)(react@19.2.8): + its-fine@2.0.0(@types/react@19.3.0)(react@19.3.0): dependencies: - '@types/react-reconciler': 0.28.9(@types/react@19.2.18) - react: 19.2.8 + '@types/react-reconciler': 0.28.9(@types/react@19.3.0) + react: 19.3.0 transitivePeerDependencies: - '@types/react' @@ -22719,7 +22791,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 26.1.2 + '@types/node': 22.20.3 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -22727,7 +22799,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 26.1.2 + '@types/node': 22.20.3 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -22737,7 +22809,7 @@ snapshots: jiti@2.7.0: {} - jose@6.2.10: {} + jose@6.2.12: {} jose@6.2.3: {} @@ -22766,16 +22838,6 @@ snapshots: js-tokens@4.0.0: {} - js-yaml@3.14.1: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - - js-yaml@3.14.2: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - js-yaml@3.15.2: dependencies: argparse: 1.0.10 @@ -22817,8 +22879,6 @@ snapshots: jsesc@3.1.0: {} - json-buffer@3.0.1: {} - json-parse-even-better-errors@2.3.1: {} json-parse-even-better-errors@4.0.0: {} @@ -22858,21 +22918,21 @@ snapshots: dependencies: source-map-support: 0.5.21 - keyv@4.5.4: + keyv@5.6.0: dependencies: - json-buffer: 3.0.1 + '@keyv/serialize': 1.1.1 kind-of@6.0.3: {} kleur@4.1.5: {} - knip@6.34.0: + knip@6.36.0: dependencies: fdir: 6.5.0(picomatch@4.0.7) formatly: 0.7.0 get-tsconfig: 4.14.3 jiti: 2.7.0 - oxc-parser: 0.147.0 + oxc-parser: 0.148.0 oxc-resolver: 11.24.2 picomatch: 4.0.7 smol-toml: 1.8.0 @@ -22880,11 +22940,11 @@ snapshots: tinyglobby: 0.2.17 unbash: 4.0.11 yaml: 2.9.0 - zod: 4.5.4 + zod: 4.6.5 kolorist@1.8.0: {} - konva@10.3.2: {} + konva@10.5.0: {} konva@9.3.6: {} @@ -22899,17 +22959,17 @@ snapshots: legacy-javascript@0.0.1: {} - less-loader@12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + less-loader@12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: less: 4.2.2 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - less-loader@12.2.0(less@4.2.2)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + less-loader@12.2.0(less@4.2.2)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: less: 4.2.2 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true less@4.2.2: @@ -22947,17 +23007,17 @@ snapshots: libheif-js@1.23.2: optional: true - license-webpack-plugin@4.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + license-webpack-plugin@4.0.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: webpack-sources: 3.3.3 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - license-webpack-plugin@4.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + license-webpack-plugin@4.0.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: webpack-sources: 3.3.3 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true lie@3.1.1: @@ -23120,11 +23180,11 @@ snapshots: lines-and-columns@1.2.4: {} - lint-staged@17.4.1: + lint-staged@17.5.1: dependencies: picomatch: 4.0.7 string-argv: 0.3.2 - tinyexec: 1.3.0 + tinyexec: 1.3.1 optionalDependencies: yaml: 2.9.0 @@ -23289,9 +23349,9 @@ snapshots: lru-cache@8.0.5: {} - lucide-react@0.503.0(react@19.2.8): + lucide-react@0.503.0(react@19.3.0): dependencies: - react: 19.2.8 + react: 19.3.0 lz-string@1.5.0: {} @@ -23301,7 +23361,7 @@ snapshots: magic-string@0.30.21: dependencies: - '@jridgewell/sourcemap-codec': 1.5.5 + '@jridgewell/sourcemap-codec': 1.6.0 magicast@0.5.3: dependencies: @@ -23345,15 +23405,15 @@ snapshots: marky@1.3.0: {} - mastra@1.27.2(@hono/node-server@1.19.14(hono@4.13.5))(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(typescript@5.9.3)(zod@3.25.76): + mastra@1.30.0(@hono/node-server@1.19.14(hono@4.13.8))(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(rxjs@7.8.2)(typescript@5.6.3)(zod@3.25.76): dependencies: '@babel/parser': 8.0.4 '@babel/types': 8.0.4 '@clack/prompts': 1.7.0 '@expo/devcert': 1.2.1 - '@mastra/core': 1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) - '@mastra/deployer': 1.63.2(@hono/node-server@1.19.14(hono@4.13.5))(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(typescript@5.9.3)(zod@3.25.76) - '@mastra/loggers': 1.3.0(@mastra/core@1.63.2(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76)) + '@mastra/core': 1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76) + '@mastra/deployer': 1.67.0(@hono/node-server@1.19.14(hono@4.13.8))(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76))(typescript@5.6.3)(zod@3.25.76) + '@mastra/loggers': 1.3.2(@mastra/core@1.67.0(@grpc/grpc-js@1.14.3)(express@5.2.1)(rxjs@7.8.2)(zod@3.25.76)) archiver: 8.0.0 commander: 14.0.3 dotenv: 17.4.2 @@ -23363,7 +23423,7 @@ snapshots: local-pkg: 1.1.2 openapi-fetch: 0.17.0 picocolors: 1.1.1 - posthog-node: 5.51.6(rxjs@7.8.2) + posthog-node: 5.52.4(rxjs@7.8.2) semver: 7.7.4 serve-handler: 6.1.7 strip-json-comments: 5.0.3 @@ -23918,17 +23978,17 @@ snapshots: min-indent@1.0.1: {} - mini-css-extract-plugin@2.9.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + mini-css-extract-plugin@2.9.2(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: schema-utils: 4.3.3 tapable: 2.3.0 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - mini-css-extract-plugin@2.9.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + mini-css-extract-plugin@2.9.2(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: schema-utils: 4.3.3 tapable: 2.3.0 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true mini-svg-data-uri@1.4.4: {} @@ -24052,12 +24112,7 @@ snapshots: is-node-process: 1.2.0 msw: 2.15.0(@types/node@26.1.2)(typescript@5.6.3) - msw-storybook-addon@2.0.7(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3)): - dependencies: - is-node-process: 1.2.0 - msw: 2.15.0(@types/node@26.1.2)(typescript@5.9.3) - - msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3): + msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3): dependencies: '@inquirer/confirm': 6.1.1(@types/node@20.19.43) '@mswjs/interceptors': 0.41.9 @@ -24078,14 +24133,14 @@ snapshots: until-async: 3.0.2 yargs: 17.7.2 optionalDependencies: - typescript: 5.9.3 + typescript: 5.6.3 transitivePeerDependencies: - '@types/node' optional: true - msw@2.15.0(@types/node@22.20.1)(typescript@5.9.3): + msw@2.15.0(@types/node@22.20.3)(typescript@5.6.3): dependencies: - '@inquirer/confirm': 6.1.1(@types/node@22.20.1) + '@inquirer/confirm': 6.1.1(@types/node@22.20.3) '@mswjs/interceptors': 0.41.9 '@open-draft/deferred-promise': 3.0.0 '@types/statuses': 2.0.6 @@ -24104,7 +24159,7 @@ snapshots: until-async: 3.0.2 yargs: 17.7.2 optionalDependencies: - typescript: 5.9.3 + typescript: 5.6.3 transitivePeerDependencies: - '@types/node' optional: true @@ -24158,6 +24213,7 @@ snapshots: typescript: 5.9.3 transitivePeerDependencies: - '@types/node' + optional: true muggle-string@0.4.1: {} @@ -24211,34 +24267,35 @@ snapshots: netmask@2.1.1: {} - next@16.2.11(@opentelemetry/api@1.9.1)(@playwright/test@1.62.1)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(sass@1.100.0): + next@16.3.3(@opentelemetry/api@1.9.1)(@playwright/test@1.63.0)(@types/node@20.19.43)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(sass@1.100.0): dependencies: - '@next/env': 16.2.11 - '@swc/helpers': 0.5.15 - baseline-browser-mapping: 2.11.11 - caniuse-lite: 1.0.30001806 - postcss: 8.5.25 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - styled-jsx: 5.1.6(react@19.2.8) + '@next/env': 16.3.3 + '@swc/helpers': 0.5.23 + baseline-browser-mapping: 2.11.20 + caniuse-lite: 1.0.30001810 + postcss: 8.5.26 + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + styled-jsx: 5.1.6(react@19.3.0) optionalDependencies: - '@next/swc-darwin-arm64': 16.2.11 - '@next/swc-darwin-x64': 16.2.11 - '@next/swc-linux-arm64-gnu': 16.2.11 - '@next/swc-linux-arm64-musl': 16.2.11 - '@next/swc-linux-x64-gnu': 16.2.11 - '@next/swc-linux-x64-musl': 16.2.11 - '@next/swc-win32-arm64-msvc': 16.2.11 - '@next/swc-win32-x64-msvc': 16.2.11 + '@next/swc-darwin-arm64': 16.3.3 + '@next/swc-darwin-x64': 16.3.3 + '@next/swc-linux-arm64-gnu': 16.3.3 + '@next/swc-linux-arm64-musl': 16.3.3 + '@next/swc-linux-x64-gnu': 16.3.3 + '@next/swc-linux-x64-musl': 16.3.3 + '@next/swc-win32-arm64-msvc': 16.3.3 + '@next/swc-win32-x64-msvc': 16.3.3 '@opentelemetry/api': 1.9.1 - '@playwright/test': 1.62.1 + '@playwright/test': 1.63.0 sass: 1.100.0 - sharp: 0.34.5 + sharp: 0.35.4(@types/node@20.19.43) transitivePeerDependencies: - '@babel/core' + - '@types/node' - babel-plugin-macros - ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0))(tslib@2.8.1)(typescript@5.6.3): + ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1))(tslib@2.8.1)(typescript@5.6.3): dependencies: '@angular/compiler-cli': 19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3) '@rollup/plugin-json': 6.1.0(rollup@3.29.5) @@ -24258,14 +24315,14 @@ snapshots: less: 4.6.4 ora: 5.4.1 piscina: 4.9.2 - postcss: 8.5.26 + postcss: 8.5.28 rxjs: 7.8.2 sass: 1.100.0 tslib: 2.8.1 typescript: 5.6.3 optionalDependencies: rollup: 3.29.5 - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) optional: true ng-packagr@19.2.2(@angular/compiler-cli@19.2.25(@angular/compiler@19.2.25)(typescript@5.6.3))(tailwindcss@4.3.3)(tslib@2.8.1)(typescript@5.6.3): @@ -24288,7 +24345,7 @@ snapshots: less: 4.6.4 ora: 5.4.1 piscina: 4.9.2 - postcss: 8.5.26 + postcss: 8.5.28 rxjs: 7.8.2 sass: 1.100.0 tslib: 2.8.1 @@ -24345,9 +24402,7 @@ snapshots: node-releases@2.0.36: {} - node-releases@2.0.51: {} - - node-releases@2.0.54: {} + node-releases@2.0.55: {} nodemailer@9.1.1: {} @@ -24441,7 +24496,7 @@ snapshots: obug@2.1.1: {} - obug@2.1.4: {} + obug@2.2.1: {} on-exit-leak-free@2.1.2: {} @@ -24536,29 +24591,29 @@ snapshots: outvariant@1.4.3: {} - oxc-parser@0.147.0: + oxc-parser@0.148.0: dependencies: - '@oxc-project/types': 0.147.0 + '@oxc-project/types': 0.148.0 optionalDependencies: - '@oxc-parser/binding-android-arm-eabi': 0.147.0 - '@oxc-parser/binding-android-arm64': 0.147.0 - '@oxc-parser/binding-darwin-arm64': 0.147.0 - '@oxc-parser/binding-darwin-x64': 0.147.0 - '@oxc-parser/binding-freebsd-x64': 0.147.0 - '@oxc-parser/binding-linux-arm-gnueabihf': 0.147.0 - '@oxc-parser/binding-linux-arm-musleabihf': 0.147.0 - '@oxc-parser/binding-linux-arm64-gnu': 0.147.0 - '@oxc-parser/binding-linux-arm64-musl': 0.147.0 - '@oxc-parser/binding-linux-ppc64-gnu': 0.147.0 - '@oxc-parser/binding-linux-riscv64-gnu': 0.147.0 - '@oxc-parser/binding-linux-riscv64-musl': 0.147.0 - '@oxc-parser/binding-linux-s390x-gnu': 0.147.0 - '@oxc-parser/binding-linux-x64-gnu': 0.147.0 - '@oxc-parser/binding-linux-x64-musl': 0.147.0 - '@oxc-parser/binding-openharmony-arm64': 0.147.0 - '@oxc-parser/binding-win32-arm64-msvc': 0.147.0 - '@oxc-parser/binding-win32-ia32-msvc': 0.147.0 - '@oxc-parser/binding-win32-x64-msvc': 0.147.0 + '@oxc-parser/binding-android-arm-eabi': 0.148.0 + '@oxc-parser/binding-android-arm64': 0.148.0 + '@oxc-parser/binding-darwin-arm64': 0.148.0 + '@oxc-parser/binding-darwin-x64': 0.148.0 + '@oxc-parser/binding-freebsd-x64': 0.148.0 + '@oxc-parser/binding-linux-arm-gnueabihf': 0.148.0 + '@oxc-parser/binding-linux-arm-musleabihf': 0.148.0 + '@oxc-parser/binding-linux-arm64-gnu': 0.148.0 + '@oxc-parser/binding-linux-arm64-musl': 0.148.0 + '@oxc-parser/binding-linux-ppc64-gnu': 0.148.0 + '@oxc-parser/binding-linux-riscv64-gnu': 0.148.0 + '@oxc-parser/binding-linux-riscv64-musl': 0.148.0 + '@oxc-parser/binding-linux-s390x-gnu': 0.148.0 + '@oxc-parser/binding-linux-x64-gnu': 0.148.0 + '@oxc-parser/binding-linux-x64-musl': 0.148.0 + '@oxc-parser/binding-openharmony-arm64': 0.148.0 + '@oxc-parser/binding-win32-arm64-msvc': 0.148.0 + '@oxc-parser/binding-win32-ia32-msvc': 0.148.0 + '@oxc-parser/binding-win32-x64-msvc': 0.148.0 oxc-resolver@11.24.2: optionalDependencies: @@ -24582,27 +24637,27 @@ snapshots: '@oxc-resolver/binding-win32-arm64-msvc': 11.24.2 '@oxc-resolver/binding-win32-x64-msvc': 11.24.2 - oxlint@1.81.0: + oxlint@1.83.0: optionalDependencies: - '@oxlint/binding-android-arm-eabi': 1.81.0 - '@oxlint/binding-android-arm64': 1.81.0 - '@oxlint/binding-darwin-arm64': 1.81.0 - '@oxlint/binding-darwin-x64': 1.81.0 - '@oxlint/binding-freebsd-x64': 1.81.0 - '@oxlint/binding-linux-arm-gnueabihf': 1.81.0 - '@oxlint/binding-linux-arm-musleabihf': 1.81.0 - '@oxlint/binding-linux-arm64-gnu': 1.81.0 - '@oxlint/binding-linux-arm64-musl': 1.81.0 - '@oxlint/binding-linux-ppc64-gnu': 1.81.0 - '@oxlint/binding-linux-riscv64-gnu': 1.81.0 - '@oxlint/binding-linux-riscv64-musl': 1.81.0 - '@oxlint/binding-linux-s390x-gnu': 1.81.0 - '@oxlint/binding-linux-x64-gnu': 1.81.0 - '@oxlint/binding-linux-x64-musl': 1.81.0 - '@oxlint/binding-openharmony-arm64': 1.81.0 - '@oxlint/binding-win32-arm64-msvc': 1.81.0 - '@oxlint/binding-win32-ia32-msvc': 1.81.0 - '@oxlint/binding-win32-x64-msvc': 1.81.0 + '@oxlint/binding-android-arm-eabi': 1.83.0 + '@oxlint/binding-android-arm64': 1.83.0 + '@oxlint/binding-darwin-arm64': 1.83.0 + '@oxlint/binding-darwin-x64': 1.83.0 + '@oxlint/binding-freebsd-x64': 1.83.0 + '@oxlint/binding-linux-arm-gnueabihf': 1.83.0 + '@oxlint/binding-linux-arm-musleabihf': 1.83.0 + '@oxlint/binding-linux-arm64-gnu': 1.83.0 + '@oxlint/binding-linux-arm64-musl': 1.83.0 + '@oxlint/binding-linux-ppc64-gnu': 1.83.0 + '@oxlint/binding-linux-riscv64-gnu': 1.83.0 + '@oxlint/binding-linux-riscv64-musl': 1.83.0 + '@oxlint/binding-linux-s390x-gnu': 1.83.0 + '@oxlint/binding-linux-x64-gnu': 1.83.0 + '@oxlint/binding-linux-x64-musl': 1.83.0 + '@oxlint/binding-openharmony-arm64': 1.83.0 + '@oxlint/binding-win32-arm64-msvc': 1.83.0 + '@oxlint/binding-win32-ia32-msvc': 1.83.0 + '@oxlint/binding-win32-x64-msvc': 1.83.0 p-filter@2.1.0: dependencies: @@ -24788,6 +24843,8 @@ snapshots: path-to-regexp@0.1.12: {} + path-to-regexp@0.1.13: {} + path-to-regexp@3.3.0: {} path-to-regexp@6.3.0: {} @@ -24885,13 +24942,11 @@ snapshots: exsolve: 1.0.7 pathe: 2.0.3 - playwright-core@1.62.1: {} + playwright-core@1.63.0: {} - playwright@1.62.1: + playwright@1.63.0: dependencies: - playwright-core: 1.62.1 - optionalDependencies: - fsevents: 2.3.2 + playwright-core: 1.63.0 popmotion@11.0.3: dependencies: @@ -24902,15 +24957,15 @@ snapshots: possible-typed-array-names@1.1.0: {} - postcss-cli@11.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13): + postcss-cli@11.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13): dependencies: chokidar: 3.6.0 dependency-graph: 1.0.0 fs-extra: 11.3.4 picocolors: 1.1.1 - postcss: 8.5.26 - postcss-load-config: 5.1.0(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13) - postcss-reporter: 7.1.0(postcss@8.5.26) + postcss: 8.5.28 + postcss-load-config: 5.1.0(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13) + postcss-reporter: 7.1.0(postcss@8.5.28) pretty-hrtime: 1.0.3 read-cache: 1.0.0 slash: 5.1.0 @@ -24932,92 +24987,92 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.5.25 - postcss-load-config@5.1.0(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13): + postcss-load-config@5.1.0(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13): dependencies: lilconfig: 3.1.3 yaml: 2.9.0 optionalDependencies: jiti: 2.7.0 - postcss: 8.5.26 + postcss: 8.5.28 tsx: 4.23.13 - postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.25)(tsx@4.23.13)(yaml@2.9.0): + postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.25)(tsx@4.23.13)(yaml@2.9.1): dependencies: lilconfig: 3.1.3 optionalDependencies: jiti: 1.21.7 postcss: 8.5.25 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(yaml@2.9.0): + postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(yaml@2.9.1): dependencies: lilconfig: 3.1.3 optionalDependencies: jiti: 2.7.0 - postcss: 8.5.26 + postcss: 8.5.28 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - postcss-loader@8.1.1(postcss@8.5.26)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + postcss-loader@8.1.1(postcss@8.5.28)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: cosmiconfig: 9.0.2(typescript@5.6.3) jiti: 1.21.7 - postcss: 8.5.26 + postcss: 8.5.28 semver: 7.7.4 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) transitivePeerDependencies: - typescript - postcss-loader@8.1.1(postcss@8.5.26)(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + postcss-loader@8.1.1(postcss@8.5.28)(typescript@5.6.3)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: cosmiconfig: 9.0.2(typescript@5.6.3) jiti: 1.21.7 - postcss: 8.5.26 + postcss: 8.5.28 semver: 7.7.4 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) transitivePeerDependencies: - typescript optional: true postcss-media-query-parser@0.2.3: {} - postcss-modules-extract-imports@3.1.0(postcss@8.5.26): + postcss-modules-extract-imports@3.1.0(postcss@8.5.28): dependencies: - postcss: 8.5.26 + postcss: 8.5.28 - postcss-modules-local-by-default@4.2.0(postcss@8.5.26): + postcss-modules-local-by-default@4.2.0(postcss@8.5.28): dependencies: - icss-utils: 5.1.0(postcss@8.5.26) - postcss: 8.5.26 + icss-utils: 5.1.0(postcss@8.5.28) + postcss: 8.5.28 postcss-selector-parser: 7.1.0 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.2.1(postcss@8.5.26): + postcss-modules-scope@3.2.1(postcss@8.5.28): dependencies: - postcss: 8.5.26 + postcss: 8.5.28 postcss-selector-parser: 7.1.0 - postcss-modules-values@4.0.0(postcss@8.5.26): + postcss-modules-values@4.0.0(postcss@8.5.28): dependencies: - icss-utils: 5.1.0(postcss@8.5.26) - postcss: 8.5.26 + icss-utils: 5.1.0(postcss@8.5.28) + postcss: 8.5.28 postcss-nested@6.2.0(postcss@8.5.25): dependencies: postcss: 8.5.25 postcss-selector-parser: 6.1.2 - postcss-prefix-selector@2.2.0(postcss@8.5.26): + postcss-prefix-selector@2.2.1(postcss@8.5.28): dependencies: - postcss: 8.5.26 + postcss: 8.5.28 - postcss-reporter@7.1.0(postcss@8.5.26): + postcss-reporter@7.1.0(postcss@8.5.28): dependencies: picocolors: 1.1.1 - postcss: 8.5.26 + postcss: 8.5.28 thenby: 1.3.4 postcss-selector-parser@6.0.10: @@ -25049,11 +25104,17 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - posthog-js@1.425.1(@types/react@19.2.18)(preact-render-to-string@6.7.0)(react@19.2.8): + postcss@8.5.28: + dependencies: + nanoid: 3.3.18 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + posthog-js@1.433.6(@types/react@19.3.0)(preact-render-to-string@6.7.0)(react@19.3.0): dependencies: - '@posthog/browser-common': 0.7.1 - '@posthog/core': 1.50.2 - '@posthog/types': 1.408.0 + '@posthog/browser-common': 0.8.3 + '@posthog/core': 1.54.2 + '@posthog/types': 1.412.1 core-js: 3.49.0 dompurify: 3.4.14 fflate: 0.4.8 @@ -25062,18 +25123,18 @@ snapshots: web-vitals: 6.2.1 web-vitals-soft-navs: web-vitals@6.2.1 optionalDependencies: - '@types/react': 19.2.18 - react: 19.2.8 + '@types/react': 19.3.0 + react: 19.3.0 transitivePeerDependencies: - preact-render-to-string - posthog-node@5.51.6(rxjs@7.8.2): + posthog-node@5.52.4(rxjs@7.8.2): dependencies: - '@posthog/core': 1.50.2 + '@posthog/core': 1.54.2 optionalDependencies: rxjs: 7.8.2 - postprocessing@6.39.4(three@0.178.0): + postprocessing@6.39.5(three@0.178.0): dependencies: three: 0.178.0 @@ -25091,21 +25152,21 @@ snapshots: prelude-ls@1.2.1: {} - prettier-plugin-organize-imports@3.2.4(prettier@3.9.6)(typescript@5.9.3): + prettier-plugin-organize-imports@3.2.4(prettier@3.9.7)(typescript@5.6.3): dependencies: - prettier: 3.9.6 - typescript: 5.9.3 + prettier: 3.9.7 + typescript: 5.6.3 optional: true - prettier-plugin-tailwindcss@0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.9.6)(typescript@5.9.3))(prettier@3.9.6): + prettier-plugin-tailwindcss@0.5.14(prettier-plugin-organize-imports@3.2.4(prettier@3.9.7)(typescript@5.6.3))(prettier@3.9.7): dependencies: - prettier: 3.9.6 + prettier: 3.9.7 optionalDependencies: - prettier-plugin-organize-imports: 3.2.4(prettier@3.9.6)(typescript@5.9.3) + prettier-plugin-organize-imports: 3.2.4(prettier@3.9.7)(typescript@5.6.3) prettier@2.8.8: {} - prettier@3.9.6: {} + prettier@3.9.7: {} pretty-error@4.0.0: dependencies: @@ -25198,6 +25259,12 @@ snapshots: forwarded: 0.2.0 ipaddr.js: 1.9.1 + proxy-addr@2.0.8: + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + optional: true + proxy-agent@6.5.0: dependencies: agent-base: 7.1.4 @@ -25311,6 +25378,10 @@ snapshots: - supports-color - utf-8-validate + qified@0.10.1: + dependencies: + hookified: 2.2.0 + qs@6.14.2: dependencies: side-channel: 1.1.0 @@ -25324,7 +25395,6 @@ snapshots: dependencies: es-define-property: 1.0.1 side-channel: 1.1.1 - optional: true quansync@0.2.11: {} @@ -25362,9 +25432,9 @@ snapshots: unpipe: 1.0.0 optional: true - react-docgen-typescript@2.4.0(typescript@5.9.3): + react-docgen-typescript@2.4.0(typescript@5.6.3): dependencies: - typescript: 5.9.3 + typescript: 5.6.3 react-docgen@8.0.3: dependencies: @@ -25381,33 +25451,29 @@ snapshots: transitivePeerDependencies: - supports-color - react-dom@19.2.8(react@19.2.8): + react-dom@19.3.0(react@19.3.0): dependencies: - react: 19.2.8 - scheduler: 0.27.0 + react: 19.3.0 + scheduler: 0.28.0 - react-filerobot-image-editor@4.9.1(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react-konva@19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8))(react@19.2.8)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)): + react-filerobot-image-editor@4.9.1(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react-konva@19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0))(react@19.3.0)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)): dependencies: '@babel/runtime': 7.28.6 - '@scaleflex/icons': 2.10.27(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) - '@scaleflex/ui': 2.10.27(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)) + '@scaleflex/icons': 2.10.27(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) + '@scaleflex/ui': 2.10.27(@types/react-dom@19.3.0(@types/react@19.3.0))(@types/react@19.3.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)(styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0)) konva: 9.3.6 prop-types: 15.7.2 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - react-konva: 19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) - styled-components: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + react-konva: 19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) + styled-components: 6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - react-icons@5.5.0(react@19.2.8): + react-icons@5.5.0(react@19.3.0): dependencies: - react: 19.2.8 - - react-icons@5.7.0(react@19.2.8): - dependencies: - react: 19.2.8 + react: 19.3.0 react-is@16.13.1: {} @@ -25415,54 +25481,54 @@ snapshots: react-is@18.3.1: {} - react-konva@19.2.5(@types/react@19.2.18)(konva@10.3.2)(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + react-konva@19.3.0(@types/react@19.3.0)(konva@10.5.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: - '@types/react-reconciler': 0.33.0(@types/react@19.2.18) - its-fine: 2.0.0(@types/react@19.2.18)(react@19.2.8) - konva: 10.3.2 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) - react-reconciler: 0.33.0(react@19.2.8) - scheduler: 0.27.0 + '@types/react-reconciler': 0.33.0(@types/react@19.3.0) + its-fine: 2.0.0(@types/react@19.3.0)(react@19.3.0) + konva: 10.5.0 + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) + react-reconciler: 0.34.0(react@19.3.0) + scheduler: 0.28.0 transitivePeerDependencies: - '@types/react' - react-reconciler@0.33.0(react@19.2.8): + react-reconciler@0.34.0(react@19.3.0): dependencies: - react: 19.2.8 - scheduler: 0.27.0 + react: 19.3.0 + scheduler: 0.28.0 react-refresh@0.17.0: {} - react-syntax-highlighter@15.6.6(react@19.2.8): + react-syntax-highlighter@15.6.6(react@19.3.0): dependencies: '@babel/runtime': 7.28.4 highlight.js: 10.7.3 highlightjs-vue: 1.0.0 lowlight: 1.20.0 prismjs: 1.30.0 - react: 19.2.8 + react: 19.3.0 refractor: 3.6.0 - react-toastify@11.1.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + react-toastify@11.1.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: clsx: 2.1.1 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - react-tooltip@5.30.1(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + react-tooltip@5.30.1(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: '@floating-ui/dom': 1.7.4 classnames: 2.5.1 - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - react-webcam@7.2.0(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + react-webcam@7.2.0(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: - react: 19.2.8 - react-dom: 19.2.8(react@19.2.8) + react: 19.3.0 + react-dom: 19.3.0(react@19.3.0) - react@19.2.8: {} + react@19.3.0: {} read-cache@1.0.0: dependencies: @@ -25698,7 +25764,7 @@ snapshots: adjust-sourcemap-loader: 4.0.0 convert-source-map: 1.9.0 loader-utils: 2.0.4 - postcss: 8.5.26 + postcss: 8.5.28 source-map: 0.6.1 resolve.exports@2.0.3: {} @@ -25879,19 +25945,19 @@ snapshots: safer-buffer@2.1.2: {} - sass-loader@16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + sass-loader@16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: neo-async: 2.6.2 optionalDependencies: sass: 1.85.0 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - sass-loader@16.0.5(sass@1.85.0)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + sass-loader@16.0.5(sass@1.85.0)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: neo-async: 2.6.2 optionalDependencies: sass: 1.85.0 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true sass@1.100.0: @@ -25917,7 +25983,7 @@ snapshots: dependencies: xmlchars: 2.2.0 - scheduler@0.27.0: {} + scheduler@0.28.0: {} schema-utils@3.3.0: dependencies: @@ -26072,36 +26138,38 @@ snapshots: dependencies: kind-of: 6.0.3 - sharp@0.34.5: + sharp@0.35.4(@types/node@20.19.43): dependencies: '@img/colour': 1.1.0 detect-libc: 2.1.2 semver: 7.8.5 optionalDependencies: - '@img/sharp-darwin-arm64': 0.34.5 - '@img/sharp-darwin-x64': 0.34.5 - '@img/sharp-libvips-darwin-arm64': 1.2.4 - '@img/sharp-libvips-darwin-x64': 1.2.4 - '@img/sharp-libvips-linux-arm': 1.2.4 - '@img/sharp-libvips-linux-arm64': 1.2.4 - '@img/sharp-libvips-linux-ppc64': 1.2.4 - '@img/sharp-libvips-linux-riscv64': 1.2.4 - '@img/sharp-libvips-linux-s390x': 1.2.4 - '@img/sharp-libvips-linux-x64': 1.2.4 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 - '@img/sharp-libvips-linuxmusl-x64': 1.2.4 - '@img/sharp-linux-arm': 0.34.5 - '@img/sharp-linux-arm64': 0.34.5 - '@img/sharp-linux-ppc64': 0.34.5 - '@img/sharp-linux-riscv64': 0.34.5 - '@img/sharp-linux-s390x': 0.34.5 - '@img/sharp-linux-x64': 0.34.5 - '@img/sharp-linuxmusl-arm64': 0.34.5 - '@img/sharp-linuxmusl-x64': 0.34.5 - '@img/sharp-wasm32': 0.34.5 - '@img/sharp-win32-arm64': 0.34.5 - '@img/sharp-win32-ia32': 0.34.5 - '@img/sharp-win32-x64': 0.34.5 + '@img/sharp-darwin-arm64': 0.35.4 + '@img/sharp-darwin-x64': 0.35.4 + '@img/sharp-freebsd-wasm32': 0.35.4 + '@img/sharp-libvips-darwin-arm64': 1.3.3 + '@img/sharp-libvips-darwin-x64': 1.3.3 + '@img/sharp-libvips-linux-arm': 1.3.3 + '@img/sharp-libvips-linux-arm64': 1.3.3 + '@img/sharp-libvips-linux-ppc64': 1.3.3 + '@img/sharp-libvips-linux-riscv64': 1.3.3 + '@img/sharp-libvips-linux-s390x': 1.3.3 + '@img/sharp-libvips-linux-x64': 1.3.3 + '@img/sharp-libvips-linuxmusl-arm64': 1.3.3 + '@img/sharp-libvips-linuxmusl-x64': 1.3.3 + '@img/sharp-linux-arm': 0.35.4 + '@img/sharp-linux-arm64': 0.35.4 + '@img/sharp-linux-ppc64': 0.35.4 + '@img/sharp-linux-riscv64': 0.35.4 + '@img/sharp-linux-s390x': 0.35.4 + '@img/sharp-linux-x64': 0.35.4 + '@img/sharp-linuxmusl-arm64': 0.35.4 + '@img/sharp-linuxmusl-x64': 0.35.4 + '@img/sharp-webcontainers-wasm32': 0.35.4 + '@img/sharp-win32-arm64': 0.35.4 + '@img/sharp-win32-ia32': 0.35.4 + '@img/sharp-win32-x64': 0.35.4 + '@types/node': 20.19.43 optional: true shebang-command@2.0.0: @@ -26242,17 +26310,17 @@ snapshots: source-map-js@1.2.1: {} - source-map-loader@5.0.0(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + source-map-loader@5.0.0(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.1 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) - source-map-loader@5.0.0(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + source-map-loader@5.0.0(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: iconv-lite: 0.6.3 source-map-js: 1.2.1 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optional: true source-map-support@0.5.21: @@ -26340,18 +26408,20 @@ snapshots: std-env@4.0.0: {} + std-env@4.2.0: {} + stop-iteration-iterator@1.1.0: dependencies: es-errors: 1.3.0 internal-slot: 1.1.0 - storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@storybook/global': 5.0.0 '@testing-library/jest-dom': 6.9.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0) '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/spy': 3.2.4 better-opn: 3.0.2 esbuild: 0.25.12 @@ -26360,7 +26430,7 @@ snapshots: semver: 7.7.4 ws: 8.20.0 optionalDependencies: - prettier: 3.9.6 + prettier: 3.9.7 transitivePeerDependencies: - '@testing-library/dom' - bufferutil @@ -26369,13 +26439,13 @@ snapshots: - utf-8-validate - vite - storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@storybook/global': 5.0.0 '@testing-library/jest-dom': 6.9.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0) '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/spy': 3.2.4 better-opn: 3.0.2 esbuild: 0.25.12 @@ -26384,7 +26454,7 @@ snapshots: semver: 7.7.4 ws: 8.20.0 optionalDependencies: - prettier: 3.9.6 + prettier: 3.9.7 transitivePeerDependencies: - '@testing-library/dom' - bufferutil @@ -26393,13 +26463,13 @@ snapshots: - utf-8-validate - vite - storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(prettier@3.9.6)(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + storybook@9.1.20(@testing-library/dom@10.4.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(prettier@3.9.7)(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@storybook/global': 5.0.0 '@testing-library/jest-dom': 6.9.1 '@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0) '@vitest/expect': 3.2.4 - '@vitest/mocker': 3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 3.2.4(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/spy': 3.2.4 better-opn: 3.0.2 esbuild: 0.25.12 @@ -26408,7 +26478,7 @@ snapshots: semver: 7.7.4 ws: 8.20.0 optionalDependencies: - prettier: 3.9.6 + prettier: 3.9.7 transitivePeerDependencies: - '@testing-library/dom' - bufferutil @@ -26525,20 +26595,20 @@ snapshots: hey-listen: 1.0.8 tslib: 2.8.1 - styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8): + styled-components@6.5.3(css-to-react-native@3.2.0)(react-dom@19.3.0(react@19.3.0))(react@19.3.0): dependencies: '@emotion/is-prop-valid': 1.4.0 csstype: 3.2.3 - react: 19.2.8 + react: 19.3.0 stylis: 4.3.6 optionalDependencies: css-to-react-native: 3.2.0 - react-dom: 19.2.8(react@19.2.8) + react-dom: 19.3.0(react@19.3.0) - styled-jsx@5.1.6(react@19.2.8): + styled-jsx@5.1.6(react@19.3.0): dependencies: client-only: 0.0.1 - react: 19.2.8 + react: 19.3.0 stylis@4.3.6: {} @@ -26566,7 +26636,7 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - svelte-check@4.7.6(picomatch@4.0.7)(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3): + svelte-check@4.7.6(picomatch@4.0.7)(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3): dependencies: '@jridgewell/trace-mapping': 0.3.31 '@sveltejs/load-config': 0.2.3 @@ -26574,19 +26644,19 @@ snapshots: fdir: 6.5.0(picomatch@4.0.7) picocolors: 1.1.1 sade: 1.8.1 - svelte: 5.57.0(@typescript-eslint/types@8.69.0) - typescript: 5.9.3 + svelte: 5.57.0(@typescript-eslint/types@8.70.0) + typescript: 5.6.3 transitivePeerDependencies: - picomatch - svelte2tsx@0.7.56(svelte@5.57.0(@typescript-eslint/types@8.69.0))(typescript@5.9.3): + svelte2tsx@0.7.56(svelte@5.57.0(@typescript-eslint/types@8.70.0))(typescript@5.6.3): dependencies: dedent-js: 1.0.1 scule: 1.3.0 - svelte: 5.57.0(@typescript-eslint/types@8.69.0) - typescript: 5.9.3 + svelte: 5.57.0(@typescript-eslint/types@8.70.0) + typescript: 5.6.3 - svelte@5.57.0(@typescript-eslint/types@8.69.0): + svelte@5.57.0(@typescript-eslint/types@8.70.0): dependencies: '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.5 @@ -26598,7 +26668,7 @@ snapshots: clsx: 2.1.1 devalue: 5.8.1 esm-env: 1.2.2 - esrap: 2.3.0(@typescript-eslint/types@8.69.0) + esrap: 2.3.0(@typescript-eslint/types@8.70.0) is-reference: 3.0.3 locate-character: 3.0.0 magic-string: 0.30.21 @@ -26616,14 +26686,14 @@ snapshots: tailwind-merge@1.8.1: {} - tailwind-merge@3.6.0: {} + tailwind-merge@3.7.0: {} - tailwindcss-elevation@2.0.0(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0)): + tailwindcss-elevation@2.0.0(tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1)): dependencies: hex-rgb: 4.3.0 - tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.0) + tailwindcss: 3.4.19(tsx@4.23.13)(yaml@2.9.1) - tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.0): + tailwindcss@3.4.19(tsx@4.23.13)(yaml@2.9.1): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -26642,7 +26712,7 @@ snapshots: postcss: 8.5.25 postcss-import: 15.1.0(postcss@8.5.25) postcss-js: 4.1.0(postcss@8.5.25) - postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.25)(tsx@4.23.13)(yaml@2.9.0) + postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.25)(tsx@4.23.13)(yaml@2.9.1) postcss-nested: 6.2.0(postcss@8.5.25) postcss-selector-parser: 6.1.2 resolve: 1.22.11 @@ -26718,28 +26788,28 @@ snapshots: optionalDependencies: esbuild: 0.25.12 - terser-webpack-plugin@5.6.1(esbuild@0.25.12)(postcss@8.5.26)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + terser-webpack-plugin@5.6.1(esbuild@0.25.12)(postcss@8.5.28)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.46.0 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) optionalDependencies: esbuild: 0.25.12 - postcss: 8.5.26 + postcss: 8.5.28 - terser-webpack-plugin@5.6.1(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + terser-webpack-plugin@5.6.1(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: '@jridgewell/trace-mapping': 0.3.31 jest-worker: 27.5.1 schema-utils: 4.3.3 terser: 5.46.0 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optionalDependencies: esbuild: 0.28.0 lightningcss: 1.33.0 - postcss: 8.5.26 + postcss: 8.5.28 optional: true terser@5.39.0: @@ -26785,7 +26855,7 @@ snapshots: third-party-web@0.26.7: {} - third-party-web@0.29.2: {} + third-party-web@0.30.0: {} thread-stream@4.2.0: dependencies: @@ -26805,22 +26875,24 @@ snapshots: tinyexec@1.2.4: {} - tinyexec@1.3.0: {} + tinyexec@1.3.1: {} tinyglobby@0.2.16: dependencies: - fdir: 6.5.0(picomatch@4.0.4) - picomatch: 4.0.4 + fdir: 6.5.0(picomatch@4.0.7) + picomatch: 4.0.7 tinyglobby@0.2.17: dependencies: - fdir: 6.5.0(picomatch@4.0.5) - picomatch: 4.0.5 + fdir: 6.5.0(picomatch@4.0.7) + picomatch: 4.0.7 tinyrainbow@2.0.0: {} tinyrainbow@3.1.0: {} + tinyrainbow@3.1.1: {} + tinyspy@4.0.4: {} tippy.js@6.3.7: @@ -26874,6 +26946,10 @@ snapshots: trough@2.2.0: {} + ts-api-utils@2.5.0(typescript@5.6.3): + dependencies: + typescript: 5.6.3 + ts-api-utils@2.5.0(typescript@5.9.3): dependencies: typescript: 5.9.3 @@ -26906,7 +26982,7 @@ snapshots: tslib@2.8.1: {} - tsup@8.5.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(typescript@5.9.3)(yaml@2.9.0): + tsup@8.5.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(typescript@5.6.3)(yaml@2.9.1): dependencies: bundle-require: 5.1.0(esbuild@0.27.7) cac: 6.7.14 @@ -26917,7 +26993,7 @@ snapshots: fix-dts-default-cjs-exports: 1.0.1 joycon: 3.1.1 picocolors: 1.1.1 - postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.26)(tsx@4.23.13)(yaml@2.9.0) + postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.28)(tsx@4.23.13)(yaml@2.9.1) resolve-from: 5.0.0 rollup: 3.29.5 source-map: 0.7.6 @@ -26926,8 +27002,8 @@ snapshots: tinyglobby: 0.2.16 tree-kill: 1.2.2 optionalDependencies: - postcss: 8.5.26 - typescript: 5.9.3 + postcss: 8.5.28 + typescript: 5.6.3 transitivePeerDependencies: - jiti - supports-color @@ -27016,31 +27092,42 @@ snapshots: dependencies: is-typedarray: 1.0.0 - typescript-eslint@8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3): + typescript-eslint@8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3))(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) - '@typescript-eslint/parser': 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.69.0(eslint@10.9.1(jiti@1.21.7))(typescript@5.9.3) - eslint: 10.9.1(jiti@1.21.7) - typescript: 5.9.3 + '@typescript-eslint/eslint-plugin': 8.70.0(@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3))(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) + '@typescript-eslint/parser': 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@1.21.7))(typescript@5.6.3) + eslint: 10.10.0(jiti@1.21.7) + typescript: 5.6.3 transitivePeerDependencies: - supports-color - typescript-eslint@8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3): + typescript-eslint@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3): dependencies: - '@typescript-eslint/eslint-plugin': 8.69.0(@typescript-eslint/parser@8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3))(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/parser': 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) - '@typescript-eslint/typescript-estree': 8.69.0(typescript@5.9.3) - '@typescript-eslint/utils': 8.69.0(eslint@10.9.1(jiti@2.7.0))(typescript@5.9.3) - eslint: 10.9.1(jiti@2.7.0) - typescript: 5.9.3 + '@typescript-eslint/eslint-plugin': 8.70.0(@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3))(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.6.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.6.3) + eslint: 10.10.0(jiti@2.7.0) + typescript: 5.6.3 transitivePeerDependencies: - supports-color - typescript-paths@1.5.2(typescript@5.9.3): + typescript-eslint@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3): dependencies: + '@typescript-eslint/eslint-plugin': 8.70.0(@typescript-eslint/parser@8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/parser': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + '@typescript-eslint/typescript-estree': 8.70.0(typescript@5.9.3) + '@typescript-eslint/utils': 8.70.0(eslint@10.10.0(jiti@2.7.0))(typescript@5.9.3) + eslint: 10.10.0(jiti@2.7.0) typescript: 5.9.3 + transitivePeerDependencies: + - supports-color + + typescript-paths@1.5.2(typescript@5.6.3): + dependencies: + typescript: 5.6.3 typescript@5.3.3: {} @@ -27056,7 +27143,8 @@ snapshots: undici-types@6.21.0: {} - undici-types@8.3.0: {} + undici-types@8.3.0: + optional: true unicode-canonical-property-names-ecmascript@2.0.1: {} @@ -27140,15 +27228,15 @@ snapshots: pathe: 2.0.3 picomatch: 4.0.7 - unplugin-vue@7.2.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(vue@3.5.42(typescript@5.9.3))(yaml@2.9.0): + unplugin-vue@7.2.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(vue@3.5.42(typescript@5.6.3))(yaml@2.9.1): dependencies: '@jridgewell/gen-mapping': 0.3.13 '@jridgewell/trace-mapping': 0.3.31 '@vue/reactivity': 3.5.34 obug: 2.1.1 unplugin: 3.0.0 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) - vue: 3.5.42(typescript@5.9.3) + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) + vue: 3.5.42(typescript@5.6.3) transitivePeerDependencies: - '@types/node' - '@vitejs/devtools' @@ -27171,7 +27259,7 @@ snapshots: unplugin@3.0.0: dependencies: '@jridgewell/remapping': 2.3.5 - picomatch: 4.0.5 + picomatch: 4.0.7 webpack-virtual-modules: 0.6.2 until-async@3.0.2: {} @@ -27182,15 +27270,9 @@ snapshots: escalade: 3.2.0 picocolors: 1.1.1 - update-browserslist-db@1.2.3(browserslist@4.28.7): - dependencies: - browserslist: 4.28.7 - escalade: 3.2.0 - picocolors: 1.1.1 - - update-browserslist-db@1.3.2(browserslist@4.28.8): + update-browserslist-db@1.3.3(browserslist@4.29.0): dependencies: - browserslist: 4.28.8 + browserslist: 4.29.0 escalade: 3.2.0 picocolors: 1.1.1 @@ -27222,6 +27304,8 @@ snapshots: vary@1.1.2: {} + verkit@0.3.2: {} + vfile-message@4.0.3: dependencies: '@types/unist': 3.0.3 @@ -27232,7 +27316,7 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.3 - vite-prerender-plugin@0.5.13(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vite-prerender-plugin@0.5.13(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: kolorist: 1.8.0 magic-string: 0.30.21 @@ -27240,14 +27324,14 @@ snapshots: simple-code-frame: 1.3.0 source-map: 0.7.6 stack-trace: 1.0.0 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.0): + vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.2.2)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.39.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: esbuild: 0.25.12 - fdir: 6.5.0(picomatch@4.0.4) - picomatch: 4.0.4 - postcss: 8.5.26 + fdir: 6.5.0(picomatch@4.0.7) + picomatch: 4.0.7 + postcss: 8.5.28 rollup: 4.61.1 tinyglobby: 0.2.17 optionalDependencies: @@ -27259,14 +27343,14 @@ snapshots: sass: 1.85.0 terser: 5.39.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@6.4.2(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: esbuild: 0.25.12 - fdir: 6.5.0(picomatch@4.0.4) - picomatch: 4.0.4 - postcss: 8.5.26 + fdir: 6.5.0(picomatch@4.0.7) + picomatch: 4.0.7 + postcss: 8.5.28 rollup: 4.61.1 tinyglobby: 0.2.17 optionalDependencies: @@ -27278,14 +27362,14 @@ snapshots: sass: 1.85.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 - postcss: 8.5.26 + postcss: 8.5.28 rollup: 4.61.1 tinyglobby: 0.2.16 optionalDependencies: @@ -27297,14 +27381,14 @@ snapshots: sass: 1.100.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: esbuild: 0.27.7 fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 - postcss: 8.5.26 + postcss: 8.5.28 rollup: 4.61.1 tinyglobby: 0.2.16 optionalDependencies: @@ -27316,12 +27400,12 @@ snapshots: sass: 1.85.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: lightningcss: 1.33.0 - picomatch: 4.0.5 + picomatch: 4.0.7 postcss: 8.5.25 rolldown: 1.2.7 tinyglobby: 0.2.17 @@ -27334,12 +27418,12 @@ snapshots: sass: 1.100.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: lightningcss: 1.33.0 - picomatch: 4.0.5 + picomatch: 4.0.7 postcss: 8.5.25 rolldown: 1.2.7 tinyglobby: 0.2.17 @@ -27352,17 +27436,17 @@ snapshots: sass: 1.100.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: lightningcss: 1.33.0 - picomatch: 4.0.5 + picomatch: 4.0.7 postcss: 8.5.25 rolldown: 1.2.7 tinyglobby: 0.2.17 optionalDependencies: - '@types/node': 22.20.1 + '@types/node': 22.20.3 esbuild: 0.27.7 fsevents: 2.3.3 jiti: 2.7.0 @@ -27370,17 +27454,17 @@ snapshots: sass: 1.100.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@8.2.2(@types/node@22.20.1)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@8.3.0(@types/node@22.20.3)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: lightningcss: 1.33.0 - picomatch: 4.0.5 + picomatch: 4.0.7 postcss: 8.5.25 rolldown: 1.2.7 tinyglobby: 0.2.17 optionalDependencies: - '@types/node': 22.20.1 + '@types/node': 22.20.3 esbuild: 0.28.2 fsevents: 2.3.3 jiti: 2.7.0 @@ -27388,12 +27472,12 @@ snapshots: sass: 1.100.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@8.2.2(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@8.3.0(@types/node@26.1.2)(esbuild@0.25.12)(jiti@2.7.0)(less@4.2.2)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: lightningcss: 1.33.0 - picomatch: 4.0.5 + picomatch: 4.0.7 postcss: 8.5.25 rolldown: 1.2.7 tinyglobby: 0.2.17 @@ -27406,12 +27490,12 @@ snapshots: sass: 1.85.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0): + vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1): dependencies: lightningcss: 1.33.0 - picomatch: 4.0.5 + picomatch: 4.0.7 postcss: 8.5.25 rolldown: 1.2.7 tinyglobby: 0.2.17 @@ -27424,33 +27508,33 @@ snapshots: sass: 1.100.0 terser: 5.46.0 tsx: 4.23.13 - yaml: 2.9.0 + yaml: 2.9.1 - vitefu@1.1.3(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitefu@1.1.3(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): optionalDependencies: - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) - vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@vitest/expect': 4.1.11 - '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/pretty-format': 4.1.11 '@vitest/runner': 4.1.11 '@vitest/snapshot': 4.1.11 '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@1.21.7)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 @@ -27460,27 +27544,27 @@ snapshots: transitivePeerDependencies: - msw - vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@20.19.43)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@vitest/expect': 4.1.11 - '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.9.3))(vite@8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@20.19.43)(typescript@5.6.3))(vite@8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/pretty-format': 4.1.11 '@vitest/runner': 4.1.11 '@vitest/snapshot': 4.1.11 '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 8.2.2(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 8.3.0(@types/node@20.19.43)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 @@ -27490,57 +27574,57 @@ snapshots: transitivePeerDependencies: - msw - vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@22.20.1)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@22.20.1)(typescript@5.9.3))(vite@8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@22.20.3)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@22.20.3)(typescript@5.6.3))(vite@8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@vitest/expect': 4.1.11 - '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@22.20.1)(typescript@5.9.3))(vite@8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@22.20.3)(typescript@5.6.3))(vite@8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/pretty-format': 4.1.11 '@vitest/runner': 4.1.11 '@vitest/snapshot': 4.1.11 '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 8.2.2(@types/node@22.20.1)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 8.3.0(@types/node@22.20.3)(esbuild@0.27.7)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 - '@types/node': 22.20.1 + '@types/node': 22.20.3 '@vitest/coverage-v8': 4.1.11(vitest@4.1.11) jsdom: 22.1.0 transitivePeerDependencies: - msw - vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@vitest/expect': 4.1.11 - '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/pretty-format': 4.1.11 '@vitest/runner': 4.1.11 '@vitest/snapshot': 4.1.11 '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 @@ -27550,27 +27634,27 @@ snapshots: transitivePeerDependencies: - msw - vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@vitest/expect': 4.1.11 - '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/pretty-format': 4.1.11 '@vitest/runner': 4.1.11 '@vitest/snapshot': 4.1.11 '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 7.3.6(@types/node@26.1.2)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.33.0)(sass@1.85.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 @@ -27580,27 +27664,27 @@ snapshots: transitivePeerDependencies: - msw - vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): dependencies: '@vitest/expect': 4.1.11 - '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.6.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) '@vitest/pretty-format': 4.1.11 '@vitest/runner': 4.1.11 '@vitest/snapshot': 4.1.11 '@vitest/spy': 4.1.11 '@vitest/utils': 4.1.11 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 @@ -27610,31 +27694,32 @@ snapshots: transitivePeerDependencies: - msw - vitest@4.1.2(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)): - dependencies: - '@vitest/expect': 4.1.2 - '@vitest/mocker': 4.1.2(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0)) - '@vitest/pretty-format': 4.1.2 - '@vitest/runner': 4.1.2 - '@vitest/snapshot': 4.1.2 - '@vitest/spy': 4.1.2 - '@vitest/utils': 4.1.2 - es-module-lexer: 2.0.0 - expect-type: 1.3.0 + vitest@4.1.11(@opentelemetry/api@1.9.1)(@types/node@26.1.2)(@vitest/coverage-v8@4.1.11)(jsdom@22.1.0)(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)): + dependencies: + '@vitest/expect': 4.1.11 + '@vitest/mocker': 4.1.11(msw@2.15.0(@types/node@26.1.2)(typescript@5.9.3))(vite@8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1)) + '@vitest/pretty-format': 4.1.11 + '@vitest/runner': 4.1.11 + '@vitest/snapshot': 4.1.11 + '@vitest/spy': 4.1.11 + '@vitest/utils': 4.1.11 + es-module-lexer: 2.3.2 + expect-type: 1.4.0 magic-string: 0.30.21 - obug: 2.1.1 + obug: 2.2.1 pathe: 2.0.3 - picomatch: 4.0.4 - std-env: 4.0.0 + picomatch: 4.0.7 + std-env: 4.2.0 tinybench: 2.9.0 - tinyexec: 1.2.4 + tinyexec: 1.3.1 tinyglobby: 0.2.17 - tinyrainbow: 3.1.0 - vite: 8.2.2(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.0) + tinyrainbow: 3.1.1 + vite: 8.3.0(@types/node@26.1.2)(esbuild@0.28.2)(jiti@2.7.0)(less@4.6.4)(sass@1.100.0)(terser@5.46.0)(tsx@4.23.13)(yaml@2.9.1) why-is-node-running: 2.3.0 optionalDependencies: '@opentelemetry/api': 1.9.1 '@types/node': 26.1.2 + '@vitest/coverage-v8': 4.1.11(vitest@4.1.11) jsdom: 22.1.0 transitivePeerDependencies: - msw @@ -27658,7 +27743,7 @@ snapshots: vue-component-type-helpers@3.3.11: {} - vue-docgen-api@4.79.2(vue@3.5.42(typescript@5.9.3)): + vue-docgen-api@4.79.2(vue@3.5.42(typescript@5.6.3)): dependencies: '@babel/parser': 7.29.8 '@babel/types': 7.29.8 @@ -27671,20 +27756,20 @@ snapshots: pug: 3.0.4 recast: 0.23.11 ts-map: 1.0.3 - vue: 3.5.42(typescript@5.9.3) - vue-inbrowser-compiler-independent-utils: 4.71.1(vue@3.5.42(typescript@5.9.3)) + vue: 3.5.42(typescript@5.6.3) + vue-inbrowser-compiler-independent-utils: 4.71.1(vue@3.5.42(typescript@5.6.3)) - vue-inbrowser-compiler-independent-utils@4.71.1(vue@3.5.42(typescript@5.9.3)): + vue-inbrowser-compiler-independent-utils@4.71.1(vue@3.5.42(typescript@5.6.3)): dependencies: - vue: 3.5.42(typescript@5.9.3) + vue: 3.5.42(typescript@5.6.3) - vue-tsc@2.2.12(typescript@5.9.3): + vue-tsc@2.2.12(typescript@5.6.3): dependencies: '@volar/typescript': 2.4.15 - '@vue/language-core': 2.2.12(typescript@5.9.3) - typescript: 5.9.3 + '@vue/language-core': 2.2.12(typescript@5.6.3) + typescript: 5.6.3 - vue@3.5.42(typescript@5.9.3): + vue@3.5.42(typescript@5.6.3): dependencies: '@vue/compiler-dom': 3.5.42 '@vue/compiler-sfc': 3.5.42 @@ -27692,7 +27777,7 @@ snapshots: '@vue/server-renderer': 3.5.42 '@vue/shared': 3.5.42 optionalDependencies: - typescript: 5.9.3 + typescript: 5.6.3 w3c-xmlserializer@4.0.0: dependencies: @@ -27743,7 +27828,7 @@ snapshots: optionalDependencies: webpack: 5.102.1(esbuild@0.25.12) - webpack-dev-middleware@7.4.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + webpack-dev-middleware@7.4.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: colorette: 2.0.20 memfs: 4.56.11(tslib@2.8.1) @@ -27752,11 +27837,11 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) transitivePeerDependencies: - tslib - webpack-dev-middleware@7.4.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + webpack-dev-middleware@7.4.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: colorette: 2.0.20 memfs: 4.56.11(tslib@2.8.1) @@ -27765,12 +27850,12 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) transitivePeerDependencies: - tslib optional: true - webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: colorette: 2.0.20 memfs: 4.56.11(tslib@2.8.1) @@ -27779,11 +27864,11 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) transitivePeerDependencies: - tslib - webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + webpack-dev-middleware@7.4.5(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: colorette: 2.0.20 memfs: 4.56.11(tslib@2.8.1) @@ -27792,12 +27877,12 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.3.3 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) transitivePeerDependencies: - tslib optional: true - webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -27813,7 +27898,7 @@ snapshots: colorette: 2.0.20 compression: 1.8.1 connect-history-api-fallback: 2.0.0 - express: 4.22.2 + express: 4.22.3 graceful-fs: 4.2.11 http-proxy-middleware: 2.0.9(@types/express@4.17.25) ipaddr.js: 2.2.0 @@ -27825,10 +27910,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) ws: 8.20.0 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) transitivePeerDependencies: - bufferutil - debug @@ -27836,7 +27921,7 @@ snapshots: - tslib - utf-8-validate - webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + webpack-dev-server@5.2.2(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: '@types/bonjour': 3.5.13 '@types/connect-history-api-fallback': 1.5.4 @@ -27852,7 +27937,7 @@ snapshots: colorette: 2.0.20 compression: 1.8.1 connect-history-api-fallback: 2.0.0 - express: 4.22.2 + express: 4.22.3 graceful-fs: 4.2.11 http-proxy-middleware: 2.0.9(@types/express@4.17.25) ipaddr.js: 2.2.0 @@ -27864,10 +27949,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + webpack-dev-middleware: 7.4.5(tslib@2.8.1)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) ws: 8.20.0 optionalDependencies: - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) transitivePeerDependencies: - bufferutil - debug @@ -27890,19 +27975,19 @@ snapshots: webpack-sources@3.3.3: {} - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)))(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)): dependencies: typed-assert: 1.0.9 - webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(postcss@8.5.28) optionalDependencies: - html-webpack-plugin: 5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.26)) + html-webpack-plugin: 5.6.4(webpack@5.105.0(esbuild@0.25.12)(postcss@8.5.28)) - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)))(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)): dependencies: typed-assert: 1.0.9 - webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26) + webpack: 5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28) optionalDependencies: - html-webpack-plugin: 5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + html-webpack-plugin: 5.6.4(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) optional: true webpack-virtual-modules@0.6.2: {} @@ -27917,7 +28002,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.14.1 acorn: 8.15.0 acorn-import-phases: 1.0.4(acorn@8.15.0) - browserslist: 4.28.7 + browserslist: 4.29.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.18.3 es-module-lexer: 1.7.0 @@ -27939,7 +28024,7 @@ snapshots: - esbuild - uglify-js - webpack@5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26): + webpack@5.105.0(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 @@ -27952,7 +28037,7 @@ snapshots: browserslist: 4.28.1 chrome-trace-event: 1.0.4 enhanced-resolve: 5.20.0 - es-module-lexer: 2.0.0 + es-module-lexer: 2.3.2 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -27963,7 +28048,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.0 - terser-webpack-plugin: 5.6.1(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.26)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.26)) + terser-webpack-plugin: 5.6.1(esbuild@0.28.0)(lightningcss@1.33.0)(postcss@8.5.28)(webpack@5.105.0(lightningcss@1.33.0)(postcss@8.5.28)) watchpack: 2.5.2 webpack-sources: 3.3.3 transitivePeerDependencies: @@ -27981,7 +28066,7 @@ snapshots: - uglify-js optional: true - webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26): + webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.9 @@ -27994,7 +28079,7 @@ snapshots: browserslist: 4.28.1 chrome-trace-event: 1.0.4 enhanced-resolve: 5.20.0 - es-module-lexer: 2.0.0 + es-module-lexer: 2.3.2 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -28005,7 +28090,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 4.3.3 tapable: 2.3.0 - terser-webpack-plugin: 5.6.1(esbuild@0.25.12)(postcss@8.5.26)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.26)) + terser-webpack-plugin: 5.6.1(esbuild@0.25.12)(postcss@8.5.28)(webpack@5.105.0(esbuild@0.28.0)(postcss@8.5.28)) watchpack: 2.5.2 webpack-sources: 3.3.3 transitivePeerDependencies: @@ -28168,6 +28253,8 @@ snapshots: yaml@2.9.0: {} + yaml@2.9.1: {} + yargs-parser@13.1.2: dependencies: camelcase: 5.3.1 @@ -28263,23 +28350,23 @@ snapshots: zod-from-json-schema@0.5.6: dependencies: - zod: 4.5.4 + zod: 4.6.5 zod-to-json-schema@3.25.2(zod@3.25.76): dependencies: zod: 3.25.76 - zod-to-json-schema@3.25.2(zod@4.5.4): + zod-to-json-schema@3.25.2(zod@4.6.5): dependencies: - zod: 4.5.4 + zod: 4.6.5 - zod-validation-error@4.0.2(zod@4.5.4): + zod-validation-error@4.0.2(zod@4.6.5): dependencies: - zod: 4.5.4 + zod: 4.6.5 zod@3.25.76: {} - zod@4.5.4: {} + zod@4.6.5: {} zone.js@0.14.10: {}