diff --git a/.devcontainer/devcontainer-lock.json b/.devcontainer/devcontainer-lock.json
new file mode 100644
index 0000000..e8c90e1
--- /dev/null
+++ b/.devcontainer/devcontainer-lock.json
@@ -0,0 +1,14 @@
+{
+ "features": {
+ "ghcr.io/devcontainers-extra/features/go-task:1": {
+ "version": "1.0.6",
+ "resolved": "ghcr.io/devcontainers-extra/features/go-task@sha256:4d1db153919976cadd3209ca05d655a761a01707767716994dad677b4538dc1b",
+ "integrity": "sha256:4d1db153919976cadd3209ca05d655a761a01707767716994dad677b4538dc1b"
+ },
+ "ghcr.io/devcontainers/features/node:2": {
+ "version": "2.0.0",
+ "resolved": "ghcr.io/devcontainers/features/node@sha256:fedd4c11f7adfb64283b578dddc7da906728daa25fa293351c9d913231acf12f",
+ "integrity": "sha256:fedd4c11f7adfb64283b578dddc7da906728daa25fa293351c9d913231acf12f"
+ }
+ }
+}
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index b3f74ac..8621a1b 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -14,10 +14,11 @@
"features": {
"ghcr.io/devcontainers-extra/features/go-task:1": {},
"ghcr.io/devcontainers/features/node:2": {
- "version": "25.9.0"
+ "version": "25.9.0",
+ "pnpm": true
}
},
- "postCreateCommand": "npm install -g pnpm@11.5.0 && pnpm install --frozen-lockfile",
+ "postCreateCommand": "pnpm install --frozen-lockfile",
"customizations": {
"vscode": {
"extensions": [
diff --git a/.devcontainer/nginx/default.conf b/.devcontainer/nginx/default.conf
index e6654fb..e265c66 100644
--- a/.devcontainer/nginx/default.conf
+++ b/.devcontainer/nginx/default.conf
@@ -2,17 +2,24 @@ server {
listen 80;
server_name _;
+ resolver 127.0.0.11 valid=10s ipv6=off;
+ resolver_timeout 5s;
+
+ set $cms_upstream devcontainer:3000;
+ set $imgproxy_upstream imgproxy:8080;
+ set $rustfs_upstream rustfs:9000;
+
location ~ ^/cdn/image/relative/(16|32|48|64|96|128|256|384|450|530|640|750|828|1080|1200|1920|2048|3840)/(.*)$ {
- proxy_pass http://imgproxy:8080/unsafe/width:$1/plain/http://devcontainer:3000/$2$is_args$args;
+ proxy_pass http://$imgproxy_upstream/unsafe/width:$1/plain/http://$cms_upstream/$2$is_args$args;
}
location ~ ^/cdn/image/s3/(16|32|48|64|96|128|256|384|450|530|640|750|828|1080|1200|1920|2048|3840)/(.*)$ {
- proxy_pass http://imgproxy:8080/unsafe/width:$1/plain/http://rustfs:9000/cms/$2$is_args$args;
+ proxy_pass http://$imgproxy_upstream/unsafe/width:$1/plain/http://$rustfs_upstream/cms/$2$is_args$args;
}
location / {
proxy_http_version 1.1;
- proxy_pass http://devcontainer:3000;
+ proxy_pass http://$cms_upstream;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $http_host;
diff --git a/.gitignore b/.gitignore
index ea32099..02e16ee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,6 +5,7 @@ node_modules
.env
!.devcontainer/.env
.next
+next-env.d.ts
.vercel
tsconfig.tsbuildinfo
# Payload default media upload directory
diff --git a/.prettierignore b/.prettierignore
deleted file mode 100644
index 54184e4..0000000
--- a/.prettierignore
+++ /dev/null
@@ -1,13 +0,0 @@
-**/payload-types.ts
-.tmp
-**/.git
-**/.hg
-**/.pnp.*
-**/.svn
-**/build
-**/dist/**
-**/node_modules
-**/temp
-**/docs/**
-tsconfig.json
-
diff --git a/Taskfile.yml b/Taskfile.yml
index 8806af9..8b1dd32 100644
--- a/Taskfile.yml
+++ b/Taskfile.yml
@@ -66,6 +66,7 @@ tasks:
typecheck:
desc: Run TypeScript typecheck
cmds:
+ - task: typegen
- pnpm run typecheck
validate:
diff --git a/biome.jsonc b/biome.jsonc
index 53b23b7..dd314eb 100644
--- a/biome.jsonc
+++ b/biome.jsonc
@@ -1,5 +1,5 @@
{
- "$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
+ "$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
@@ -38,7 +38,7 @@
"project": "recommended"
},
"rules": {
- "recommended": true,
+ "preset": "recommended",
"a11y": {
"recommended": true
},
@@ -61,7 +61,7 @@
"recommended": true
},
"suspicious": {
- "recommended": true
+ "preset": "recommended"
}
}
},
diff --git a/next-env.d.ts b/next-env.d.ts
deleted file mode 100644
index 9edff1c..0000000
--- a/next-env.d.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-///
-///
-import "./.next/types/routes.d.ts";
-
-// NOTE: This file should not be edited
-// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/next.config.ts b/next.config.ts
index e2aba0b..ff41bc7 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -6,8 +6,38 @@ import { locales } from './src/app/src/i18n/config'
import { blogUrl, cmsUrl, rootWebsiteUrl, seaBattleUrl, toOrigin, toolsUrl } from './src/config/siteUrls'
const appURL = process.env.APP_URL
+const nextPublicServerURL = process.env.NEXT_PUBLIC_SERVER_URL
const payloadPublicServerURL = process.env.PAYLOAD_PUBLIC_SERVER_URL
const verboseRuntimeLogs = process.env.NEXT_RUNTIME_VERBOSE_LOGS === '1'
+const parseListEnv = (value: string | undefined): string[] =>
+ value
+ ?.split(',')
+ .map(item => item.trim())
+ .filter(item => item.length > 0) ?? []
+const parseURLHostname = (value: string | undefined): string | undefined => {
+ if (!value) {
+ return undefined
+ }
+
+ try {
+ return new URL(value).hostname
+ } catch {
+ return undefined
+ }
+}
+const allowedDevOrigins = Array.from(
+ new Set(
+ [
+ ...parseListEnv(process.env.NEXT_ALLOWED_DEV_ORIGINS),
+ parseURLHostname(appURL),
+ parseURLHostname(nextPublicServerURL),
+ parseURLHostname(payloadPublicServerURL),
+ '*.revotale-cms-devcontainer.orb.local',
+ '*.proxy.revotale-cms-devcontainer.orb.local',
+ 'proxy.revotale-cms-devcontainer.orb.local',
+ ].filter((origin): origin is string => origin !== undefined && origin.length > 0),
+ ),
+)
const localePattern = locales.join('|')
const withNextIntl = createNextIntlPlugin({
experimental: {
@@ -90,6 +120,7 @@ for (const maybeURL of [appURL, payloadPublicServerURL, cmsUrl, rootWebsiteUrl,
const nextConfig: NextConfig = {
reactStrictMode: true,
output: 'standalone',
+ allowedDevOrigins,
//cacheHandler: require.resolve('./cache-handler.mjs'), //waiting for https://github.com/fortedigital/nextjs-cache-handler/issues/110
//cacheMaxMemorySize: 0, // Disable in-memory caching for custom handler
// cacheComponents: true,WARNING! DO NOT USE "use cache" DIRECTIVE AND ANY OTHER BECUASE SEA BATTLE CAUSE DIALOG AND PAGES TO BE NOT UNMOUNTED WHICH COMPLETELY BREAKS THE UI
diff --git a/package.json b/package.json
index c6b69de..5c3a784 100644
--- a/package.json
+++ b/package.json
@@ -12,47 +12,48 @@
"fix": "biome check --write --unsafe .",
"lint": "biome check .",
"next:typegen": "next typegen",
- "p:cli": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts payload",
- "p:gql": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts payload-graphql",
+ "p:cli": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts payload --use-swc",
+ "p:gql": "cross-env PAYLOAD_CONFIG_PATH=src/payload.config.ts payload-graphql --use-swc",
"typecheck": "tsc --noEmit",
"start": "next start"
},
"dependencies": {
- "@apollo/client": "^4.1.6",
+ "@apollo/client": "^4.2.3",
"@apollo/client-integration-nextjs": "^0.14.4",
"@bladl/react-hooks": "^1.5.2",
"@graphql-typed-document-node/core": "^3.2.0",
"@hookform/resolvers": "^5.2.2",
- "@lexical/code": "^0.43.0",
- "@lexical/link": "^0.43.0",
- "@lexical/list": "^0.43.0",
- "@lexical/markdown": "^0.43.0",
- "@lexical/react": "^0.43.0",
- "@lexical/rich-text": "^0.43.0",
- "@lexical/table": "^0.43.0",
- "@mdxeditor/editor": "^3.53.1",
- "@next/bundle-analyzer": "^16.2.1",
- "@payloadcms/db-postgres": "3.82.1",
- "@payloadcms/graphql": "3.82.1",
- "@payloadcms/next": "3.82.1",
- "@payloadcms/plugin-cloud-storage": "3.82.1",
- "@payloadcms/plugin-search": "3.82.1",
- "@payloadcms/plugin-seo": "3.82.1",
- "@payloadcms/storage-s3": "3.82.1",
- "@payloadcms/ui": "3.82.1",
- "@radix-ui/react-avatar": "^1.1.11",
- "@radix-ui/react-checkbox": "^1.3.3",
- "@radix-ui/react-dialog": "^1.1.15",
- "@radix-ui/react-hover-card": "^1.1.15",
- "@radix-ui/react-label": "^2.1.8",
- "@radix-ui/react-progress": "^1.1.8",
- "@radix-ui/react-scroll-area": "^1.2.10",
- "@radix-ui/react-select": "^2.2.6",
- "@radix-ui/react-separator": "^1.1.8",
- "@radix-ui/react-slot": "^1.2.4",
- "@radix-ui/react-switch": "^1.2.6",
- "@radix-ui/react-tooltip": "^1.2.8",
- "@swc-contrib/plugin-graphql-codegen-client-preset": "^0.20.0",
+ "@lexical/code": "^0.45.0",
+ "@lexical/link": "^0.45.0",
+ "@lexical/list": "^0.45.0",
+ "@lexical/markdown": "^0.45.0",
+ "@lexical/react": "^0.45.0",
+ "@lexical/rich-text": "^0.45.0",
+ "@lexical/table": "^0.45.0",
+ "@mdxeditor/editor": "^4.0.3",
+ "@next/bundle-analyzer": "^16.2.9",
+ "@payloadcms/db-postgres": "3.85.1",
+ "@payloadcms/graphql": "3.85.1",
+ "@payloadcms/next": "3.85.1",
+ "@payloadcms/plugin-cloud-storage": "3.85.1",
+ "@payloadcms/plugin-search": "3.85.1",
+ "@payloadcms/plugin-seo": "3.85.1",
+ "@payloadcms/storage-s3": "3.85.1",
+ "@payloadcms/ui": "3.85.1",
+ "@radix-ui/react-avatar": "^1.1.12",
+ "@radix-ui/react-checkbox": "^1.3.4",
+ "@radix-ui/react-dialog": "^1.1.16",
+ "@radix-ui/react-hover-card": "^1.1.16",
+ "@radix-ui/react-label": "^2.1.9",
+ "@radix-ui/react-progress": "^1.1.9",
+ "@radix-ui/react-scroll-area": "^1.2.11",
+ "@radix-ui/react-select": "^2.3.0",
+ "@radix-ui/react-separator": "^1.1.9",
+ "@radix-ui/react-slot": "^1.2.5",
+ "@radix-ui/react-switch": "^1.3.0",
+ "@radix-ui/react-tooltip": "^1.2.9",
+ "@swc-contrib/plugin-graphql-codegen-client-preset": "^0.24.0",
+ "@swc-node/register": "^1.11.1",
"@types/unist": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clipboardy": "^5.3.1",
@@ -64,20 +65,20 @@
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"feed": "^5.2.0",
- "graphql": "^16.13.2",
+ "graphql": "^16.14.2",
"highlight.js": "^11.11.1",
"jose": "^6.2.2",
- "lexical": "^0.43.0",
- "lucide-react": "^1.0.0",
- "next": "16.2.6",
+ "lexical": "^0.45.0",
+ "lucide-react": "^1.18.0",
+ "next": "16.2.9",
"next-intl": "^4.8.4",
"next-navigation-utils": "^1.0.4",
"next-themes": "^0.4.6",
- "openai": "^6.33.0",
- "payload": "3.82.1",
- "react": "^19.2.4",
- "react-dom": "^19.2.4",
- "react-hook-form": "^7.72.0",
+ "openai": "^6.42.0",
+ "payload": "3.85.1",
+ "react": "^19.2.7",
+ "react-dom": "^19.2.7",
+ "react-hook-form": "^7.79.0",
"react-markdown": "^10.1.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
@@ -93,26 +94,26 @@
"zod": "^4.3.6"
},
"devDependencies": {
- "@biomejs/biome": "^2.4.10",
- "@graphql-codegen/add": "^6.0.0",
- "@graphql-codegen/cli": "6.2.1",
- "@graphql-codegen/client-preset": "5.2.4",
- "@graphql-codegen/introspection": "5.0.1",
- "@graphql-codegen/schema-ast": "^5.0.1",
- "@tailwindcss/postcss": "^4.2.2",
- "@tailwindcss/typography": "^0.5.19",
+ "@biomejs/biome": "^2.5.0",
+ "@graphql-codegen/add": "^7.0.1",
+ "@graphql-codegen/cli": "7.1.2",
+ "@graphql-codegen/client-preset": "6.0.1",
+ "@graphql-codegen/introspection": "6.0.1",
+ "@graphql-codegen/schema-ast": "^6.0.1",
+ "@tailwindcss/postcss": "^4.3.1",
+ "@tailwindcss/typography": "^0.5.20",
"@types/escape-html": "^1.0.4",
- "@types/node": "25.6.0",
- "@types/react": "^19.2.14",
+ "@types/node": "25.9.3",
+ "@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"postcss": "^8.5.8",
- "tailwindcss": "^4.2.2",
+ "tailwindcss": "^4.3.1",
"tw-animate-css": "^1.4.0",
- "typescript": "^5.1"
+ "typescript": "6.0.3"
},
"engines": {
"node": ">=25.0.0 <26.0.0",
- "pnpm": ">=11.5.0"
+ "pnpm": "11.6.0"
},
- "packageManager": "pnpm@11.5.0"
+ "packageManager": "pnpm@11.6.0"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d36ea68..7220bad 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,110 +9,113 @@ importers:
.:
dependencies:
'@apollo/client':
- specifier: ^4.1.6
- version: 4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)
+ specifier: ^4.2.3
+ version: 4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)
'@apollo/client-integration-nextjs':
specifier: ^0.14.4
- version: 0.14.5(@apollo/client@4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2))(@types/react@19.2.15)(graphql@16.14.0)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)
+ version: 0.14.5(@apollo/client@4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2))(@types/react@19.2.17)(graphql@16.14.2)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)
'@bladl/react-hooks':
specifier: ^1.5.2
version: 1.5.2
'@graphql-typed-document-node/core':
specifier: ^3.2.0
- version: 3.2.0(graphql@16.14.0)
+ version: 3.2.0(graphql@16.14.2)
'@hookform/resolvers':
specifier: ^5.2.2
- version: 5.4.0(react-hook-form@7.76.1(react@19.2.6))
+ version: 5.4.0(react-hook-form@7.79.0(react@19.2.7))
'@lexical/code':
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
'@lexical/link':
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
'@lexical/list':
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
'@lexical/markdown':
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
'@lexical/react':
- specifier: ^0.43.0
- version: 0.43.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(yjs@13.6.31)
+ specifier: ^0.45.0
+ version: 0.45.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(yjs@13.6.31)
'@lexical/rich-text':
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
'@lexical/table':
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
'@mdxeditor/editor':
- specifier: ^3.53.1
- version: 3.55.0(@codemirror/language@6.12.3)(@lezer/highlight@1.2.3)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(yjs@13.6.31)
+ specifier: ^4.0.3
+ version: 4.0.3(@codemirror/language@6.12.3)(@lezer/highlight@1.2.3)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(yjs@13.6.31)
'@next/bundle-analyzer':
- specifier: ^16.2.1
- version: 16.2.6
+ specifier: ^16.2.9
+ version: 16.2.9
'@payloadcms/db-postgres':
- specifier: 3.82.1
- version: 3.82.1(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))
+ specifier: 3.85.1
+ version: 3.85.1(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))
'@payloadcms/graphql':
- specifier: 3.82.1
- version: 3.82.1(graphql@16.14.0)(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(graphql@16.14.2)(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(typescript@6.0.3)
'@payloadcms/next':
- specifier: 3.82.1
- version: 3.82.1(@types/react@19.2.15)(graphql@16.14.0)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(@types/react@19.2.17)(graphql@16.14.2)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
'@payloadcms/plugin-cloud-storage':
- specifier: 3.82.1
- version: 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
'@payloadcms/plugin-search':
- specifier: 3.82.1
- version: 3.82.1(@types/react@19.2.15)(graphql@16.14.0)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(@types/react@19.2.17)(graphql@16.14.2)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
'@payloadcms/plugin-seo':
- specifier: 3.82.1
- version: 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
'@payloadcms/storage-s3':
- specifier: 3.82.1
- version: 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
'@payloadcms/ui':
- specifier: 3.82.1
- version: 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
'@radix-ui/react-avatar':
- specifier: ^1.1.11
- version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.1.12
+ version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-checkbox':
- specifier: ^1.3.3
- version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.3.4
+ version: 1.3.4(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-dialog':
- specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.1.16
+ version: 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-hover-card':
- specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.1.16
+ version: 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-label':
- specifier: ^2.1.8
- version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^2.1.9
+ version: 2.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-progress':
- specifier: ^1.1.8
- version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.1.9
+ version: 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-scroll-area':
- specifier: ^1.2.10
- version: 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.2.11
+ version: 1.2.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-select':
- specifier: ^2.2.6
- version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^2.3.0
+ version: 2.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-separator':
- specifier: ^1.1.8
- version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.1.9
+ version: 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-slot':
- specifier: ^1.2.4
- version: 1.2.4(@types/react@19.2.15)(react@19.2.6)
+ specifier: ^1.2.5
+ version: 1.2.5(@types/react@19.2.17)(react@19.2.7)
'@radix-ui/react-switch':
- specifier: ^1.2.6
- version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.3.0
+ version: 1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-tooltip':
- specifier: ^1.2.8
- version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ specifier: ^1.2.9
+ version: 1.2.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@swc-contrib/plugin-graphql-codegen-client-preset':
- specifier: ^0.20.0
- version: 0.20.0
+ specifier: ^0.24.0
+ version: 0.24.0
+ '@swc-node/register':
+ specifier: ^1.11.1
+ version: 1.11.1(@swc/core@1.15.40)(@swc/types@0.1.26)(typescript@6.0.3)
'@types/unist':
specifier: ^3.0.3
version: 3.0.3
@@ -127,7 +130,7 @@ importers:
version: 2.1.1
cmdk:
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
cross-env:
specifier: ^10.1.0
version: 10.1.0
@@ -142,13 +145,13 @@ importers:
version: 8.6.0(embla-carousel@8.6.0)
embla-carousel-react:
specifier: ^8.6.0
- version: 8.6.0(react@19.2.6)
+ version: 8.6.0(react@19.2.7)
feed:
specifier: ^5.2.0
version: 5.2.1
graphql:
- specifier: ^16.13.2
- version: 16.14.0
+ specifier: ^16.14.2
+ version: 16.14.2
highlight.js:
specifier: ^11.11.1
version: 11.11.1
@@ -156,41 +159,41 @@ importers:
specifier: ^6.2.2
version: 6.2.3
lexical:
- specifier: ^0.43.0
- version: 0.43.0
+ specifier: ^0.45.0
+ version: 0.45.0
lucide-react:
- specifier: ^1.0.0
- version: 1.17.0(react@19.2.6)
+ specifier: ^1.18.0
+ version: 1.18.0(react@19.2.7)
next:
- specifier: 16.2.6
- version: 16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4)
+ specifier: 16.2.9
+ version: 16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4)
next-intl:
specifier: ^4.8.4
- version: 4.13.0(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(react@19.2.6)(typescript@5.9.3)
+ version: 4.13.0(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(react@19.2.7)(typescript@6.0.3)
next-navigation-utils:
specifier: ^1.0.4
- version: 1.0.4(@swc/core@1.15.40)(jiti@2.7.0)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(postcss@8.5.15)(react@19.2.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.9.0)
+ version: 1.0.4(@swc/core@1.15.40)(jiti@2.7.0)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(postcss@8.5.15)(react@19.2.7)(tsx@4.22.4)(typescript@6.0.3)(yaml@2.9.0)
next-themes:
specifier: ^0.4.6
- version: 0.4.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
openai:
- specifier: ^6.33.0
- version: 6.39.1(ws@8.21.0)(zod@4.4.3)
+ specifier: ^6.42.0
+ version: 6.42.0(ws@8.21.0)(zod@4.4.3)
payload:
- specifier: 3.82.1
- version: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ specifier: 3.85.1
+ version: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
react:
- specifier: ^19.2.4
- version: 19.2.6
+ specifier: ^19.2.7
+ version: 19.2.7
react-dom:
- specifier: ^19.2.4
- version: 19.2.6(react@19.2.6)
+ specifier: ^19.2.7
+ version: 19.2.7(react@19.2.7)
react-hook-form:
- specifier: ^7.72.0
- version: 7.76.1(react@19.2.6)
+ specifier: ^7.79.0
+ version: 7.79.0(react@19.2.7)
react-markdown:
specifier: ^10.1.0
- version: 10.1.0(@types/react@19.2.15)(react@19.2.6)
+ version: 10.1.0(@types/react@19.2.17)(react@19.2.7)
rehype-slug:
specifier: ^6.0.0
version: 6.0.0
@@ -205,77 +208,77 @@ importers:
version: 7.8.2
schema-dts:
specifier: ^2.0.0
- version: 2.0.0(typescript@5.9.3)
+ version: 2.0.0(typescript@6.0.3)
sonner:
specifier: ^2.0.7
- version: 2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ version: 2.0.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
tailwind-merge:
specifier: ^3.5.0
version: 3.6.0
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@4.3.0)
+ version: 1.0.7(tailwindcss@4.3.1)
unist-util-visit:
specifier: ^5.1.0
version: 5.1.0
use-intl:
specifier: ^4.8.4
- version: 4.13.0(react@19.2.6)
+ version: 4.13.0(react@19.2.7)
usehooks-ts:
specifier: ^3.1.1
- version: 3.1.1(react@19.2.6)
+ version: 3.1.1(react@19.2.7)
zod:
specifier: ^4.3.6
version: 4.4.3
devDependencies:
'@biomejs/biome':
- specifier: ^2.4.10
- version: 2.4.16
+ specifier: ^2.5.0
+ version: 2.5.0
'@graphql-codegen/add':
- specifier: ^6.0.0
- version: 6.0.1(graphql@16.14.0)
+ specifier: ^7.0.1
+ version: 7.0.1(graphql@16.14.2)
'@graphql-codegen/cli':
- specifier: 6.2.1
- version: 6.2.1(@parcel/watcher@2.5.6)(@types/node@25.6.0)(graphql@16.14.0)(typescript@5.9.3)
+ specifier: 7.1.2
+ version: 7.1.2(@parcel/watcher@2.5.6)(@types/node@25.9.3)(graphql@16.14.2)(typescript@6.0.3)
'@graphql-codegen/client-preset':
- specifier: 5.2.4
- version: 5.2.4(graphql@16.14.0)
+ specifier: 6.0.1
+ version: 6.0.1(graphql@16.14.2)
'@graphql-codegen/introspection':
- specifier: 5.0.1
- version: 5.0.1(graphql@16.14.0)
+ specifier: 6.0.1
+ version: 6.0.1(graphql@16.14.2)
'@graphql-codegen/schema-ast':
- specifier: ^5.0.1
- version: 5.0.2(graphql@16.14.0)
+ specifier: ^6.0.1
+ version: 6.0.1(graphql@16.14.2)
'@tailwindcss/postcss':
- specifier: ^4.2.2
- version: 4.3.0
+ specifier: ^4.3.1
+ version: 4.3.1
'@tailwindcss/typography':
- specifier: ^0.5.19
- version: 0.5.19(tailwindcss@4.3.0)
+ specifier: ^0.5.20
+ version: 0.5.20(tailwindcss@4.3.1)
'@types/escape-html':
specifier: ^1.0.4
version: 1.0.4
'@types/node':
- specifier: 25.6.0
- version: 25.6.0
+ specifier: 25.9.3
+ version: 25.9.3
'@types/react':
- specifier: ^19.2.14
- version: 19.2.15
+ specifier: ^19.2.17
+ version: 19.2.17
'@types/react-dom':
specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.15)
+ version: 19.2.3(@types/react@19.2.17)
postcss:
specifier: ^8.5.8
version: 8.5.15
tailwindcss:
- specifier: ^4.2.2
- version: 4.3.0
+ specifier: ^4.3.1
+ version: 4.3.1
tw-animate-css:
specifier: ^1.4.0
version: 1.4.0
typescript:
- specifier: ^5.1
- version: 5.9.3
+ specifier: 6.0.3
+ version: 6.0.3
packages:
@@ -304,10 +307,10 @@ packages:
react-dom: ^19
rxjs: ^7.3.0
- '@apollo/client@4.2.0':
- resolution: {integrity: sha512-uZAiXwIRidDqQKZRcL88O01IVZjY6IhLio6g+XzX4N4++Ue9pVK9WCoZvBm1dvx+x2mH0oGfVUZvTvacCW4WcQ==}
+ '@apollo/client@4.2.3':
+ resolution: {integrity: sha512-+auRYBXow2v7cT+wKzvjyMyyEojq+G7Sf80vIR57rtEPcxRFuMXuU9IKjwxZ3muclUgdGKwZXNeuki+g0GabgQ==}
peerDependencies:
- graphql: ^16.0.0
+ graphql: ^16.0.0 || ^17.0.0
graphql-ws: ^5.5.5 || ^6.0.3
react: ^17.0.0 || ^18.0.0 || >=19.0.0-rc
react-dom: ^17.0.0 || ^18.0.0 || >=19.0.0-rc
@@ -351,106 +354,90 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-s3@3.1057.0':
- resolution: {integrity: sha512-4MV5+ph7WSLEqStKYdWf2EIHIvLpPzV8xN98jWSVJfUpp5j7T8dyN3AROPPsKWvCme8hbx1ybCjtK76ALCZUYg==}
+ '@aws-sdk/checksums@3.1000.5':
+ resolution: {integrity: sha512-zOXUUnilC6lgCsQtp77p/QNPmRlTES9Xi6tlDwbR6kfC/kz5PCzZckgHWm5z+8DskdwuMAbFDq61x3zr10GEEQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/core@3.974.15':
- resolution: {integrity: sha512-UpA0rTGW/tHGITcCqHisbuuEPraYg9GG+mWmXjY5+RxZBMLGe6aL9oe0ix50LztwAcPIkGZLH0yWdMIkCM10hw==}
+ '@aws-sdk/client-s3@3.1068.0':
+ resolution: {integrity: sha512-lFgaIpxZvloNbJvQ337YPdMXhzI2zJdDw13nATVGnkAGNoNPx4ksD84AQAcuW75hsaaMaIuNmXU9sSx6+FTirA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/crc64-nvme@3.972.9':
- resolution: {integrity: sha512-P+QGozmXn2mZZI7sDgk+aUm+RTI61MPSFB+Ir2vjEjEbEsE4e7hYtzrDvAUxZy9ko81h53e11+F/GYlvwDkaOQ==}
+ '@aws-sdk/core@3.974.20':
+ resolution: {integrity: sha512-7sDi2B2N3mc3nf1nz6FyEx/FCrJ1N1QnBmraHHQNabFaeAh2IaOOLml48/rHOD1bICHgTRkbBgNTvUzEr5Z35g==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-env@3.972.41':
- resolution: {integrity: sha512-n1EbJ98yvPWWdHZZv8bRBMqqDQJrtgtxyJ4xLy2Uqrh25BCOZQ7nnS1CsFXvuH8r0b0KVHDZEGEH5FxmEMP8jg==}
+ '@aws-sdk/credential-provider-env@3.972.46':
+ resolution: {integrity: sha512-+GPXVS2srMOlH74S+SmC1gVuP2TvUZ0siuC0onKO93q+udP+M72dmY8wJfVQ5CX9z/9X5A1HHwz5yRIGBtskvQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-http@3.972.43':
- resolution: {integrity: sha512-TT76RN1NkI9WoyZqCNxOw6/WBMF7pYOTJcXbMokNFU+euSG40Kaf/t/FhDACVZWP+43wEM6ZynIPIkzS1wR1iA==}
+ '@aws-sdk/credential-provider-http@3.972.48':
+ resolution: {integrity: sha512-fA5loSdlocacRxyUXtpoHSMuk5rsIKRDzQYVMnMxjcmFeZshaJlJ8lymy/hYKji6sne/UmNGj5pxuEs6kq/Qcg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-ini@3.972.46':
- resolution: {integrity: sha512-hvcgcwOiS0nb2XFb5Op1Pz/vYaWz5K8kKullziGpdNRuG0NwzRXseuPt2CoBqknHGaSPVesu1aOn2OcctEYdCA==}
+ '@aws-sdk/credential-provider-ini@3.972.53':
+ resolution: {integrity: sha512-ZfdhIOR41q8TcWEnUac+gCOb+O2LBWdHLmjedXpXz4IEFW2ppNuFcm6p0sMTavpM+zD5TYfpH5Gp7guRyqSgsQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-login@3.972.45':
- resolution: {integrity: sha512-MZQv4SNjByk1iOKmrqmzcUF/uCB05wjvEHyXKxmGQTUANTIVayX6HPUF0bzkWLvtnkH7sAn9kUCfkXbSpj9sDA==}
+ '@aws-sdk/credential-provider-login@3.972.52':
+ resolution: {integrity: sha512-9hu2oR0qH7Fst5Tzdx+UWxm+w5zCXtErTLtOOW5hwwQc170CLwOeniRxyFY6s9mHfGEfC5zFukNBdKBwJR8mhQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-node@3.972.47':
- resolution: {integrity: sha512-HrId+C0DWA5qDIyLG64/kjUB2RNtPypxmABnIctK+TA1P1kHlOYoE/Wf5T5tKOMKgb08P7k/zNyhvfJ3lh5Oag==}
+ '@aws-sdk/credential-provider-node@3.972.55':
+ resolution: {integrity: sha512-zMGLa/dhESVqmCD7mmIFFKSwSFrJGScvCXcjvBZEVOOMauFS5JRQvLTMukFpMEFWiV6dTAlsen2ATDBulLPtbg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-process@3.972.41':
- resolution: {integrity: sha512-7I/n1zkysouLOWvkEhjNEP4vMnD2v4kzzr3/3QBdrripEpn7ap1/I5DF3Hou1SUqkKWo1f3oPGMyFAA1FAMvsQ==}
+ '@aws-sdk/credential-provider-process@3.972.46':
+ resolution: {integrity: sha512-VUoNFBIjWrUN8NbFiQiuxQEgFjvziAlBRPK+ddh27aj65gk0BYu6bLZnrdrNZwpW6vAihtSUtEMQ1PUJ32QRPA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-sso@3.972.45':
- resolution: {integrity: sha512-oHgbz/eFD8IKiksqDsz9ZMU4A59BpQq4QwJedBnGD80ZqYcHPPHZBwjBnxLVkB7iRVVHWpDclR8yWdD2PkQIUA==}
+ '@aws-sdk/credential-provider-sso@3.972.52':
+ resolution: {integrity: sha512-nb2/n4o/HQf+FVpVbZe9vCTFngmuDoIsltMgLAtjixaKzvzhB4J8WSDFyWgnErgLHk55ctWH+I4PU+LIHhyffg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.972.45':
- resolution: {integrity: sha512-CDhzKdb2onv5bpnjn/acgdNmJOQthPDLsPizU7rZflsEcgMMp8Mlri+U5hdxf8ldvZJpvM3vLU6D56vfJm5AMQ==}
+ '@aws-sdk/credential-provider-web-identity@3.972.52':
+ resolution: {integrity: sha512-lKj6aRSGbqLmpYmM24bY7a1Xmfcq2vkE3hv8CSPYfc1yCu0BPu/XEJ1L4Fm61MsU6ULLNSG8UGsffNoFUBjESA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/lib-storage@3.1057.0':
- resolution: {integrity: sha512-0LlXWaklL2LGBSJ6w3YwsJaFCR9yu57648aEyyIRLM5NT+rQ3Xbx0/pCsuM4fD+QJZhASMMAALAl/pdiN5B+FQ==}
+ '@aws-sdk/lib-storage@3.1068.0':
+ resolution: {integrity: sha512-BGUS3EXFe+y87odXsC5enyBv4z/QT3EDydv+iTe9hCUr57ndAXCfJbvcm3f+s3aHS5FUDL3WozaBAcrsNeVhyQ==}
engines: {node: '>=20.0.0'}
peerDependencies:
- '@aws-sdk/client-s3': ^3.1057.0
-
- '@aws-sdk/middleware-bucket-endpoint@3.972.17':
- resolution: {integrity: sha512-lbDmWuHenc+kiwCNrxz4MyN6nkxCWyTXPIWuspJN0ibziu+8CXci7vI1bK9MAkwy8cwJOEXNu0gBM5S0uTGRIg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-expect-continue@3.972.14':
- resolution: {integrity: sha512-3TNFEVGO4sWZj9TEXOCZLzGEctXHnaO4fk2EQ8KVaboTbwHmEPEQrm17Xb9koImUIXEw0sgi2xtHjg7LuTS3rA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-flexible-checksums@3.974.23':
- resolution: {integrity: sha512-4nPKARo2lfKvQGUt2fPA5NlS/mEohckdxpuC9ecbjVfj7B7NFFYHeTg+Bf5BEQwdn3yRfUIzFiEkPp8Yuaw3wA==}
- engines: {node: '>=20.0.0'}
+ '@aws-sdk/client-s3': ^3.1068.0
- '@aws-sdk/middleware-location-constraint@3.972.11':
- resolution: {integrity: sha512-hkfspNUP4criAH6ton6BGKgnm5dZx+7bUOy1YqlTfejDeUPAM23D81q/IX+hdlS3KUsfwGz5ADTqZWKBEUpf4A==}
+ '@aws-sdk/middleware-flexible-checksums@3.974.30':
+ resolution: {integrity: sha512-OaIhub+3yTgfFWPzKO8OzOZFIMUoJaiS5v67y3spQg7SoULGoMx4jKVBbE+uhnzkiZXQ+rEDS0RqrK4/aD1yJw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-sdk-s3@3.972.44':
- resolution: {integrity: sha512-8HQsRg1NpX8vR4vNl1E8pyLnqZroq9VSL2vZQVSgBqp6wv6365LzYD08/c9FFh/9FTg7YRc7aTtEmXF0ir/pqg==}
+ '@aws-sdk/middleware-sdk-s3@3.972.51':
+ resolution: {integrity: sha512-keQgcIUTcHL0Qn7guhsuLaxQU36r9norCrxgaPH4DNCwon4TPtXdI/UdYuycl9vj3Dlwc3YR1dfL3U+6iIwJ6w==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-ssec@3.972.11':
- resolution: {integrity: sha512-7PQvGNhtveKlvVqNahqWx5yrwxP7ecwAoB1dYBf8eKwfo2tzzCbNnW+q2nO3N066ktQaB4iBQbDRWtizm+amoQ==}
+ '@aws-sdk/nested-clients@3.997.20':
+ resolution: {integrity: sha512-IYJuLpXp2DEILVQpQOy0PMpkftv0AHEOCn52o0atyOaumA0CdWQ3klPyXdViGYLbNpESsVFMVybvHUeZAuiGxA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/nested-clients@3.997.13':
- resolution: {integrity: sha512-2pA6eyb5nSo/ZD2cayhOTEMoGQYgspq0RI05GDLkzQ3ajZ6isS6waV6E92Am/hz4LIlLUTrbwPLurJ/fuiHvkg==}
+ '@aws-sdk/s3-request-presigner@3.1068.0':
+ resolution: {integrity: sha512-XTUoaBQH3pUlegqdoo7vkrOvlcRhSz/EO0/JYy9qKz4jdsOnPUlPY0p+rKTl27F91Gjgip8OXopiOFxVeN3Yvg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/s3-request-presigner@3.1057.0':
- resolution: {integrity: sha512-mTxO9BCztlos7gzHIFKf3p3CakOmLhjfv6Llo9LIAF+UCu/eCoKMPaFi87WmYUWWf7rIGIyb20Wa8hd4puuUKg==}
+ '@aws-sdk/signature-v4-multi-region@3.996.34':
+ resolution: {integrity: sha512-mx1L5qlumSOt/nKM3BFaHE2HVkWwz0i4Bw0pyYO42FfX/FeLlo8YI6csC0gSPprEk6fTIqI+CZN9RwUwKd5krQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.996.30':
- resolution: {integrity: sha512-HULDLMVzkmTSEv6//7kx2kRevp/VYUpm8hJNNFbmhxDn0fUiGTxVcM9yg31TukvTq8nyOBDUN2gH0o5IRbKjdw==}
+ '@aws-sdk/token-providers@3.1066.0':
+ resolution: {integrity: sha512-UqEUJq7dqa44hneLDUcX7UJy95cg8YqEWyakRpvIPnrNS3Mq+UlQHgCDGu5pvwAPtlIW4qcYbvW6reG6++FyvA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/token-providers@3.1056.0':
- resolution: {integrity: sha512-81duvlltQlsfn5K+o8zILcystBRdbT1G2JJYVCML5NZHBz4CL/zf+sAemCtBh/uh6RQUMyInGeZLQ7/8igZhbA==}
+ '@aws-sdk/types@3.973.12':
+ resolution: {integrity: sha512-43ajd1NF0RMgX5k0hxCNUyEdrtFUsb2aHT2QvpktSC/2Eyb2Jr/JPVqdp0XIoaHWikZJq5tNWSLO6kB5q2eMCA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/types@3.973.9':
- resolution: {integrity: sha512-kuBfgQVdcz5Bmapc4A13YbpVw/pXkesfhetcFYwbntqas8sF41OHyd4o28+/TG2ZQdHBsv90Lsu5y6oitvYCdg==}
+ '@aws-sdk/util-locate-window@3.965.7':
+ resolution: {integrity: sha512-M0D6oIpohdNHjc7udzTHEQyot0+0iuA36jc2I9Hps+f/GtKi2HO/pyijQnCnNcwZqLB5+rtn81z3eZK/GyjAmA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/util-locate-window@3.965.5':
- resolution: {integrity: sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/xml-builder@3.972.26':
- resolution: {integrity: sha512-cDbrqvDS73whl6YAPSPq0U6whzG6UWI9PuWh0wrUuGoZexhWEqhdunbukV7iBoaWnFV1AODutM5hOD6rtn439g==}
+ '@aws-sdk/xml-builder@3.972.29':
+ resolution: {integrity: sha512-fk0niuGFxfi8yIJuMVM4mhwObkiQSuwZFj3tAPrLVx64Pk3BkrEIpqjzHKY4hKoEBUD6Jg/S74Zj9jy+5F3DnQ==}
engines: {node: '>=20.0.0'}
'@aws/lambda-invoke-store@0.2.4':
@@ -538,59 +525,59 @@ packages:
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
engines: {node: '>=6.9.0'}
- '@biomejs/biome@2.4.16':
- resolution: {integrity: sha512-x9ajFh1zChVybCiM3TN6OD4phAqLgtPZjFrZF+aTMYCPjwBO+k529TX7PPsAqtGNLeV4UgzwQnowEgS7bGmzcA==}
+ '@biomejs/biome@2.5.0':
+ resolution: {integrity: sha512-4kURkd9hAPrdDM3C9n82ycYgx8hvQcW6MjKTEejruj8rK0N8P3OPpdy8BvI8kt3KWY4ycF5XtDOrktetEfhfuw==}
engines: {node: '>=14.21.3'}
hasBin: true
- '@biomejs/cli-darwin-arm64@2.4.16':
- resolution: {integrity: sha512-wxPvu4XOA85YJk9ixSWUmq/QBHbid85BISbOAqqBM/5xQpPk9ayjk5375tOlSC0BeCwNSbPFafQBm+vBumXq0A==}
+ '@biomejs/cli-darwin-arm64@2.5.0':
+ resolution: {integrity: sha512-Mn3Fwi3SA5fgmfCPqmzpWF2DLZnms3BVAhM088nTnGrTZmHS3wwIjcoZPqpXeNgd3DrrLH6xp8vTLIBuJoZiXw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [darwin]
- '@biomejs/cli-darwin-x64@2.4.16':
- resolution: {integrity: sha512-xFCqGPwYusQJp4N4NJLi1XJiZqjwFdjhT+KqtNy+Ug3qgfczqnTa6MSDvxJF6TkuDLoYJItMapz6tAf7kCekFw==}
+ '@biomejs/cli-darwin-x64@2.5.0':
+ resolution: {integrity: sha512-rg3VPL5P8mYro6pqlXYXuJWph21slVp3SZtAqWSrkZs40d2gTzYmHF8E/X1iTID25btmNKltNDJ926sqVBp7DQ==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [darwin]
- '@biomejs/cli-linux-arm64-musl@2.4.16':
- resolution: {integrity: sha512-oYxnW0ARfJkr72ezzF2OR8N/rtkgLUQeYtF8cFhVswbknHxtTcmzSsanVJP8yQKnGpGpc2ck6c5zLvHahL6Cbg==}
+ '@biomejs/cli-linux-arm64-musl@2.5.0':
+ resolution: {integrity: sha512-vQdM4oSGaf7ZNeGO9w5+Y8SBtyser9M6znxYbm7Ec8wInxJu1WiKxFYZW5Auj2d80bcVvefuGGRxoFOE0eee8g==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@biomejs/cli-linux-arm64@2.4.16':
- resolution: {integrity: sha512-2kFb4//jxfZaP6D+Rj5VkHkxgyD9EoRAVBEQb8PKRv+s4NO2zYNJKXFaJmK1CmhufJOWEfpHKaRbOja7qjmdhQ==}
+ '@biomejs/cli-linux-arm64@2.5.0':
+ resolution: {integrity: sha512-tl+LW8fdD96/xdeWtWwc82LIOc5CoY7N2AsogLTp5R4ECErYt+8Jl/N68ezN9vzSiqPTxw6vjcihoLPYKZHrlw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@biomejs/cli-linux-x64-musl@2.4.16':
- resolution: {integrity: sha512-iHDS+MCM65DPqWGu+ECC3uoALyj2H7F4nVUPxIPjz/PIl94EUu+EDfGZDzFP+NY1EOPVt9NQvwFqq7HdMmowdg==}
+ '@biomejs/cli-linux-x64-musl@2.5.0':
+ resolution: {integrity: sha512-+9hIcMngJ+yGUahXqZuZ8CoWKJE9SAZsFsM3QDvXpNsLbXZ9lqVzgBhOk/jTSYkOA0GLP9eu3teukqpLUojHMg==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@biomejs/cli-linux-x64@2.4.16':
- resolution: {integrity: sha512-NbcBbi/nJqn5baae6wqRXdS7Gadf2uRpehSh6vMSYpG8OhkXl/Xg8aorWrJ+9VWqAT5ml90alLvorkpMW0nBwQ==}
+ '@biomejs/cli-linux-x64@2.5.0':
+ resolution: {integrity: sha512-zpEGf4RQbFEh8Vt7OmavLyyOzRbtcE9osCqrS1kfvt8jDvxwhKXLSf7n0ebr/ov0RJ9ssP+lhs6C8a9WwFvrQA==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@biomejs/cli-win32-arm64@2.4.16':
- resolution: {integrity: sha512-0rgImMsNb5v/chhkIFe3wu7PEFClS6RBAYUijGL9UsYN3PanSaoK24HSSuSJb1pYbYYVjzAyZTl3gtjJ84BM8A==}
+ '@biomejs/cli-win32-arm64@2.5.0':
+ resolution: {integrity: sha512-jB0wAvTLI4itx5VidqVUejPQFhRUxiZ9l9FvZ26D5fl6t3qme+ZB4PD3bTSeL1vZ8NI2Rx/zj6H9zcESuGHKGw==}
engines: {node: '>=14.21.3'}
cpu: [arm64]
os: [win32]
- '@biomejs/cli-win32-x64@2.4.16':
- resolution: {integrity: sha512-Kp85jgoBHa05gix6UIRjfCDiUV3w/8VIdZ247VyyO2gEjaw12WEVhdIjlxp/AMzXxqxQwbxNTDVZ3Mwd2RG5rw==}
+ '@biomejs/cli-win32-x64@2.5.0':
+ resolution: {integrity: sha512-VT/lF+GId+67j8aDfLkxdxNoVApsPSTbyAtB3jJq0IWTrY77WXfbPfpngxq0bA6JCEv/7k8C9qWjDRKRznDlyw==}
engines: {node: '>=14.21.3'}
cpu: [x64]
os: [win32]
@@ -601,8 +588,8 @@ packages:
'@borewit/text-codec@0.2.2':
resolution: {integrity: sha512-DDaRehssg1aNrH4+2hnj1B7vnUGEjU6OIlyRdkMd0aUdIUvKXrJfXsy8LVtXAy7DRvYVluWbMspsRhz2lcW0mQ==}
- '@codemirror/autocomplete@6.20.2':
- resolution: {integrity: sha512-G5FPkgIiLjOgZMjqVjvuKQ1rGPtHogLldJr33eFJdVLtmwY+giGrlv/ewljLz6b9BSQLkjxuwBc6g6omDM+YxQ==}
+ '@codemirror/autocomplete@6.20.3':
+ resolution: {integrity: sha512-tlosUqb+3BbxCxZdu4tKeRghPFC+QM7q4X5YhKV2eCmPG+1r2F3f4AaSz5sCrFqUtX4Jh20VFTKecl16MgiV9g==}
'@codemirror/commands@6.10.3':
resolution: {integrity: sha512-JFRiqhKu+bvSkDLI+rUhJwSxQxYb759W5GBezE8Uc8mHLqC9aV/9aTC7yJSqCtB3F00pylrLCwnyS91Ap5ej4Q==}
@@ -679,11 +666,11 @@ packages:
'@codemirror/legacy-modes@6.5.3':
resolution: {integrity: sha512-xCsmIzH78MyWkib9jlPaaun57XNkfbMIhagfaZVd0iLTqlpw3jXaIcbZm72MTmmn64eTZpBVNjbyYh+QXnxRsg==}
- '@codemirror/lint@6.9.6':
- resolution: {integrity: sha512-6Kp7r6XfCi/D/5sdXieMfg9pJU1bUEx96WITuLU6ESaKizCz0QHFMjY/TaFSbigDdEAIgi93itLBIUETP4oK+A==}
+ '@codemirror/lint@6.9.7':
+ resolution: {integrity: sha512-28/+iWLYxKxsvGYhSYL7zaCZqLz5+FFFDq9tVsvGv9kv8RY4fFAchJ5WX9M3YrrRlTIsECjsXPqeNgnSmNP2dg==}
- '@codemirror/merge@6.12.1':
- resolution: {integrity: sha512-GA8hBq2T+IFM0sb5fk8CunTrqOulA3zurJmHtzcU15EMnL8aYpVINfJ5bkfd53M4ikwoew4Y1ydtSaAlk6+B1w==}
+ '@codemirror/merge@6.12.2':
+ resolution: {integrity: sha512-V8JvyAPjHbPupqP7BeMcsdsYCbyPij74jxIbaIJDORI+VZzW44zFmon8bF+oxGWvOKhcRmkiUMXd8MxHr3YA2w==}
'@codemirror/search@6.7.0':
resolution: {integrity: sha512-ZvGm99wc/s2cITtMT15LFdn8aH/aS+V+DqyGq/N5ZlV5vWtH+nILvC2nw0zX7ByNoHHDZ2IxxdW38O0tc5nVHg==}
@@ -691,20 +678,8 @@ packages:
'@codemirror/state@6.6.0':
resolution: {integrity: sha512-4nbvra5R5EtiCzr9BTHiTLc+MLXK2QGiAVYMyi8PkQd3SR+6ixar/Q/01Fa21TBIDOZXgeWV4WppsQolSreAPQ==}
- '@codemirror/view@6.43.0':
- resolution: {integrity: sha512-V7ZCLQO3Jus9hzh2jVCCPW3mO4IBMr43O37PqSUYautJSnnJF41YlgLw21x0fLJTYvJ+Vkm6Gp+qKGH9pltgXA==}
-
- '@codesandbox/nodebox@0.1.8':
- resolution: {integrity: sha512-2VRS6JDSk+M+pg56GA6CryyUSGPjBEe8Pnae0QL3jJF1mJZJVMDKr93gJRtBbLkfZN6LD/DwMtf+2L0bpWrjqg==}
-
- '@codesandbox/sandpack-client@2.19.8':
- resolution: {integrity: sha512-CMV4nr1zgKzVpx4I3FYvGRM5YT0VaQhALMW9vy4wZRhEyWAtJITQIqZzrTGWqB1JvV7V72dVEUCUPLfYz5hgJQ==}
-
- '@codesandbox/sandpack-react@2.20.0':
- resolution: {integrity: sha512-takd1YpW/PMQ6KPQfvseWLHWklJovGY8QYj8MtWnskGKbjOGJ6uZfyZbcJ6aCFLQMpNyjTqz9AKNbvhCOZ1TUQ==}
- peerDependencies:
- react: ^16.8.0 || ^17 || ^18 || ^19
- react-dom: ^16.8.0 || ^17 || ^18 || ^19
+ '@codemirror/view@6.43.1':
+ resolution: {integrity: sha512-+BIjw/AG3tDQ4pJgTLPYdAW25eDE66YsvM4LKyVPgGzVgZ4a9Wj1SRX8kPVKgBDdPt8oHtZ15F0qx7p0oOHdHw==}
'@date-fns/tz@1.2.0':
resolution: {integrity: sha512-LBrd7MiJZ9McsOgxqWX7AaxrDjcFVjWH/tIKJd7pnR7McaslGYOP1QmmiBXdJH/H/yLCT+rcQ7FaPBUxRGUtrg==}
@@ -744,9 +719,18 @@ packages:
'@drizzle-team/brocli@0.10.2':
resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
+ '@emnapi/core@1.10.0':
+ resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==}
+
'@emnapi/runtime@1.10.0':
resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==}
+ '@emnapi/runtime@1.11.1':
+ resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==}
+
+ '@emnapi/wasi-threads@1.2.1':
+ resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==}
+
'@emotion/babel-plugin@11.13.5':
resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
@@ -823,6 +807,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.28.1':
+ resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.18.20':
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
engines: {node: '>=12'}
@@ -841,6 +831,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.28.1':
+ resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.18.20':
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
engines: {node: '>=12'}
@@ -859,6 +855,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.28.1':
+ resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.18.20':
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
engines: {node: '>=12'}
@@ -877,6 +879,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.28.1':
+ resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.18.20':
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
engines: {node: '>=12'}
@@ -895,6 +903,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.28.1':
+ resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.18.20':
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
engines: {node: '>=12'}
@@ -913,6 +927,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.28.1':
+ resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.18.20':
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
engines: {node: '>=12'}
@@ -931,6 +951,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.28.1':
+ resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.18.20':
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
engines: {node: '>=12'}
@@ -949,6 +975,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.28.1':
+ resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.18.20':
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
engines: {node: '>=12'}
@@ -967,6 +999,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.28.1':
+ resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.18.20':
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
engines: {node: '>=12'}
@@ -985,6 +1023,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.28.1':
+ resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.18.20':
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
engines: {node: '>=12'}
@@ -1003,6 +1047,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.28.1':
+ resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.18.20':
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
engines: {node: '>=12'}
@@ -1021,6 +1071,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.28.1':
+ resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.18.20':
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
engines: {node: '>=12'}
@@ -1039,6 +1095,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.28.1':
+ resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.18.20':
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
engines: {node: '>=12'}
@@ -1057,6 +1119,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.28.1':
+ resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.18.20':
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
engines: {node: '>=12'}
@@ -1075,6 +1143,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.28.1':
+ resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.18.20':
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
engines: {node: '>=12'}
@@ -1093,6 +1167,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.28.1':
+ resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.18.20':
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
engines: {node: '>=12'}
@@ -1111,6 +1191,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.28.1':
+ resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.25.12':
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
engines: {node: '>=18'}
@@ -1123,6 +1209,12 @@ packages:
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.18.20':
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
engines: {node: '>=12'}
@@ -1141,6 +1233,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.28.1':
+ resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.25.12':
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
engines: {node: '>=18'}
@@ -1153,6 +1251,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.18.20':
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
engines: {node: '>=12'}
@@ -1171,6 +1275,12 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.28.1':
+ resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openharmony-arm64@0.25.12':
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
engines: {node: '>=18'}
@@ -1183,6 +1293,12 @@ packages:
cpu: [arm64]
os: [openharmony]
+ '@esbuild/openharmony-arm64@0.28.1':
+ resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.18.20':
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
engines: {node: '>=12'}
@@ -1201,6 +1317,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.28.1':
+ resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.18.20':
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
engines: {node: '>=12'}
@@ -1219,6 +1341,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.28.1':
+ resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.18.20':
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
engines: {node: '>=12'}
@@ -1237,6 +1365,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.28.1':
+ resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.18.20':
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
engines: {node: '>=12'}
@@ -1255,6 +1389,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.28.1':
+ resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@faceless-ui/modal@3.0.0':
resolution: {integrity: sha512-o3oEFsot99EQ8RJc1kL3s/nNMHX+y+WMXVzSSmca9L0l2MR6ez2QM1z1yIelJX93jqkLXQ9tW+R9tmsYa+O4Qg==}
peerDependencies:
@@ -1309,14 +1449,14 @@ packages:
'@formatjs/intl-localematcher@0.8.9':
resolution: {integrity: sha512-GmB0F/gYh4Hdl4rLWjgDsgT+x4pB54fkJeRh8kAZ4XFzKeCK8dGs+SBJWXO42QZtOUni+IDWKNuCw6wiL4lTvw==}
- '@graphql-codegen/add@6.0.1':
- resolution: {integrity: sha512-MSylSekjpVWbOBw2A/2ssk1fPY54sYb6Qk2C4AX5u7s2R+2pMQ9ws7DTXo8VU9qwTgWwVp6vGfdQ0AMpAn4Iug==}
+ '@graphql-codegen/add@7.0.1':
+ resolution: {integrity: sha512-kWw6RMu9ysBw1wcgcgf9mOnswc5M3ekOApDTiaJC/UZNTEYins01srZHYTP7z3P/WlGGC844BRtjwh3U2kNd/A==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/cli@6.2.1':
- resolution: {integrity: sha512-E1B+5nBda2l89Pci5M0HcEj2Hmx2yhORFX+1T3rmwpQjdOiulo+h9JifWxKomUpjfbmU1YkBSd47CCGLFPU10A==}
+ '@graphql-codegen/cli@7.1.2':
+ resolution: {integrity: sha512-RiXedOZhanodp8fCBlpciyic17kSv0hSMboDaE9/ZWXC6f4g1aQBTZmQJOsT9Dtxy0SxqmMY674NoTlJgELNeA==}
engines: {node: '>=16'}
hasBin: true
peerDependencies:
@@ -1326,8 +1466,8 @@ packages:
'@parcel/watcher':
optional: true
- '@graphql-codegen/client-preset@5.2.4':
- resolution: {integrity: sha512-k4f9CoepkVznXRReCHBVnG/FeQVQgIOhgtkaJ6I9FcQRzUkrm9ASmQjOdNdMlZt0DHTU4nbVxIBGZW7gk1RavA==}
+ '@graphql-codegen/client-preset@6.0.1':
+ resolution: {integrity: sha512-6wh0ZHG9WzBD6bE4AVOO6VCCMXK2orxHuXxaNKj+sj1w0qZ3Y3WIjZnqZLg6JZrHCIs/e+gy3T15Dc2pH8IbHA==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
@@ -1336,44 +1476,44 @@ packages:
graphql-sock:
optional: true
- '@graphql-codegen/core@5.0.2':
- resolution: {integrity: sha512-7RX0wwjoWPlLG/tUmpaTK91ZZqHcACNWpRL0nGnnJaJrORie9pgmX8JPrcwBgYiHSC+3ERo9xY91RFPem/VrpQ==}
+ '@graphql-codegen/core@6.1.0':
+ resolution: {integrity: sha512-jReAzuCYlrSBJHW2bfBpDl/vMRCw0yQEoTvGi9K+3OTsazDXEQGOpCVfj8p/xO2h7ynu5Yrvzo0sUylVv0CnwA==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/gql-tag-operations@5.1.4':
- resolution: {integrity: sha512-tDj/0a1U7rDH3PQgLeA+PlgBNb593MIJ43oAOKMRgJPwIQ9T7p2oqBRLxwfFZFTDLwnwsGZ7xIKqIcGgyAIj5Q==}
+ '@graphql-codegen/gql-tag-operations@6.0.1':
+ resolution: {integrity: sha512-eHYUIchZLG6G+kafeKnUByL2Nkmb8Uj2vg33UVLFj8XJ2coC4b1iRDWxCdTXbupZrN0FaM0QRRBLs3zBEAzcJg==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/introspection@5.0.1':
- resolution: {integrity: sha512-dX6U8o0Sddhuw491e5DTE1Vf8h4SN+8bldQ+XcK6imS7eVqduond1uZjLNgFejQFWfd7x0KWldKqyy/9Ilwtlw==}
+ '@graphql-codegen/introspection@6.0.1':
+ resolution: {integrity: sha512-X8LdqTjWf6G1k1cqM1WpBMEarFWDRLxJxo5CfigoU1Aw3GHn8ToVoPvHd4wrQyS8WA+2ijsd6+jjzo5mXg9xuQ==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/plugin-helpers@6.3.0':
- resolution: {integrity: sha512-Auc+/B7okDx9+pVgLVliZtZLYh6iltWXlnzzM+bRE+zh1T4r3hKbnr8xAmtT937ArfSgk5GHcQHr8LfPYnrRBg==}
+ '@graphql-codegen/plugin-helpers@7.0.1':
+ resolution: {integrity: sha512-S2X0YT3XQbP2haqhIeku8GOXo2j8QuBu7BrLsOEHz4UeMu78y3rja1Q4ri3oJ0jq4dMgaQlazoVHI/A+FAKMGw==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/schema-ast@5.0.2':
- resolution: {integrity: sha512-jl1F/9IjRkJisEb9B0ayG4QGqYlPldLRy8ojDdmL9NE1NsdB5ROfxQnSqyC3g+wuvBhWX7kZgMRQYn3RU1I5bA==}
+ '@graphql-codegen/schema-ast@6.0.1':
+ resolution: {integrity: sha512-P16b6XCWXfcrA4fkuAyqoy883USAULifv8YWgEOrNKDAnr2DR+Kr85jSomknIUTY39wiuvisv4/lrdXobwK6sA==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/typed-document-node@6.1.8':
- resolution: {integrity: sha512-+qDdiJSQ7Ol+vpLMAH8ZJok50CvlYxA6seQ7cwEa3emXt8MmH5hh3zdc9unQlPc7bynoJHRCgoKk7E0B7hry0w==}
+ '@graphql-codegen/typed-document-node@7.0.3':
+ resolution: {integrity: sha512-l/4KenYJG5D8Aj6Aa2KPeS0fdMIIi04Qx28d4SLwMWuyFU9WXspU5mR9YMNDRZzaTgBtGR8aMIl9RzyiWf5uUw==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/typescript-operations@5.1.0':
- resolution: {integrity: sha512-JlmjbFl0EnsfMDIYvTE1Q0kAOrntVEZ+ZfBqWTP91g4e0F/TzuwJ/V4tiFmeDf5dx/rf9AK4VkPehIdxu7TYhw==}
+ '@graphql-codegen/typescript-operations@6.0.3':
+ resolution: {integrity: sha512-5gnHdBgKkpKJOiqyKo37UfwigNtezfN94UI/NnyCROl6oDAyt0A+1VeS5cBlgRECdD/TQ1vjHCu14B41Sl7yLw==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
@@ -1382,14 +1522,14 @@ packages:
graphql-sock:
optional: true
- '@graphql-codegen/typescript@5.0.10':
- resolution: {integrity: sha512-Pa8OFmL9TdhEYnLYJLYA9EhP8eEeivP/YDYq4Nb8LQaL7GXm4TGX8zELYaCM9Fu8M3iZb7iQGMt7qc+1lXz8XQ==}
+ '@graphql-codegen/typescript@6.0.2':
+ resolution: {integrity: sha512-zyLfKsFJ7TRkQ0PyaUVuiAek9TSbtVJwwBoOuaE9RAWr45+9Y5W1LYldpiSTcyfxKVSIniE7Gj0V87qzrpdyYw==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
- '@graphql-codegen/visitor-plugin-common@6.3.0':
- resolution: {integrity: sha512-vGBoE+4huzZyNhyGSAhXAkdROHlwKxxuziZm4XtP1mxe7nuI+VgyOmXebafLijbmuDsptPXQN0C/htL54O8hrg==}
+ '@graphql-codegen/visitor-plugin-common@7.1.0':
+ resolution: {integrity: sha512-CO4fJyflbYBuAwbQD16bAuWBIXkz9il3JwyC+pQzXh8NJ+BZZDXmYjmVeGeJuoMUIQDb+CNo2thCU0bFFamAkg==}
engines: {node: '>=16'}
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
@@ -1416,8 +1556,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/delegate@12.0.16':
- resolution: {integrity: sha512-WEJaFwWG82a0VzhfE4sRsaOPjxgCVfn4fOe3ho+r3uIbPYpc7qHpFdu1PLg6meikq6fuW9NJ1J88fEgnWuXDVg==}
+ '@graphql-tools/delegate@12.0.17':
+ resolution: {integrity: sha512-pIVszWEm69rF+bkM0jUyM1KdIxGzygQbIp1GtV1CuEGRB8lN1uFY1eeTzM2nudHXg8cj+XSVO8cnRpph+o8Dmg==}
engines: {node: '>=20.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1536,8 +1676,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/wrap@11.1.15':
- resolution: {integrity: sha512-GCMx6l0MPwHVaBMHf29oG8eIrsJ8PBXq9y5DNX9/r9oCpCBfqxfWzcejx4CpO4chA3+yylGOKcAyEbOUgxfI1Q==}
+ '@graphql-tools/wrap@11.1.16':
+ resolution: {integrity: sha512-JW1XGFTmltXa537J2bAr8dN/n6EWwiBuM9q8V8mWqZ0eWrf++/TT3/mlV3c0M8B8nrS/lqSsotIwPAtVZR8sWQ==}
engines: {node: '>=20.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1705,134 +1845,134 @@ packages:
cpu: [x64]
os: [win32]
- '@inquirer/ansi@1.0.2':
- resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==}
- engines: {node: '>=18'}
+ '@inquirer/ansi@2.0.7':
+ resolution: {integrity: sha512-3eTuUO1vH2cZm2ZKHeQxnOqlTi9EfZDGgIe3BL3I4u+rJHocr9Fz86M4fjYABPvFnQG/gGK551HqDiIcETwU6Q==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
- '@inquirer/checkbox@4.3.2':
- resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==}
- engines: {node: '>=18'}
+ '@inquirer/checkbox@5.2.1':
+ resolution: {integrity: sha512-b6xmA/VlTe0ZgDQHDui+Nav470u7u49nRd8/iuhOcQPO9Ch7lGuogydhi2VOmNlZ+zXcM8IcPuNSwQcdJaF/kw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/confirm@5.1.21':
- resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
- engines: {node: '>=18'}
+ '@inquirer/confirm@6.1.1':
+ resolution: {integrity: sha512-eb8DBZcz/2qHWQda4rk2JiQk5h9QV/cVHi1yjt0f69WFZMRFn0sJTye3EAP8icut8UDMjQPsaH5KbcOogefrFQ==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/core@10.3.2':
- resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==}
- engines: {node: '>=18'}
+ '@inquirer/core@11.2.1':
+ resolution: {integrity: sha512-Qd6GJT1yVyrZZCfN8W2qKF5ApmqryXRhRKCuip8h01x2w/esJQ2XIYc6f9abMIHgKQdBfFTSOdbHRLAhuM09UA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/editor@4.2.23':
- resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==}
- engines: {node: '>=18'}
+ '@inquirer/editor@5.2.2':
+ resolution: {integrity: sha512-ZRVd/oD+sYsUd5zVm0NflqEzlqfYCyHNsqkHl2oWXEUHs12tCbcSFi+wVFEvD8+LGRaMUsVrE7qeo6lSG/S1Vg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/expand@4.0.23':
- resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==}
- engines: {node: '>=18'}
+ '@inquirer/expand@5.1.1':
+ resolution: {integrity: sha512-YmQpenjbFSHAK3sOd44puHh3V1KXXr+JiNpUztoSQ4drLh2rTVzTap/YtlAVu/5xavifIlBfNEzJ/neZJ1a/1g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/external-editor@1.0.3':
- resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
- engines: {node: '>=18'}
+ '@inquirer/external-editor@3.0.3':
+ resolution: {integrity: sha512-6thf5I8q7lZwzGLAxPaaGEREEkZ3nyePPDQ1oyobblxmEE8mqTLguScP7pDjUTAibiyb4hfXl+qjUEJ+di/aNA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/figures@1.0.15':
- resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
- engines: {node: '>=18'}
+ '@inquirer/figures@2.0.7':
+ resolution: {integrity: sha512-aJ8TBPOGB6f/2qziPfElISTCEd5XOYTFckA2SGjhNmiKzfK/u4ot3v0DUzGVdUnKjN10EqnnEPck36BkyfLnJw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
- '@inquirer/input@4.3.1':
- resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==}
- engines: {node: '>=18'}
+ '@inquirer/input@5.1.2':
+ resolution: {integrity: sha512-9K/DDBSQpOyZSkt6sOVP9Vo0TR7atX2kuILsUu0x3wVcVbe97lJwIJKMLdMw25tDYuXl/qp6erT0Xs1rfmcfZg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/number@3.0.23':
- resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==}
- engines: {node: '>=18'}
+ '@inquirer/number@4.1.1':
+ resolution: {integrity: sha512-XF4IXAbPnGPgw0wsbC/i2tPcyfdZgDpUlhsqU0SfT4IRIGWha6Xm9VRgN5yYxJq+jnyXlfXI/nQ3ulfk0iEICA==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/password@4.0.23':
- resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==}
- engines: {node: '>=18'}
+ '@inquirer/password@5.1.1':
+ resolution: {integrity: sha512-3XBfF7DAsp5qeDsvN5Rd1HmbNokVvEQoUM0QLrRcybC9nX96w3Pbmu7qUsb3IT3J3jBvs2+mTXaKHOUsgHMLzg==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/prompts@7.10.1':
- resolution: {integrity: sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==}
- engines: {node: '>=18'}
+ '@inquirer/prompts@8.5.2':
+ resolution: {integrity: sha512-IYR/3C/paEVVQYQvdDlFZVjRCJVYHHON0XXMH91KO9GSxs0TdKYWlUdvfQl2EfAHDxUaN3IBffkE/BDTh5nJ6g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/rawlist@4.1.11':
- resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==}
- engines: {node: '>=18'}
+ '@inquirer/rawlist@5.3.1':
+ resolution: {integrity: sha512-QqdTqQddL3qPX/PPrjobpsO25NZ4dWXgTLenrR445L2ptLEYE6Z+PD5c5CNDJNx4ugRgELAIpSIJxZaO2jJ2Og==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/search@3.2.2':
- resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==}
- engines: {node: '>=18'}
+ '@inquirer/search@4.2.1':
+ resolution: {integrity: sha512-xJj8QWKRSrfKoBIITLZK61dD3zwo0Rz11fgDImku30/Oe81zMdIdGgrLY2h6RkJ+KZ/GhNYIRMKnH/62qBTA5g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/select@4.4.2':
- resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==}
- engines: {node: '>=18'}
+ '@inquirer/select@5.2.1':
+ resolution: {integrity: sha512-FlDndEUww8m7BfukO2nJa25vhD+H5jxxCv4oGioKqzyWz3nPHhhw4LKdYRSlXuAx7DsdWia7iyaBPKKS95Evfw==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
'@types/node':
optional: true
- '@inquirer/type@3.0.10':
- resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
- engines: {node: '>=18'}
+ '@inquirer/type@4.0.7':
+ resolution: {integrity: sha512-t28inv14nMQ1PhKpsJPY+kEs/c00qzeCOS2gTNRyTjG5d6qsVA2fItxW4hkvGZ5lvanGLdtCzVIx5dwdRpN1+g==}
+ engines: {node: '>=23.5.0 || ^22.13.0 || ^20.17.0'}
peerDependencies:
'@types/node': '>=18'
peerDependenciesMeta:
@@ -1861,20 +2001,20 @@ packages:
'@lexical/clipboard@0.35.0':
resolution: {integrity: sha512-ko7xSIIiayvDiqjNDX6fgH9RlcM6r9vrrvJYTcfGVBor5httx16lhIi0QJZ4+RNPvGtTjyFv4bwRmsixRRwImg==}
- '@lexical/clipboard@0.43.0':
- resolution: {integrity: sha512-3dWDusVyM9EosBt4/n/ERyPIGOyuWuECj9zbvJdzGUdvu/VsqCdlyDsU5M7NxTUNQn2Fhkdj2o00UeB6bagX5Q==}
+ '@lexical/clipboard@0.45.0':
+ resolution: {integrity: sha512-9oDu2SNj/EZGjpXJTruz74Ls3VzF2Q41v1QB7JnTq5lh24byvIOdgEpOFHtr/7WVHssfXCbMtgFb5tW8rMaZ2g==}
- '@lexical/code-core@0.43.0':
- resolution: {integrity: sha512-8NtEOI4+hM688Pmd0Qh/aTCS5uovps902V53LGB15DUUwwL+Z5U+Hz7ZYozhyM6W755FQ3x15qtEGIIbDHE5bQ==}
+ '@lexical/code-core@0.45.0':
+ resolution: {integrity: sha512-zU3noYmfluSK38r0eBz3gHKzsgOksf9eHqoPIwXH6HovKCDo848HoW0i/hCRzRo9oPqydKikx0LIKUvWSaSNIw==}
- '@lexical/code-prism@0.43.0':
- resolution: {integrity: sha512-e8jMqJc5xAOqhim3KQ5IJ3Dhei0MIQSUUGb1Spcu8LaTkpUtWhPEalCa3jqATRJN93t2CitW1CAqO0IOX1OgXQ==}
+ '@lexical/code-prism@0.45.0':
+ resolution: {integrity: sha512-eevIcapWzWk4Kb2WE6mmMjTXjf+Mfn4pLXAJ92BkRO6gc5RPkYgpn7zsYTzSBWEM/GptKf7ta+XouLcnLXNOSQ==}
'@lexical/code@0.35.0':
resolution: {integrity: sha512-ox4DZwETQ9IA7+DS6PN8RJNwSAF7RMjL7YTVODIqFZ5tUFIf+5xoCHbz7Fll0Bvixlp12hVH90xnLwTLRGpkKw==}
- '@lexical/code@0.43.0':
- resolution: {integrity: sha512-DwkEC6M0N5+WwSbg47BGIua8mPgPG6W/mmKh3UmH44hHoVBvfF89fdBicauaf1VBs9UIWkIBrhc8fGSu4xqQRg==}
+ '@lexical/code@0.45.0':
+ resolution: {integrity: sha512-vtD5IKbJvgIxhKIl96pWKqjlqialzg/WbWNUNbeoyuf9ht0/MQ6WFdEdCNnnXqx4rj7CTzafB3c0jup7h96b6A==}
'@lexical/devtools-core@0.35.0':
resolution: {integrity: sha512-C2wwtsMCR6ZTfO0TqpSM17RLJWyfHmifAfCTjFtOJu15p3M6NO/nHYK5Mt7YMQteuS89mOjB4ng8iwoLEZ6QpQ==}
@@ -1882,8 +2022,8 @@ packages:
react: '>=17.x'
react-dom: '>=17.x'
- '@lexical/devtools-core@0.43.0':
- resolution: {integrity: sha512-Hyz8vxvmo0aThXjq3+t0mabozmQeb6U+pxKceAgBSxE9oLWbQmP7RW8jYPZW20bYqEcX1Kgmu+CdW8e3eSF7Kw==}
+ '@lexical/devtools-core@0.45.0':
+ resolution: {integrity: sha512-XiVedKif5nWbNj2CeNy30kokfk/iYb7Db+B1Z18bnr/uzp6IzkxpX6I4GeZu4HVbQJhGMCAdq19tFpYwXOx4sw==}
peerDependencies:
react: '>=17.x'
react-dom: '>=17.x'
@@ -1891,71 +2031,71 @@ packages:
'@lexical/dragon@0.35.0':
resolution: {integrity: sha512-SL6mT5pcqrt6hEbJ16vWxip5+r3uvMd0bQV5UUxuk+cxIeuP86iTgRh0HFR7SM2dRTYovL6/tM/O+8QLAUGTIg==}
- '@lexical/dragon@0.43.0':
- resolution: {integrity: sha512-wB2s8uO9DFwS5err1wM+7Yoz3cixtEXy1ZiU8RoJJ7tmjSEmQsLIflAQq8Lic291tCNPs+lSHKjdw+52vi0Z7Q==}
+ '@lexical/dragon@0.45.0':
+ resolution: {integrity: sha512-34k2/QuM8A9WVqVCtNGx1ySBWXxMVKejKH3VBWnXEb1NdrDa/N8jLpu0gOCLcrrDjMdUzs9uVgW0D4FRf1Lixg==}
- '@lexical/extension@0.43.0':
- resolution: {integrity: sha512-hCFj//3RhsPrCmx8VRTTLIsWtC2n5GG03ZDdyrgmeLzXNuknwDqhzaGAfQi9LSYn+NU+j3yCUROu8pZqaedtvw==}
+ '@lexical/extension@0.45.0':
+ resolution: {integrity: sha512-oJs1Zvrsqh32zZmeCkTQi7R2WoVIvaQE265JFZ/VczWlsWRdkkWQbGZ6iOlBZ3AmtiNgHoBeB0gZSoRQtWEQyA==}
'@lexical/hashtag@0.35.0':
resolution: {integrity: sha512-LYJWzXuO2ZjKsvQwrLkNZiS2TsjwYkKjlDgtugzejquTBQ/o/nfSn/MmVx6EkYLOYizaJemmZbz3IBh+u732FA==}
- '@lexical/hashtag@0.43.0':
- resolution: {integrity: sha512-oCKjY8/jkxJuu8iBnNX0WSLA6ZIYTn+v3NLpJxDqnAFZJCnJ2i/nM8GKzPMzHCDzJVNxbQB08fOptdXf8eN0Fg==}
+ '@lexical/hashtag@0.45.0':
+ resolution: {integrity: sha512-gFX4n+9RjOFVkNUkEcv3JeQT0LvZ8fiHWHrIkg1m3JbyloG6mKDlsSlO1qnIPUaAB4V62Tbnmfv3I0qp1UvNuw==}
'@lexical/history@0.35.0':
resolution: {integrity: sha512-onjDRLLxGbCfHexSxxrQaDaieIHyV28zCDrbxR5dxTfW8F8PxjuNyuaG0z6o468AXYECmclxkP+P4aT6poHEpQ==}
- '@lexical/history@0.43.0':
- resolution: {integrity: sha512-SdrH3xgtUcolVRLihbQwiANQIiwSLdkKBon9oSsZNNnzVgEb7DUQUtJQGf33oW8HHWObIuWkh72W0fN1dZixOw==}
+ '@lexical/history@0.45.0':
+ resolution: {integrity: sha512-KihtI8485Wx7kyFCtKNKk/nO2jSibRa8iL0OiKPZsYWVAQF5vFG3J00epX8EkEpeCx8Zjmj+3eytY05HPNd2nA==}
'@lexical/html@0.35.0':
resolution: {integrity: sha512-rXGFE5S5rKsg3tVnr1s4iEgOfCApNXGpIFI3T2jGEShaCZ5HLaBY9NVBXnE9Nb49e9bkDkpZ8FZd1qokCbQXbw==}
- '@lexical/html@0.43.0':
- resolution: {integrity: sha512-C6LpUQlRl9J8Hqpm/C8LCX1ZxFHyD/gvOdV+NuNGnXN06uo0jDDm9SNh/HI3VWvFu9ec4OuzUkQRCafW8WC8fQ==}
+ '@lexical/html@0.45.0':
+ resolution: {integrity: sha512-eK215f25cnAcIzNB1iRltg8hbvkK5wyyXvKQUqhfG/9HaSSVBCPuCyXKZicjZllQNvbFINGHFhTIqSP56drFSw==}
+
+ '@lexical/internal@0.45.0':
+ resolution: {integrity: sha512-IhyzCdb1/xdpTtvK0xnqUXpaVRsD2KTZ6EMZpavm6dhKaglf1zorpdbH7r6Hjps6SRb4DCn/t7lac+GMdDFbXg==}
'@lexical/link@0.35.0':
resolution: {integrity: sha512-+0Wx6cBwO8TfdMzpkYFacsmgFh8X1rkiYbq3xoLvk3qV8upYxaMzK1s8Q1cpKmWyI0aZrU6z7fiK4vUqB7+69w==}
- '@lexical/link@0.43.0':
- resolution: {integrity: sha512-jjU9PVWWBA2yEssbVkLQpu1ZIpXi3JwYb+JO20R47hzUm7T8SAPDd/VwU+2tcjqz065YntSGIaQ79dCft7WOJw==}
+ '@lexical/link@0.45.0':
+ resolution: {integrity: sha512-9xpsRQ06IA4eVnx4OtFV0+Tmp2Etvh0dh9FTFd/LJYaqo2A0ZIuNUggueDZ0i2dhi8wWW8J08O7U0HxLcDWHAg==}
'@lexical/list@0.35.0':
resolution: {integrity: sha512-owsmc8iwgExBX8sFe8fKTiwJVhYULt9hD1RZ/HwfaiEtRZZkINijqReOBnW2mJfRxBzhFSWc4NG3ISB+fHYzqw==}
- '@lexical/list@0.43.0':
- resolution: {integrity: sha512-WyYVeQa2x1LrI8Emr9AiWTjSMiZw77Zy7MRnohPTdX/4fu3Njfw61lpoonCNHlv/r5Mb/RHkIAwWjtjcSzwA+g==}
+ '@lexical/list@0.45.0':
+ resolution: {integrity: sha512-Eyff9KVLu5mV4QSid2aw9uYmKDKgDYToAaagI9Sp3VgqTMmvRUQJ0w7sr4zq8/FRKSzrsf4V2FjvLAuQE7eBUQ==}
'@lexical/mark@0.35.0':
resolution: {integrity: sha512-W0hwMTAVeexvpk9/+J6n1G/sNkpI/Meq1yeDazahFLLAwXLHtvhIAq2P/klgFknDy1hr8X7rcsQuN/bqKcKHYg==}
- '@lexical/mark@0.43.0':
- resolution: {integrity: sha512-pgwR5ia2ECDS0pyQxIrFvMOKjffI6fo2cGwqYg+Jz+ANMqE5zD4PoOUs7FEuZYAKPOAQR9GrETB7YAVSzKjk3Q==}
+ '@lexical/mark@0.45.0':
+ resolution: {integrity: sha512-PMyGmnF6koE5TKCDlGe1k1t1ZOefReyYaKtx6OY3Tf1AyyKII6zRGR+dANrgWzYliYO7j4mpKBK00ykOnuF3zA==}
'@lexical/markdown@0.35.0':
resolution: {integrity: sha512-BlNyXZAt4gWidMw0SRWrhBETY1BpPglFBZI7yzfqukFqgXRh7HUQA28OYeI/nsx9pgNob8TiUduUwShqqvOdEA==}
- '@lexical/markdown@0.43.0':
- resolution: {integrity: sha512-bJYhISQkdRo6XxcajgP9T+c8XAGfkJ/DHnSvM5nyJnHD0vZSH/2RZd2Lgt0eAnMVEt9ECG8cUkR557QSaPeJBA==}
+ '@lexical/markdown@0.45.0':
+ resolution: {integrity: sha512-fl/UUwudBXGnz44kOS07ZRN0DMfOWNnVl7GSSNyz6zDo1cMD60URt7LjF51bAG2oL8i1eRDX4/GV+7vBcuoGzw==}
'@lexical/offset@0.35.0':
resolution: {integrity: sha512-DRE4Df6qYf2XiV6foh6KpGNmGAv2ANqt3oVXpyS6W8hTx3+cUuAA1APhCZmLNuU107um4zmHym7taCu6uXW5Yg==}
- '@lexical/offset@0.43.0':
- resolution: {integrity: sha512-SYNF16Hk17ePaxFtPcBx3rzSM8yxDYSAzkSOdnUUePSzfTW3DUDzvUfe7q/7QCe/UlZd+4ULI0VjNgYRlR8Uiw==}
-
'@lexical/overflow@0.35.0':
resolution: {integrity: sha512-B25YvnJQTGlZcrNv7b0PJBLWq3tl8sql497OHfYYLem7EOMPKKDGJScJAKM/91D4H/mMAsx5gnA/XgKobriuTg==}
- '@lexical/overflow@0.43.0':
- resolution: {integrity: sha512-Usm7UfIwydhsg+qMbkBav79AOKqYa32zXY+TXveTqbaA+IAoIl3vFYP9x9ie4cHz/kgrmt/QuQs66cwPefRakg==}
+ '@lexical/overflow@0.45.0':
+ resolution: {integrity: sha512-iw6Gc85phIGEjAFRDLiGOrnxK/EjyRlEfQHI7BeU0m+qHDCc94cThbeuaPTC7nnxHytFbRdtJIhoQvvcUR+PKA==}
'@lexical/plain-text@0.35.0':
resolution: {integrity: sha512-lwBCUNMJf7Gujp2syVWMpKRahfbTv5Wq+H3HK1Q1gKH1P2IytPRxssCHvexw9iGwprSyghkKBlbF3fGpEdIJvQ==}
- '@lexical/plain-text@0.43.0':
- resolution: {integrity: sha512-wza2z2+OSsq3UPsFseqsVvnAWvW9s3W/rjQuf6Bk2/Xde2F3R7fvu3kArsaaVPzUKTVeOPCD8hUKIUpxP5OT2g==}
+ '@lexical/plain-text@0.45.0':
+ resolution: {integrity: sha512-453bsKVk3oY5/ktp3A2zO2nFdXniU/zfD87eIcN50aXrIwvNm082GkfmBaDeVujk7fLgC2hG980xdcEH4xcG3w==}
'@lexical/react@0.35.0':
resolution: {integrity: sha512-uYAZSqumH8tRymMef+A0f2hQvMwplKK9DXamcefnk3vSNDHHqRWQXpiUo6kD+rKWuQmMbVa5RW4xRQebXEW+1A==}
@@ -1963,49 +2103,53 @@ packages:
react: '>=17.x'
react-dom: '>=17.x'
- '@lexical/react@0.43.0':
- resolution: {integrity: sha512-Ov9PCS7Ghm83fmjSDr6CafDLsuMhf7A7FFfEr4DmDM/6Lw2w0a0QQJP+KqxPqaVaRgeQMJAVg38Zgrvuk3v7tw==}
+ '@lexical/react@0.45.0':
+ resolution: {integrity: sha512-LAaceAtcQpVMDvldhkrQC1MSawpj7aAm1CfGg6RbyQgTDDp2fKnP1gDhjQIef3lH8W2fYeXRe66EdzaFkoGHKA==}
peerDependencies:
react: '>=17.x'
react-dom: '>=17.x'
+ yjs: '>=13.5.22'
+ peerDependenciesMeta:
+ yjs:
+ optional: true
'@lexical/rich-text@0.35.0':
resolution: {integrity: sha512-qEHu8g7vOEzz9GUz1VIUxZBndZRJPh9iJUFI+qTDHj+tQqnd5LCs+G9yz6jgNfiuWWpezTp0i1Vz/udNEuDPKQ==}
- '@lexical/rich-text@0.43.0':
- resolution: {integrity: sha512-y6uhY5X+PBLg8LSCDazSMAkUfA1RwBW6DFOuUKW5SI1DaB/oc/vpQhkR1DYGqXnytMx7hfiK+7lL51ZC0ydeWg==}
+ '@lexical/rich-text@0.45.0':
+ resolution: {integrity: sha512-jd+jIsDirqILuUQiNUJAzZWynVZHuN1ekqYcydgDFaUXMFBQgVr3mBUieQzMw2IDAEk98txntu/mZQav4BryQQ==}
'@lexical/selection@0.35.0':
resolution: {integrity: sha512-mMtDE7Q0nycXdFTTH/+ta6EBrBwxBB4Tg8QwsGntzQ1Cq//d838dpXpFjJOqHEeVHUqXpiuj+cBG8+bvz/rPRw==}
- '@lexical/selection@0.43.0':
- resolution: {integrity: sha512-sdKdXIFggtHxTctvXjTyx2RgWuKOOP3PhrzRJF+COGfckrr/YzDtQCOfyvktElyKEeYXa3t9sx/R6Ep3n074fA==}
+ '@lexical/selection@0.45.0':
+ resolution: {integrity: sha512-V2DYMhl84F1aZ24YpWMMqy9ikO7cVfD3G+GjMwrZnMt0JVnIghjPiYIEBb/OtqqA+mCbBwNhfpdK1RtF9HTbJA==}
'@lexical/table@0.35.0':
resolution: {integrity: sha512-9jlTlkVideBKwsEnEkqkdg7A3mije1SvmfiqoYnkl1kKJCLA5iH90ywx327PU0p+bdnURAytWUeZPXaEuEl2OA==}
- '@lexical/table@0.43.0':
- resolution: {integrity: sha512-oLrOBzRwpmdHDpGVRgwBVgO1ro0w50rMdtOVQ6KsL53ijZ6OiI1YE2ZNOy4qfJvjub+2dgp83gKpB7YcmXAP3w==}
+ '@lexical/table@0.45.0':
+ resolution: {integrity: sha512-OXbwEg0DqkTdvqnu7z+/u8bgnDz2sjHHXCG3zGRhEzDgHcWoVQ18IciwMdse7dTTNfBIJMuGJcRoWPrHf9UlhQ==}
'@lexical/text@0.35.0':
resolution: {integrity: sha512-uaMh46BkysV8hK8wQwp5g/ByZW+2hPDt8ahAErxtf8NuzQem1FHG/f5RTchmFqqUDVHO3qLNTv4AehEGmXv8MA==}
- '@lexical/text@0.43.0':
- resolution: {integrity: sha512-dtUZ79WaAv3nEYBIWPBZIrjwCUPONN8HcgtReY3qku7WQkzqy3FaMwT/lBa92cUhqsn4ChLIBO3lPFhWRALyvg==}
+ '@lexical/text@0.45.0':
+ resolution: {integrity: sha512-ozI8fDsLTYAzEWXaBrGYZ0GnRbbIHi4IL99w5q06UfTQzBMYmF7WaccDP1krOOwwioPYQbiqZM7dh/41jsFELQ==}
'@lexical/utils@0.35.0':
resolution: {integrity: sha512-2H393EYDnFznYCDFOW3MHiRzwEO5M/UBhtUjvTT+9kc+qhX4U3zc8ixQalo5UmZ5B2nh7L/inXdTFzvSRXtsRA==}
- '@lexical/utils@0.43.0':
- resolution: {integrity: sha512-Y9wzFwoeI9KLDJsztTz45Aobp6sACHSRqUtyjxpCsU0jwL60Tt9rD71QVz7SvpmzxjtnBb040s6LHa6vP0gY+A==}
+ '@lexical/utils@0.45.0':
+ resolution: {integrity: sha512-Fo5MMErqoPlUyTw1qVMZ9kE33ZjJF957KU683tsCrrlaVisVxpboL7BbAnxWTwCcIpAsfc6AUndJJ70M9NDMGg==}
'@lexical/yjs@0.35.0':
resolution: {integrity: sha512-3DSP7QpmTGYU9bN/yljP0PIao4tNIQtsR4ycauWNSawxs/GQCZtSmAPcLRnCm6qpqsDDjUtKjO/1Ej8FRp0m0w==}
peerDependencies:
yjs: '>=13.5.22'
- '@lexical/yjs@0.43.0':
- resolution: {integrity: sha512-3ghY9BYZVo3Hg2TmY2+H3Q6+AhhGwNIhnr6mvCbdLBEsnSTXr4VZSPMXN2ae5phCPrI19eHrx4MvFNYodQcqrA==}
+ '@lexical/yjs@0.45.0':
+ resolution: {integrity: sha512-HYbOovvOavtF1S7C13l9g21s4MFLLd/o49qdn+/uGj23j4yjG556XBSrF0c3BREXDXSUr+RTbI6uiQ+L5Ofcmw==}
peerDependencies:
yjs: '>=13.5.22'
@@ -2063,8 +2207,8 @@ packages:
'@marijn/find-cluster-break@1.0.2':
resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
- '@mdxeditor/editor@3.55.0':
- resolution: {integrity: sha512-ziJY12OQVrrdAcWAwG8njV7gPy8orEIodGdFTXpQVlIOjdV/FOIHMcETMc5XXfON3hw3uO1CcHDb3TZQQSgfqg==}
+ '@mdxeditor/editor@4.0.3':
+ resolution: {integrity: sha512-0Ak7Xq4fd766yDdS/t8vdpIfEVxMPn4skc8F9bAiJQJkRd2EKbYcaf0JFemDvKducuB4aHPX/STigvEkqu3Zzw==}
engines: {node: '>=16'}
peerDependencies:
react: '>= 18 || >= 19'
@@ -2087,69 +2231,75 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- '@next/bundle-analyzer@16.2.6':
- resolution: {integrity: sha512-amPkVtHCTJAdBwyhhl5+qztHk24O4JlASgrWqh15AmnYi74apfZR46NGC0u4pM6BMAU1mYld4WdzD3cRBP3dOA==}
+ '@napi-rs/wasm-runtime@1.1.5':
+ resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==}
+ peerDependencies:
+ '@emnapi/core': ^1.7.1
+ '@emnapi/runtime': ^1.7.1
+
+ '@next/bundle-analyzer@16.2.9':
+ resolution: {integrity: sha512-yGWyLbC8MMn+hk9j6l6GammpbUz5S3yZzl3lpoWfVXhIpJfh6kAWG7JwF4WoG3f0VnYRY959yo1QQEI8mV/+jg==}
- '@next/env@15.5.18':
- resolution: {integrity: sha512-hAV85Ckd9QR6RvH04MEKwsfLTksvFpO47j9xwtoIuvuPnlwecpSi+uZTtm8HirVbtlI2Fnz//xpcSTjFdyJk+g==}
+ '@next/env@15.5.19':
+ resolution: {integrity: sha512-sWWluFvcv5v3Fxznmf2ZfjyoVQt/64oCnYqS90inQWGzMPK1VjvekPiz3OPHKmFT30EnHrjlbyaHLt3M0vWabw==}
- '@next/env@16.2.6':
- resolution: {integrity: sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==}
+ '@next/env@16.2.9':
+ resolution: {integrity: sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg==}
- '@next/swc-darwin-arm64@16.2.6':
- resolution: {integrity: sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==}
+ '@next/swc-darwin-arm64@16.2.9':
+ resolution: {integrity: sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@16.2.6':
- resolution: {integrity: sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==}
+ '@next/swc-darwin-x64@16.2.9':
+ resolution: {integrity: sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@16.2.6':
- resolution: {integrity: sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==}
+ '@next/swc-linux-arm64-gnu@16.2.9':
+ resolution: {integrity: sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-arm64-musl@16.2.6':
- resolution: {integrity: sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==}
+ '@next/swc-linux-arm64-musl@16.2.9':
+ resolution: {integrity: sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@next/swc-linux-x64-gnu@16.2.6':
- resolution: {integrity: sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==}
+ '@next/swc-linux-x64-gnu@16.2.9':
+ resolution: {integrity: sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-x64-musl@16.2.6':
- resolution: {integrity: sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==}
+ '@next/swc-linux-x64-musl@16.2.9':
+ resolution: {integrity: sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@next/swc-win32-arm64-msvc@16.2.6':
- resolution: {integrity: sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==}
+ '@next/swc-win32-arm64-msvc@16.2.9':
+ resolution: {integrity: sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-x64-msvc@16.2.6':
- resolution: {integrity: sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==}
+ '@next/swc-win32-x64-msvc@16.2.9':
+ resolution: {integrity: sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@nodable/entities@2.1.1':
- resolution: {integrity: sha512-Pig3HxDIoMgjdEH8OCf/dkcTmLFjJRjWuq8jSnklu284/TKOPibSRERmOykiwmyXTtv61mP+44f3GMx0tLAyjg==}
+ '@nodable/entities@2.2.0':
+ resolution: {integrity: sha512-9uGyhaQavEUMC8AIddIjau4NsnsXhou+j5sBAGojCM1oxmQpVKTWR/9JxABD6UAv12vpIms55fPZKFQEhG6uBg==}
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
@@ -2163,8 +2313,108 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@open-draft/deferred-promise@2.2.0':
- resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==}
+ '@oxc-resolver/binding-android-arm-eabi@11.20.0':
+ resolution: {integrity: sha512-IjfWOXRgJFNdORDl+Uf1aibNgZY2guOD3zmOhx1BGVb/MIiqlFTdmjpQNplSN58lhWehnX4UNqC3QwpUo8pjJg==}
+ cpu: [arm]
+ os: [android]
+
+ '@oxc-resolver/binding-android-arm64@11.20.0':
+ resolution: {integrity: sha512-QqslZAuFQG8Q9xm7JuIn8JUbvywhSBMVhuQHtYW+auirZJloS41oxUUaBXk7uUhZJgp44c5zQLeVvmFaDQB+2Q==}
+ cpu: [arm64]
+ os: [android]
+
+ '@oxc-resolver/binding-darwin-arm64@11.20.0':
+ resolution: {integrity: sha512-MUcavykj2ewlR+kc5arpg4tC2RvzJkUxWtNv74pf7lcNk00GpIpN43vXMj+j6r4eMmfZhlb8hueKoIb8e9kAGQ==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@oxc-resolver/binding-darwin-x64@11.20.0':
+ resolution: {integrity: sha512-BGB16nRUK5Etiv//ihPyzj8Lj1px0mhh4YIfe0FDf045ywknfSm0GEbiRESpr6Q4K82AvnyaRIhhluHByvS4bg==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@oxc-resolver/binding-freebsd-x64@11.20.0':
+ resolution: {integrity: sha512-JZgtePaqj3qmD5XFHJaSLWzHRxQu0LaPkdoM1KJXYADvAaa83ijXHclV3ej3CueeW0wxfIAbGCZVP45J0CA7uQ==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
+ resolution: {integrity: sha512-hOQ/p3ry3v3SchUBXicrrnszaI/UmYzM4wtS4RGfwgVUX7a+HbyQSzJ5aOzu+o6XZkFkS3ZXN4PZAzhOb77OSg==}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
+ resolution: {integrity: sha512-2ArPksaw0AqeuGBfoS715VF+JvJQAhD2niWgjE5hVO+L+nAfikVQopvngCMX9x4BD8itWoQ3dnikrQyl5Ho5Jg==}
+ cpu: [arm]
+ os: [linux]
+
+ '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
+ resolution: {integrity: sha512-0bJnmYFp62JdZ4nVMDUZ/C58BCZOCcqgKtnUlp7L9Ojf/czIN+3j72YlLPeWLkzlr6SlYvIQA4SGV/HyO0d+qg==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
+ resolution: {integrity: sha512-wKHHzPKZo7Ufhv/Bt6yxT7FOgnIgW4gwXcJUipkShGp68W3wGVqvr1Sr0fY65lN0Oy6y41+g2kIDvkgZaMMUkw==}
+ cpu: [arm64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
+ resolution: {integrity: sha512-RN8goF7Ie0B79L4i4G6OeBocTgSC56vJbQ65VJje+oXnldVpLnOU7j/AQ/dP94TcCS+Yh6WG8u3Qt4ETteXFNQ==}
+ cpu: [ppc64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
+ resolution: {integrity: sha512-5l1yU6/xQEqLZRzxqmMxJfWPslpwCmBsdDGaBvABPehxquCXDC7dd7oraNdKSJUMDXSM7VvVj8H2D2FTjU7oWw==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
+ resolution: {integrity: sha512-xHEvkbgz6UC+A3JOyDQy76LkUaxsNSfIr3/GV8slwZsnuooJiIB34gzJfsyvR4JdCYNUUPsRJc/w/oWkODu+hg==}
+ cpu: [riscv64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
+ resolution: {integrity: sha512-aWPDUUmSeyHvlW+SoEUd+JIJsQhVhu6a5tBpDRMu058naPAchTgAVGCFy35zjbnFlt0i8hLWziff6HX0D3LU4g==}
+ cpu: [s390x]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
+ resolution: {integrity: sha512-x2YeSimvhJjKLVD8KSu8f/rqU1potcdEMkApIPJqjZWN7c2Fpt4g2X32WDg1p+XDAmyT7nuQGe0vnhvXeLbH+g==}
+ cpu: [x64]
+ os: [linux]
+ libc: [glibc]
+
+ '@oxc-resolver/binding-linux-x64-musl@11.20.0':
+ resolution: {integrity: sha512-kcRLEIxpZefeYfLChjpgFf3ilBzRDZ+yobMrpRsQlSrxuFGtm3U6PMU7AaEpMqo3NfDGVyJJseAjnRLzMFHjwQ==}
+ cpu: [x64]
+ os: [linux]
+ libc: [musl]
+
+ '@oxc-resolver/binding-openharmony-arm64@11.20.0':
+ resolution: {integrity: sha512-HHcfnApSZGtKhTiHqe8OZruOZe5XuFQH5/E0Yhj3u8fnFvzkM4/k6WjacUf4SvA0SPEAbfbgYmVPuo0VX/fIBQ==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@oxc-resolver/binding-wasm32-wasi@11.20.0':
+ resolution: {integrity: sha512-Tn0y1XOFYHNfK1wp1Z5QK8Rcld/bsOwRISQXfqAZ5IBpv8Gz1IvV39fUWNprqNdRizgcvFhOzWwFun2zkJsyBg==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
+ resolution: {integrity: sha512-qPi25YNPe4YenS8MgsQU2+bIFHxxpLx1LVna2444cEHqNPhNjvWf9zqj4aWE43H9LpAsTmkkAlA3eL5ElBU3mA==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
+ resolution: {integrity: sha512-Wb14jWEW8huH6It9F6sXd9vrYmIS7pMrgkU6sxpLxkP+9z+wRgs71hUEhRpcn8FOXAFa27FVWfY2tRpbfTzfLw==}
+ cpu: [x64]
+ os: [win32]
'@parcel/watcher-android-arm64@2.5.6':
resolution: {integrity: sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==}
@@ -2254,67 +2504,67 @@ packages:
resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
engines: {node: '>= 10.0.0'}
- '@payloadcms/db-postgres@3.82.1':
- resolution: {integrity: sha512-A1AeDUPrBHEmhT+ORF1bD2GmFfPfPcK6uSz+AWLrOQ+vZ8/9CIQhCVEE//GsT7Q2YdazTrWUMtgjJARmZ2zWEQ==}
+ '@payloadcms/db-postgres@3.85.1':
+ resolution: {integrity: sha512-mAuSYbdJRlixzJO9IXasub3iE6c3wuSIhsLrPpOY1qGJmioFMYa9z1KhCMmDHEV5oAfKHBl0/XY1SR+FfHj7tQ==}
peerDependencies:
- payload: 3.82.1
+ payload: 3.85.1
- '@payloadcms/drizzle@3.82.1':
- resolution: {integrity: sha512-eSr6bTcgElibqLvmRRwVmSwqvL9Lkr/EdbaUFuoZmsqDfXq4nxXbtuIlN8jT4rx9m/weP6LYl/u80Od9BuITDg==}
+ '@payloadcms/drizzle@3.85.1':
+ resolution: {integrity: sha512-TVvw+tdvINf1y9bhkwjhGYguDybT3BJpTFzftKrsu034HqlN8ecc84ii35PXeiSsPciVWVgfgwAg9TSHQv4DFg==}
peerDependencies:
- payload: 3.82.1
+ payload: 3.85.1
- '@payloadcms/graphql@3.82.1':
- resolution: {integrity: sha512-IM7vtiJCxLF5HOygeGxAsACNBVRhopdK5K/bPxJKr/134YJbst/z6WTVL4k2dV/MYyEJvOfosCpIw+sKUOoKxA==}
+ '@payloadcms/graphql@3.85.1':
+ resolution: {integrity: sha512-jMrSCiGYmsjOUGmZayX5U7Vh3i8IcO0XMmQ9x5jCIZuB+/sNDiBNeHJWArC+H2cfPYh0G+iv9t+RpPg6FemiMg==}
hasBin: true
peerDependencies:
graphql: ^16.8.1
- payload: 3.82.1
+ payload: 3.85.1
- '@payloadcms/next@3.82.1':
- resolution: {integrity: sha512-3ygV5aFmj7ZLk2r7/rb//3i09ciF1dBgajNJvWDwGzb4NJhL04LCijOJdBnWEIUZuFohpmmuwc2TbXp8cnq39g==}
+ '@payloadcms/next@3.85.1':
+ resolution: {integrity: sha512-k/2l2LQNrgfa5r5ibR0o4/nNhLAlQQXtLpwGrJq2/B/yws4Ir6otc+ozTMiprATlvVb6uXcNFT+m1XLYqqSFuQ==}
engines: {node: ^18.20.2 || >=20.9.0}
peerDependencies:
graphql: ^16.8.1
- next: '>=15.2.9 <15.3.0 || >=15.3.9 <15.4.0 || >=15.4.11 <15.5.0 || >=16.2.2 <17.0.0'
- payload: 3.82.1
+ next: '>=15.2.9 <15.3.0 || >=15.3.9 <15.4.0 || >=15.4.11 <15.5.0 || >=16.2.6 <17.0.0'
+ payload: 3.85.1
- '@payloadcms/plugin-cloud-storage@3.82.1':
- resolution: {integrity: sha512-2daSxSGGnckig1rcpq0mLql11PJ/e8tVJVPQO/fmrU4PJz1dnKZJ1cc6mxHTy0JafvUgGNiSpQgdKceVe1b0Ow==}
+ '@payloadcms/plugin-cloud-storage@3.85.1':
+ resolution: {integrity: sha512-g6LCO5RJlRt/dfmMsIBDg5sObeQb1BCaJulolH18ScPiqM32qadNv+5jqFTffDP/I0jvtQcxSUpAXPc0GFde5A==}
peerDependencies:
- payload: 3.82.1
+ payload: 3.85.1
react: ^19.0.1 || ^19.1.2 || ^19.2.1
react-dom: ^19.0.1 || ^19.1.2 || ^19.2.1
- '@payloadcms/plugin-search@3.82.1':
- resolution: {integrity: sha512-Mp2WMddac3V015aH/EeSz/5eBCvy/Pll/7SE0gDnPojFTHxs1nI0fJ5Y1K4XML2OrXTqE0KUCXRHQ6cbDGwJRQ==}
+ '@payloadcms/plugin-search@3.85.1':
+ resolution: {integrity: sha512-rs8J+IAEJQmIzK8Jb6bCoOatPwUSg518J1/xZ/cDmrt+dm2/0V60URTH3TtgiZZDkSGT+x32WQZbPOasju2+Tw==}
peerDependencies:
- payload: 3.82.1
+ payload: 3.85.1
react: ^19.0.1 || ^19.1.2 || ^19.2.1
react-dom: ^19.0.1 || ^19.1.2 || ^19.2.1
- '@payloadcms/plugin-seo@3.82.1':
- resolution: {integrity: sha512-j3Drf4Nxo9EV4KDFvoitsE4ZEMnaglCPXOE/Uyh6nPlp6JbCM3uawVmT+7vydlIDnjrSaCm/uwh66OwRuV9JFg==}
+ '@payloadcms/plugin-seo@3.85.1':
+ resolution: {integrity: sha512-cFuMG6B40WbyCjiWUtPfFf6+4LpxZlltRDqjhpni2bUloIHzJlA9MS3my//Ta+RRFyEVyeVW4mr08hHqWg5lKA==}
peerDependencies:
- payload: 3.82.1
+ payload: 3.85.1
react: ^19.0.1 || ^19.1.2 || ^19.2.1
react-dom: ^19.0.1 || ^19.1.2 || ^19.2.1
- '@payloadcms/storage-s3@3.82.1':
- resolution: {integrity: sha512-ouV3UCylqfQFsFtoKKQYsW+QHevCR8I++Pel3KnkBlS2jbbT3c6N4wC/fNw9XMwGQeR9wDpPqB5OP8YyHYt0KQ==}
+ '@payloadcms/storage-s3@3.85.1':
+ resolution: {integrity: sha512-YaGaat5kxY8EelQ6ctY/9AseRfY8Y0suXWqoeIlTmnYVhQ3azlkr9UtSgT2ggS3pMnyIV8KHaXOKRdX2MfnqyA==}
engines: {node: ^18.20.2 || >=20.9.0}
peerDependencies:
- payload: 3.82.1
+ payload: 3.85.1
- '@payloadcms/translations@3.82.1':
- resolution: {integrity: sha512-32rREzQNQypz8ER4yj/s8E/pzFbbRs8jbNdyVu2MVQ03qhDkDSgznBe2vwxajiOfpgOMDNhbKqbF/+h5X1ZbWw==}
+ '@payloadcms/translations@3.85.1':
+ resolution: {integrity: sha512-1DssESAfPjgkp8/f7Xq1ZOCnMjSXp0Xkpbo0I7Zt0DCaA+QY7Go+kZQuSYazKKRF+lgSGzKEHRJ5CWqzhpKh8w==}
- '@payloadcms/ui@3.82.1':
- resolution: {integrity: sha512-oN8EW6M2FeYx7i+jK+2EMr9k7A6v/d/XDVOAKKblVA9mK9pfwRnYEw7+BSMXOeN0CA88RPXOlDEFcGwDWsh/PA==}
+ '@payloadcms/ui@3.85.1':
+ resolution: {integrity: sha512-WCJBEKAnwIvEi2Hiykl92dLVjGga6sPGsNlkbkssNMDqieEUh6qNAb3HewlJUa0IFrhxVFLoAEyJOzHr1UJXkQ==}
engines: {node: ^18.20.2 || >=20.9.0}
peerDependencies:
- next: '>=15.2.9 <15.3.0 || >=15.3.9 <15.4.0 || >=15.4.11 <15.5.0 || >=16.2.2 <17.0.0'
- payload: 3.82.1
+ next: '>=15.2.9 <15.3.0 || >=15.3.9 <15.4.0 || >=15.4.11 <15.5.0 || >=16.2.6 <17.0.0'
+ payload: 3.85.1
react: ^19.0.1 || ^19.1.2 || ^19.2.1
react-dom: ^19.0.1 || ^19.1.2 || ^19.2.1
@@ -2330,14 +2580,14 @@ packages:
'@radix-ui/colors@3.0.0':
resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
- '@radix-ui/number@1.1.1':
- resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
+ '@radix-ui/number@1.1.2':
+ resolution: {integrity: sha512-ceTwaxc4I5IOi97DgCotl3pqiyRGvffcc0oOsE2dQYaJOFIDsDt4VWG6xEbg1QePv9QWausCEIppud/tJ1wNig==}
- '@radix-ui/primitive@1.1.3':
- resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
+ '@radix-ui/primitive@1.1.4':
+ resolution: {integrity: sha512-7AdCK9PQyiljKoBDbN8OuctCbd/esdwZPQ8RtOE3SsyQtUpiPb+ND75q0jEhC1m1ecBI0MFNeLJvwIh9iKHRcQ==}
- '@radix-ui/react-arrow@1.1.7':
- resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
+ '@radix-ui/react-arrow@1.1.9':
+ resolution: {integrity: sha512-yqHW5WQ/cTpU/un7dqqIKNy2iRU8BC0JB78PEzTfCCYvZu1U6W9KwObAniMk9nhSfyotKPQTYaUD/HB0f5muig==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2349,8 +2599,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-avatar@1.1.11':
- resolution: {integrity: sha512-0Qk603AHGV28BOBO34p7IgD5m+V5Sg/YovfayABkoDDBM5d3NCx0Mp4gGrjzLGes1jV5eNOE1r3itqOR33VC6Q==}
+ '@radix-ui/react-avatar@1.1.12':
+ resolution: {integrity: sha512-NQCQyWC7QrDPhjMn8hUqFeU0lUrprIgm1AyMgLbzuQJibNnatdc3SSMo3/UGFu/eUkJUU1cEcKCnyhXTQzq6tA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2362,8 +2612,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-checkbox@1.3.3':
- resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
+ '@radix-ui/react-checkbox@1.3.4':
+ resolution: {integrity: sha512-m3JmIOAX5ZzZ6VPjxEU2dbTOhoHi0nT5riwcDwe8idocsWf4a5DXJLDtZ6LfJwMBx7W+A2b7kp2TgPEKtaiF6A==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2375,8 +2625,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-collection@1.1.7':
- resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
+ '@radix-ui/react-collection@1.1.9':
+ resolution: {integrity: sha512-zuSVi7ziP7uQRqc+yGxsKJfNkdyHv3ZKDaHe0gzg4dRgws96TPKWIiz84tVHP4GEcEl8bC0mdt17NkcxaJHmaQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2397,8 +2647,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-context@1.1.2':
- resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
+ '@radix-ui/react-compose-refs@1.1.3':
+ resolution: {integrity: sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2406,8 +2656,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-context@1.1.3':
- resolution: {integrity: sha512-ieIFACdMpYfMEjF0rEf5KLvfVyIkOz6PDGyNnP+u+4xQ6jny3VCgA4OgXOwNx2aUkxn8zx9fiVcM8CfFYv9Lxw==}
+ '@radix-ui/react-context@1.1.4':
+ resolution: {integrity: sha512-QwH4PO5urrbO+FaGd5Aglg+YJgWTyyuZ3g/6mKvsqraLkglDdckw9JafgL5McL5VEJ6EPNduPaT3ZE9BttDAqg==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2415,8 +2665,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dialog@1.1.15':
- resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
+ '@radix-ui/react-dialog@1.1.16':
+ resolution: {integrity: sha512-l9ok83YBclEZhbjgzt76Hw733e6cvRKPNgO6GJ/IETlufXG9p+fRu2wlvpImQvR6xdJ8h7J8J2DBvsPEiEsKMw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2428,8 +2678,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-direction@1.1.1':
- resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
+ '@radix-ui/react-direction@1.1.2':
+ resolution: {integrity: sha512-C3vFhbyi4SW3PmbAi6Awpu4OzJtd0MxGurvSsYtr7p7nM8RNB3VAF3CUmnp2j50knpkrRcB7+ycVXzgLgF6yNA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2437,8 +2687,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dismissable-layer@1.1.11':
- resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
+ '@radix-ui/react-dismissable-layer@1.1.12':
+ resolution: {integrity: sha512-MhoruH6xEzsbvOmo4TNgMfmtvRGyDZw4MDSdf4ybMHfezjqwzv6hyd4lsMzBp8K9Sn6sGzCF62x1I7BYUECXOg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2450,8 +2700,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-guards@1.1.3':
- resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
+ '@radix-ui/react-focus-guards@1.1.4':
+ resolution: {integrity: sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2459,8 +2709,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-focus-scope@1.1.7':
- resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
+ '@radix-ui/react-focus-scope@1.1.9':
+ resolution: {integrity: sha512-9Se8t+Zry+1rEOL7Y6l/4ANYU/TOtAtf8O2fKdwLltcaMcm6kOqYGbzO4tMFQ0bvzO920pRAoHpFZ4W85S3keQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2472,8 +2722,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-hover-card@1.1.15':
- resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
+ '@radix-ui/react-hover-card@1.1.16':
+ resolution: {integrity: sha512-hAileDBtd6CX7nlZOarOnISQ6PP4q0e16BX51ulzdZ+7IzjL0sDTVpFdmSYrIjw6zVNsfQBao5gG6AWr3qwfvA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2499,21 +2749,17 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-label@2.1.8':
- resolution: {integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==}
+ '@radix-ui/react-id@1.1.2':
+ resolution: {integrity: sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-popover@1.1.15':
- resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
+ '@radix-ui/react-label@2.1.9':
+ resolution: {integrity: sha512-rDoTeMbCwRVcnmo7NGT9IlPo1yXmEI+xc1URP3oeewwZEV4mdTp1dYUhYbQdo4D1q2SjKVvv4N1gNY77QAQtjA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2525,8 +2771,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-popper@1.2.8':
- resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
+ '@radix-ui/react-popover@1.1.16':
+ resolution: {integrity: sha512-8brVpAU5Uq7Bh0c8EFc4ZTf2JJTYn0o+1L+CUJB3UYIOkTjKGMgoHvduylrahdmNlr3DfH0rFq2DrbNZXgaspw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2538,8 +2784,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.1.9':
- resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
+ '@radix-ui/react-popper@1.3.0':
+ resolution: {integrity: sha512-9PB589e1aWZbrlFUHdz6WiPCL+xLZHQFX7oibqG/6Q0SwOkxDyQX9W/cyPa+sAPPKuC8cpLCpRczE5a/1DiwVQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2551,8 +2797,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-presence@1.1.5':
- resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
+ '@radix-ui/react-portal@1.1.11':
+ resolution: {integrity: sha512-UEytdjgEh2tJGgD/gZK4FUx6t1rNIlM3U0DENhSrG7I75FGm1DnaDuVUWF1pWAWUwGmn1sCJ1VGHn8LhN1aTOw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2564,8 +2810,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@2.1.3':
- resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
+ '@radix-ui/react-presence@1.1.6':
+ resolution: {integrity: sha512-zdTk4PlUO0E18HnZ3wYbW0KkJJxWCdiNYp6g6X1PtONFhxVkg01vliTJAmwIszU6mHiyBOoW9P0rAugl5/hULQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2590,8 +2836,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-progress@1.1.8':
- resolution: {integrity: sha512-+gISHcSPUJ7ktBy9RnTqbdKW78bcGke3t6taawyZ71pio1JewwGSJizycs7rLhGTvMJYCQB1DBK4KQsxs7U8dA==}
+ '@radix-ui/react-primitive@2.1.5':
+ resolution: {integrity: sha512-zifXeB8Y88qCYx8PLZ5oQb32KwZub+s925mMoZsBBq9KUQqWKkREubTfs6ASjRPPBe7Jt9O8OHH89+95VG+grA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2603,8 +2849,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-roving-focus@1.1.11':
- resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
+ '@radix-ui/react-progress@1.1.9':
+ resolution: {integrity: sha512-+EOkvg1Zn1vI1+fRDfRSAiJ7BWfcDAo5ASMmbqrcLZ4s4USk2FGkoHgeb2X+CkUgo2zJMiyObwf1k44CrRWsyw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2616,8 +2862,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-scroll-area@1.2.10':
- resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
+ '@radix-ui/react-roving-focus@1.1.12':
+ resolution: {integrity: sha512-FvgPt1bRmg8Xt2QpF7NUZW3dE0ZQHGm41dAdgT2J2GJPoIXz+9Em3NobAxf4fupcxhgHu03E5CRiU2MWvObXyg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2629,8 +2875,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-select@2.2.6':
- resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
+ '@radix-ui/react-scroll-area@1.2.11':
+ resolution: {integrity: sha512-DS39ziOgea75U/TrXKU2/oKp0be2jrDHnzFLvahg/0iNAT1Zq16e4Uw0WXwyXvsK+mG3BRyMb7A3NRZMDuEXtQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2642,8 +2888,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-separator@1.1.7':
- resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==}
+ '@radix-ui/react-select@2.3.0':
+ resolution: {integrity: sha512-mENc7WpJvJcW8hlMpzfFcHcEhTvYS5JMBmi9HVC1Q00uhBwML086MHYUV8QQdQv6lcu0Wg8dzd1RB8AFADcG/g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2655,8 +2901,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-separator@1.1.8':
- resolution: {integrity: sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g==}
+ '@radix-ui/react-separator@1.1.9':
+ resolution: {integrity: sha512-gvgW+JV/Mbjj6darztTetnmElpQEzZrXpJvfj+dOxNAxiyHEAyUvEjjl4zxblvmjmKmi3jfPoy7ZdxzCuUBJSA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2668,8 +2914,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.2.3':
- resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
+ '@radix-ui/react-slot@1.2.4':
+ resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2677,8 +2923,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-slot@1.2.4':
- resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
+ '@radix-ui/react-slot@1.2.5':
+ resolution: {integrity: sha512-rCMO3QsIVKv5JTY5CVbo2MvO77SpEqqYc8AvRE7OWqRDOIqAKjsp+DrmnY9uc8NPdxB5E2z47HTYGeE2+NTptg==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2686,8 +2932,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-switch@1.2.6':
- resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
+ '@radix-ui/react-switch@1.3.0':
+ resolution: {integrity: sha512-GP1EZwhoZO/GGnhM1P5/2Vpm8iN8EnngyU0oezn2l78kN8tj25pyrvjIaT7azBhK615KSt+P2w39y57YV5jVkA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2699,8 +2945,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-toggle-group@1.1.11':
- resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
+ '@radix-ui/react-toggle-group@1.1.12':
+ resolution: {integrity: sha512-TEgECgJaWGAHJJZGzNNEYTNBdIXqX7LchANycpyP7DkfjmuiSN7ISt1k/ZRGVJgVJonsgP4vwaiKMn5utrcwWQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2712,8 +2958,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-toggle@1.1.10':
- resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
+ '@radix-ui/react-toggle@1.1.11':
+ resolution: {integrity: sha512-FikrKJemoBGZQ6uRID0HJqSPBP6D7OppdD2OhLl0ZYLlAyPXI7MezoYGmumwNkrAoRm35xXkb4C8JPfJZZzcaw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2725,8 +2971,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-toolbar@1.1.11':
- resolution: {integrity: sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==}
+ '@radix-ui/react-toolbar@1.1.12':
+ resolution: {integrity: sha512-4wHtJVdIgqMmEwUvxA0BYg/2JMRbt0L3+8UD8Ml/nhKkfXtiZcM8u/S15gQ5xj9YEd/0qlrm5bE805LsjQ+J8A==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2738,8 +2984,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-tooltip@1.2.8':
- resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
+ '@radix-ui/react-tooltip@1.2.9':
+ resolution: {integrity: sha512-u6F9MmTtBSLkiXNVDrtB/yPCZarM9smNswC24YYLV/M+bth6J3Gs3vlJezEoFwKZvPvxhCpUYdUnOsNG/0XOlA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2751,8 +2997,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-use-callback-ref@1.1.1':
- resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
+ '@radix-ui/react-use-callback-ref@1.1.2':
+ resolution: {integrity: sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2760,8 +3006,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-controllable-state@1.2.2':
- resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
+ '@radix-ui/react-use-controllable-state@1.2.3':
+ resolution: {integrity: sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2769,8 +3015,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-effect-event@0.0.2':
- resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
+ '@radix-ui/react-use-effect-event@0.0.3':
+ resolution: {integrity: sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2778,8 +3024,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-escape-keydown@1.1.1':
- resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
+ '@radix-ui/react-use-escape-keydown@1.1.2':
+ resolution: {integrity: sha512-2uVLvLjgO7NZCWw01/FdqRwmA42J0BcjPMUCA+koFEOAb+zjqIP7SiFz/7zWPrKnVmSqr76Omq2ALyCuX4dhLw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2787,8 +3033,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-is-hydrated@0.1.0':
- resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
+ '@radix-ui/react-use-is-hydrated@0.1.1':
+ resolution: {integrity: sha512-qwOiz4Tjo8CNnrOLAYUMXeZwDzXgXpvK4TKQPmWLECM9XoWvA6+0Z2/7Ag3A4ivjS4ovbLJPbskkxioFyBhr8A==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2805,8 +3051,17 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-previous@1.1.1':
- resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
+ '@radix-ui/react-use-layout-effect@1.1.2':
+ resolution: {integrity: sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-previous@1.1.2':
+ resolution: {integrity: sha512-IGBQPtRFdhN6MQ8dbegVmBq1LVZluya3F1jWY+puIcQC3MHctRwTDSBWCkL/3ZcnMJLTMJ++Z+ktmvg0F89iCw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2814,8 +3069,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-rect@1.1.1':
- resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
+ '@radix-ui/react-use-rect@1.1.2':
+ resolution: {integrity: sha512-d8a+bBY/FxikNPlgJJoaBHZX+zKVbWHYJGTLnLvveQgFSTntkGdEKv3JDtHrMS0DNYpllz2nRsTLGLKYttbpmw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2823,8 +3078,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-size@1.1.1':
- resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
+ '@radix-ui/react-use-size@1.1.2':
+ resolution: {integrity: sha512-giWQp+4mxjBPt4KZ0MmyuykFNWfbDxKt4x+fPkRYmgRFJSbCZFzUglvMb/Kjn38tm10YP4ufiQZDx3zna4LU6w==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2832,8 +3087,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-visually-hidden@1.2.3':
- resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
+ '@radix-ui/react-visually-hidden@1.2.5':
+ resolution: {integrity: sha512-tPcHNI3FajdDBFpl/Ez1m2WL0ufJqBKyHxMDBvKitopamK36WwBGOMicuMEZKkM5Wce41QxUyv6BsiqfrWBiGg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2845,21 +3100,11 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/rect@1.1.1':
- resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
+ '@radix-ui/rect@1.1.2':
+ resolution: {integrity: sha512-xnXE7wG13PI+cxieVssYXlQJuYVRhH9NBoxt3KNwzghDIA69GMm7d4wXRouHIYjE+KvS6U/MsMO73NdS2MH9ZA==}
- '@react-hook/intersection-observer@3.1.2':
- resolution: {integrity: sha512-mWU3BMkmmzyYMSuhO9wu3eJVP21N8TcgYm9bZnTrMwuM818bEk+0NRM3hP+c/TqA9Ln5C7qE53p1H0QMtzYdvQ==}
- peerDependencies:
- react: '>=16.8'
-
- '@react-hook/passive-layout-effect@1.2.1':
- resolution: {integrity: sha512-IwEphTD75liO8g+6taS+4oqz+nnroocNfWVHWz7j+N+ZO2vYrc6PV1q7GQhuahL0IOR7JccFTsFKQ/mb6iZWAg==}
- peerDependencies:
- react: '>=16.8'
-
- '@repeaterjs/repeater@3.0.6':
- resolution: {integrity: sha512-Javneu5lsuhwNCryN+pXH93VPQ8g0dBX7wItHFgYiwQmzE1sVdg5tWHiOgHywzL2W21XQopa7IwIEnNbmeUJYA==}
+ '@repeaterjs/repeater@3.1.0':
+ resolution: {integrity: sha512-TaoVksZRSx2KWYYpyLQtMQXXeS98VsgZImzW65xmiVgbYhXLk+aEsmzPLirqVuE4/XuUapH2iMtxUzaBNDzdSQ==}
'@rollup/rollup-android-arm-eabi@4.60.4':
resolution: {integrity: sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==}
@@ -3009,32 +3254,32 @@ packages:
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
engines: {node: '>=18'}
- '@smithy/core@3.24.5':
- resolution: {integrity: sha512-Kt8phUg45M15EjhYAbZ+fFikYneijLu9Liugz8ZsYz2i8j0hzGv27LWKpEHYRfvj+LyCOSijpcR/2i8RouV+cA==}
+ '@smithy/core@3.24.7':
+ resolution: {integrity: sha512-KoUi4M1f3BG6kzN1FnCwL7oyFptTbyBJKjR6yhSib+JHRdUmM1o+VwsFtJ66NZCkCzVfJMWRHJNo0R0jznp0Pg==}
engines: {node: '>=18.0.0'}
- '@smithy/credential-provider-imds@4.3.6':
- resolution: {integrity: sha512-tHhdiWZfG1ZIh2YcRfPJmY2gHcBmqbAzqm3ER4TIDFYsSEqTD5tICT7cgQ/kI8LRakxp12myOYyK68XPn7MnHw==}
+ '@smithy/credential-provider-imds@4.3.9':
+ resolution: {integrity: sha512-ZlfJ/4Fa3jYb+3eaohPfG9utX9HmdhFNcFtpoGAhUhdynAOmGXtmigbi7eEiONKM+ykHw8RwKuDEb85Lx7t7fA==}
engines: {node: '>=18.0.0'}
- '@smithy/fetch-http-handler@5.4.5':
- resolution: {integrity: sha512-SK3VMeH0fibgdTg2QeB+O4p7Yy/2E5HBOHJeC58FshkDdeuX8lOgO7PfjYfLyPLP1ch55j91cQqKBzDS0mRjSQ==}
+ '@smithy/fetch-http-handler@5.4.7':
+ resolution: {integrity: sha512-NslaM2ir0N2hisDmzXLstPaVINZheh8SokyOC++kzFPloZucL2R7Y7bS57mSzx/1Fc/fqmn7twjkeezTTrV0EA==}
engines: {node: '>=18.0.0'}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
- '@smithy/node-http-handler@4.7.5':
- resolution: {integrity: sha512-3dA9TQ+ybRSZ/m0wnbZhiBy4Dezjgq1Ib/ZZrYTpJDBgpoLLU/SDzZc/g0x0MNAdOJe1wPcM+x2PBRmoOur+Sw==}
+ '@smithy/node-http-handler@4.7.8':
+ resolution: {integrity: sha512-f+DbsWUwSbtMu1a/j8Y93KiU1SRg9nyzfjereqn1BJ33QOTUXxdlYvVXMhAYl1vuR1Kmna5aIJe09KSIfyFNYw==}
engines: {node: '>=18.0.0'}
- '@smithy/signature-v4@5.4.5':
- resolution: {integrity: sha512-QBJKWGqIknH0dc9LWpfH1mkdokAx6iXYN3UcQ3eY6uIEyScuoQAhfl94ge7ozUy9WgFUdE8xsvwBjaYBbWmPNA==}
+ '@smithy/signature-v4@5.4.7':
+ resolution: {integrity: sha512-LwQZazFayImv+IOm0S0enoLeUJwmAlhGC5O6YCcLWezyu08dF46GOxPOq35OpBIHkgd7OvNvBStIFwVNyrvoBw==}
engines: {node: '>=18.0.0'}
- '@smithy/types@4.14.2':
- resolution: {integrity: sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==}
+ '@smithy/types@4.14.4':
+ resolution: {integrity: sha512-B2S9+UGm1+/pHkcx3ZoLVX1a+pmSk8rqxRR+ZsNqZaJ5q9FWX9AFGQVM4qG5+OBeQUZVy99HY8HqW8gK/wgXzQ==}
engines: {node: '>=18.0.0'}
'@smithy/util-buffer-from@2.2.0':
@@ -3048,13 +3293,26 @@ packages:
'@standard-schema/utils@0.3.0':
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
- '@stitches/core@1.2.8':
- resolution: {integrity: sha512-Gfkvwk9o9kE9r9XNBmJRfV8zONvXThnm1tcuojL04Uy5uRyqg93DC83lDebl0rocZCfKSjUv+fWYtMQmEDJldg==}
-
- '@swc-contrib/plugin-graphql-codegen-client-preset@0.20.0':
- resolution: {integrity: sha512-uGkx/YRF4/0wMnbSsFsKdN6NUbl8xY1bVwJQ+ifn1xJ3q9YKZ4OSzjTo4NJpmRX5/wbCbFYqq0eEHjMVASTYuQ==}
+ '@swc-contrib/plugin-graphql-codegen-client-preset@0.24.0':
+ resolution: {integrity: sha512-TJF6gmDdh15I+sZpTVLBnnbgIynA7eZc4ApRyCnlX5CM0IKoEjddSIF9xf6h/3TiA8phQBdvIK3/kNGvhudCCg==}
engines: {node: '>=16'}
+ '@swc-node/core@1.14.1':
+ resolution: {integrity: sha512-jrt5GUaZUU6cmMS+WTJEvGvaB6j1YNKPHPzC2PUi2BjaFbtxURHj6641Az6xN7b665hNniAIdvjxWcRml5yCnw==}
+ engines: {node: '>= 10'}
+ peerDependencies:
+ '@swc/core': '>= 1.13.3'
+ '@swc/types': '>= 0.1'
+
+ '@swc-node/register@1.11.1':
+ resolution: {integrity: sha512-VQ0hJ5jX31TVv/fhZx4xJRzd8pwn6VvzYd2tGOHHr2TfXGCBixZoqdPDXTiEoJLCTS2MmvBf6zyQZZ0M8aGQCQ==}
+ peerDependencies:
+ '@swc/core': '>= 1.4.13'
+ typescript: '>= 4.3'
+
+ '@swc-node/sourcemap-support@0.6.1':
+ resolution: {integrity: sha512-ovltDVH5QpdHXZkW138vG4+dgcNsxfwxHVoV6BtmTbz2KKl1A8ZSlbdtxzzfNjCjbpayda8Us9eMtcHobm38dA==}
+
'@swc/core-darwin-arm64@1.15.40':
resolution: {integrity: sha512-PaYyclfmQ++77D8ityYvmmVzHv9aG8ROwt2GfG6/ccloy4Hgf80qtOnzb9VYvPsUT7Ty1uhuDRhv3XYpf62qhQ==}
engines: {node: '>=10'}
@@ -3151,69 +3409,69 @@ packages:
'@swc/types@0.1.26':
resolution: {integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw==}
- '@tailwindcss/node@4.3.0':
- resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
+ '@tailwindcss/node@4.3.1':
+ resolution: {integrity: sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==}
- '@tailwindcss/oxide-android-arm64@4.3.0':
- resolution: {integrity: sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==}
+ '@tailwindcss/oxide-android-arm64@4.3.1':
+ resolution: {integrity: sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==}
engines: {node: '>= 20'}
cpu: [arm64]
os: [android]
- '@tailwindcss/oxide-darwin-arm64@4.3.0':
- resolution: {integrity: sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==}
+ '@tailwindcss/oxide-darwin-arm64@4.3.1':
+ resolution: {integrity: sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==}
engines: {node: '>= 20'}
cpu: [arm64]
os: [darwin]
- '@tailwindcss/oxide-darwin-x64@4.3.0':
- resolution: {integrity: sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==}
+ '@tailwindcss/oxide-darwin-x64@4.3.1':
+ resolution: {integrity: sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==}
engines: {node: '>= 20'}
cpu: [x64]
os: [darwin]
- '@tailwindcss/oxide-freebsd-x64@4.3.0':
- resolution: {integrity: sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==}
+ '@tailwindcss/oxide-freebsd-x64@4.3.1':
+ resolution: {integrity: sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==}
engines: {node: '>= 20'}
cpu: [x64]
os: [freebsd]
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
- resolution: {integrity: sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==}
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
+ resolution: {integrity: sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==}
engines: {node: '>= 20'}
cpu: [arm]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
- resolution: {integrity: sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==}
+ '@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
+ resolution: {integrity: sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==}
engines: {node: '>= 20'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@tailwindcss/oxide-linux-arm64-musl@4.3.0':
- resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
+ '@tailwindcss/oxide-linux-arm64-musl@4.3.1':
+ resolution: {integrity: sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==}
engines: {node: '>= 20'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@tailwindcss/oxide-linux-x64-gnu@4.3.0':
- resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
+ '@tailwindcss/oxide-linux-x64-gnu@4.3.1':
+ resolution: {integrity: sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==}
engines: {node: '>= 20'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@tailwindcss/oxide-linux-x64-musl@4.3.0':
- resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
+ '@tailwindcss/oxide-linux-x64-musl@4.3.1':
+ resolution: {integrity: sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==}
engines: {node: '>= 20'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@tailwindcss/oxide-wasm32-wasi@4.3.0':
- resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
+ '@tailwindcss/oxide-wasm32-wasi@4.3.1':
+ resolution: {integrity: sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
bundledDependencies:
@@ -3224,29 +3482,29 @@ packages:
- '@emnapi/wasi-threads'
- tslib
- '@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
- resolution: {integrity: sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==}
+ '@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
+ resolution: {integrity: sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==}
engines: {node: '>= 20'}
cpu: [arm64]
os: [win32]
- '@tailwindcss/oxide-win32-x64-msvc@4.3.0':
- resolution: {integrity: sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==}
+ '@tailwindcss/oxide-win32-x64-msvc@4.3.1':
+ resolution: {integrity: sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==}
engines: {node: '>= 20'}
cpu: [x64]
os: [win32]
- '@tailwindcss/oxide@4.3.0':
- resolution: {integrity: sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==}
+ '@tailwindcss/oxide@4.3.1':
+ resolution: {integrity: sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==}
engines: {node: '>= 20'}
- '@tailwindcss/postcss@4.3.0':
- resolution: {integrity: sha512-Jm05Tjx+9yCLGv5qw1c+84Psds8MnyrEQYCB+FFk2lgGiUjlRqdxke4mVTuYrj2xnVZqKim2Apr5ySuQRYAw/w==}
+ '@tailwindcss/postcss@4.3.1':
+ resolution: {integrity: sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==}
- '@tailwindcss/typography@0.5.19':
- resolution: {integrity: sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==}
+ '@tailwindcss/typography@0.5.20':
+ resolution: {integrity: sha512-hwbzQuNUfcPvbegQFatVPl/MY/tcM9KLl963hQ5laJKPh81TEZ1+dNG9PirGvcaDBkp+BCshExAyKVPW91dozw==}
peerDependencies:
- tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
+ tailwindcss: '>=3.0.0 || >=4.0.0 || insiders'
'@tokenizer/inflate@0.4.1':
resolution: {integrity: sha512-2mAv+8pkG6GIZiF1kNg1jAjh27IDxEPKwdGul3snfztFerfPGI1LjDezZp3i7BElXompqEtPmoPx6c2wgtWsOA==}
@@ -3255,6 +3513,9 @@ packages:
'@tokenizer/token@0.3.0':
resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
+ '@tybys/wasm-util@0.10.2':
+ resolution: {integrity: sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==}
+
'@types/busboy@1.5.4':
resolution: {integrity: sha512-kG7WrUuAKK0NoyxfQHsVE6j1m01s6kMma64E+OZenQABMQyTJop1DumUWcLwAQ2JzpefU7PDYoRDKl8uZosFjw==}
@@ -3288,14 +3549,14 @@ packages:
'@types/ms@2.1.0':
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
- '@types/node@25.6.0':
- resolution: {integrity: sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==}
+ '@types/node@25.9.3':
+ resolution: {integrity: sha512-603BddQMv3pUcr4U2dhujk83N2tTDVr/34wII2B6bJy6g+8WD6yUb11jszNs0gdi4PesVWl7ABt8nYMVpnLUcg==}
'@types/parse-json@4.0.2':
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
- '@types/pg@8.10.2':
- resolution: {integrity: sha512-MKFs9P6nJ+LAeHLU3V0cODEOgyThJ3OAnmOlsZsxux6sfQs3HRXR5bBn7xG5DjckEFhTAxsXi7k7cd0pCMxpJw==}
+ '@types/pg@8.20.0':
+ resolution: {integrity: sha512-bEPFOaMAHTEP1EzpvHTbmwR8UsFyHSKsRisLIHVMXnpNefSbGA1bD6CVy+qKjGSqmZqNqBDV2azOBo8TgkcVow==}
'@types/react-dom@19.2.3':
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
@@ -3307,8 +3568,8 @@ packages:
peerDependencies:
'@types/react': '*'
- '@types/react@19.2.15':
- resolution: {integrity: sha512-eRwcGNHve+E8qtEQSSRl6urh+rFop4v8gm6O8rGv25CodbvFdLjA1vVQ1KkiFE0w0UPOnb8tDiFKL5lp0rtY5Q==}
+ '@types/react@19.2.17':
+ resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==}
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -3333,8 +3594,8 @@ packages:
resolution: {integrity: sha512-b4PhJ+zYj4357zwk4TTuF2nEe0vVtOrwdsrNo5hL+u1ojXNhh1FgJ6pg1jzDlwlT4oBdzfSwaBwMCtFCsIWg8Q==}
engines: {node: '>=18.0.0'}
- '@whatwg-node/node-fetch@0.8.5':
- resolution: {integrity: sha512-4xzCl/zphPqlp9tASLVeUhB5+WJHbuWGYpfoC2q1qh5dw0AqZBW7L27V5roxYWijPxj4sspRAAoOH3d2ztaHUQ==}
+ '@whatwg-node/node-fetch@0.8.6':
+ resolution: {integrity: sha512-BDMdYFcerLQkwA2RTldxOqRCs6ZQD1S7UgP3pUdGUkcbgTrP/V5ko77ZkCww9DHmC4lpoYuwigGfQYj285gMvA==}
engines: {node: '>=18.0.0'}
'@whatwg-node/promise-helpers@1.3.2':
@@ -3366,33 +3627,22 @@ packages:
resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==}
engines: {node: '>=0.4.0'}
- acorn@8.16.0:
- resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
+ acorn@8.17.0:
+ resolution: {integrity: sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==}
engines: {node: '>=0.4.0'}
hasBin: true
ajv@8.18.0:
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
- anser@2.3.5:
- resolution: {integrity: sha512-vcZjxvvVoxTeR5XBNJB38oTu/7eDCZlwdz32N1eNgpyPF7j/Z7Idf+CUwQOkKKpJ7RJyjxgLHCM7vdIK0iCNMQ==}
-
ansi-escapes@7.3.0:
resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
engines: {node: '>=18'}
- ansi-regex@5.0.1:
- resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
- engines: {node: '>=8'}
-
ansi-regex@6.2.2:
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
- ansi-styles@4.3.0:
- resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
- engines: {node: '>=8'}
-
ansi-styles@6.2.3:
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
@@ -3404,6 +3654,9 @@ packages:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
+ anynum@1.0.0:
+ resolution: {integrity: sha512-xjR9/zBVnUOP6ztMIIgShjsxui80nQUQH+5xJnvrYLs+90bF25/KJqaAi8mk+B4RDtX1Nspi6fmp4YTEts8SfA==}
+
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
@@ -3419,9 +3672,9 @@ packages:
resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==}
engines: {node: '>=8.0.0'}
- auto-bind@4.0.0:
- resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==}
- engines: {node: '>=8'}
+ auto-bind@5.0.1:
+ resolution: {integrity: sha512-ooviqdwwgfIfNmDwo94wlshcdzfO64XV0Cg6oDsDYBJfITDz1EngD2z7DkbvCWn+XIMsIqW27sEVF6qcpJrRcg==}
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
@@ -3437,8 +3690,8 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- baseline-browser-mapping@2.10.32:
- resolution: {integrity: sha512-wbPvpyjJPC0zdfdKXxqEL3Ea+bOMD/87X4lftiJkkaBiuG6ALQy1SLmEd7BSmVCuwCQsBrCamgBoLyfFDD1EPg==}
+ baseline-browser-mapping@2.10.37:
+ resolution: {integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -3474,9 +3727,6 @@ packages:
buffer@5.6.0:
resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==}
- buffer@6.0.3:
- resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
-
bundle-require@5.1.0:
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -3495,27 +3745,21 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camel-case@4.1.2:
- resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
-
- caniuse-lite@1.0.30001793:
- resolution: {integrity: sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==}
-
- capital-case@1.0.4:
- resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
+ caniuse-lite@1.0.30001799:
+ resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chalk@4.1.2:
- resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
- engines: {node: '>=10'}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
- change-case-all@1.0.15:
- resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==}
+ change-case-all@2.1.0:
+ resolution: {integrity: sha512-v6b0WWWkZUMHVuYk82l+WROgkUm4qEN2w5hKRNWtEOYwWqUGoi8C6xH0l1RLF1EoWqDFK6MFclmN3od6ws3/uw==}
- change-case@4.1.2:
- resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==}
+ change-case@5.4.4:
+ resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==}
character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
@@ -3553,9 +3797,6 @@ packages:
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
- clean-set@1.1.2:
- resolution: {integrity: sha512-cA8uCj0qSoG9e0kevyOWXwPaELRPVg5Pxp6WskLMwerx257Zfnh8Nl0JBH59d7wQzij2CK7qEfJQK3RjuKKIug==}
-
cli-cursor@5.0.0:
resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
engines: {node: '>=18'}
@@ -3580,9 +3821,9 @@ packages:
resolution: {integrity: sha512-fPWgBqpp9ctiOQCkE5yjYGzv11ZU55g6ahEgr3COiio6dXdt1mbchCPXQrSR2Y9sZqfi8L7QD3+UosgXVIuPdg==}
engines: {node: '>=20'}
- cliui@8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
@@ -3605,13 +3846,6 @@ packages:
codemirror@6.0.2:
resolution: {integrity: sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==}
- color-convert@2.0.1:
- resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
- engines: {node: '>=7.0.0'}
-
- color-name@1.1.4:
- resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
-
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
@@ -3646,9 +3880,6 @@ packages:
console-table-printer@2.12.1:
resolution: {integrity: sha512-wKGOQRRvdnd89pCeH96e2Fn4wkbenSP6LMHfjfyNLMbGuHEFbMqQNuxXqd0oXG9caIOQ1FTvc5Uijp9/4jujnQ==}
- constant-case@3.0.4:
- resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==}
-
convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
@@ -3668,8 +3899,8 @@ packages:
typescript:
optional: true
- cosmiconfig@9.0.1:
- resolution: {integrity: sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==}
+ cosmiconfig@9.0.2:
+ resolution: {integrity: sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==}
engines: {node: '>=14'}
peerDependencies:
typescript: '>=4.9.5'
@@ -3680,8 +3911,8 @@ packages:
crelt@1.0.6:
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
- croner@9.1.0:
- resolution: {integrity: sha512-p9nwwR4qyT5W996vBZhdvBCnMhicY5ytZkR4D1Xj0wuTDEiMnjwR57Q3RXYY/s0EpX6Ay3vgIcfaR+ewGHsi+g==}
+ croner@10.0.1:
+ resolution: {integrity: sha512-ixNtAJndqh173VQ4KodSdJEI6nuioBWI0V1ITNKhZZsO0pEMoDxz539T4FTTbSZ/xIOSuDnzxLVRqBVSvPNE2g==}
engines: {node: '>=18.0'}
cross-env@10.1.0:
@@ -3715,10 +3946,6 @@ packages:
csstype@3.2.3:
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
- d@1.0.2:
- resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
- engines: {node: '>=0.12'}
-
data-uri-to-buffer@4.0.1:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
@@ -3741,9 +3968,9 @@ packages:
debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
- debounce@2.2.0:
- resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==}
- engines: {node: '>=18'}
+ debounce@3.0.0:
+ resolution: {integrity: sha512-64byRbF0/AirwbuHqB3/ZpMG9/nckDa6ZA0yd6UnaQNwbbemCOwvz2sL5sjXLHhZHADyiwLm0M5qMhltUUx+TA==}
+ engines: {node: '>=20'}
debug@4.4.3:
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
@@ -3773,9 +4000,9 @@ packages:
resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==}
engines: {node: '>=0.10.0'}
- detect-indent@6.1.0:
- resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
- engines: {node: '>=8'}
+ detect-indent@7.0.2:
+ resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==}
+ engines: {node: '>=12.20'}
detect-libc@2.1.2:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
@@ -3801,13 +4028,6 @@ packages:
dompurify@3.2.7:
resolution: {integrity: sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==}
- dot-case@3.0.4:
- resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
-
- dotenv@16.6.1:
- resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
- engines: {node: '>=12'}
-
dotenv@17.4.2:
resolution: {integrity: sha512-nI4U3TottKAcAD9LLud4Cb7b2QztQMUEfHbvhTH09bqXTxnSie8WnjPALV/WMCrJZ6UV/qHJ6L03OqO3LcdYZw==}
engines: {node: '>=12'}
@@ -3821,8 +4041,8 @@ packages:
resolution: {integrity: sha512-hOzRGSdyKIU4FcTSFYGKdXEjFsncVwHZ43gY3WU5Bz9j5Iadp6Rh6hxLSQ1IWXpKLBKt/d5y1cpSPcV+FcoQ1A==}
hasBin: true
- drizzle-orm@0.44.7:
- resolution: {integrity: sha512-quIpnYznjU9lHshEOAYLoZ9s3jweleHlZIAWR/jX9gAWNg/JhQ1wj0KGRf7/Zm+obRrYd9GjPVJg790QY9N5AQ==}
+ drizzle-orm@0.45.2:
+ resolution: {integrity: sha512-kY0BSaTNYWnoDMVoyY8uxmyHjpJW1geOmBMdSSicKo9CIIWkSxMIj2rkeSR51b8KAPB7m+qysjuHme5nKP+E5Q==}
peerDependencies:
'@aws-sdk/client-rds-data': '>=3'
'@cloudflare/workers-types': '>=4'
@@ -3916,8 +4136,8 @@ packages:
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
- electron-to-chromium@1.5.364:
- resolution: {integrity: sha512-G/dYE3+AYhyHwzTwg8UbnXf7zqMERYh7l2jJ3QujhFsH8agSYwtnGAR2aZ7f0AakIKJXd5En/Hre4igIUrdlYw==}
+ electron-to-chromium@1.5.372:
+ resolution: {integrity: sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA==}
embla-carousel-autoplay@8.6.0:
resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==}
@@ -3940,14 +4160,11 @@ packages:
emoji-regex@10.6.0:
resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
- emoji-regex@8.0.0:
- resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
-
end-of-stream@1.4.5:
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
- enhanced-resolve@5.22.1:
- resolution: {integrity: sha512-6QEuw3zoX1SJQc7b87aBXke/no+mG2bTBgw29gWMQonLmpEkWoCAVkl+M49e48AZlWzxiDzDZzYdp6kobcyLww==}
+ enhanced-resolve@5.21.6:
+ resolution: {integrity: sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==}
engines: {node: '>=10.13.0'}
env-paths@2.2.1:
@@ -3965,17 +4182,6 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es5-ext@0.10.64:
- resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
- engines: {node: '>=0.10'}
-
- es6-iterator@2.0.3:
- resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==}
-
- es6-symbol@3.1.4:
- resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==}
- engines: {node: '>=0.12'}
-
esbuild-register@3.6.0:
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
peerDependencies:
@@ -3996,13 +4202,15 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.28.1:
+ resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
- escape-carriage@1.3.1:
- resolution: {integrity: sha512-GwBr6yViW3ttx1kb7/Oh+gKQ1/TrhYwxKqVmg5gS+BK+Qe2KrOa/Vh7w3HPBvgGf0LfcDGoY9I6NHKoA5Hozhw==}
-
escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
@@ -4011,19 +4219,12 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- esniff@2.0.1:
- resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
- engines: {node: '>=0.10'}
-
estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
estree-util-visit@2.0.0:
resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==}
- event-emitter@0.3.5:
- resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
-
eventemitter3@5.0.4:
resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
@@ -4043,9 +4244,6 @@ packages:
resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
engines: {node: '>=0.10.0'}
- ext@1.7.0:
- resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
-
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -4062,9 +4260,18 @@ packages:
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+ fast-string-truncated-width@3.0.3:
+ resolution: {integrity: sha512-0jjjIEL6+0jag3l2XWWizO64/aZVtpiGE3t0Zgqxv0DPuxiMjvB3M24fCyhZUO4KomJQPj3LTSUnDP3GpdwC0g==}
+
+ fast-string-width@3.0.2:
+ resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
+
fast-uri@3.1.2:
resolution: {integrity: sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==}
+ fast-wrap-ansi@0.2.2:
+ resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
+
fast-xml-builder@1.2.0:
resolution: {integrity: sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==}
@@ -4238,18 +4445,14 @@ packages:
ws:
optional: true
- graphql@16.14.0:
- resolution: {integrity: sha512-BBvQ/406p+4CZbTpCbVPSxfzrZrbnuWSP1ELYgyS6B+hNeKzgrdB4JczCa5VZUBQrDa9hUngm0KnexY6pJRN5Q==}
+ graphql@16.14.2:
+ resolution: {integrity: sha512-Chq1s4CY7jmh8gO2qvLIJyfCDIN+EHLFW/9iShnp1z8FjBQMoodWP1kDC36VAMXXIvAjj4ARa7ntfAV2BrjsbA==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
- has-flag@4.0.0:
- resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
- engines: {node: '>=8'}
-
hasown@2.0.4:
resolution: {integrity: sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==}
engines: {node: '>= 0.4'}
@@ -4266,9 +4469,6 @@ packages:
hast-util-whitespace@3.0.0:
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
- header-case@2.0.4:
- resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==}
-
help-me@5.0.0:
resolution: {integrity: sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==}
@@ -4343,10 +4543,6 @@ packages:
inline-style-parser@0.2.7:
resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==}
- intersection-observer@0.10.0:
- resolution: {integrity: sha512-fn4bQ0Xq8FTej09YC/jqKZwtijpvARlRp6wxL5WTA6yPe2YWSJ5RJh7Nm79rK2qB0wr6iDQzH60XGq5V/7u8YQ==}
- deprecated: The Intersection Observer polyfill is no longer needed and can safely be removed. Intersection Observer has been Baseline since 2019.
-
intl-messageformat@11.2.7:
resolution: {integrity: sha512-+q6Ktg119nULZEpZ8YTuGOst9MyEzFtjD63FTGBlN1mLz0Z/MOUYDIvnpVKwq17eezIEh+cfJIebfJoCetpiNw==}
@@ -4393,10 +4589,6 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-fullwidth-code-point@3.0.0:
- resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
- engines: {node: '>=8'}
-
is-fullwidth-code-point@5.1.0:
resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
engines: {node: '>=18'}
@@ -4413,9 +4605,6 @@ packages:
engines: {node: '>=14.16'}
hasBin: true
- is-lower-case@2.0.2:
- resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==}
-
is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
@@ -4444,17 +4633,10 @@ packages:
resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==}
engines: {node: '>=0.10.0'}
- is-unicode-supported@0.1.0:
- resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
- engines: {node: '>=10'}
-
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
- is-upper-case@2.0.2:
- resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==}
-
is-wayland@0.1.0:
resolution: {integrity: sha512-QkbMsWkIfkrzOPxenwye0h56iAXirZYHG9eHVPb22fO9y+wPbaX/CHacOWBa/I++4ohTcByimhM1/nyCsH8KNA==}
engines: {node: '>=20'}
@@ -4508,6 +4690,10 @@ packages:
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
+ js-yaml@4.2.0:
+ resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
+ hasBin: true
+
jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
@@ -4544,8 +4730,8 @@ packages:
lexical@0.35.0:
resolution: {integrity: sha512-3VuV8xXhh5xJA6tzvfDvE0YBCMkIZUmxtRilJQDDdCgJCc+eut6qAv2qbN+pbqvarqcQqPN1UF+8YvsjmyOZpw==}
- lexical@0.43.0:
- resolution: {integrity: sha512-waSeXyt1HxTFpU8KNRA3IQcvjvpw0lZNaSbGopfOi4bLV0FF9zYpqiScTnEUMP/b1W7qWmD4Z2Detw43XICxqQ==}
+ lexical@0.45.0:
+ resolution: {integrity: sha512-z2M9C2ILPW7SopQE1aKbOFdZJbe3HvsrgWnJKveMDrSEvVjU9Hce4UpKVsAdkwY7TgY9RDuCV3+sfrGu0WkL+w==}
lib0@0.2.117:
resolution: {integrity: sha512-DeXj9X5xDCjgKLU/7RR+/HQEVzuuEUiwldwOGsHK/sfAfELGWEyTcf0x+uOvCvK3O2zPmZePXWL85vtia6GyZw==}
@@ -4633,9 +4819,9 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- listr2@9.0.5:
- resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
- engines: {node: '>=20.0.0'}
+ listr2@10.2.1:
+ resolution: {integrity: sha512-7I5knELsJKTUjXG+A6BkKAiGkW1i25fNa/xlUl9hFtk15WbE9jndA89xu5FzQKrY5llajE1hfZZFMILXkDHk/Q==}
+ engines: {node: '>=22.13.0'}
load-tsconfig@0.2.5:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
@@ -4650,9 +4836,9 @@ packages:
lodash@4.18.1:
resolution: {integrity: sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==}
- log-symbols@4.1.0:
- resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
- engines: {node: '>=10'}
+ log-symbols@7.0.1:
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
+ engines: {node: '>=18'}
log-update@6.1.0:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
@@ -4665,24 +4851,14 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- lower-case-first@2.0.2:
- resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==}
-
- lower-case@2.0.2:
- resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
-
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lucide-react@1.17.0:
- resolution: {integrity: sha512-9FA9evdox/JQL5PT57fdA1x/yg8T7knJ98+zjTL3UfKza6pflQUUh3XtaQIHKvnsJw1lmsEyHVlt5jchYxOQ5w==}
+ lucide-react@1.18.0:
+ resolution: {integrity: sha512-LZDb7H/0YfM+RJncD0hDQRCAu+vSGODqpe35TuVI8EuXaRjkczbsx7p8dY4J87F/MUSj6bpYqeI8nw8qXaAdmA==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
- lz-string@1.5.0:
- resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
- hasBin: true
-
macos-version@6.0.0:
resolution: {integrity: sha512-O2S8voA+pMfCHhBn/TIYDXzJ1qNHpPDU32oFxglKnVdJABiYYITt45oLkV9yhwA3E2FDwn3tQqUFrTsr1p3sBQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -4902,10 +5078,6 @@ packages:
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
- mime-db@1.54.0:
- resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
- engines: {node: '>= 0.6'}
-
mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
@@ -4938,9 +5110,9 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- mute-stream@2.0.0:
- resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ mute-stream@3.0.0:
+ resolution: {integrity: sha512-dkEJPVvun4FryqBmZ5KhDo0K9iDXAwn08tMLDinNdRBNPcYEDiWYysLcc6k3mjTMlbP9KyylvRpd4wFtwrT9rw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -4979,11 +5151,8 @@ packages:
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
- next-tick@1.1.0:
- resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
-
- next@16.2.6:
- resolution: {integrity: sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==}
+ next@16.2.9:
+ resolution: {integrity: sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww==}
engines: {node: '>=20.9.0'}
hasBin: true
peerDependencies:
@@ -5003,9 +5172,6 @@ packages:
sass:
optional: true
- no-case@3.0.4:
- resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
-
node-addon-api@7.1.1:
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
@@ -5018,8 +5184,8 @@ packages:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- node-releases@2.0.46:
- resolution: {integrity: sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==}
+ node-releases@2.0.47:
+ resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==}
engines: {node: '>=18'}
normalize-path@2.1.1:
@@ -5045,9 +5211,6 @@ packages:
object-to-formdata@4.5.1:
resolution: {integrity: sha512-QiM9D0NiU5jV6J6tjE1g7b4Z2tcUnKs1OPUi4iMb2zH+7jwlcUrASghgkFk9GtzqNNq8rTQJtT8AzjBAvLoNMw==}
- obuf@1.1.2:
- resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
-
on-exit-leak-free@2.1.2:
resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==}
engines: {node: '>=14.0.0'}
@@ -5063,8 +5226,8 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- openai@6.39.1:
- resolution: {integrity: sha512-z3dO9fEWOXBzlXynVb/xZ/tujzUjFWQWn3C0n0mw6Vo0zJTbEkaN4b2cLWjhJ6haJQx8LlREoafHRl+Gu/Hl+A==}
+ openai@6.42.0:
+ resolution: {integrity: sha512-1WFEt/uXMXOLhYRNkgJWo08Y2YNvNwpVU72K7ibrWgWpNOXd4VojXLbe6SQ4bLiUQ3Y8jz4IiyVkylJCL1DtZg==}
hasBin: true
peerDependencies:
ws: ^8.18.0
@@ -5082,16 +5245,13 @@ packages:
optimism@0.18.1:
resolution: {integrity: sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==}
- outvariant@1.4.0:
- resolution: {integrity: sha512-AlWY719RF02ujitly7Kk/0QlV+pXGFDHrHf9O2OKqyqgBieaPOIeuSkL8sRK6j2WK+/ZAURq2kZsY0d8JapUiw==}
+ oxc-resolver@11.20.0:
+ resolution: {integrity: sha512-CblytBiV/a/ZXY34dsVU2NxhIOxMXst8CvDCtyBelVITgd7PLrKzbEbA6oKLdPjvDKDzCiW48qzmzZ+mYaqn+g==}
p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
- param-case@3.0.4:
- resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
-
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -5115,12 +5275,6 @@ packages:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
- pascal-case@3.1.2:
- resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
-
- path-case@3.0.4:
- resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==}
-
path-expression-matcher@1.5.0:
resolution: {integrity: sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==}
engines: {node: '>=14.0.0'}
@@ -5154,8 +5308,8 @@ packages:
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
- payload@3.82.1:
- resolution: {integrity: sha512-BtsgQhCIpBM/2hFPGByJPNumE2Pefh9KVlQAxNQCswBGbGBAWxb6aixAVkafyTxP1//YuKCSiN1B+XS0n02QJg==}
+ payload@3.85.1:
+ resolution: {integrity: sha512-vfnqwwMOru9wpdiFB3gyb6B+gUt7cjE8+YiNn1g+26dPOyGkAZa9U1QmCMSZfgARj5H42llElQHQw9WX3lYbIw==}
engines: {node: ^18.20.2 || >=20.9.0}
hasBin: true
peerDependencies:
@@ -5171,10 +5325,6 @@ packages:
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
engines: {node: '>=4.0.0'}
- pg-numeric@1.0.2:
- resolution: {integrity: sha512-BM/Thnrw5jm2kKLE5uJkXqqExRUY/toLHda65XgFTBTFYZyopbKjBe29Ii3RbkvlsMoFwD+tHeGaCjjv0gHlyw==}
- engines: {node: '>=4'}
-
pg-pool@3.14.0:
resolution: {integrity: sha512-gKtPkFdQPU3DksooVLi9LsjZxrsBUZIpa+7aVx+LV5pNh0KzP4Zleud2po+ConrxbuXGBJ6Hfer6hdgpIBpBaw==}
peerDependencies:
@@ -5187,12 +5337,8 @@ packages:
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
engines: {node: '>=4'}
- pg-types@4.1.0:
- resolution: {integrity: sha512-o2XFanIMy/3+mThw69O8d4n1E5zsLhdO+OPqswezu7Z5ekP4hYDqlDjlmOpYMbzY2Br0ufCwJLdDIXeNVwcWFg==}
- engines: {node: '>=10'}
-
- pg@8.16.3:
- resolution: {integrity: sha512-enxc1h0jA/aq5oSDMvqyW3q89ra6XIIDZgCX9vkMrnz5DFTw/Ny3Li2lFQ+pt3L6MCgm/5o2o8HW9hiJji+xvw==}
+ pg@8.20.0:
+ resolution: {integrity: sha512-ldhMxz2r8fl/6QkXnBD3CR9/xg694oT6DZQ2s6c/RI28OjtSOpxnPrUCGOBJ46RCUxcWdx3p6kw/xnDHjKvaRA==}
engines: {node: '>= 16.0.0'}
peerDependencies:
pg-native: '>=3.0.1'
@@ -5276,43 +5422,24 @@ packages:
resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==}
engines: {node: '>=4'}
- postgres-array@3.0.4:
- resolution: {integrity: sha512-nAUSGfSDGOaOAEGwqsRY27GPOea7CNipJPOA7lPbdEpx5Kg3qzdP0AaWC5MlhTWV9s4hFX39nomVZ+C4tnGOJQ==}
- engines: {node: '>=12'}
-
postgres-bytea@1.0.1:
resolution: {integrity: sha512-5+5HqXnsZPE65IJZSMkZtURARZelel2oXUEO8rH83VS/hxH5vv1uHquPg5wZs8yMAfdv971IU+kcPUczi7NVBQ==}
engines: {node: '>=0.10.0'}
- postgres-bytea@3.0.0:
- resolution: {integrity: sha512-CNd4jim9RFPkObHSjVHlVrxoVQXz7quwNFpz7RY1okNNme49+sVyiTvTRobiLV548Hx/hb1BG+iE7h9493WzFw==}
- engines: {node: '>= 6'}
-
postgres-date@1.0.7:
resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==}
engines: {node: '>=0.10.0'}
- postgres-date@2.1.0:
- resolution: {integrity: sha512-K7Juri8gtgXVcDfZttFKVmhglp7epKb1K4pgrkLxehjqkrgPhfG6OO8LHLkfaqkbpjNRnra018XwAr1yQFWGcA==}
- engines: {node: '>=12'}
-
postgres-interval@1.2.0:
resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==}
engines: {node: '>=0.10.0'}
- postgres-interval@3.0.0:
- resolution: {integrity: sha512-BSNDnbyZCXSxgA+1f5UU2GmwhoI0aU5yMxRGO8CdFEcY2BQF9xm/7MqKnYoM1nJDk8nONNWDk9WeSmePFhQdlw==}
- engines: {node: '>=12'}
-
- postgres-range@1.1.4:
- resolution: {integrity: sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==}
-
powershell-utils@0.2.0:
resolution: {integrity: sha512-ZlsFlG7MtSFCoc5xreOvBAozCJ6Pf06opgJjh9ONEv418xpZSAzNjstD36C6+JwOnfSqOW/9uDkqKjezTdxZhw==}
engines: {node: '>=20'}
- prettier@3.8.3:
- resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==}
+ prettier@3.8.4:
+ resolution: {integrity: sha512-N2MylSdi48+5N/6S5j+maeHbUSIzzZ5uOcX5Hm4QpV8Dkb1HFjfAKTKX6yNPJQD9AhcT3ifHNB66tWTTJDi11Q==}
engines: {node: '>=14'}
hasBin: true
@@ -5360,13 +5487,10 @@ packages:
react: ^16.9.0 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.9.0 || ^17 || ^18 || ^19 || ^19.0.0-rc
- react-devtools-inline@4.4.0:
- resolution: {integrity: sha512-ES0GolSrKO8wsKbsEkVeiR/ZAaHQTY4zDh1UW8DImVmm8oaGLl3ijJDvSGe+qDRKPZdPRnDtWWnSvvrgxXdThQ==}
-
- react-dom@19.2.6:
- resolution: {integrity: sha512-0prMI+hvBbPjsWnxDLxlCGyM8PN6UuWjEUCYmZhO67xIV9Xasa/r/vDnq+Xyq4Lo27g8QSbO5YzARu0D1Sps3g==}
+ react-dom@19.2.7:
+ resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==}
peerDependencies:
- react: ^19.2.6
+ react: ^19.2.7
react-error-boundary@3.1.4:
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
@@ -5379,8 +5503,8 @@ packages:
peerDependencies:
react: ^18.0.0 || ^19.0.0
- react-hook-form@7.76.1:
- resolution: {integrity: sha512-rYM7tPiWlu3nZchkR/ex7piyzui2vFPyaLnXnI/RnblB/L4qfMmyses8llJVtF1NpE9WBBsJlGtcSZzPCXW1qQ==}
+ react-hook-form@7.79.0:
+ resolution: {integrity: sha512-mhYp/MTmXvzYX6AJcJVko0rktoIhhmRnEouObj4wF5i/tCttgJvnp1+9wRkpITZjDTqpo4IOSJqu0dBlPlV/Lw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
@@ -5448,8 +5572,8 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
- react@19.2.6:
- resolution: {integrity: sha512-sfWGGfavi0xr8Pg0sVsyHMAOziVYKgPLNrS7ig+ivMNb3wbCBw3KxtflsGBAwD3gYQlE/AEZsTLgToRrSCjb0Q==}
+ react@19.2.7:
+ resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==}
engines: {node: '>=0.10.0'}
readable-stream@3.6.2:
@@ -5495,10 +5619,6 @@ packages:
remove-trailing-spaces@1.0.9:
resolution: {integrity: sha512-xzG7w5IRijvIkHIjDk65URsJJ7k4J95wmcArY5PRcmjldIOl7oTvG8+X2Ag690R7SfwiOcHrWZKVc1Pp5WIOzA==}
- require-directory@2.1.1:
- resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
- engines: {node: '>=0.10.0'}
-
require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
@@ -5597,14 +5717,11 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.8.1:
- resolution: {integrity: sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==}
+ semver@7.8.4:
+ resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==}
engines: {node: '>=10'}
hasBin: true
- sentence-case@3.0.4:
- resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
-
sharp@0.34.5:
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -5650,9 +5767,6 @@ packages:
resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
engines: {node: '>=20'}
- snake-case@3.0.4:
- resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
-
sonic-boom@4.2.1:
resolution: {integrity: sha512-w6AxtubXa2wTXAUsZMMWERrsIRAdrK0Sc+FUytWvYAhBJLyuI4llrMIC1DtlNSdI99EI86KZum2MMq3EAZlF9Q==}
@@ -5694,15 +5808,12 @@ packages:
resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==}
engines: {node: '>= 10.x'}
- sponge-case@1.0.1:
- resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
+ sponge-case@2.0.3:
+ resolution: {integrity: sha512-i4h9ZGRfxV6Xw3mpZSFOfbXjf0cQcYmssGWutgNIfFZ2VM+YIWfD71N/kjjwK6X/AAHzBr+rciEcn/L34S8TGw==}
state-local@1.0.7:
resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==}
- static-browser-server@1.0.3:
- resolution: {integrity: sha512-ZUyfgGDdFRbZGGJQ1YhiM930Yczz5VlbJObrQLlk24+qNHVQx4OlLcYswEUo3bIyNAbQUIUR9Yr5/Hqjzqb4zA==}
-
stream-browserify@3.0.0:
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
@@ -5710,16 +5821,9 @@ packages:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
- strict-event-emitter@0.4.6:
- resolution: {integrity: sha512-12KWeb+wixJohmnwNFerbyiBrAlq5qJLwIt38etRtKtmmHyDSoGlIqFE9wx+4IwG0aDjI7GV8tc8ZccjWZZtTg==}
-
string-env-interpolation@1.0.1:
resolution: {integrity: sha512-78lwMoCcn0nNu8LszbP1UA7g55OeE4v7rCeWnM5B453rnNr4aq+5it3FEYtZrSEiMvHZOZ9Jlqb0OD0M2VInqg==}
- string-width@4.2.3:
- resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
- engines: {node: '>=8'}
-
string-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
@@ -5734,10 +5838,6 @@ packages:
stringify-entities@4.0.4:
resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
- strip-ansi@6.0.1:
- resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
- engines: {node: '>=8'}
-
strip-ansi@7.2.0:
resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
engines: {node: '>=12'}
@@ -5754,8 +5854,8 @@ packages:
resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==}
engines: {node: '>=14.16'}
- strnum@2.3.0:
- resolution: {integrity: sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==}
+ strnum@2.4.0:
+ resolution: {integrity: sha512-sHrVyWWdq28RbhjuJdZsA1SnGRJV6NiXbk6AXBxDOsgAcA+lmpUZCYjOdLBxkXMwis6RRe7dlZt4VlIWFVzkmg==}
strtok3@10.3.5:
resolution: {integrity: sha512-ki4hZQfh5rX0QDLLkOCj+h+CVNkqmp/CMf8v8kZpkNVK6jGQooMytqzLZYUVYIZcFZ6yDB70EfD8POcFXiF5oA==}
@@ -5795,16 +5895,12 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- supports-color@7.2.0:
- resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
- engines: {node: '>=8'}
-
supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- swap-case@2.0.2:
- resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==}
+ swap-case@3.0.3:
+ resolution: {integrity: sha512-6p4op8wE9CQv7uDFzulI6YXUw4lD9n4oQierdbFThEKVWVQcbQcUjdP27W8XE7V4QnWmnq9jueSHceyyQnqQVA==}
sync-fetch@0.6.0:
resolution: {integrity: sha512-IELLEvzHuCfc1uTsshPK58ViSdNqXxlml1U+fmwJIKLYKOr/rAtBrorE2RYm5IHaMpDNlmC0fr1LAvdXvyheEQ==}
@@ -5825,8 +5921,8 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
- tailwindcss@4.3.0:
- resolution: {integrity: sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==}
+ tailwindcss@4.3.1:
+ resolution: {integrity: sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==}
tapable@2.3.3:
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
@@ -5839,8 +5935,8 @@ packages:
thenify@3.3.1:
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
- thread-stream@3.1.0:
- resolution: {integrity: sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==}
+ thread-stream@3.2.0:
+ resolution: {integrity: sha512-zLBvqpwr4Esa0kRjcrzGU6zL25lePWaCLMx0RQFrmteozIfeNdaMLpG5U7PeHzvlFkAWaRKA9/KVW4F60iB+qw==}
timeout-signal@2.0.0:
resolution: {integrity: sha512-YBGpG4bWsHoPvofT6y/5iqulfXIiIErl5B0LdtHT1mGXDFTAhhRrbUpTvBgYbovr+3cKblya2WAOcpoy90XguA==}
@@ -5853,6 +5949,10 @@ packages:
resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==}
engines: {node: '>=12.0.0'}
+ tinyglobby@0.2.17:
+ resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==}
+ engines: {node: '>=12.0.0'}
+
title-case@3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
@@ -5901,11 +6001,9 @@ packages:
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- ts-log@2.2.7:
- resolution: {integrity: sha512-320x5Ggei84AxzlXp91QkIGSw5wgaLT6GeAH0KsqDmRZdVWW2OiSeVvElVoatk3f7nicwXlElXsoFkARiGE2yg==}
-
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
+ ts-log@3.0.2:
+ resolution: {integrity: sha512-esq6hx2lM66sQV1YcFkIYTqrWWabmqBqobKHyn1CswdI5FgfQhkmiKiRWVGBNlIbdjBxEIkNvMIwLKKPgRYZLQ==}
+ engines: {node: '>=20', npm: '>=10'}
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -5929,8 +6027,8 @@ packages:
typescript:
optional: true
- tsx@4.21.0:
- resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
+ tsx@4.22.4:
+ resolution: {integrity: sha512-X8EX+XV4QR5xCsrgxaED954zTDfY8KqlDtskKEL0cHhyS/P8b4IFOvGDQpsC9Q1XnLq915wEfwwY/zzskCtmhg==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -5945,11 +6043,8 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- type@2.7.3:
- resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
-
- typescript@5.9.3:
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
+ typescript@6.0.3:
+ resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -5964,8 +6059,8 @@ packages:
resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
engines: {node: '>=0.10.0'}
- undici-types@7.19.2:
- resolution: {integrity: sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==}
+ undici-types@7.24.6:
+ resolution: {integrity: sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==}
undici@7.24.4:
resolution: {integrity: sha512-BM/JzwwaRXxrLdElV2Uo6cTLEjhSb3WXboncJamZ15NgUURmvlXvxa6xkwIOILIjPNo9i8ku136ZvWV0Uly8+w==}
@@ -6013,12 +6108,6 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- upper-case-first@2.0.2:
- resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==}
-
- upper-case@2.0.2:
- resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==}
-
urlpattern-polyfill@10.1.0:
resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==}
@@ -6068,11 +6157,6 @@ packages:
'@types/react':
optional: true
- use-sync-external-store@1.6.0:
- resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
usehooks-ts@3.1.1:
resolution: {integrity: sha512-I4diPp9Cq6ieSUH2wu+fDAVQO43xwtulo+fKEidHUwZPnYImbtkTjzIJYcDcJqxgmX31GVqNFURodvcgHcW0pA==}
engines: {node: '>=16.15.0'}
@@ -6085,14 +6169,8 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- uuid@10.0.0:
- resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==}
- deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
- hasBin: true
-
- uuid@9.0.0:
- resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==}
- deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
+ uuid@13.0.2:
+ resolution: {integrity: sha512-vzi9uRZ926x4XV73S/4qQaTwPXM2JBj6/6lI/byHH1jOpCzb0zDbfytgA9LcN/hzb2l7WQSQnxITOVx5un/wGw==}
hasBin: true
uvu@0.5.6:
@@ -6131,13 +6209,9 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- wrap-ansi@6.2.0:
- resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
- engines: {node: '>=8'}
-
- wrap-ansi@7.0.0:
- resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
- engines: {node: '>=10'}
+ wrap-ansi@10.0.0:
+ resolution: {integrity: sha512-SGcvg80f0wUy2/fXES19feHMz8E0JoXv2uNgHOu4Dgi2OrCy1lqwFYEJz1BLbDI0exjPMe/ZdzZ/YpGECBG/aQ==}
+ engines: {node: '>=20'}
wrap-ansi@9.0.2:
resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
@@ -6203,13 +6277,13 @@ packages:
engines: {node: '>= 14.6'}
hasBin: true
- yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
- yargs@17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
yjs@13.6.31:
resolution: {integrity: sha512-Eq+5BRfbeGyqGVrTJL3bEcr8gKkxPuyuoHmAwpk52fDb8kOVMrfVSTRPd6yiGgX5Fskb96qCRjzjbRjrL4YEnw==}
@@ -6219,10 +6293,6 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yoctocolors-cjs@2.1.3:
- resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
- engines: {node: '>=18'}
-
yoctocolors@2.1.2:
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
engines: {node: '>=18'}
@@ -6241,73 +6311,73 @@ snapshots:
dependencies:
'@jsdevtools/ono': 7.1.3
'@types/json-schema': 7.0.15
- js-yaml: 4.1.1
+ js-yaml: 4.2.0
- '@apollo/client-integration-nextjs@0.14.5(@apollo/client@4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2))(@types/react@19.2.15)(graphql@16.14.0)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)':
+ '@apollo/client-integration-nextjs@0.14.5(@apollo/client@4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2))(@types/react@19.2.17)(graphql@16.14.2)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)':
dependencies:
- '@apollo/client': 4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)
- '@apollo/client-react-streaming': 0.14.5(@apollo/client@4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2))(@types/react@19.2.15)(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)
- next: 16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4)
- react: 19.2.6
+ '@apollo/client': 4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)
+ '@apollo/client-react-streaming': 0.14.5(@apollo/client@4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2))(@types/react@19.2.17)(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)
+ next: 16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4)
+ react: 19.2.7
rxjs: 7.8.2
transitivePeerDependencies:
- '@types/react'
- graphql
- react-dom
- '@apollo/client-react-streaming@0.14.5(@apollo/client@4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2))(@types/react@19.2.15)(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)':
+ '@apollo/client-react-streaming@0.14.5(@apollo/client@4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2))(@types/react@19.2.17)(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)':
dependencies:
- '@apollo/client': 4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@apollo/client': 4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
'@wry/equality': 0.5.7
- graphql: 16.14.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ graphql: 16.14.2
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
rxjs: 7.8.2
transitivePeerDependencies:
- '@types/react'
- '@apollo/client@4.2.0(graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0))(graphql@16.14.0)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(rxjs@7.8.2)':
+ '@apollo/client@4.2.3(graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0))(graphql@16.14.2)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(rxjs@7.8.2)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
'@wry/caches': 1.0.1
'@wry/equality': 0.5.7
'@wry/trie': 0.5.0
- graphql: 16.14.0
- graphql-tag: 2.12.6(graphql@16.14.0)
+ graphql: 16.14.2
+ graphql-tag: 2.12.6(graphql@16.14.2)
optimism: 0.18.1
rxjs: 7.8.2
tslib: 2.8.1
optionalDependencies:
- graphql-ws: 6.0.8(graphql@16.14.0)(ws@8.21.0)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ graphql-ws: 6.0.8(graphql@16.14.2)(ws@8.21.0)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- '@ardatan/relay-compiler@13.0.1(graphql@16.14.0)':
+ '@ardatan/relay-compiler@13.0.1(graphql@16.14.2)':
dependencies:
'@babel/runtime': 7.29.7
- graphql: 16.14.0
+ graphql: 16.14.2
immutable: 5.1.6
invariant: 2.2.4
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.973.9
+ '@aws-sdk/types': 3.973.12
tslib: 2.8.1
'@aws-crypto/crc32c@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.973.9
+ '@aws-sdk/types': 3.973.12
tslib: 2.8.1
'@aws-crypto/sha1-browser@5.2.0':
dependencies:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.973.9
- '@aws-sdk/util-locate-window': 3.965.5
+ '@aws-sdk/types': 3.973.12
+ '@aws-sdk/util-locate-window': 3.965.7
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -6316,15 +6386,15 @@ snapshots:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.973.9
- '@aws-sdk/util-locate-window': 3.965.5
+ '@aws-sdk/types': 3.973.12
+ '@aws-sdk/util-locate-window': 3.965.7
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.973.9
+ '@aws-sdk/types': 3.973.12
tslib: 2.8.1
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -6333,239 +6403,207 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.973.9
+ '@aws-sdk/types': 3.973.12
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
- '@aws-sdk/client-s3@3.1057.0':
+ '@aws-sdk/checksums@3.1000.5':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@aws-crypto/crc32c': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
+ tslib: 2.8.1
+
+ '@aws-sdk/client-s3@3.1068.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/credential-provider-node': 3.972.47
- '@aws-sdk/middleware-bucket-endpoint': 3.972.17
- '@aws-sdk/middleware-expect-continue': 3.972.14
- '@aws-sdk/middleware-flexible-checksums': 3.974.23
- '@aws-sdk/middleware-location-constraint': 3.972.11
- '@aws-sdk/middleware-sdk-s3': 3.972.44
- '@aws-sdk/middleware-ssec': 3.972.11
- '@aws-sdk/signature-v4-multi-region': 3.996.30
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/fetch-http-handler': 5.4.5
- '@smithy/node-http-handler': 4.7.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/credential-provider-node': 3.972.55
+ '@aws-sdk/middleware-flexible-checksums': 3.974.30
+ '@aws-sdk/middleware-sdk-s3': 3.972.51
+ '@aws-sdk/signature-v4-multi-region': 3.996.34
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/fetch-http-handler': 5.4.7
+ '@smithy/node-http-handler': 4.7.8
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/core@3.974.15':
+ '@aws-sdk/core@3.974.20':
dependencies:
- '@aws-sdk/types': 3.973.9
- '@aws-sdk/xml-builder': 3.972.26
+ '@aws-sdk/types': 3.973.12
+ '@aws-sdk/xml-builder': 3.972.29
'@aws/lambda-invoke-store': 0.2.4
- '@smithy/core': 3.24.5
- '@smithy/signature-v4': 5.4.5
- '@smithy/types': 4.14.2
+ '@smithy/core': 3.24.7
+ '@smithy/signature-v4': 5.4.7
+ '@smithy/types': 4.14.4
bowser: 2.14.1
tslib: 2.8.1
- '@aws-sdk/crc64-nvme@3.972.9':
- dependencies:
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-env@3.972.41':
+ '@aws-sdk/credential-provider-env@3.972.46':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-http@3.972.43':
+ '@aws-sdk/credential-provider-http@3.972.48':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/fetch-http-handler': 5.4.5
- '@smithy/node-http-handler': 4.7.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/fetch-http-handler': 5.4.7
+ '@smithy/node-http-handler': 4.7.8
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-ini@3.972.46':
- dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/credential-provider-env': 3.972.41
- '@aws-sdk/credential-provider-http': 3.972.43
- '@aws-sdk/credential-provider-login': 3.972.45
- '@aws-sdk/credential-provider-process': 3.972.41
- '@aws-sdk/credential-provider-sso': 3.972.45
- '@aws-sdk/credential-provider-web-identity': 3.972.45
- '@aws-sdk/nested-clients': 3.997.13
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/credential-provider-imds': 4.3.6
- '@smithy/types': 4.14.2
+ '@aws-sdk/credential-provider-ini@3.972.53':
+ dependencies:
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/credential-provider-env': 3.972.46
+ '@aws-sdk/credential-provider-http': 3.972.48
+ '@aws-sdk/credential-provider-login': 3.972.52
+ '@aws-sdk/credential-provider-process': 3.972.46
+ '@aws-sdk/credential-provider-sso': 3.972.52
+ '@aws-sdk/credential-provider-web-identity': 3.972.52
+ '@aws-sdk/nested-clients': 3.997.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/credential-provider-imds': 4.3.9
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-login@3.972.45':
+ '@aws-sdk/credential-provider-login@3.972.52':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/nested-clients': 3.997.13
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/nested-clients': 3.997.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-node@3.972.47':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.972.41
- '@aws-sdk/credential-provider-http': 3.972.43
- '@aws-sdk/credential-provider-ini': 3.972.46
- '@aws-sdk/credential-provider-process': 3.972.41
- '@aws-sdk/credential-provider-sso': 3.972.45
- '@aws-sdk/credential-provider-web-identity': 3.972.45
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/credential-provider-imds': 4.3.6
- '@smithy/types': 4.14.2
+ '@aws-sdk/credential-provider-node@3.972.55':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.972.46
+ '@aws-sdk/credential-provider-http': 3.972.48
+ '@aws-sdk/credential-provider-ini': 3.972.53
+ '@aws-sdk/credential-provider-process': 3.972.46
+ '@aws-sdk/credential-provider-sso': 3.972.52
+ '@aws-sdk/credential-provider-web-identity': 3.972.52
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/credential-provider-imds': 4.3.9
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-process@3.972.41':
+ '@aws-sdk/credential-provider-process@3.972.46':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-sso@3.972.45':
+ '@aws-sdk/credential-provider-sso@3.972.52':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/nested-clients': 3.997.13
- '@aws-sdk/token-providers': 3.1056.0
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/nested-clients': 3.997.20
+ '@aws-sdk/token-providers': 3.1066.0
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-web-identity@3.972.45':
+ '@aws-sdk/credential-provider-web-identity@3.972.52':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/nested-clients': 3.997.13
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/nested-clients': 3.997.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/lib-storage@3.1057.0(@aws-sdk/client-s3@3.1057.0)':
+ '@aws-sdk/lib-storage@3.1068.0(@aws-sdk/client-s3@3.1068.0)':
dependencies:
- '@aws-sdk/client-s3': 3.1057.0
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/client-s3': 3.1068.0
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
buffer: 5.6.0
events: 3.3.0
stream-browserify: 3.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-bucket-endpoint@3.972.17':
- dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@aws-sdk/middleware-expect-continue@3.972.14':
- dependencies:
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@aws-sdk/middleware-flexible-checksums@3.974.23':
+ '@aws-sdk/middleware-flexible-checksums@3.974.30':
dependencies:
- '@aws-crypto/crc32': 5.2.0
- '@aws-crypto/crc32c': 5.2.0
- '@aws-crypto/util': 5.2.0
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/crc64-nvme': 3.972.9
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@aws-sdk/middleware-location-constraint@3.972.11':
- dependencies:
- '@aws-sdk/types': 3.973.9
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@aws-sdk/middleware-sdk-s3@3.972.44':
- dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/signature-v4-multi-region': 3.996.30
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/checksums': 3.1000.5
tslib: 2.8.1
- '@aws-sdk/middleware-ssec@3.972.11':
+ '@aws-sdk/middleware-sdk-s3@3.972.51':
dependencies:
- '@aws-sdk/types': 3.973.9
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/signature-v4-multi-region': 3.996.34
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/nested-clients@3.997.13':
+ '@aws-sdk/nested-clients@3.997.20':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/signature-v4-multi-region': 3.996.30
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/fetch-http-handler': 5.4.5
- '@smithy/node-http-handler': 4.7.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/signature-v4-multi-region': 3.996.34
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/fetch-http-handler': 5.4.7
+ '@smithy/node-http-handler': 4.7.8
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/s3-request-presigner@3.1057.0':
+ '@aws-sdk/s3-request-presigner@3.1068.0':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/signature-v4-multi-region': 3.996.30
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/signature-v4-multi-region': 3.996.34
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/signature-v4-multi-region@3.996.30':
+ '@aws-sdk/signature-v4-multi-region@3.996.34':
dependencies:
- '@aws-sdk/types': 3.973.9
- '@smithy/signature-v4': 5.4.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/types': 3.973.12
+ '@smithy/signature-v4': 5.4.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/token-providers@3.1056.0':
+ '@aws-sdk/token-providers@3.1066.0':
dependencies:
- '@aws-sdk/core': 3.974.15
- '@aws-sdk/nested-clients': 3.997.13
- '@aws-sdk/types': 3.973.9
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@aws-sdk/core': 3.974.20
+ '@aws-sdk/nested-clients': 3.997.20
+ '@aws-sdk/types': 3.973.12
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/types@3.973.9':
+ '@aws-sdk/types@3.973.12':
dependencies:
- '@smithy/types': 4.14.2
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@aws-sdk/util-locate-window@3.965.5':
+ '@aws-sdk/util-locate-window@3.965.7':
dependencies:
tslib: 2.8.1
- '@aws-sdk/xml-builder@3.972.26':
+ '@aws-sdk/xml-builder@3.972.29':
dependencies:
- '@smithy/types': 4.14.2
+ '@smithy/types': 4.14.4
fast-xml-parser: 5.7.3
tslib: 2.8.1
@@ -6680,39 +6718,39 @@ snapshots:
'@babel/helper-string-parser': 7.29.7
'@babel/helper-validator-identifier': 7.29.7
- '@biomejs/biome@2.4.16':
+ '@biomejs/biome@2.5.0':
optionalDependencies:
- '@biomejs/cli-darwin-arm64': 2.4.16
- '@biomejs/cli-darwin-x64': 2.4.16
- '@biomejs/cli-linux-arm64': 2.4.16
- '@biomejs/cli-linux-arm64-musl': 2.4.16
- '@biomejs/cli-linux-x64': 2.4.16
- '@biomejs/cli-linux-x64-musl': 2.4.16
- '@biomejs/cli-win32-arm64': 2.4.16
- '@biomejs/cli-win32-x64': 2.4.16
+ '@biomejs/cli-darwin-arm64': 2.5.0
+ '@biomejs/cli-darwin-x64': 2.5.0
+ '@biomejs/cli-linux-arm64': 2.5.0
+ '@biomejs/cli-linux-arm64-musl': 2.5.0
+ '@biomejs/cli-linux-x64': 2.5.0
+ '@biomejs/cli-linux-x64-musl': 2.5.0
+ '@biomejs/cli-win32-arm64': 2.5.0
+ '@biomejs/cli-win32-x64': 2.5.0
- '@biomejs/cli-darwin-arm64@2.4.16':
+ '@biomejs/cli-darwin-arm64@2.5.0':
optional: true
- '@biomejs/cli-darwin-x64@2.4.16':
+ '@biomejs/cli-darwin-x64@2.5.0':
optional: true
- '@biomejs/cli-linux-arm64-musl@2.4.16':
+ '@biomejs/cli-linux-arm64-musl@2.5.0':
optional: true
- '@biomejs/cli-linux-arm64@2.4.16':
+ '@biomejs/cli-linux-arm64@2.5.0':
optional: true
- '@biomejs/cli-linux-x64-musl@2.4.16':
+ '@biomejs/cli-linux-x64-musl@2.5.0':
optional: true
- '@biomejs/cli-linux-x64@2.4.16':
+ '@biomejs/cli-linux-x64@2.5.0':
optional: true
- '@biomejs/cli-win32-arm64@2.4.16':
+ '@biomejs/cli-win32-arm64@2.5.0':
optional: true
- '@biomejs/cli-win32-x64@2.4.16':
+ '@biomejs/cli-win32-x64@2.5.0':
optional: true
'@bladl/react-hooks@1.5.2':
@@ -6721,18 +6759,18 @@ snapshots:
'@borewit/text-codec@0.2.2': {}
- '@codemirror/autocomplete@6.20.2':
+ '@codemirror/autocomplete@6.20.3':
dependencies:
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@codemirror/commands@6.10.3':
dependencies:
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@codemirror/lang-angular@0.1.4':
@@ -6751,7 +6789,7 @@ snapshots:
'@codemirror/lang-css@6.3.1':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
'@lezer/common': 1.5.2
@@ -6759,7 +6797,7 @@ snapshots:
'@codemirror/lang-go@6.0.1':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
'@lezer/common': 1.5.2
@@ -6767,12 +6805,12 @@ snapshots:
'@codemirror/lang-html@6.4.11':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/lang-css': 6.3.1
'@codemirror/lang-javascript': 6.2.5
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/css': 1.3.3
'@lezer/html': 1.3.13
@@ -6784,21 +6822,21 @@ snapshots:
'@codemirror/lang-javascript@6.2.5':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
- '@codemirror/lint': 6.9.6
+ '@codemirror/lint': 6.9.7
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/javascript': 1.5.4
'@codemirror/lang-jinja@6.0.1':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/lang-html': 6.4.11
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.10
@@ -6818,22 +6856,22 @@ snapshots:
'@codemirror/lang-liquid@6.3.2':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/lang-html': 6.4.11
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.10
'@codemirror/lang-markdown@6.5.0':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/lang-html': 6.4.11
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/markdown': 1.6.4
@@ -6847,7 +6885,7 @@ snapshots:
'@codemirror/lang-python@6.2.1':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
'@lezer/common': 1.5.2
@@ -6868,7 +6906,7 @@ snapshots:
'@codemirror/lang-sql@6.10.0':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
'@lezer/common': 1.5.2
@@ -6893,16 +6931,16 @@ snapshots:
'@codemirror/lang-xml@6.1.0':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/xml': 1.0.6
'@codemirror/lang-yaml@6.1.3':
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
'@lezer/common': 1.5.2
@@ -6939,7 +6977,7 @@ snapshots:
'@codemirror/language@6.12.3':
dependencies:
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/common': 1.5.2
'@lezer/highlight': 1.2.3
'@lezer/lr': 1.4.10
@@ -6949,118 +6987,96 @@ snapshots:
dependencies:
'@codemirror/language': 6.12.3
- '@codemirror/lint@6.9.6':
+ '@codemirror/lint@6.9.7':
dependencies:
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
crelt: 1.0.6
- '@codemirror/merge@6.12.1':
+ '@codemirror/merge@6.12.2':
dependencies:
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/highlight': 1.2.3
style-mod: 4.1.3
'@codemirror/search@6.7.0':
dependencies:
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
crelt: 1.0.6
'@codemirror/state@6.6.0':
dependencies:
'@marijn/find-cluster-break': 1.0.2
- '@codemirror/view@6.43.0':
+ '@codemirror/view@6.43.1':
dependencies:
'@codemirror/state': 6.6.0
crelt: 1.0.6
style-mod: 4.1.3
w3c-keyname: 2.2.8
- '@codesandbox/nodebox@0.1.8':
- dependencies:
- outvariant: 1.4.0
- strict-event-emitter: 0.4.6
-
- '@codesandbox/sandpack-client@2.19.8':
- dependencies:
- '@codesandbox/nodebox': 0.1.8
- buffer: 6.0.3
- dequal: 2.0.3
- mime-db: 1.54.0
- outvariant: 1.4.0
- static-browser-server: 1.0.3
-
- '@codesandbox/sandpack-react@2.20.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@codemirror/autocomplete': 6.20.2
- '@codemirror/commands': 6.10.3
- '@codemirror/lang-css': 6.3.1
- '@codemirror/lang-html': 6.4.11
- '@codemirror/lang-javascript': 6.2.5
- '@codemirror/language': 6.12.3
- '@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
- '@codesandbox/sandpack-client': 2.19.8
- '@lezer/highlight': 1.2.3
- '@react-hook/intersection-observer': 3.1.2(react@19.2.6)
- '@stitches/core': 1.2.8
- anser: 2.3.5
- clean-set: 1.1.2
- dequal: 2.0.3
- escape-carriage: 1.3.1
- lz-string: 1.5.0
- react: 19.2.6
- react-devtools-inline: 4.4.0
- react-dom: 19.2.6(react@19.2.6)
- react-is: 17.0.2
-
'@date-fns/tz@1.2.0': {}
'@discoveryjs/json-ext@0.5.7': {}
- '@dnd-kit/accessibility@3.1.1(react@19.2.6)':
+ '@dnd-kit/accessibility@3.1.1(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
tslib: 2.8.1
- '@dnd-kit/core@6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@dnd-kit/accessibility': 3.1.1(react@19.2.6)
- '@dnd-kit/utilities': 3.2.2(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@dnd-kit/accessibility': 3.1.1(react@19.2.7)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
tslib: 2.8.1
- '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)':
+ '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)':
dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@dnd-kit/utilities': 3.2.2(react@19.2.6)
- react: 19.2.6
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.7)
+ react: 19.2.7
tslib: 2.8.1
- '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)':
+ '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)':
dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@dnd-kit/utilities': 3.2.2(react@19.2.6)
- react: 19.2.6
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.7)
+ react: 19.2.7
tslib: 2.8.1
- '@dnd-kit/utilities@3.2.2(react@19.2.6)':
+ '@dnd-kit/utilities@3.2.2(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
tslib: 2.8.1
'@drizzle-team/brocli@0.10.2': {}
+ '@emnapi/core@1.10.0':
+ dependencies:
+ '@emnapi/wasi-threads': 1.2.1
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/runtime@1.10.0':
dependencies:
tslib: 2.8.1
optional: true
+ '@emnapi/runtime@1.11.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
+ '@emnapi/wasi-threads@1.2.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@emotion/babel-plugin@11.13.5':
dependencies:
'@babel/helper-module-imports': 7.29.7
@@ -7089,19 +7105,19 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/react@11.14.0(@types/react@19.2.15)(react@19.2.6)':
+ '@emotion/react@11.14.0(@types/react@19.2.17)(react@19.2.7)':
dependencies:
'@babel/runtime': 7.29.7
'@emotion/babel-plugin': 11.13.5
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.6)
+ '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.7)
'@emotion/utils': 1.4.2
'@emotion/weak-memoize': 0.4.0
hoist-non-react-statics: 3.3.2
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
transitivePeerDependencies:
- supports-color
@@ -7117,9 +7133,9 @@ snapshots:
'@emotion/unitless@0.10.0': {}
- '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.2.6)':
+ '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
'@emotion/utils@1.4.2': {}
@@ -7160,6 +7176,9 @@ snapshots:
'@esbuild/aix-ppc64@0.27.7':
optional: true
+ '@esbuild/aix-ppc64@0.28.1':
+ optional: true
+
'@esbuild/android-arm64@0.18.20':
optional: true
@@ -7169,6 +7188,9 @@ snapshots:
'@esbuild/android-arm64@0.27.7':
optional: true
+ '@esbuild/android-arm64@0.28.1':
+ optional: true
+
'@esbuild/android-arm@0.18.20':
optional: true
@@ -7178,6 +7200,9 @@ snapshots:
'@esbuild/android-arm@0.27.7':
optional: true
+ '@esbuild/android-arm@0.28.1':
+ optional: true
+
'@esbuild/android-x64@0.18.20':
optional: true
@@ -7187,6 +7212,9 @@ snapshots:
'@esbuild/android-x64@0.27.7':
optional: true
+ '@esbuild/android-x64@0.28.1':
+ optional: true
+
'@esbuild/darwin-arm64@0.18.20':
optional: true
@@ -7196,6 +7224,9 @@ snapshots:
'@esbuild/darwin-arm64@0.27.7':
optional: true
+ '@esbuild/darwin-arm64@0.28.1':
+ optional: true
+
'@esbuild/darwin-x64@0.18.20':
optional: true
@@ -7205,6 +7236,9 @@ snapshots:
'@esbuild/darwin-x64@0.27.7':
optional: true
+ '@esbuild/darwin-x64@0.28.1':
+ optional: true
+
'@esbuild/freebsd-arm64@0.18.20':
optional: true
@@ -7214,6 +7248,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.27.7':
optional: true
+ '@esbuild/freebsd-arm64@0.28.1':
+ optional: true
+
'@esbuild/freebsd-x64@0.18.20':
optional: true
@@ -7223,6 +7260,9 @@ snapshots:
'@esbuild/freebsd-x64@0.27.7':
optional: true
+ '@esbuild/freebsd-x64@0.28.1':
+ optional: true
+
'@esbuild/linux-arm64@0.18.20':
optional: true
@@ -7232,6 +7272,9 @@ snapshots:
'@esbuild/linux-arm64@0.27.7':
optional: true
+ '@esbuild/linux-arm64@0.28.1':
+ optional: true
+
'@esbuild/linux-arm@0.18.20':
optional: true
@@ -7241,6 +7284,9 @@ snapshots:
'@esbuild/linux-arm@0.27.7':
optional: true
+ '@esbuild/linux-arm@0.28.1':
+ optional: true
+
'@esbuild/linux-ia32@0.18.20':
optional: true
@@ -7250,6 +7296,9 @@ snapshots:
'@esbuild/linux-ia32@0.27.7':
optional: true
+ '@esbuild/linux-ia32@0.28.1':
+ optional: true
+
'@esbuild/linux-loong64@0.18.20':
optional: true
@@ -7259,6 +7308,9 @@ snapshots:
'@esbuild/linux-loong64@0.27.7':
optional: true
+ '@esbuild/linux-loong64@0.28.1':
+ optional: true
+
'@esbuild/linux-mips64el@0.18.20':
optional: true
@@ -7268,6 +7320,9 @@ snapshots:
'@esbuild/linux-mips64el@0.27.7':
optional: true
+ '@esbuild/linux-mips64el@0.28.1':
+ optional: true
+
'@esbuild/linux-ppc64@0.18.20':
optional: true
@@ -7277,6 +7332,9 @@ snapshots:
'@esbuild/linux-ppc64@0.27.7':
optional: true
+ '@esbuild/linux-ppc64@0.28.1':
+ optional: true
+
'@esbuild/linux-riscv64@0.18.20':
optional: true
@@ -7286,6 +7344,9 @@ snapshots:
'@esbuild/linux-riscv64@0.27.7':
optional: true
+ '@esbuild/linux-riscv64@0.28.1':
+ optional: true
+
'@esbuild/linux-s390x@0.18.20':
optional: true
@@ -7295,6 +7356,9 @@ snapshots:
'@esbuild/linux-s390x@0.27.7':
optional: true
+ '@esbuild/linux-s390x@0.28.1':
+ optional: true
+
'@esbuild/linux-x64@0.18.20':
optional: true
@@ -7304,12 +7368,18 @@ snapshots:
'@esbuild/linux-x64@0.27.7':
optional: true
+ '@esbuild/linux-x64@0.28.1':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.12':
optional: true
'@esbuild/netbsd-arm64@0.27.7':
optional: true
+ '@esbuild/netbsd-arm64@0.28.1':
+ optional: true
+
'@esbuild/netbsd-x64@0.18.20':
optional: true
@@ -7319,12 +7389,18 @@ snapshots:
'@esbuild/netbsd-x64@0.27.7':
optional: true
+ '@esbuild/netbsd-x64@0.28.1':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.12':
optional: true
'@esbuild/openbsd-arm64@0.27.7':
optional: true
+ '@esbuild/openbsd-arm64@0.28.1':
+ optional: true
+
'@esbuild/openbsd-x64@0.18.20':
optional: true
@@ -7334,12 +7410,18 @@ snapshots:
'@esbuild/openbsd-x64@0.27.7':
optional: true
+ '@esbuild/openbsd-x64@0.28.1':
+ optional: true
+
'@esbuild/openharmony-arm64@0.25.12':
optional: true
'@esbuild/openharmony-arm64@0.27.7':
optional: true
+ '@esbuild/openharmony-arm64@0.28.1':
+ optional: true
+
'@esbuild/sunos-x64@0.18.20':
optional: true
@@ -7349,6 +7431,9 @@ snapshots:
'@esbuild/sunos-x64@0.27.7':
optional: true
+ '@esbuild/sunos-x64@0.28.1':
+ optional: true
+
'@esbuild/win32-arm64@0.18.20':
optional: true
@@ -7358,6 +7443,9 @@ snapshots:
'@esbuild/win32-arm64@0.27.7':
optional: true
+ '@esbuild/win32-arm64@0.28.1':
+ optional: true
+
'@esbuild/win32-ia32@0.18.20':
optional: true
@@ -7367,6 +7455,9 @@ snapshots:
'@esbuild/win32-ia32@0.27.7':
optional: true
+ '@esbuild/win32-ia32@0.28.1':
+ optional: true
+
'@esbuild/win32-x64@0.18.20':
optional: true
@@ -7376,23 +7467,26 @@ snapshots:
'@esbuild/win32-x64@0.27.7':
optional: true
- '@faceless-ui/modal@3.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@esbuild/win32-x64@0.28.1':
+ optional: true
+
+ '@faceless-ui/modal@3.0.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
body-scroll-lock: 4.0.0-beta.0
focus-trap: 7.5.4
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-transition-group: 4.4.5(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-transition-group: 4.4.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
- '@faceless-ui/scroll-info@2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@faceless-ui/scroll-info@2.0.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- '@faceless-ui/window-info@3.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@faceless-ui/window-info@3.0.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
'@fastify/busboy@3.2.0': {}
@@ -7405,18 +7499,18 @@ snapshots:
'@floating-ui/core': 1.7.5
'@floating-ui/utils': 0.2.11
- '@floating-ui/react-dom@2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@floating-ui/react-dom@2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@floating-ui/dom': 1.7.6
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- '@floating-ui/react@0.27.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@floating-ui/react@0.27.19(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@floating-ui/react-dom': 2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@floating-ui/utils': 0.2.11
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
tabbable: 6.4.0
'@floating-ui/utils@0.2.11': {}
@@ -7433,50 +7527,50 @@ snapshots:
dependencies:
'@formatjs/fast-memoize': 3.1.5
- '@graphql-codegen/add@6.0.1(graphql@16.14.0)':
+ '@graphql-codegen/add@7.0.1(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-codegen/cli@6.2.1(@parcel/watcher@2.5.6)(@types/node@25.6.0)(graphql@16.14.0)(typescript@5.9.3)':
+ '@graphql-codegen/cli@7.1.2(@parcel/watcher@2.5.6)(@types/node@25.9.3)(graphql@16.14.2)(typescript@6.0.3)':
dependencies:
'@babel/generator': 7.29.7
'@babel/template': 7.29.7
'@babel/types': 7.29.7
- '@graphql-codegen/client-preset': 5.2.4(graphql@16.14.0)
- '@graphql-codegen/core': 5.0.2(graphql@16.14.0)
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-tools/apollo-engine-loader': 8.0.30(graphql@16.14.0)
- '@graphql-tools/code-file-loader': 8.1.32(graphql@16.14.0)
- '@graphql-tools/git-loader': 8.0.36(graphql@16.14.0)
- '@graphql-tools/github-loader': 9.1.2(@types/node@25.6.0)(graphql@16.14.0)
- '@graphql-tools/graphql-file-loader': 8.1.14(graphql@16.14.0)
- '@graphql-tools/json-file-loader': 8.0.28(graphql@16.14.0)
- '@graphql-tools/load': 8.1.10(graphql@16.14.0)
- '@graphql-tools/merge': 9.1.9(graphql@16.14.0)
- '@graphql-tools/url-loader': 9.1.2(@types/node@25.6.0)(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- '@inquirer/prompts': 7.10.1(@types/node@25.6.0)
+ '@graphql-codegen/client-preset': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/core': 6.1.0(graphql@16.14.2)
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/apollo-engine-loader': 8.0.30(graphql@16.14.2)
+ '@graphql-tools/code-file-loader': 8.1.32(graphql@16.14.2)
+ '@graphql-tools/git-loader': 8.0.36(graphql@16.14.2)
+ '@graphql-tools/github-loader': 9.1.2(@types/node@25.9.3)(graphql@16.14.2)
+ '@graphql-tools/graphql-file-loader': 8.1.14(graphql@16.14.2)
+ '@graphql-tools/json-file-loader': 8.0.28(graphql@16.14.2)
+ '@graphql-tools/load': 8.1.10(graphql@16.14.2)
+ '@graphql-tools/merge': 9.1.9(graphql@16.14.2)
+ '@graphql-tools/url-loader': 9.1.2(@types/node@25.9.3)(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@inquirer/prompts': 8.5.2(@types/node@25.9.3)
'@whatwg-node/fetch': 0.10.13
- chalk: 4.1.2
- cosmiconfig: 9.0.1(typescript@5.9.3)
- debounce: 2.2.0
- detect-indent: 6.1.0
- graphql: 16.14.0
- graphql-config: 5.1.6(@types/node@25.6.0)(graphql@16.14.0)(typescript@5.9.3)
+ chalk: 5.6.2
+ cosmiconfig: 9.0.2(typescript@6.0.3)
+ debounce: 3.0.0
+ detect-indent: 7.0.2
+ graphql: 16.14.2
+ graphql-config: 5.1.6(@types/node@25.9.3)(graphql@16.14.2)(typescript@6.0.3)
is-glob: 4.0.3
jiti: 2.7.0
json-to-pretty-yaml: 1.2.2
- listr2: 9.0.5
- log-symbols: 4.1.0
+ listr2: 10.2.1
+ log-symbols: 7.0.1
micromatch: 4.0.8
shell-quote: 1.8.4
string-env-interpolation: 1.0.1
- ts-log: 2.2.7
+ ts-log: 3.0.2
tslib: 2.8.1
yaml: 2.9.0
- yargs: 17.7.2
+ yargs: 18.0.0
optionalDependencies:
'@parcel/watcher': 2.5.6
transitivePeerDependencies:
@@ -7490,164 +7584,164 @@ snapshots:
- typescript
- utf-8-validate
- '@graphql-codegen/client-preset@5.2.4(graphql@16.14.0)':
+ '@graphql-codegen/client-preset@6.0.1(graphql@16.14.2)':
dependencies:
'@babel/helper-plugin-utils': 7.29.7
'@babel/template': 7.29.7
- '@graphql-codegen/add': 6.0.1(graphql@16.14.0)
- '@graphql-codegen/gql-tag-operations': 5.1.4(graphql@16.14.0)
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-codegen/typed-document-node': 6.1.8(graphql@16.14.0)
- '@graphql-codegen/typescript': 5.0.10(graphql@16.14.0)
- '@graphql-codegen/typescript-operations': 5.1.0(graphql@16.14.0)
- '@graphql-codegen/visitor-plugin-common': 6.3.0(graphql@16.14.0)
- '@graphql-tools/documents': 1.0.1(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.0)
- graphql: 16.14.0
- tslib: 2.6.3
-
- '@graphql-codegen/core@5.0.2(graphql@16.14.0)':
- dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-tools/schema': 10.0.33(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-codegen/add': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/gql-tag-operations': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/typed-document-node': 7.0.3(graphql@16.14.2)
+ '@graphql-codegen/typescript': 6.0.2(graphql@16.14.2)
+ '@graphql-codegen/typescript-operations': 6.0.3(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ '@graphql-tools/documents': 1.0.1(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
+
+ '@graphql-codegen/core@6.1.0(graphql@16.14.2)':
+ dependencies:
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-codegen/gql-tag-operations@5.1.4(graphql@16.14.0)':
+ '@graphql-codegen/gql-tag-operations@6.0.1(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-codegen/visitor-plugin-common': 6.3.0(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- auto-bind: 4.0.0
- graphql: 16.14.0
- tslib: 2.6.3
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ graphql: 16.14.2
+ tslib: 2.8.1
- '@graphql-codegen/introspection@5.0.1(graphql@16.14.0)':
+ '@graphql-codegen/introspection@6.0.1(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-codegen/visitor-plugin-common': 6.3.0(graphql@16.14.0)
- graphql: 16.14.0
- tslib: 2.6.3
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ graphql: 16.14.2
+ tslib: 2.8.1
- '@graphql-codegen/plugin-helpers@6.3.0(graphql@16.14.0)':
+ '@graphql-codegen/plugin-helpers@7.0.1(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- change-case-all: 1.0.15
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ change-case-all: 2.1.0
common-tags: 1.8.2
- graphql: 16.14.0
+ graphql: 16.14.2
import-from: 4.0.0
tslib: 2.8.1
- '@graphql-codegen/schema-ast@5.0.2(graphql@16.14.0)':
+ '@graphql-codegen/schema-ast@6.0.1(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-codegen/typed-document-node@6.1.8(graphql@16.14.0)':
+ '@graphql-codegen/typed-document-node@7.0.3(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-codegen/visitor-plugin-common': 6.3.0(graphql@16.14.0)
- auto-bind: 4.0.0
- change-case-all: 1.0.15
- graphql: 16.14.0
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ change-case-all: 2.1.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-codegen/typescript-operations@5.1.0(graphql@16.14.0)':
+ '@graphql-codegen/typescript-operations@6.0.3(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-codegen/typescript': 5.0.10(graphql@16.14.0)
- '@graphql-codegen/visitor-plugin-common': 6.3.0(graphql@16.14.0)
- auto-bind: 4.0.0
- graphql: 16.14.0
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/schema-ast': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-codegen/typescript@5.0.10(graphql@16.14.0)':
+ '@graphql-codegen/typescript@6.0.2(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-codegen/schema-ast': 5.0.2(graphql@16.14.0)
- '@graphql-codegen/visitor-plugin-common': 6.3.0(graphql@16.14.0)
- auto-bind: 4.0.0
- graphql: 16.14.0
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-codegen/schema-ast': 6.0.1(graphql@16.14.2)
+ '@graphql-codegen/visitor-plugin-common': 7.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-codegen/visitor-plugin-common@6.3.0(graphql@16.14.0)':
+ '@graphql-codegen/visitor-plugin-common@7.1.0(graphql@16.14.2)':
dependencies:
- '@graphql-codegen/plugin-helpers': 6.3.0(graphql@16.14.0)
- '@graphql-tools/optimize': 2.0.0(graphql@16.14.0)
- '@graphql-tools/relay-operation-optimizer': 7.1.4(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- auto-bind: 4.0.0
- change-case-all: 1.0.15
+ '@graphql-codegen/plugin-helpers': 7.0.1(graphql@16.14.2)
+ '@graphql-tools/optimize': 2.0.0(graphql@16.14.2)
+ '@graphql-tools/relay-operation-optimizer': 7.1.4(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ auto-bind: 5.0.1
+ change-case-all: 2.1.0
dependency-graph: 1.0.0
- graphql: 16.14.0
- graphql-tag: 2.12.6(graphql@16.14.0)
+ graphql: 16.14.2
+ graphql-tag: 2.12.6(graphql@16.14.2)
parse-filepath: 1.0.2
tslib: 2.8.1
'@graphql-hive/signal@2.0.0': {}
- '@graphql-tools/apollo-engine-loader@8.0.30(graphql@16.14.0)':
+ '@graphql-tools/apollo-engine-loader@8.0.30(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
'@whatwg-node/fetch': 0.10.13
- graphql: 16.14.0
+ graphql: 16.14.2
sync-fetch: 0.6.0
tslib: 2.8.1
- '@graphql-tools/batch-execute@10.0.8(graphql@16.14.0)':
+ '@graphql-tools/batch-execute@10.0.8(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
'@whatwg-node/promise-helpers': 1.3.2
dataloader: 2.2.3
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/code-file-loader@8.1.32(graphql@16.14.0)':
+ '@graphql-tools/code-file-loader@8.1.32(graphql@16.14.2)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
globby: 11.1.0
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
unixify: 1.0.0
transitivePeerDependencies:
- supports-color
- '@graphql-tools/delegate@12.0.16(graphql@16.14.0)':
+ '@graphql-tools/delegate@12.0.17(graphql@16.14.2)':
dependencies:
- '@graphql-tools/batch-execute': 10.0.8(graphql@16.14.0)
- '@graphql-tools/executor': 1.5.3(graphql@16.14.0)
- '@graphql-tools/schema': 10.0.33(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- '@repeaterjs/repeater': 3.0.6
+ '@graphql-tools/batch-execute': 10.0.8(graphql@16.14.2)
+ '@graphql-tools/executor': 1.5.3(graphql@16.14.2)
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@repeaterjs/repeater': 3.1.0
'@whatwg-node/promise-helpers': 1.3.2
dataloader: 2.2.3
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/documents@1.0.1(graphql@16.14.0)':
+ '@graphql-tools/documents@1.0.1(graphql@16.14.2)':
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
lodash.sortby: 4.7.0
- tslib: 2.6.3
+ tslib: 2.8.1
- '@graphql-tools/executor-common@1.0.6(graphql@16.14.0)':
+ '@graphql-tools/executor-common@1.0.6(graphql@16.14.2)':
dependencies:
'@envelop/core': 5.5.1
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
- '@graphql-tools/executor-graphql-ws@3.1.5(graphql@16.14.0)':
+ '@graphql-tools/executor-graphql-ws@3.1.5(graphql@16.14.2)':
dependencies:
- '@graphql-tools/executor-common': 1.0.6(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/executor-common': 1.0.6(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
'@whatwg-node/disposablestack': 0.0.6
- graphql: 16.14.0
- graphql-ws: 6.0.8(graphql@16.14.0)(ws@8.21.0)
+ graphql: 16.14.2
+ graphql-ws: 6.0.8(graphql@16.14.2)(ws@8.21.0)
isows: 1.0.7(ws@8.21.0)
tslib: 2.8.1
ws: 8.21.0
@@ -7657,26 +7751,26 @@ snapshots:
- crossws
- utf-8-validate
- '@graphql-tools/executor-http@3.3.0(@types/node@25.6.0)(graphql@16.14.0)':
+ '@graphql-tools/executor-http@3.3.0(@types/node@25.9.3)(graphql@16.14.2)':
dependencies:
'@graphql-hive/signal': 2.0.0
- '@graphql-tools/executor-common': 1.0.6(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- '@repeaterjs/repeater': 3.0.6
+ '@graphql-tools/executor-common': 1.0.6(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@repeaterjs/repeater': 3.1.0
'@whatwg-node/disposablestack': 0.0.6
'@whatwg-node/fetch': 0.10.13
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.14.0
- meros: 1.3.2(@types/node@25.6.0)
+ graphql: 16.14.2
+ meros: 1.3.2(@types/node@25.9.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@types/node'
- '@graphql-tools/executor-legacy-ws@1.1.28(graphql@16.14.0)':
+ '@graphql-tools/executor-legacy-ws@1.1.28(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
'@types/ws': 8.18.1
- graphql: 16.14.0
+ graphql: 16.14.2
isomorphic-ws: 5.0.0(ws@8.21.0)
tslib: 2.8.1
ws: 8.21.0
@@ -7684,21 +7778,21 @@ snapshots:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor@1.5.3(graphql@16.14.0)':
+ '@graphql-tools/executor@1.5.3(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.0)
- '@repeaterjs/repeater': 3.0.6
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
+ '@repeaterjs/repeater': 3.1.0
'@whatwg-node/disposablestack': 0.0.6
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/git-loader@8.0.36(graphql@16.14.0)':
+ '@graphql-tools/git-loader@8.0.36(graphql@16.14.2)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
is-glob: 4.0.3
micromatch: 4.0.8
tslib: 2.8.1
@@ -7706,101 +7800,101 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@graphql-tools/github-loader@9.1.2(@types/node@25.6.0)(graphql@16.14.0)':
+ '@graphql-tools/github-loader@9.1.2(@types/node@25.9.3)(graphql@16.14.2)':
dependencies:
- '@graphql-tools/executor-http': 3.3.0(@types/node@25.6.0)(graphql@16.14.0)
- '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/executor-http': 3.3.0(@types/node@25.9.3)(graphql@16.14.2)
+ '@graphql-tools/graphql-tag-pluck': 8.3.31(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
'@whatwg-node/fetch': 0.10.13
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.14.0
+ graphql: 16.14.2
sync-fetch: 0.6.0
tslib: 2.8.1
transitivePeerDependencies:
- '@types/node'
- supports-color
- '@graphql-tools/graphql-file-loader@8.1.14(graphql@16.14.0)':
+ '@graphql-tools/graphql-file-loader@8.1.14(graphql@16.14.2)':
dependencies:
- '@graphql-tools/import': 7.1.14(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/import': 7.1.14(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
globby: 11.1.0
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/graphql-tag-pluck@8.3.31(graphql@16.14.0)':
+ '@graphql-tools/graphql-tag-pluck@8.3.31(graphql@16.14.2)':
dependencies:
'@babel/core': 7.29.7
'@babel/parser': 7.29.7
'@babel/plugin-syntax-import-assertions': 7.29.7(@babel/core@7.29.7)
'@babel/traverse': 7.29.7
'@babel/types': 7.29.7
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
transitivePeerDependencies:
- supports-color
- '@graphql-tools/import@7.1.14(graphql@16.14.0)':
+ '@graphql-tools/import@7.1.14(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
resolve-from: 5.0.0
tslib: 2.8.1
- '@graphql-tools/json-file-loader@8.0.28(graphql@16.14.0)':
+ '@graphql-tools/json-file-loader@8.0.28(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
globby: 11.1.0
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/load@8.1.10(graphql@16.14.0)':
+ '@graphql-tools/load@8.1.10(graphql@16.14.2)':
dependencies:
- '@graphql-tools/schema': 10.0.33(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
p-limit: 3.1.0
tslib: 2.8.1
- '@graphql-tools/merge@9.1.9(graphql@16.14.0)':
+ '@graphql-tools/merge@9.1.9(graphql@16.14.2)':
dependencies:
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/optimize@2.0.0(graphql@16.14.0)':
+ '@graphql-tools/optimize@2.0.0(graphql@16.14.2)':
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/relay-operation-optimizer@7.1.4(graphql@16.14.0)':
+ '@graphql-tools/relay-operation-optimizer@7.1.4(graphql@16.14.2)':
dependencies:
- '@ardatan/relay-compiler': 13.0.1(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@ardatan/relay-compiler': 13.0.1(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/schema@10.0.33(graphql@16.14.0)':
+ '@graphql-tools/schema@10.0.33(graphql@16.14.2)':
dependencies:
- '@graphql-tools/merge': 9.1.9(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- graphql: 16.14.0
+ '@graphql-tools/merge': 9.1.9(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/url-loader@9.1.2(@types/node@25.6.0)(graphql@16.14.0)':
+ '@graphql-tools/url-loader@9.1.2(@types/node@25.9.3)(graphql@16.14.2)':
dependencies:
- '@graphql-tools/executor-graphql-ws': 3.1.5(graphql@16.14.0)
- '@graphql-tools/executor-http': 3.3.0(@types/node@25.6.0)(graphql@16.14.0)
- '@graphql-tools/executor-legacy-ws': 1.1.28(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- '@graphql-tools/wrap': 11.1.15(graphql@16.14.0)
+ '@graphql-tools/executor-graphql-ws': 3.1.5(graphql@16.14.2)
+ '@graphql-tools/executor-http': 3.3.0(@types/node@25.9.3)(graphql@16.14.2)
+ '@graphql-tools/executor-legacy-ws': 1.1.28(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ '@graphql-tools/wrap': 11.1.16(graphql@16.14.2)
'@types/ws': 8.18.1
'@whatwg-node/fetch': 0.10.13
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.14.0
+ graphql: 16.14.2
isomorphic-ws: 5.0.0(ws@8.21.0)
sync-fetch: 0.6.0
tslib: 2.8.1
@@ -7812,31 +7906,31 @@ snapshots:
- crossws
- utf-8-validate
- '@graphql-tools/utils@11.1.0(graphql@16.14.0)':
+ '@graphql-tools/utils@11.1.0(graphql@16.14.2)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.14.2)
'@whatwg-node/promise-helpers': 1.3.2
cross-inspect: 1.0.1
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-tools/wrap@11.1.15(graphql@16.14.0)':
+ '@graphql-tools/wrap@11.1.16(graphql@16.14.2)':
dependencies:
- '@graphql-tools/delegate': 12.0.16(graphql@16.14.0)
- '@graphql-tools/schema': 10.0.33(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
+ '@graphql-tools/delegate': 12.0.17(graphql@16.14.2)
+ '@graphql-tools/schema': 10.0.33(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- '@graphql-typed-document-node/core@3.2.0(graphql@16.14.0)':
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.14.2)':
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
- '@hookform/resolvers@5.4.0(react-hook-form@7.76.1(react@19.2.6))':
+ '@hookform/resolvers@5.4.0(react-hook-form@7.79.0(react@19.2.7))':
dependencies:
'@standard-schema/utils': 0.3.0
- react-hook-form: 7.76.1(react@19.2.6)
+ react-hook-form: 7.79.0(react@19.2.7)
'@img/colour@1.1.0':
optional: true
@@ -7923,7 +8017,7 @@ snapshots:
'@img/sharp-wasm32@0.34.5':
dependencies:
- '@emnapi/runtime': 1.10.0
+ '@emnapi/runtime': 1.11.1
optional: true
'@img/sharp-win32-arm64@0.34.5':
@@ -7935,130 +8029,124 @@ snapshots:
'@img/sharp-win32-x64@0.34.5':
optional: true
- '@inquirer/ansi@1.0.2': {}
+ '@inquirer/ansi@2.0.7': {}
- '@inquirer/checkbox@4.3.2(@types/node@25.6.0)':
+ '@inquirer/checkbox@5.2.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/confirm@5.1.21(@types/node@25.6.0)':
+ '@inquirer/confirm@6.1.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/core@10.3.2(@types/node@25.6.0)':
+ '@inquirer/core@11.2.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
cli-width: 4.1.0
- mute-stream: 2.0.0
+ fast-wrap-ansi: 0.2.2
+ mute-stream: 3.0.0
signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/editor@4.2.23(@types/node@25.6.0)':
+ '@inquirer/editor@5.2.2(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/external-editor': 1.0.3(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/external-editor': 3.0.3(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/expand@4.0.23(@types/node@25.6.0)':
+ '@inquirer/expand@5.1.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/external-editor@1.0.3(@types/node@25.6.0)':
+ '@inquirer/external-editor@3.0.3(@types/node@25.9.3)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/figures@1.0.15': {}
+ '@inquirer/figures@2.0.7': {}
- '@inquirer/input@4.3.1(@types/node@25.6.0)':
+ '@inquirer/input@5.1.2(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/number@3.0.23(@types/node@25.6.0)':
+ '@inquirer/number@4.1.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/password@4.0.23(@types/node@25.6.0)':
+ '@inquirer/password@5.1.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
-
- '@inquirer/prompts@7.10.1(@types/node@25.6.0)':
- dependencies:
- '@inquirer/checkbox': 4.3.2(@types/node@25.6.0)
- '@inquirer/confirm': 5.1.21(@types/node@25.6.0)
- '@inquirer/editor': 4.2.23(@types/node@25.6.0)
- '@inquirer/expand': 4.0.23(@types/node@25.6.0)
- '@inquirer/input': 4.3.1(@types/node@25.6.0)
- '@inquirer/number': 3.0.23(@types/node@25.6.0)
- '@inquirer/password': 4.0.23(@types/node@25.6.0)
- '@inquirer/rawlist': 4.1.11(@types/node@25.6.0)
- '@inquirer/search': 3.2.2(@types/node@25.6.0)
- '@inquirer/select': 4.4.2(@types/node@25.6.0)
+ '@types/node': 25.9.3
+
+ '@inquirer/prompts@8.5.2(@types/node@25.9.3)':
+ dependencies:
+ '@inquirer/checkbox': 5.2.1(@types/node@25.9.3)
+ '@inquirer/confirm': 6.1.1(@types/node@25.9.3)
+ '@inquirer/editor': 5.2.2(@types/node@25.9.3)
+ '@inquirer/expand': 5.1.1(@types/node@25.9.3)
+ '@inquirer/input': 5.1.2(@types/node@25.9.3)
+ '@inquirer/number': 4.1.1(@types/node@25.9.3)
+ '@inquirer/password': 5.1.1(@types/node@25.9.3)
+ '@inquirer/rawlist': 5.3.1(@types/node@25.9.3)
+ '@inquirer/search': 4.2.1(@types/node@25.9.3)
+ '@inquirer/select': 5.2.1(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/rawlist@4.1.11(@types/node@25.6.0)':
+ '@inquirer/rawlist@5.3.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/search@3.2.2(@types/node@25.6.0)':
+ '@inquirer/search@4.2.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/select@4.4.2(@types/node@25.6.0)':
+ '@inquirer/select@5.2.1(@types/node@25.9.3)':
dependencies:
- '@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@25.6.0)
- '@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@25.6.0)
- yoctocolors-cjs: 2.1.3
+ '@inquirer/ansi': 2.0.7
+ '@inquirer/core': 11.2.1(@types/node@25.9.3)
+ '@inquirer/figures': 2.0.7
+ '@inquirer/type': 4.0.7(@types/node@25.9.3)
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
- '@inquirer/type@3.0.10(@types/node@25.6.0)':
+ '@inquirer/type@4.0.7(@types/node@25.9.3)':
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
'@jridgewell/gen-mapping@0.3.13':
dependencies:
@@ -8089,22 +8177,29 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/clipboard@0.43.0':
+ '@lexical/clipboard@0.45.0':
dependencies:
- '@lexical/html': 0.43.0
- '@lexical/list': 0.43.0
- '@lexical/selection': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ '@lexical/html': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/list': 0.45.0
+ '@lexical/selection': 0.45.0
+ '@lexical/utils': 0.45.0
+ '@types/trusted-types': 2.0.7
+ lexical: 0.45.0
- '@lexical/code-core@0.43.0':
+ '@lexical/code-core@0.45.0':
dependencies:
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ '@lexical/html': 0.45.0
+ '@lexical/internal': 0.45.0
+ lexical: 0.45.0
- '@lexical/code-prism@0.43.0':
+ '@lexical/code-prism@0.45.0':
dependencies:
- '@lexical/code-core': 0.43.0
- lexical: 0.43.0
+ '@lexical/code-core': 0.45.0
+ '@lexical/extension': 0.45.0
+ lexical: 0.45.0
prismjs: 1.30.0
'@lexical/code@0.35.0':
@@ -8113,13 +8208,14 @@ snapshots:
lexical: 0.35.0
prismjs: 1.30.0
- '@lexical/code@0.43.0':
+ '@lexical/code@0.45.0':
dependencies:
- '@lexical/code-core': 0.43.0
- '@lexical/code-prism': 0.43.0
- lexical: 0.43.0
+ '@lexical/code-core': 0.45.0
+ '@lexical/code-prism': 0.45.0
+ '@lexical/extension': 0.45.0
+ lexical: 0.45.0
- '@lexical/devtools-core@0.35.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@lexical/devtools-core@0.35.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@lexical/html': 0.35.0
'@lexical/link': 0.35.0
@@ -8127,56 +8223,57 @@ snapshots:
'@lexical/table': 0.35.0
'@lexical/utils': 0.35.0
lexical: 0.35.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- '@lexical/devtools-core@0.43.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@lexical/devtools-core@0.45.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@lexical/html': 0.43.0
- '@lexical/link': 0.43.0
- '@lexical/mark': 0.43.0
- '@lexical/table': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@lexical/html': 0.45.0
+ '@lexical/link': 0.45.0
+ '@lexical/mark': 0.45.0
+ '@lexical/table': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
'@lexical/dragon@0.35.0':
dependencies:
lexical: 0.35.0
- '@lexical/dragon@0.43.0':
+ '@lexical/dragon@0.45.0':
dependencies:
- '@lexical/extension': 0.43.0
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ lexical: 0.45.0
- '@lexical/extension@0.43.0':
+ '@lexical/extension@0.45.0':
dependencies:
- '@lexical/utils': 0.43.0
+ '@lexical/internal': 0.45.0
+ '@lexical/utils': 0.45.0
'@preact/signals-core': 1.14.2
- lexical: 0.43.0
+ lexical: 0.45.0
'@lexical/hashtag@0.35.0':
dependencies:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/hashtag@0.43.0':
+ '@lexical/hashtag@0.45.0':
dependencies:
- '@lexical/text': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/text': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/history@0.35.0':
dependencies:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/history@0.43.0':
+ '@lexical/history@0.45.0':
dependencies:
- '@lexical/extension': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/html@0.35.0':
dependencies:
@@ -8184,22 +8281,28 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/html@0.43.0':
+ '@lexical/html@0.45.0':
dependencies:
- '@lexical/selection': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/selection': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
+
+ '@lexical/internal@0.45.0': {}
'@lexical/link@0.35.0':
dependencies:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/link@0.43.0':
+ '@lexical/link@0.45.0':
dependencies:
- '@lexical/extension': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ '@lexical/html': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/list@0.35.0':
dependencies:
@@ -8207,22 +8310,23 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/list@0.43.0':
+ '@lexical/list@0.45.0':
dependencies:
- '@lexical/extension': 0.43.0
- '@lexical/selection': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/extension': 0.45.0
+ '@lexical/html': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/mark@0.35.0':
dependencies:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/mark@0.43.0':
+ '@lexical/mark@0.45.0':
dependencies:
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/markdown@0.35.0':
dependencies:
@@ -8234,31 +8338,29 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/markdown@0.43.0':
+ '@lexical/markdown@0.45.0':
dependencies:
- '@lexical/code-core': 0.43.0
- '@lexical/link': 0.43.0
- '@lexical/list': 0.43.0
- '@lexical/rich-text': 0.43.0
- '@lexical/text': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/code-core': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/link': 0.45.0
+ '@lexical/list': 0.45.0
+ '@lexical/rich-text': 0.45.0
+ '@lexical/selection': 0.45.0
+ '@lexical/text': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/offset@0.35.0':
dependencies:
lexical: 0.35.0
- '@lexical/offset@0.43.0':
- dependencies:
- lexical: 0.43.0
-
'@lexical/overflow@0.35.0':
dependencies:
lexical: 0.35.0
- '@lexical/overflow@0.43.0':
+ '@lexical/overflow@0.45.0':
dependencies:
- lexical: 0.43.0
+ lexical: 0.45.0
'@lexical/plain-text@0.35.0':
dependencies:
@@ -8267,18 +8369,19 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/plain-text@0.43.0':
+ '@lexical/plain-text@0.45.0':
dependencies:
- '@lexical/clipboard': 0.43.0
- '@lexical/dragon': 0.43.0
- '@lexical/selection': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/clipboard': 0.45.0
+ '@lexical/dragon': 0.45.0
+ '@lexical/extension': 0.45.0
+ '@lexical/selection': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
- '@lexical/react@0.35.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(yjs@13.6.31)':
+ '@lexical/react@0.35.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(yjs@13.6.31)':
dependencies:
- '@floating-ui/react': 0.27.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@lexical/devtools-core': 0.35.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@floating-ui/react': 0.27.19(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@lexical/devtools-core': 0.35.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@lexical/dragon': 0.35.0
'@lexical/hashtag': 0.35.0
'@lexical/history': 0.35.0
@@ -8294,37 +8397,38 @@ snapshots:
'@lexical/utils': 0.35.0
'@lexical/yjs': 0.35.0(yjs@13.6.31)
lexical: 0.35.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-error-boundary: 3.1.4(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-error-boundary: 3.1.4(react@19.2.7)
transitivePeerDependencies:
- yjs
- '@lexical/react@0.43.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(yjs@13.6.31)':
- dependencies:
- '@floating-ui/react': 0.27.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@lexical/devtools-core': 0.43.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@lexical/dragon': 0.43.0
- '@lexical/extension': 0.43.0
- '@lexical/hashtag': 0.43.0
- '@lexical/history': 0.43.0
- '@lexical/link': 0.43.0
- '@lexical/list': 0.43.0
- '@lexical/mark': 0.43.0
- '@lexical/markdown': 0.43.0
- '@lexical/overflow': 0.43.0
- '@lexical/plain-text': 0.43.0
- '@lexical/rich-text': 0.43.0
- '@lexical/table': 0.43.0
- '@lexical/text': 0.43.0
- '@lexical/utils': 0.43.0
- '@lexical/yjs': 0.43.0(yjs@13.6.31)
- lexical: 0.43.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-error-boundary: 6.1.2(react@19.2.6)
- transitivePeerDependencies:
- - yjs
+ '@lexical/react@0.45.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(yjs@13.6.31)':
+ dependencies:
+ '@floating-ui/react': 0.27.19(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@lexical/devtools-core': 0.45.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@lexical/dragon': 0.45.0
+ '@lexical/extension': 0.45.0
+ '@lexical/hashtag': 0.45.0
+ '@lexical/history': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/link': 0.45.0
+ '@lexical/list': 0.45.0
+ '@lexical/mark': 0.45.0
+ '@lexical/markdown': 0.45.0
+ '@lexical/overflow': 0.45.0
+ '@lexical/plain-text': 0.45.0
+ '@lexical/rich-text': 0.45.0
+ '@lexical/table': 0.45.0
+ '@lexical/text': 0.45.0
+ '@lexical/utils': 0.45.0
+ '@lexical/yjs': 0.45.0(yjs@13.6.31)
+ lexical: 0.45.0
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-error-boundary: 6.1.2(react@19.2.7)
+ optionalDependencies:
+ yjs: 13.6.31
'@lexical/rich-text@0.35.0':
dependencies:
@@ -8333,21 +8437,24 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/rich-text@0.43.0':
+ '@lexical/rich-text@0.45.0':
dependencies:
- '@lexical/clipboard': 0.43.0
- '@lexical/dragon': 0.43.0
- '@lexical/selection': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/clipboard': 0.45.0
+ '@lexical/dragon': 0.45.0
+ '@lexical/extension': 0.45.0
+ '@lexical/html': 0.45.0
+ '@lexical/selection': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/selection@0.35.0':
dependencies:
lexical: 0.35.0
- '@lexical/selection@0.43.0':
+ '@lexical/selection@0.45.0':
dependencies:
- lexical: 0.43.0
+ '@lexical/internal': 0.45.0
+ lexical: 0.45.0
'@lexical/table@0.35.0':
dependencies:
@@ -8355,20 +8462,23 @@ snapshots:
'@lexical/utils': 0.35.0
lexical: 0.35.0
- '@lexical/table@0.43.0':
+ '@lexical/table@0.45.0':
dependencies:
- '@lexical/clipboard': 0.43.0
- '@lexical/extension': 0.43.0
- '@lexical/utils': 0.43.0
- lexical: 0.43.0
+ '@lexical/clipboard': 0.45.0
+ '@lexical/extension': 0.45.0
+ '@lexical/html': 0.45.0
+ '@lexical/internal': 0.45.0
+ '@lexical/utils': 0.45.0
+ lexical: 0.45.0
'@lexical/text@0.35.0':
dependencies:
lexical: 0.35.0
- '@lexical/text@0.43.0':
+ '@lexical/text@0.45.0':
dependencies:
- lexical: 0.43.0
+ '@lexical/internal': 0.45.0
+ lexical: 0.45.0
'@lexical/utils@0.35.0':
dependencies:
@@ -8377,10 +8487,11 @@ snapshots:
'@lexical/table': 0.35.0
lexical: 0.35.0
- '@lexical/utils@0.43.0':
+ '@lexical/utils@0.45.0':
dependencies:
- '@lexical/selection': 0.43.0
- lexical: 0.43.0
+ '@lexical/internal': 0.45.0
+ '@lexical/selection': 0.45.0
+ lexical: 0.45.0
'@lexical/yjs@0.35.0(yjs@13.6.31)':
dependencies:
@@ -8389,11 +8500,11 @@ snapshots:
lexical: 0.35.0
yjs: 13.6.31
- '@lexical/yjs@0.43.0(yjs@13.6.31)':
+ '@lexical/yjs@0.45.0(yjs@13.6.31)':
dependencies:
- '@lexical/offset': 0.43.0
- '@lexical/selection': 0.43.0
- lexical: 0.43.0
+ '@lexical/internal': 0.45.0
+ '@lexical/selection': 0.45.0
+ lexical: 0.45.0
yjs: 13.6.31
'@lezer/common@1.5.2': {}
@@ -8491,38 +8602,37 @@ snapshots:
'@marijn/find-cluster-break@1.0.2': {}
- '@mdxeditor/editor@3.55.0(@codemirror/language@6.12.3)(@lezer/highlight@1.2.3)(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(yjs@13.6.31)':
+ '@mdxeditor/editor@4.0.3(@codemirror/language@6.12.3)(@lezer/highlight@1.2.3)(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(yjs@13.6.31)':
dependencies:
'@codemirror/commands': 6.10.3
'@codemirror/lang-markdown': 6.5.0
'@codemirror/language-data': 6.5.2
- '@codemirror/merge': 6.12.1
+ '@codemirror/merge': 6.12.2
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
- '@codesandbox/sandpack-react': 2.20.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@codemirror/view': 6.43.1
'@lexical/clipboard': 0.35.0
'@lexical/link': 0.35.0
'@lexical/list': 0.35.0
'@lexical/markdown': 0.35.0
'@lexical/plain-text': 0.35.0
- '@lexical/react': 0.35.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(yjs@13.6.31)
+ '@lexical/react': 0.35.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(yjs@13.6.31)
'@lexical/rich-text': 0.35.0
'@lexical/selection': 0.35.0
'@lexical/utils': 0.35.0
- '@mdxeditor/gurx': 1.2.4(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@mdxeditor/gurx': 1.2.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/colors': 3.0.0
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-icons': 1.3.2(react@19.2.6)
- '@radix-ui/react-popover': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-select': 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-toolbar': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@radix-ui/react-dialog': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-icons': 1.3.2(react@19.2.7)
+ '@radix-ui/react-popover': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-select': 2.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-toggle-group': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-toolbar': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-tooltip': 1.2.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
classnames: 2.5.1
- cm6-theme-basic-light: 0.2.0(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.43.0)(@lezer/highlight@1.2.3)
+ cm6-theme-basic-light: 0.2.0(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.43.1)(@lezer/highlight@1.2.3)
codemirror: 6.0.2
- downshift: 7.6.2(react@19.2.6)
+ downshift: 7.6.2(react@19.2.7)
js-yaml: 4.1.1
lexical: 0.35.0
mdast-util-directive: 3.1.0
@@ -8547,9 +8657,9 @@ snapshots:
micromark-factory-space: 2.0.1
micromark-util-character: 2.1.1
micromark-util-symbol: 2.0.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-hook-form: 7.76.1(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-hook-form: 7.79.0(react@19.2.7)
unidiff: 1.0.4
transitivePeerDependencies:
- '@codemirror/language'
@@ -8559,58 +8669,65 @@ snapshots:
- supports-color
- yjs
- '@mdxeditor/gurx@1.2.4(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@mdxeditor/gurx@1.2.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
'@monaco-editor/loader@1.7.0':
dependencies:
state-local: 1.0.7
- '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@monaco-editor/loader': 1.7.0
monaco-editor: 0.55.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+
+ '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)':
+ dependencies:
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
+ '@tybys/wasm-util': 0.10.2
+ optional: true
- '@next/bundle-analyzer@16.2.6':
+ '@next/bundle-analyzer@16.2.9':
dependencies:
webpack-bundle-analyzer: 4.10.1
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@next/env@15.5.18': {}
+ '@next/env@15.5.19': {}
- '@next/env@16.2.6': {}
+ '@next/env@16.2.9': {}
- '@next/swc-darwin-arm64@16.2.6':
+ '@next/swc-darwin-arm64@16.2.9':
optional: true
- '@next/swc-darwin-x64@16.2.6':
+ '@next/swc-darwin-x64@16.2.9':
optional: true
- '@next/swc-linux-arm64-gnu@16.2.6':
+ '@next/swc-linux-arm64-gnu@16.2.9':
optional: true
- '@next/swc-linux-arm64-musl@16.2.6':
+ '@next/swc-linux-arm64-musl@16.2.9':
optional: true
- '@next/swc-linux-x64-gnu@16.2.6':
+ '@next/swc-linux-x64-gnu@16.2.9':
optional: true
- '@next/swc-linux-x64-musl@16.2.6':
+ '@next/swc-linux-x64-musl@16.2.9':
optional: true
- '@next/swc-win32-arm64-msvc@16.2.6':
+ '@next/swc-win32-arm64-msvc@16.2.9':
optional: true
- '@next/swc-win32-x64-msvc@16.2.6':
+ '@next/swc-win32-x64-msvc@16.2.9':
optional: true
- '@nodable/entities@2.1.1': {}
+ '@nodable/entities@2.2.0': {}
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -8624,7 +8741,66 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.20.1
- '@open-draft/deferred-promise@2.2.0': {}
+ '@oxc-resolver/binding-android-arm-eabi@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-android-arm64@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-arm64@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-darwin-x64@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-freebsd-x64@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-gnueabihf@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm-musleabihf@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-gnu@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-arm64-musl@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-ppc64-gnu@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-gnu@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-riscv64-musl@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-s390x-gnu@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-gnu@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-linux-x64-musl@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-openharmony-arm64@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-wasm32-wasi@11.20.0':
+ dependencies:
+ '@emnapi/core': 1.10.0
+ '@emnapi/runtime': 1.10.0
+ '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)
+ optional: true
+
+ '@oxc-resolver/binding-win32-arm64-msvc@11.20.0':
+ optional: true
+
+ '@oxc-resolver/binding-win32-x64-msvc@11.20.0':
+ optional: true
'@parcel/watcher-android-arm64@2.5.6':
optional: true
@@ -8686,18 +8862,18 @@ snapshots:
'@parcel/watcher-win32-ia32': 2.5.6
'@parcel/watcher-win32-x64': 2.5.6
- '@payloadcms/db-postgres@3.82.1(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))':
+ '@payloadcms/db-postgres@3.85.1(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))':
dependencies:
- '@payloadcms/drizzle': 3.82.1(@types/pg@8.10.2)(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(pg@8.16.3)
- '@types/pg': 8.10.2
+ '@payloadcms/drizzle': 3.85.1(@types/pg@8.20.0)(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(pg@8.20.0)
+ '@types/pg': 8.20.0
console-table-printer: 2.12.1
drizzle-kit: 0.31.7
- drizzle-orm: 0.44.7(@types/pg@8.10.2)(pg@8.16.3)
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
- pg: 8.16.3
+ drizzle-orm: 0.45.2(@types/pg@8.20.0)(pg@8.20.0)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
+ pg: 8.20.0
prompts: 2.4.2
to-snake-case: 1.0.0
- uuid: 10.0.0
+ uuid: 13.0.2
transitivePeerDependencies:
- '@aws-sdk/client-rds-data'
- '@cloudflare/workers-types'
@@ -8729,15 +8905,15 @@ snapshots:
- sqlite3
- supports-color
- '@payloadcms/drizzle@3.82.1(@types/pg@8.10.2)(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(pg@8.16.3)':
+ '@payloadcms/drizzle@3.85.1(@types/pg@8.20.0)(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(pg@8.20.0)':
dependencies:
console-table-printer: 2.12.1
dequal: 2.0.3
- drizzle-orm: 0.44.7(@types/pg@8.10.2)(pg@8.16.3)
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ drizzle-orm: 0.45.2(@types/pg@8.20.0)(pg@8.20.0)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
prompts: 2.4.2
to-snake-case: 1.0.0
- uuid: 9.0.0
+ uuid: 13.0.2
transitivePeerDependencies:
- '@aws-sdk/client-rds-data'
- '@cloudflare/workers-types'
@@ -8769,38 +8945,38 @@ snapshots:
- sql.js
- sqlite3
- '@payloadcms/graphql@3.82.1(graphql@16.14.0)(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(typescript@5.9.3)':
+ '@payloadcms/graphql@3.85.1(graphql@16.14.2)(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(typescript@6.0.3)':
dependencies:
- graphql: 16.14.0
- graphql-scalars: 1.22.2(graphql@16.14.0)
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ graphql: 16.14.2
+ graphql-scalars: 1.22.2(graphql@16.14.2)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
pluralize: 8.0.0
- ts-essentials: 10.0.3(typescript@5.9.3)
- tsx: 4.21.0
+ ts-essentials: 10.0.3(typescript@6.0.3)
+ tsx: 4.22.4
transitivePeerDependencies:
- typescript
- '@payloadcms/next@3.82.1(@types/react@19.2.15)(graphql@16.14.0)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)':
+ '@payloadcms/next@3.85.1(@types/react@19.2.17)(graphql@16.14.2)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)':
dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@dnd-kit/modifiers': 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)
- '@dnd-kit/sortable': 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)
- '@payloadcms/graphql': 3.82.1(graphql@16.14.0)(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(typescript@5.9.3)
- '@payloadcms/translations': 3.82.1
- '@payloadcms/ui': 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@dnd-kit/modifiers': 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
+ '@dnd-kit/sortable': 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
+ '@payloadcms/graphql': 3.85.1(graphql@16.14.2)(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(typescript@6.0.3)
+ '@payloadcms/translations': 3.85.1
+ '@payloadcms/ui': 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
busboy: 1.6.0
dequal: 2.0.3
file-type: 21.3.4
- graphql: 16.14.0
- graphql-http: 1.22.4(graphql@16.14.0)
+ graphql: 16.14.2
+ graphql-http: 1.22.4(graphql@16.14.2)
graphql-playground-html: 1.6.30
http-status: 2.1.0
- next: 16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4)
+ next: 16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4)
path-to-regexp: 6.3.0
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
qs-esm: 8.0.1
sass: 1.77.4
- uuid: 10.0.0
+ uuid: 13.0.2
transitivePeerDependencies:
- '@types/react'
- monaco-editor
@@ -8809,14 +8985,14 @@ snapshots:
- supports-color
- typescript
- '@payloadcms/plugin-cloud-storage@3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)':
+ '@payloadcms/plugin-cloud-storage@3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)':
dependencies:
- '@payloadcms/ui': 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
+ '@payloadcms/ui': 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
find-node-modules: 2.1.3
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
range-parser: 1.2.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- monaco-editor
@@ -8824,13 +9000,13 @@ snapshots:
- supports-color
- typescript
- '@payloadcms/plugin-search@3.82.1(@types/react@19.2.15)(graphql@16.14.0)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)':
+ '@payloadcms/plugin-search@3.85.1(@types/react@19.2.17)(graphql@16.14.2)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)':
dependencies:
- '@payloadcms/next': 3.82.1(@types/react@19.2.15)(graphql@16.14.0)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
- '@payloadcms/ui': 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@payloadcms/next': 3.85.1(@types/react@19.2.17)(graphql@16.14.2)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
+ '@payloadcms/ui': 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- graphql
@@ -8839,13 +9015,13 @@ snapshots:
- supports-color
- typescript
- '@payloadcms/plugin-seo@3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)':
+ '@payloadcms/plugin-seo@3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)':
dependencies:
- '@payloadcms/translations': 3.82.1
- '@payloadcms/ui': 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@payloadcms/translations': 3.85.1
+ '@payloadcms/ui': 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- monaco-editor
@@ -8853,13 +9029,13 @@ snapshots:
- supports-color
- typescript
- '@payloadcms/storage-s3@3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)':
+ '@payloadcms/storage-s3@3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)':
dependencies:
- '@aws-sdk/client-s3': 3.1057.0
- '@aws-sdk/lib-storage': 3.1057.0(@aws-sdk/client-s3@3.1057.0)
- '@aws-sdk/s3-request-presigner': 3.1057.0
- '@payloadcms/plugin-cloud-storage': 3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ '@aws-sdk/client-s3': 3.1068.0
+ '@aws-sdk/lib-storage': 3.1068.0(@aws-sdk/client-s3@3.1068.0)
+ '@aws-sdk/s3-request-presigner': 3.1068.0
+ '@payloadcms/plugin-cloud-storage': 3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
transitivePeerDependencies:
- '@types/react'
- monaco-editor
@@ -8869,39 +9045,39 @@ snapshots:
- supports-color
- typescript
- '@payloadcms/translations@3.82.1':
+ '@payloadcms/translations@3.85.1':
dependencies:
date-fns: 4.1.0
- '@payloadcms/ui@3.82.1(@types/react@19.2.15)(monaco-editor@0.55.1)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(payload@3.82.1(graphql@16.14.0)(typescript@5.9.3))(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(typescript@5.9.3)':
+ '@payloadcms/ui@3.85.1(@types/react@19.2.17)(monaco-editor@0.55.1)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(payload@3.85.1(graphql@16.14.2)(typescript@6.0.3))(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(typescript@6.0.3)':
dependencies:
'@date-fns/tz': 1.2.0
- '@dnd-kit/core': 6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@dnd-kit/sortable': 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6))(react@19.2.6)
- '@dnd-kit/utilities': 3.2.2(react@19.2.6)
- '@faceless-ui/modal': 3.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@faceless-ui/scroll-info': 2.0.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@faceless-ui/window-info': 3.0.1(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@monaco-editor/react': 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@payloadcms/translations': 3.82.1
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@dnd-kit/sortable': 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.7)
+ '@faceless-ui/modal': 3.0.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@faceless-ui/scroll-info': 2.0.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@faceless-ui/window-info': 3.0.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@monaco-editor/react': 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@payloadcms/translations': 3.85.1
bson-objectid: 2.0.4
date-fns: 4.1.0
dequal: 2.0.3
md5: 2.3.0
- next: 16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4)
+ next: 16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4)
object-to-formdata: 4.5.1
- payload: 3.82.1(graphql@16.14.0)(typescript@5.9.3)
+ payload: 3.85.1(graphql@16.14.2)(typescript@6.0.3)
qs-esm: 8.0.1
- react: 19.2.6
- react-datepicker: 7.6.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react-dom: 19.2.6(react@19.2.6)
- react-image-crop: 10.1.8(react@19.2.6)
- react-select: 5.9.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ react: 19.2.7
+ react-datepicker: 7.6.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react-dom: 19.2.7(react@19.2.7)
+ react-image-crop: 10.1.8(react@19.2.7)
+ react-select: 5.9.0(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
scheduler: 0.25.0
- sonner: 1.7.4(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- ts-essentials: 10.0.3(typescript@5.9.3)
- use-context-selector: 2.0.0(react@19.2.6)(scheduler@0.25.0)
- uuid: 10.0.0
+ sonner: 1.7.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ ts-essentials: 10.0.3(typescript@6.0.3)
+ use-context-selector: 2.0.0(react@19.2.7)(scheduler@0.25.0)
+ uuid: 13.0.2
transitivePeerDependencies:
- '@types/react'
- monaco-editor
@@ -8916,516 +9092,509 @@ snapshots:
'@radix-ui/colors@3.0.0': {}
- '@radix-ui/number@1.1.1': {}
+ '@radix-ui/number@1.1.2': {}
- '@radix-ui/primitive@1.1.3': {}
+ '@radix-ui/primitive@1.1.4': {}
- '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-arrow@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-avatar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/react-context': 1.1.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-avatar@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-is-hydrated': 0.1.1(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-checkbox@1.3.4(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-collection@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.2.5(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-context@1.1.2(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-compose-refs@1.1.3(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-context@1.1.3(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-context@1.1.4(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
-
- '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-dialog@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.2.5(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
aria-hidden: 1.2.6
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-remove-scroll: 2.7.2(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-direction@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-direction@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-dismissable-layer@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-escape-keydown': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-focus-guards@1.1.4(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-focus-scope@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-hover-card@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-icons@1.3.2(react@19.2.6)':
+ '@radix-ui/react-icons@1.3.2(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
- '@radix-ui/react-id@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-id@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-label@2.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-popover@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.2.5(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
aria-hidden: 1.2.6
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-remove-scroll: 2.7.2(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@floating-ui/react-dom': 2.1.8(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/rect': 1.1.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-popper@1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-arrow': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-rect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/rect': 1.1.2
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-portal@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-presence@1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-slot': 1.2.4(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-primitive@2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-slot': 1.2.4(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-slot': 1.2.5(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-progress@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-context': 1.1.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-roving-focus@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-collection': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/number': 1.1.1
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-scroll-area@1.2.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/number': 1.1.2
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/number': 1.1.1
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-select@2.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/number': 1.1.2
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-collection': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.2.5(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-visually-hidden': 1.2.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
aria-hidden: 1.2.6
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-remove-scroll: 2.7.2(@types/react@19.2.15)(react@19.2.6)
- optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-separator@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-separator@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-slot@1.2.3(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-slot@1.2.4(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-slot@1.2.4(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-slot@1.2.5(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
-
- '@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-switch@1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-toggle-group@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-roving-focus': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-toggle': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-toggle@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-toolbar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-toolbar@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-roving-focus': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-separator': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-toggle-group': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
-
- '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-tooltip@1.2.9(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.0(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.2.5(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-visually-hidden': 1.2.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-callback-ref@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-controllable-state@1.2.3(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-effect-event@0.0.3(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-escape-keydown@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-is-hydrated@0.1.1(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
- use-sync-external-store: 1.6.0(react@19.2.6)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-layout-effect@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-previous@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/rect': 1.1.1
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-use-size@1.1.1(@types/react@19.2.15)(react@19.2.6)':
+ '@radix-ui/react-use-rect@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- react: 19.2.6
+ '@radix-ui/rect': 1.1.2
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)':
+ '@radix-ui/react-use-size@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
- '@types/react-dom': 19.2.3(@types/react@19.2.15)
+ '@types/react': 19.2.17
- '@radix-ui/rect@1.1.1': {}
-
- '@react-hook/intersection-observer@3.1.2(react@19.2.6)':
+ '@radix-ui/react-visually-hidden@1.2.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@react-hook/passive-layout-effect': 1.2.1(react@19.2.6)
- intersection-observer: 0.10.0
- react: 19.2.6
+ '@radix-ui/react-primitive': 2.1.5(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ optionalDependencies:
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@react-hook/passive-layout-effect@1.2.1(react@19.2.6)':
- dependencies:
- react: 19.2.6
+ '@radix-ui/rect@1.1.2': {}
- '@repeaterjs/repeater@3.0.6': {}
+ '@repeaterjs/repeater@3.1.0': {}
'@rollup/rollup-android-arm-eabi@4.60.4':
optional: true
@@ -9508,41 +9677,41 @@ snapshots:
'@sindresorhus/merge-streams@4.0.0': {}
- '@smithy/core@3.24.5':
+ '@smithy/core@3.24.7':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.14.2
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@smithy/credential-provider-imds@4.3.6':
+ '@smithy/credential-provider-imds@4.3.9':
dependencies:
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@smithy/fetch-http-handler@5.4.5':
+ '@smithy/fetch-http-handler@5.4.7':
dependencies:
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/node-http-handler@4.7.5':
+ '@smithy/node-http-handler@4.7.8':
dependencies:
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@smithy/signature-v4@5.4.5':
+ '@smithy/signature-v4@5.4.7':
dependencies:
- '@smithy/core': 3.24.5
- '@smithy/types': 4.14.2
+ '@smithy/core': 3.24.7
+ '@smithy/types': 4.14.4
tslib: 2.8.1
- '@smithy/types@4.14.2':
+ '@smithy/types@4.14.4':
dependencies:
tslib: 2.8.1
@@ -9558,9 +9727,32 @@ snapshots:
'@standard-schema/utils@0.3.0': {}
- '@stitches/core@1.2.8': {}
+ '@swc-contrib/plugin-graphql-codegen-client-preset@0.24.0': {}
+
+ '@swc-node/core@1.14.1(@swc/core@1.15.40)(@swc/types@0.1.26)':
+ dependencies:
+ '@swc/core': 1.15.40
+ '@swc/types': 0.1.26
+
+ '@swc-node/register@1.11.1(@swc/core@1.15.40)(@swc/types@0.1.26)(typescript@6.0.3)':
+ dependencies:
+ '@swc-node/core': 1.14.1(@swc/core@1.15.40)(@swc/types@0.1.26)
+ '@swc-node/sourcemap-support': 0.6.1
+ '@swc/core': 1.15.40
+ colorette: 2.0.20
+ debug: 4.4.3
+ oxc-resolver: 11.20.0
+ pirates: 4.0.7
+ tslib: 2.8.1
+ typescript: 6.0.3
+ transitivePeerDependencies:
+ - '@swc/types'
+ - supports-color
- '@swc-contrib/plugin-graphql-codegen-client-preset@0.20.0': {}
+ '@swc-node/sourcemap-support@0.6.1':
+ dependencies:
+ source-map-support: 0.5.21
+ tslib: 2.8.1
'@swc/core-darwin-arm64@1.15.40':
optional: true
@@ -9626,79 +9818,79 @@ snapshots:
dependencies:
'@swc/counter': 0.1.3
- '@tailwindcss/node@4.3.0':
+ '@tailwindcss/node@4.3.1':
dependencies:
'@jridgewell/remapping': 2.3.5
- enhanced-resolve: 5.22.1
+ enhanced-resolve: 5.21.6
jiti: 2.7.0
lightningcss: 1.32.0
magic-string: 0.30.21
source-map-js: 1.2.1
- tailwindcss: 4.3.0
+ tailwindcss: 4.3.1
- '@tailwindcss/oxide-android-arm64@4.3.0':
+ '@tailwindcss/oxide-android-arm64@4.3.1':
optional: true
- '@tailwindcss/oxide-darwin-arm64@4.3.0':
+ '@tailwindcss/oxide-darwin-arm64@4.3.1':
optional: true
- '@tailwindcss/oxide-darwin-x64@4.3.0':
+ '@tailwindcss/oxide-darwin-x64@4.3.1':
optional: true
- '@tailwindcss/oxide-freebsd-x64@4.3.0':
+ '@tailwindcss/oxide-freebsd-x64@4.3.1':
optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.0':
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.3.1':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.3.0':
+ '@tailwindcss/oxide-linux-arm64-gnu@4.3.1':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.3.0':
+ '@tailwindcss/oxide-linux-arm64-musl@4.3.1':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.3.0':
+ '@tailwindcss/oxide-linux-x64-gnu@4.3.1':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.3.0':
+ '@tailwindcss/oxide-linux-x64-musl@4.3.1':
optional: true
- '@tailwindcss/oxide-wasm32-wasi@4.3.0':
+ '@tailwindcss/oxide-wasm32-wasi@4.3.1':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.3.0':
+ '@tailwindcss/oxide-win32-arm64-msvc@4.3.1':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.3.0':
+ '@tailwindcss/oxide-win32-x64-msvc@4.3.1':
optional: true
- '@tailwindcss/oxide@4.3.0':
+ '@tailwindcss/oxide@4.3.1':
optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.3.0
- '@tailwindcss/oxide-darwin-arm64': 4.3.0
- '@tailwindcss/oxide-darwin-x64': 4.3.0
- '@tailwindcss/oxide-freebsd-x64': 4.3.0
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.0
- '@tailwindcss/oxide-linux-arm64-gnu': 4.3.0
- '@tailwindcss/oxide-linux-arm64-musl': 4.3.0
- '@tailwindcss/oxide-linux-x64-gnu': 4.3.0
- '@tailwindcss/oxide-linux-x64-musl': 4.3.0
- '@tailwindcss/oxide-wasm32-wasi': 4.3.0
- '@tailwindcss/oxide-win32-arm64-msvc': 4.3.0
- '@tailwindcss/oxide-win32-x64-msvc': 4.3.0
-
- '@tailwindcss/postcss@4.3.0':
+ '@tailwindcss/oxide-android-arm64': 4.3.1
+ '@tailwindcss/oxide-darwin-arm64': 4.3.1
+ '@tailwindcss/oxide-darwin-x64': 4.3.1
+ '@tailwindcss/oxide-freebsd-x64': 4.3.1
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.1
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.3.1
+ '@tailwindcss/oxide-linux-arm64-musl': 4.3.1
+ '@tailwindcss/oxide-linux-x64-gnu': 4.3.1
+ '@tailwindcss/oxide-linux-x64-musl': 4.3.1
+ '@tailwindcss/oxide-wasm32-wasi': 4.3.1
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.3.1
+ '@tailwindcss/oxide-win32-x64-msvc': 4.3.1
+
+ '@tailwindcss/postcss@4.3.1':
dependencies:
'@alloc/quick-lru': 5.2.0
- '@tailwindcss/node': 4.3.0
- '@tailwindcss/oxide': 4.3.0
+ '@tailwindcss/node': 4.3.1
+ '@tailwindcss/oxide': 4.3.1
postcss: 8.5.15
- tailwindcss: 4.3.0
+ tailwindcss: 4.3.1
- '@tailwindcss/typography@0.5.19(tailwindcss@4.3.0)':
+ '@tailwindcss/typography@0.5.20(tailwindcss@4.3.1)':
dependencies:
postcss-selector-parser: 6.0.10
- tailwindcss: 4.3.0
+ tailwindcss: 4.3.1
'@tokenizer/inflate@0.4.1':
dependencies:
@@ -9709,9 +9901,14 @@ snapshots:
'@tokenizer/token@0.3.0': {}
+ '@tybys/wasm-util@0.10.2':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@types/busboy@1.5.4':
dependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
'@types/debug@4.1.13':
dependencies:
@@ -9741,32 +9938,31 @@ snapshots:
'@types/ms@2.1.0': {}
- '@types/node@25.6.0':
+ '@types/node@25.9.3':
dependencies:
- undici-types: 7.19.2
+ undici-types: 7.24.6
'@types/parse-json@4.0.2': {}
- '@types/pg@8.10.2':
+ '@types/pg@8.20.0':
dependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
pg-protocol: 1.14.0
- pg-types: 4.1.0
+ pg-types: 2.2.0
- '@types/react-dom@19.2.3(@types/react@19.2.15)':
+ '@types/react-dom@19.2.3(@types/react@19.2.17)':
dependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@types/react-transition-group@4.4.12(@types/react@19.2.15)':
+ '@types/react-transition-group@4.4.12(@types/react@19.2.17)':
dependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- '@types/react@19.2.15':
+ '@types/react@19.2.17':
dependencies:
csstype: 3.2.3
- '@types/trusted-types@2.0.7':
- optional: true
+ '@types/trusted-types@2.0.7': {}
'@types/unist@2.0.11': {}
@@ -9774,7 +9970,7 @@ snapshots:
'@types/ws@8.18.1':
dependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
'@ungap/structured-clone@1.3.1': {}
@@ -9785,10 +9981,10 @@ snapshots:
'@whatwg-node/fetch@0.10.13':
dependencies:
- '@whatwg-node/node-fetch': 0.8.5
+ '@whatwg-node/node-fetch': 0.8.6
urlpattern-polyfill: 10.1.0
- '@whatwg-node/node-fetch@0.8.5':
+ '@whatwg-node/node-fetch@0.8.6':
dependencies:
'@fastify/busboy': 3.2.0
'@whatwg-node/disposablestack': 0.0.6
@@ -9815,15 +10011,15 @@ snapshots:
dependencies:
tslib: 2.8.1
- acorn-jsx@5.3.2(acorn@8.16.0):
+ acorn-jsx@5.3.2(acorn@8.17.0):
dependencies:
- acorn: 8.16.0
+ acorn: 8.17.0
acorn-walk@8.3.5:
dependencies:
- acorn: 8.16.0
+ acorn: 8.17.0
- acorn@8.16.0: {}
+ acorn@8.17.0: {}
ajv@8.18.0:
dependencies:
@@ -9832,20 +10028,12 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- anser@2.3.5: {}
-
ansi-escapes@7.3.0:
dependencies:
environment: 1.1.0
- ansi-regex@5.0.1: {}
-
ansi-regex@6.2.2: {}
- ansi-styles@4.3.0:
- dependencies:
- color-convert: 2.0.1
-
ansi-styles@6.2.3: {}
any-promise@1.3.0: {}
@@ -9855,6 +10043,8 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.2
+ anynum@1.0.0: {}
+
argparse@2.0.1: {}
aria-hidden@1.2.6:
@@ -9865,7 +10055,7 @@ snapshots:
atomic-sleep@1.0.0: {}
- auto-bind@4.0.0: {}
+ auto-bind@5.0.1: {}
babel-plugin-macros@3.1.0:
dependencies:
@@ -9879,7 +10069,7 @@ snapshots:
base64-js@1.5.1: {}
- baseline-browser-mapping@2.10.32: {}
+ baseline-browser-mapping@2.10.37: {}
binary-extensions@2.3.0: {}
@@ -9897,10 +10087,10 @@ snapshots:
browserslist@4.28.2:
dependencies:
- baseline-browser-mapping: 2.10.32
- caniuse-lite: 1.0.30001793
- electron-to-chromium: 1.5.364
- node-releases: 2.0.46
+ baseline-browser-mapping: 2.10.37
+ caniuse-lite: 1.0.30001799
+ electron-to-chromium: 1.5.372
+ node-releases: 2.0.47
update-browserslist-db: 1.2.3(browserslist@4.28.2)
bson-objectid@2.0.4: {}
@@ -9912,11 +10102,6 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- buffer@6.0.3:
- dependencies:
- base64-js: 1.5.1
- ieee754: 1.2.1
-
bundle-require@5.1.0(esbuild@0.27.7):
dependencies:
esbuild: 0.27.7
@@ -9930,53 +10115,20 @@ snapshots:
callsites@3.1.0: {}
- camel-case@4.1.2:
- dependencies:
- pascal-case: 3.1.2
- tslib: 2.8.1
-
- caniuse-lite@1.0.30001793: {}
-
- capital-case@1.0.4:
- dependencies:
- no-case: 3.0.4
- tslib: 2.8.1
- upper-case-first: 2.0.2
+ caniuse-lite@1.0.30001799: {}
ccount@2.0.1: {}
- chalk@4.1.2:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
+ chalk@5.6.2: {}
- change-case-all@1.0.15:
+ change-case-all@2.1.0:
dependencies:
- change-case: 4.1.2
- is-lower-case: 2.0.2
- is-upper-case: 2.0.2
- lower-case: 2.0.2
- lower-case-first: 2.0.2
- sponge-case: 1.0.1
- swap-case: 2.0.2
+ change-case: 5.4.4
+ sponge-case: 2.0.3
+ swap-case: 3.0.3
title-case: 3.0.3
- upper-case: 2.0.2
- upper-case-first: 2.0.2
-
- change-case@4.1.2:
- dependencies:
- camel-case: 4.1.2
- capital-case: 1.0.4
- constant-case: 3.0.4
- dot-case: 3.0.4
- header-case: 2.0.4
- no-case: 3.0.4
- param-case: 3.0.4
- pascal-case: 3.1.2
- path-case: 3.0.4
- sentence-case: 3.0.4
- snake-case: 3.0.4
- tslib: 2.8.1
+
+ change-case@5.4.4: {}
character-entities-html4@2.1.0: {}
@@ -10014,8 +10166,6 @@ snapshots:
classnames@2.5.1: {}
- clean-set@1.1.2: {}
-
cli-cursor@5.0.0:
dependencies:
restore-cursor: 5.1.0
@@ -10042,48 +10192,42 @@ snapshots:
is64bit: 2.0.0
powershell-utils: 0.2.0
- cliui@8.0.1:
+ cliui@9.0.1:
dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
+ string-width: 7.2.0
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
clsx@2.1.1: {}
- cm6-theme-basic-light@0.2.0(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.43.0)(@lezer/highlight@1.2.3):
+ cm6-theme-basic-light@0.2.0(@codemirror/language@6.12.3)(@codemirror/state@6.6.0)(@codemirror/view@6.43.1)(@lezer/highlight@1.2.3):
dependencies:
'@codemirror/language': 6.12.3
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
+ '@codemirror/view': 6.43.1
'@lezer/highlight': 1.2.3
- cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.15)(react@19.2.6)
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.15))(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dialog': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
codemirror@6.0.2:
dependencies:
- '@codemirror/autocomplete': 6.20.2
+ '@codemirror/autocomplete': 6.20.3
'@codemirror/commands': 6.10.3
'@codemirror/language': 6.12.3
- '@codemirror/lint': 6.9.6
+ '@codemirror/lint': 6.9.7
'@codemirror/search': 6.7.0
'@codemirror/state': 6.6.0
- '@codemirror/view': 6.43.0
-
- color-convert@2.0.1:
- dependencies:
- color-name: 1.1.4
-
- color-name@1.1.4: {}
+ '@codemirror/view': 6.43.1
colorette@2.0.20: {}
@@ -10107,12 +10251,6 @@ snapshots:
dependencies:
simple-wcswidth: 1.1.2
- constant-case@3.0.4:
- dependencies:
- no-case: 3.0.4
- tslib: 2.8.1
- upper-case: 2.0.2
-
convert-source-map@1.9.0: {}
convert-source-map@2.0.0: {}
@@ -10125,27 +10263,27 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.3
- cosmiconfig@8.3.6(typescript@5.9.3):
+ cosmiconfig@8.3.6(typescript@6.0.3):
dependencies:
import-fresh: 3.3.1
- js-yaml: 4.1.1
+ js-yaml: 4.2.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
- cosmiconfig@9.0.1(typescript@5.9.3):
+ cosmiconfig@9.0.2(typescript@6.0.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
- js-yaml: 4.1.1
+ js-yaml: 4.2.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
crelt@1.0.6: {}
- croner@9.1.0: {}
+ croner@10.0.1: {}
cross-env@10.1.0:
dependencies:
@@ -10174,11 +10312,6 @@ snapshots:
csstype@3.2.3: {}
- d@1.0.2:
- dependencies:
- es5-ext: 0.10.64
- type: 2.7.3
-
data-uri-to-buffer@4.0.1: {}
dataloader@2.2.3: {}
@@ -10193,7 +10326,7 @@ snapshots:
debounce@1.2.1: {}
- debounce@2.2.0: {}
+ debounce@3.0.0: {}
debug@4.4.3:
dependencies:
@@ -10211,7 +10344,7 @@ snapshots:
detect-file@1.0.0: {}
- detect-indent@6.1.0: {}
+ detect-indent@7.0.2: {}
detect-libc@2.1.2: {}
@@ -10236,21 +10369,14 @@ snapshots:
optionalDependencies:
'@types/trusted-types': 2.0.7
- dot-case@3.0.4:
- dependencies:
- no-case: 3.0.4
- tslib: 2.8.1
-
- dotenv@16.6.1: {}
-
dotenv@17.4.2: {}
- downshift@7.6.2(react@19.2.6):
+ downshift@7.6.2(react@19.2.7):
dependencies:
'@babel/runtime': 7.29.7
compute-scroll-into-view: 2.0.4
prop-types: 15.8.1
- react: 19.2.6
+ react: 19.2.7
react-is: 17.0.2
tslib: 2.8.1
@@ -10263,24 +10389,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- drizzle-orm@0.44.7(@types/pg@8.10.2)(pg@8.16.3):
+ drizzle-orm@0.45.2(@types/pg@8.20.0)(pg@8.20.0):
optionalDependencies:
- '@types/pg': 8.10.2
- pg: 8.16.3
+ '@types/pg': 8.20.0
+ pg: 8.20.0
duplexer@0.1.2: {}
- electron-to-chromium@1.5.364: {}
+ electron-to-chromium@1.5.372: {}
embla-carousel-autoplay@8.6.0(embla-carousel@8.6.0):
dependencies:
embla-carousel: 8.6.0
- embla-carousel-react@8.6.0(react@19.2.6):
+ embla-carousel-react@8.6.0(react@19.2.7):
dependencies:
embla-carousel: 8.6.0
embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0)
- react: 19.2.6
+ react: 19.2.7
embla-carousel-reactive-utils@8.6.0(embla-carousel@8.6.0):
dependencies:
@@ -10290,13 +10416,11 @@ snapshots:
emoji-regex@10.6.0: {}
- emoji-regex@8.0.0: {}
-
end-of-stream@1.4.5:
dependencies:
once: 1.4.0
- enhanced-resolve@5.22.1:
+ enhanced-resolve@5.21.6:
dependencies:
graceful-fs: 4.2.11
tapable: 2.3.3
@@ -10311,24 +10435,6 @@ snapshots:
es-errors@1.3.0: {}
- es5-ext@0.10.64:
- dependencies:
- es6-iterator: 2.0.3
- es6-symbol: 3.1.4
- esniff: 2.0.1
- next-tick: 1.1.0
-
- es6-iterator@2.0.3:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- es6-symbol: 3.1.4
-
- es6-symbol@3.1.4:
- dependencies:
- d: 1.0.2
- ext: 1.7.0
-
esbuild-register@3.6.0(esbuild@0.25.12):
dependencies:
debug: 4.4.3
@@ -10419,21 +10525,41 @@ snapshots:
'@esbuild/win32-ia32': 0.27.7
'@esbuild/win32-x64': 0.27.7
- escalade@3.2.0: {}
+ esbuild@0.28.1:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.28.1
+ '@esbuild/android-arm': 0.28.1
+ '@esbuild/android-arm64': 0.28.1
+ '@esbuild/android-x64': 0.28.1
+ '@esbuild/darwin-arm64': 0.28.1
+ '@esbuild/darwin-x64': 0.28.1
+ '@esbuild/freebsd-arm64': 0.28.1
+ '@esbuild/freebsd-x64': 0.28.1
+ '@esbuild/linux-arm': 0.28.1
+ '@esbuild/linux-arm64': 0.28.1
+ '@esbuild/linux-ia32': 0.28.1
+ '@esbuild/linux-loong64': 0.28.1
+ '@esbuild/linux-mips64el': 0.28.1
+ '@esbuild/linux-ppc64': 0.28.1
+ '@esbuild/linux-riscv64': 0.28.1
+ '@esbuild/linux-s390x': 0.28.1
+ '@esbuild/linux-x64': 0.28.1
+ '@esbuild/netbsd-arm64': 0.28.1
+ '@esbuild/netbsd-x64': 0.28.1
+ '@esbuild/openbsd-arm64': 0.28.1
+ '@esbuild/openbsd-x64': 0.28.1
+ '@esbuild/openharmony-arm64': 0.28.1
+ '@esbuild/sunos-x64': 0.28.1
+ '@esbuild/win32-arm64': 0.28.1
+ '@esbuild/win32-ia32': 0.28.1
+ '@esbuild/win32-x64': 0.28.1
- escape-carriage@1.3.1: {}
+ escalade@3.2.0: {}
escape-string-regexp@4.0.0: {}
escape-string-regexp@5.0.0: {}
- esniff@2.0.1:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
- event-emitter: 0.3.5
- type: 2.7.3
-
estree-util-is-identifier-name@3.0.0: {}
estree-util-visit@2.0.0:
@@ -10441,11 +10567,6 @@ snapshots:
'@types/estree-jsx': 1.0.5
'@types/unist': 3.0.3
- event-emitter@0.3.5:
- dependencies:
- d: 1.0.2
- es5-ext: 0.10.64
-
eventemitter3@5.0.4: {}
events@3.3.0: {}
@@ -10481,10 +10602,6 @@ snapshots:
dependencies:
homedir-polyfill: 1.0.3
- ext@1.7.0:
- dependencies:
- type: 2.7.3
-
extend@3.0.2: {}
fast-copy@3.0.2: {}
@@ -10501,8 +10618,18 @@ snapshots:
fast-safe-stringify@2.1.1: {}
+ fast-string-truncated-width@3.0.3: {}
+
+ fast-string-width@3.0.2:
+ dependencies:
+ fast-string-truncated-width: 3.0.3
+
fast-uri@3.1.2: {}
+ fast-wrap-ansi@0.2.2:
+ dependencies:
+ fast-string-width: 3.0.2
+
fast-xml-builder@1.2.0:
dependencies:
path-expression-matcher: 1.5.0
@@ -10510,10 +10637,10 @@ snapshots:
fast-xml-parser@5.7.3:
dependencies:
- '@nodable/entities': 2.1.1
+ '@nodable/entities': 2.2.0
fast-xml-builder: 1.2.0
path-expression-matcher: 1.5.0
- strnum: 2.3.0
+ strnum: 2.4.0
fastq@1.20.1:
dependencies:
@@ -10642,16 +10769,16 @@ snapshots:
graceful-fs@4.2.11: {}
- graphql-config@5.1.6(@types/node@25.6.0)(graphql@16.14.0)(typescript@5.9.3):
+ graphql-config@5.1.6(@types/node@25.9.3)(graphql@16.14.2)(typescript@6.0.3):
dependencies:
- '@graphql-tools/graphql-file-loader': 8.1.14(graphql@16.14.0)
- '@graphql-tools/json-file-loader': 8.0.28(graphql@16.14.0)
- '@graphql-tools/load': 8.1.10(graphql@16.14.0)
- '@graphql-tools/merge': 9.1.9(graphql@16.14.0)
- '@graphql-tools/url-loader': 9.1.2(@types/node@25.6.0)(graphql@16.14.0)
- '@graphql-tools/utils': 11.1.0(graphql@16.14.0)
- cosmiconfig: 8.3.6(typescript@5.9.3)
- graphql: 16.14.0
+ '@graphql-tools/graphql-file-loader': 8.1.14(graphql@16.14.2)
+ '@graphql-tools/json-file-loader': 8.0.28(graphql@16.14.2)
+ '@graphql-tools/load': 8.1.10(graphql@16.14.2)
+ '@graphql-tools/merge': 9.1.9(graphql@16.14.2)
+ '@graphql-tools/url-loader': 9.1.2(@types/node@25.9.3)(graphql@16.14.2)
+ '@graphql-tools/utils': 11.1.0(graphql@16.14.2)
+ cosmiconfig: 8.3.6(typescript@6.0.3)
+ graphql: 16.14.2
jiti: 2.7.0
minimatch: 10.2.5
string-env-interpolation: 1.0.1
@@ -10664,38 +10791,36 @@ snapshots:
- typescript
- utf-8-validate
- graphql-http@1.22.4(graphql@16.14.0):
+ graphql-http@1.22.4(graphql@16.14.2):
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
graphql-playground-html@1.6.30:
dependencies:
xss: 1.0.15
- graphql-scalars@1.22.2(graphql@16.14.0):
+ graphql-scalars@1.22.2(graphql@16.14.2):
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- graphql-tag@2.12.6(graphql@16.14.0):
+ graphql-tag@2.12.6(graphql@16.14.2):
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
tslib: 2.8.1
- graphql-ws@6.0.8(graphql@16.14.0)(ws@8.21.0):
+ graphql-ws@6.0.8(graphql@16.14.2)(ws@8.21.0):
dependencies:
- graphql: 16.14.0
+ graphql: 16.14.2
optionalDependencies:
ws: 8.21.0
- graphql@16.14.0: {}
+ graphql@16.14.2: {}
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
- has-flag@4.0.0: {}
-
hasown@2.0.4:
dependencies:
function-bind: 1.1.2
@@ -10732,11 +10857,6 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
- header-case@2.0.4:
- dependencies:
- capital-case: 1.0.4
- tslib: 2.8.1
-
help-me@5.0.0: {}
highlight.js@11.11.1: {}
@@ -10790,8 +10910,6 @@ snapshots:
inline-style-parser@0.2.7: {}
- intersection-observer@0.10.0: {}
-
intl-messageformat@11.2.7:
dependencies:
'@formatjs/fast-memoize': 3.1.5
@@ -10833,8 +10951,6 @@ snapshots:
is-extglob@2.1.1: {}
- is-fullwidth-code-point@3.0.0: {}
-
is-fullwidth-code-point@5.1.0:
dependencies:
get-east-asian-width: 1.6.0
@@ -10849,10 +10965,6 @@ snapshots:
dependencies:
is-docker: 3.0.0
- is-lower-case@2.0.2:
- dependencies:
- tslib: 2.8.1
-
is-number@7.0.0: {}
is-plain-obj@4.1.0: {}
@@ -10871,14 +10983,8 @@ snapshots:
dependencies:
unc-path-regex: 0.1.2
- is-unicode-supported@0.1.0: {}
-
is-unicode-supported@2.1.0: {}
- is-upper-case@2.0.2:
- dependencies:
- tslib: 2.8.1
-
is-wayland@0.1.0: {}
is-windows@1.0.2: {}
@@ -10917,6 +11023,10 @@ snapshots:
dependencies:
argparse: 2.0.1
+ js-yaml@4.2.0:
+ dependencies:
+ argparse: 2.0.1
+
jsesc@3.1.0: {}
json-parse-even-better-errors@2.3.1: {}
@@ -10927,11 +11037,11 @@ snapshots:
'@types/json-schema': 7.0.15
'@types/lodash': 4.17.24
is-glob: 4.0.3
- js-yaml: 4.1.1
+ js-yaml: 4.2.0
lodash: 4.18.1
minimist: 1.2.8
- prettier: 3.8.3
- tinyglobby: 0.2.16
+ prettier: 3.8.4
+ tinyglobby: 0.2.17
json-schema-traverse@1.0.0: {}
@@ -10948,7 +11058,9 @@ snapshots:
lexical@0.35.0: {}
- lexical@0.43.0: {}
+ lexical@0.45.0:
+ dependencies:
+ '@lexical/internal': 0.45.0
lib0@0.2.117:
dependencies:
@@ -11007,14 +11119,13 @@ snapshots:
lines-and-columns@1.2.4: {}
- listr2@9.0.5:
+ listr2@10.2.1:
dependencies:
cli-truncate: 5.2.0
- colorette: 2.0.20
eventemitter3: 5.0.4
log-update: 6.1.0
rfdc: 1.4.1
- wrap-ansi: 9.0.2
+ wrap-ansi: 10.0.0
load-tsconfig@0.2.5: {}
@@ -11024,10 +11135,10 @@ snapshots:
lodash@4.18.1: {}
- log-symbols@4.1.0:
+ log-symbols@7.0.1:
dependencies:
- chalk: 4.1.2
- is-unicode-supported: 0.1.0
+ is-unicode-supported: 2.1.0
+ yoctocolors: 2.1.2
log-update@6.1.0:
dependencies:
@@ -11043,27 +11154,17 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- lower-case-first@2.0.2:
- dependencies:
- tslib: 2.8.1
-
- lower-case@2.0.2:
- dependencies:
- tslib: 2.8.1
-
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lucide-react@1.17.0(react@19.2.6):
+ lucide-react@1.18.0(react@19.2.7):
dependencies:
- react: 19.2.6
-
- lz-string@1.5.0: {}
+ react: 19.2.7
macos-version@6.0.0:
dependencies:
- semver: 7.8.1
+ semver: 7.8.4
magic-string@0.30.21:
dependencies:
@@ -11281,9 +11382,9 @@ snapshots:
merge@2.1.1: {}
- meros@1.3.2(@types/node@25.6.0):
+ meros@1.3.2(@types/node@25.9.3):
optionalDependencies:
- '@types/node': 25.6.0
+ '@types/node': 25.9.3
micromark-core-commonmark@2.0.3:
dependencies:
@@ -11430,8 +11531,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.16.0
- acorn-jsx: 5.3.2(acorn@8.16.0)
+ acorn: 8.17.0
+ acorn-jsx: 5.3.2(acorn@8.17.0)
micromark-extension-mdx-expression: 3.0.1
micromark-extension-mdx-jsx: 3.0.2
micromark-extension-mdx-md: 2.0.0
@@ -11580,8 +11681,6 @@ snapshots:
braces: 3.0.3
picomatch: 2.3.2
- mime-db@1.54.0: {}
-
mimic-fn@2.1.0: {}
mimic-function@5.0.1: {}
@@ -11594,7 +11693,7 @@ snapshots:
mlly@1.8.2:
dependencies:
- acorn: 8.16.0
+ acorn: 8.17.0
pathe: 2.0.3
pkg-types: 1.3.1
ufo: 1.6.4
@@ -11610,7 +11709,7 @@ snapshots:
ms@2.1.3: {}
- mute-stream@2.0.0: {}
+ mute-stream@3.0.0: {}
mz@2.7.0:
dependencies:
@@ -11624,29 +11723,29 @@ snapshots:
next-intl-swc-plugin-extractor@4.13.0: {}
- next-intl@4.13.0(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(react@19.2.6)(typescript@5.9.3):
+ next-intl@4.13.0(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(react@19.2.7)(typescript@6.0.3):
dependencies:
'@formatjs/intl-localematcher': 0.8.9
'@parcel/watcher': 2.5.6
'@swc/core': 1.15.40
icu-minify: 4.13.0
negotiator: 1.0.0
- next: 16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4)
+ next: 16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4)
next-intl-swc-plugin-extractor: 4.13.0
po-parser: 2.1.1
- react: 19.2.6
- use-intl: 4.13.0(react@19.2.6)
+ react: 19.2.7
+ use-intl: 4.13.0(react@19.2.7)
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- '@swc/helpers'
- next-navigation-utils@1.0.4(@swc/core@1.15.40)(jiti@2.7.0)(next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4))(postcss@8.5.15)(react@19.2.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.9.0):
+ next-navigation-utils@1.0.4(@swc/core@1.15.40)(jiti@2.7.0)(next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4))(postcss@8.5.15)(react@19.2.7)(tsx@4.22.4)(typescript@6.0.3)(yaml@2.9.0):
dependencies:
- next: 16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4)
- react: 19.2.6
- tsup: 8.5.1(@swc/core@1.15.40)(jiti@2.7.0)(postcss@8.5.15)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.9.0)
- use-debounce: 10.1.1(react@19.2.6)
+ next: 16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4)
+ react: 19.2.7
+ tsup: 8.5.1(@swc/core@1.15.40)(jiti@2.7.0)(postcss@8.5.15)(tsx@4.22.4)(typescript@6.0.3)(yaml@2.9.0)
+ use-debounce: 10.1.1(react@19.2.7)
transitivePeerDependencies:
- '@microsoft/api-extractor'
- '@swc/core'
@@ -11657,43 +11756,36 @@ snapshots:
- typescript
- yaml
- next-themes@0.4.6(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ next-themes@0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- next-tick@1.1.0: {}
-
- next@16.2.6(@babel/core@7.29.7)(react-dom@19.2.6(react@19.2.6))(react@19.2.6)(sass@1.77.4):
+ next@16.2.9(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(sass@1.77.4):
dependencies:
- '@next/env': 16.2.6
+ '@next/env': 16.2.9
'@swc/helpers': 0.5.15
- baseline-browser-mapping: 2.10.32
- caniuse-lite: 1.0.30001793
+ baseline-browser-mapping: 2.10.37
+ caniuse-lite: 1.0.30001799
postcss: 8.4.31
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- styled-jsx: 5.1.6(@babel/core@7.29.7)(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ styled-jsx: 5.1.6(@babel/core@7.29.7)(react@19.2.7)
optionalDependencies:
- '@next/swc-darwin-arm64': 16.2.6
- '@next/swc-darwin-x64': 16.2.6
- '@next/swc-linux-arm64-gnu': 16.2.6
- '@next/swc-linux-arm64-musl': 16.2.6
- '@next/swc-linux-x64-gnu': 16.2.6
- '@next/swc-linux-x64-musl': 16.2.6
- '@next/swc-win32-arm64-msvc': 16.2.6
- '@next/swc-win32-x64-msvc': 16.2.6
+ '@next/swc-darwin-arm64': 16.2.9
+ '@next/swc-darwin-x64': 16.2.9
+ '@next/swc-linux-arm64-gnu': 16.2.9
+ '@next/swc-linux-arm64-musl': 16.2.9
+ '@next/swc-linux-x64-gnu': 16.2.9
+ '@next/swc-linux-x64-musl': 16.2.9
+ '@next/swc-win32-arm64-msvc': 16.2.9
+ '@next/swc-win32-x64-msvc': 16.2.9
sass: 1.77.4
sharp: 0.34.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- no-case@3.0.4:
- dependencies:
- lower-case: 2.0.2
- tslib: 2.8.1
-
node-addon-api@7.1.1: {}
node-domexception@1.0.0: {}
@@ -11704,7 +11796,7 @@ snapshots:
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- node-releases@2.0.46: {}
+ node-releases@2.0.47: {}
normalize-path@2.1.1:
dependencies:
@@ -11725,8 +11817,6 @@ snapshots:
object-to-formdata@4.5.1: {}
- obuf@1.1.2: {}
-
on-exit-leak-free@2.1.2: {}
once@1.4.0:
@@ -11741,7 +11831,7 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- openai@6.39.1(ws@8.21.0)(zod@4.4.3):
+ openai@6.42.0(ws@8.21.0)(zod@4.4.3):
optionalDependencies:
ws: 8.21.0
zod: 4.4.3
@@ -11755,17 +11845,32 @@ snapshots:
'@wry/trie': 0.5.0
tslib: 2.8.1
- outvariant@1.4.0: {}
+ oxc-resolver@11.20.0:
+ optionalDependencies:
+ '@oxc-resolver/binding-android-arm-eabi': 11.20.0
+ '@oxc-resolver/binding-android-arm64': 11.20.0
+ '@oxc-resolver/binding-darwin-arm64': 11.20.0
+ '@oxc-resolver/binding-darwin-x64': 11.20.0
+ '@oxc-resolver/binding-freebsd-x64': 11.20.0
+ '@oxc-resolver/binding-linux-arm-gnueabihf': 11.20.0
+ '@oxc-resolver/binding-linux-arm-musleabihf': 11.20.0
+ '@oxc-resolver/binding-linux-arm64-gnu': 11.20.0
+ '@oxc-resolver/binding-linux-arm64-musl': 11.20.0
+ '@oxc-resolver/binding-linux-ppc64-gnu': 11.20.0
+ '@oxc-resolver/binding-linux-riscv64-gnu': 11.20.0
+ '@oxc-resolver/binding-linux-riscv64-musl': 11.20.0
+ '@oxc-resolver/binding-linux-s390x-gnu': 11.20.0
+ '@oxc-resolver/binding-linux-x64-gnu': 11.20.0
+ '@oxc-resolver/binding-linux-x64-musl': 11.20.0
+ '@oxc-resolver/binding-openharmony-arm64': 11.20.0
+ '@oxc-resolver/binding-wasm32-wasi': 11.20.0
+ '@oxc-resolver/binding-win32-arm64-msvc': 11.20.0
+ '@oxc-resolver/binding-win32-x64-msvc': 11.20.0
p-limit@3.1.0:
dependencies:
yocto-queue: 0.1.0
- param-case@3.0.4:
- dependencies:
- dot-case: 3.0.4
- tslib: 2.8.1
-
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
@@ -11797,16 +11902,6 @@ snapshots:
parse-passwd@1.0.0: {}
- pascal-case@3.1.2:
- dependencies:
- no-case: 3.0.4
- tslib: 2.8.1
-
- path-case@3.0.4:
- dependencies:
- dot-case: 3.0.4
- tslib: 2.8.1
-
path-expression-matcher@1.5.0: {}
path-key@3.1.1: {}
@@ -11827,22 +11922,22 @@ snapshots:
pathe@2.0.3: {}
- payload@3.82.1(graphql@16.14.0)(typescript@5.9.3):
+ payload@3.85.1(graphql@16.14.2)(typescript@6.0.3):
dependencies:
- '@next/env': 15.5.18
- '@payloadcms/translations': 3.82.1
+ '@next/env': 15.5.19
+ '@payloadcms/translations': 3.85.1
'@types/busboy': 1.5.4
ajv: 8.18.0
bson-objectid: 2.0.4
busboy: 1.6.0
ci-info: 4.4.0
console-table-printer: 2.12.1
- croner: 9.1.0
+ croner: 10.0.1
dataloader: 2.2.3
deepmerge: 4.3.1
file-type: 21.3.4
get-tsconfig: 4.8.1
- graphql: 16.14.0
+ graphql: 16.14.2
http-status: 2.1.0
image-size: 2.0.2
ipaddr.js: 2.2.0
@@ -11856,10 +11951,10 @@ snapshots:
qs-esm: 8.0.1
range-parser: 1.2.1
sanitize-filename: 1.6.3
- ts-essentials: 10.0.3(typescript@5.9.3)
- tsx: 4.21.0
+ ts-essentials: 10.0.3(typescript@6.0.3)
+ tsx: 4.22.4
undici: 7.24.4
- uuid: 10.0.0
+ uuid: 13.0.2
ws: 8.21.0
transitivePeerDependencies:
- bufferutil
@@ -11874,11 +11969,9 @@ snapshots:
pg-int8@1.0.1: {}
- pg-numeric@1.0.2: {}
-
- pg-pool@3.14.0(pg@8.16.3):
+ pg-pool@3.14.0(pg@8.20.0):
dependencies:
- pg: 8.16.3
+ pg: 8.20.0
pg-protocol@1.14.0: {}
@@ -11890,20 +11983,10 @@ snapshots:
postgres-date: 1.0.7
postgres-interval: 1.2.0
- pg-types@4.1.0:
- dependencies:
- pg-int8: 1.0.1
- pg-numeric: 1.0.2
- postgres-array: 3.0.4
- postgres-bytea: 3.0.0
- postgres-date: 2.1.0
- postgres-interval: 3.0.0
- postgres-range: 1.1.4
-
- pg@8.16.3:
+ pg@8.20.0:
dependencies:
pg-connection-string: 2.13.0
- pg-pool: 3.14.0(pg@8.16.3)
+ pg-pool: 3.14.0(pg@8.20.0)
pg-protocol: 1.14.0
pg-types: 2.2.0
pgpass: 1.0.5
@@ -11954,7 +12037,7 @@ snapshots:
real-require: 0.2.0
safe-stable-stringify: 2.5.0
sonic-boom: 4.2.1
- thread-stream: 3.1.0
+ thread-stream: 3.2.0
pirates@4.0.7: {}
@@ -11968,13 +12051,13 @@ snapshots:
po-parser@2.1.1: {}
- postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.15)(tsx@4.21.0)(yaml@2.9.0):
+ postcss-load-config@6.0.1(jiti@2.7.0)(postcss@8.5.15)(tsx@4.22.4)(yaml@2.9.0):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
jiti: 2.7.0
postcss: 8.5.15
- tsx: 4.21.0
+ tsx: 4.22.4
yaml: 2.9.0
postcss-selector-parser@6.0.10:
@@ -11996,29 +12079,17 @@ snapshots:
postgres-array@2.0.0: {}
- postgres-array@3.0.4: {}
-
postgres-bytea@1.0.1: {}
- postgres-bytea@3.0.0:
- dependencies:
- obuf: 1.1.2
-
postgres-date@1.0.7: {}
- postgres-date@2.1.0: {}
-
postgres-interval@1.2.0:
dependencies:
xtend: 4.0.2
- postgres-interval@3.0.0: {}
-
- postgres-range@1.1.4: {}
-
powershell-utils@0.2.0: {}
- prettier@3.8.3: {}
+ prettier@3.8.4: {}
pretty-ms@9.3.0:
dependencies:
@@ -12054,54 +12125,50 @@ snapshots:
range-parser@1.2.1: {}
- react-datepicker@7.6.0(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ react-datepicker@7.6.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- '@floating-ui/react': 0.27.19(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
+ '@floating-ui/react': 0.27.19(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
clsx: 2.1.1
date-fns: 3.6.0
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
-
- react-devtools-inline@4.4.0:
- dependencies:
- es6-symbol: 3.1.4
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- react-dom@19.2.6(react@19.2.6):
+ react-dom@19.2.7(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
scheduler: 0.27.0
- react-error-boundary@3.1.4(react@19.2.6):
+ react-error-boundary@3.1.4(react@19.2.7):
dependencies:
'@babel/runtime': 7.29.7
- react: 19.2.6
+ react: 19.2.7
- react-error-boundary@6.1.2(react@19.2.6):
+ react-error-boundary@6.1.2(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
- react-hook-form@7.76.1(react@19.2.6):
+ react-hook-form@7.79.0(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
- react-image-crop@10.1.8(react@19.2.6):
+ react-image-crop@10.1.8(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
react-is@16.13.1: {}
react-is@17.0.2: {}
- react-markdown@10.1.0(@types/react@19.2.15)(react@19.2.6):
+ react-markdown@10.1.0(@types/react@19.2.17)(react@19.2.7):
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.6
html-url-attributes: 3.0.1
mdast-util-to-hast: 13.2.1
- react: 19.2.6
+ react: 19.2.7
remark-parse: 11.0.0
remark-rehype: 11.1.2
unified: 11.0.5
@@ -12110,64 +12177,64 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-remove-scroll-bar@2.3.8(@types/react@19.2.15)(react@19.2.6):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.6
- react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.7
+ react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7)
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- react-remove-scroll@2.7.2(@types/react@19.2.15)(react@19.2.6):
+ react-remove-scroll@2.7.2(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.6
- react-remove-scroll-bar: 2.3.8(@types/react@19.2.15)(react@19.2.6)
- react-style-singleton: 2.2.3(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.7
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.17)(react@19.2.7)
+ react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.2.15)(react@19.2.6)
- use-sidecar: 1.1.3(@types/react@19.2.15)(react@19.2.6)
+ use-callback-ref: 1.3.3(@types/react@19.2.17)(react@19.2.7)
+ use-sidecar: 1.1.3(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- react-select@5.9.0(@types/react@19.2.15)(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ react-select@5.9.0(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
'@babel/runtime': 7.29.7
'@emotion/cache': 11.14.0
- '@emotion/react': 11.14.0(@types/react@19.2.15)(react@19.2.6)
+ '@emotion/react': 11.14.0(@types/react@19.2.17)(react@19.2.7)
'@floating-ui/dom': 1.7.6
- '@types/react-transition-group': 4.4.12(@types/react@19.2.15)
+ '@types/react-transition-group': 4.4.12(@types/react@19.2.17)
memoize-one: 6.0.0
prop-types: 15.8.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
- react-transition-group: 4.4.5(react-dom@19.2.6(react@19.2.6))(react@19.2.6)
- use-isomorphic-layout-effect: 1.2.1(@types/react@19.2.15)(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-transition-group: 4.4.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ use-isomorphic-layout-effect: 1.2.1(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- supports-color
- react-style-singleton@2.2.3(@types/react@19.2.15)(react@19.2.6):
+ react-style-singleton@2.2.3(@types/react@19.2.17)(react@19.2.7):
dependencies:
get-nonce: 1.0.1
- react: 19.2.6
+ react: 19.2.7
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- react-transition-group@4.4.5(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ react-transition-group@4.4.5(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
'@babel/runtime': 7.29.7
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
react@18.3.1:
dependencies:
loose-envify: 1.4.0
- react@19.2.6: {}
+ react@19.2.7: {}
readable-stream@3.6.2:
dependencies:
@@ -12240,8 +12307,6 @@ snapshots:
remove-trailing-spaces@1.0.9: {}
- require-directory@2.1.1: {}
-
require-from-string@2.0.2: {}
resolve-dir@1.0.1:
@@ -12343,13 +12408,13 @@ snapshots:
scheduler@0.27.0: {}
- schema-dts-lib@1.0.0(typescript@5.9.3):
+ schema-dts-lib@1.0.0(typescript@6.0.3):
dependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
- schema-dts@2.0.0(typescript@5.9.3):
+ schema-dts@2.0.0(typescript@6.0.3):
dependencies:
- schema-dts-lib: 1.0.0(typescript@5.9.3)
+ schema-dts-lib: 1.0.0(typescript@6.0.3)
transitivePeerDependencies:
- typescript
@@ -12357,19 +12422,13 @@ snapshots:
semver@6.3.1: {}
- semver@7.8.1: {}
-
- sentence-case@3.0.4:
- dependencies:
- no-case: 3.0.4
- tslib: 2.8.1
- upper-case-first: 2.0.2
+ semver@7.8.4: {}
sharp@0.34.5:
dependencies:
'@img/colour': 1.1.0
detect-libc: 2.1.2
- semver: 7.8.1
+ semver: 7.8.4
optionalDependencies:
'@img/sharp-darwin-arm64': 0.34.5
'@img/sharp-darwin-x64': 0.34.5
@@ -12431,24 +12490,19 @@ snapshots:
ansi-styles: 6.2.3
is-fullwidth-code-point: 5.1.0
- snake-case@3.0.4:
- dependencies:
- dot-case: 3.0.4
- tslib: 2.8.1
-
sonic-boom@4.2.1:
dependencies:
atomic-sleep: 1.0.0
- sonner@1.7.4(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ sonner@1.7.4(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- sonner@2.0.7(react-dom@19.2.6(react@19.2.6))(react@19.2.6):
+ sonner@2.0.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- react: 19.2.6
- react-dom: 19.2.6(react@19.2.6)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
source-map-js@1.2.1: {}
@@ -12467,19 +12521,10 @@ snapshots:
split2@4.2.0: {}
- sponge-case@1.0.1:
- dependencies:
- tslib: 2.8.1
+ sponge-case@2.0.3: {}
state-local@1.0.7: {}
- static-browser-server@1.0.3:
- dependencies:
- '@open-draft/deferred-promise': 2.2.0
- dotenv: 16.6.1
- mime-db: 1.54.0
- outvariant: 1.4.0
-
stream-browserify@3.0.0:
dependencies:
inherits: 2.0.4
@@ -12487,16 +12532,8 @@ snapshots:
streamsearch@1.1.0: {}
- strict-event-emitter@0.4.6: {}
-
string-env-interpolation@1.0.1: {}
- string-width@4.2.3:
- dependencies:
- emoji-regex: 8.0.0
- is-fullwidth-code-point: 3.0.0
- strip-ansi: 6.0.1
-
string-width@7.2.0:
dependencies:
emoji-regex: 10.6.0
@@ -12517,10 +12554,6 @@ snapshots:
character-entities-html4: 2.1.0
character-entities-legacy: 3.0.0
- strip-ansi@6.0.1:
- dependencies:
- ansi-regex: 5.0.1
-
strip-ansi@7.2.0:
dependencies:
ansi-regex: 6.2.2
@@ -12531,7 +12564,9 @@ snapshots:
strip-json-comments@5.0.3: {}
- strnum@2.3.0: {}
+ strnum@2.4.0:
+ dependencies:
+ anynum: 1.0.0
strtok3@10.3.5:
dependencies:
@@ -12547,10 +12582,10 @@ snapshots:
dependencies:
inline-style-parser: 0.2.7
- styled-jsx@5.1.6(@babel/core@7.29.7)(react@19.2.6):
+ styled-jsx@5.1.6(@babel/core@7.29.7)(react@19.2.7):
dependencies:
client-only: 0.0.1
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
'@babel/core': 7.29.7
@@ -12571,15 +12606,9 @@ snapshots:
tinyglobby: 0.2.16
ts-interface-checker: 0.1.13
- supports-color@7.2.0:
- dependencies:
- has-flag: 4.0.0
-
supports-preserve-symlinks-flag@1.0.0: {}
- swap-case@2.0.2:
- dependencies:
- tslib: 2.8.1
+ swap-case@3.0.3: {}
sync-fetch@0.6.0:
dependencies:
@@ -12593,11 +12622,11 @@ snapshots:
tailwind-merge@3.6.0: {}
- tailwindcss-animate@1.0.7(tailwindcss@4.3.0):
+ tailwindcss-animate@1.0.7(tailwindcss@4.3.1):
dependencies:
- tailwindcss: 4.3.0
+ tailwindcss: 4.3.1
- tailwindcss@4.3.0: {}
+ tailwindcss@4.3.1: {}
tapable@2.3.3: {}
@@ -12609,7 +12638,7 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thread-stream@3.1.0:
+ thread-stream@3.2.0:
dependencies:
real-require: 0.2.0
@@ -12622,6 +12651,11 @@ snapshots:
fdir: 6.5.0(picomatch@4.0.4)
picomatch: 4.0.4
+ tinyglobby@0.2.17:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
+
title-case@3.0.3:
dependencies:
tslib: 2.8.1
@@ -12658,19 +12692,17 @@ snapshots:
dependencies:
utf8-byte-length: 1.0.5
- ts-essentials@10.0.3(typescript@5.9.3):
+ ts-essentials@10.0.3(typescript@6.0.3):
optionalDependencies:
- typescript: 5.9.3
+ typescript: 6.0.3
ts-interface-checker@0.1.13: {}
- ts-log@2.2.7: {}
-
- tslib@2.6.3: {}
+ ts-log@3.0.2: {}
tslib@2.8.1: {}
- tsup@8.5.1(@swc/core@1.15.40)(jiti@2.7.0)(postcss@8.5.15)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.9.0):
+ tsup@8.5.1(@swc/core@1.15.40)(jiti@2.7.0)(postcss@8.5.15)(tsx@4.22.4)(typescript@6.0.3)(yaml@2.9.0):
dependencies:
bundle-require: 5.1.0(esbuild@0.27.7)
cac: 6.7.14
@@ -12681,7 +12713,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.15)(tsx@4.21.0)(yaml@2.9.0)
+ postcss-load-config: 6.0.1(jiti@2.7.0)(postcss@8.5.15)(tsx@4.22.4)(yaml@2.9.0)
resolve-from: 5.0.0
rollup: 4.60.4
source-map: 0.7.6
@@ -12692,17 +12724,16 @@ snapshots:
optionalDependencies:
'@swc/core': 1.15.40
postcss: 8.5.15
- typescript: 5.9.3
+ typescript: 6.0.3
transitivePeerDependencies:
- jiti
- supports-color
- tsx
- yaml
- tsx@4.21.0:
+ tsx@4.22.4:
dependencies:
- esbuild: 0.27.7
- get-tsconfig: 4.14.0
+ esbuild: 0.28.1
optionalDependencies:
fsevents: 2.3.3
@@ -12712,9 +12743,7 @@ snapshots:
type-fest@2.19.0: {}
- type@2.7.3: {}
-
- typescript@5.9.3: {}
+ typescript@6.0.3: {}
ufo@1.6.4: {}
@@ -12722,7 +12751,7 @@ snapshots:
unc-path-regex@0.1.2: {}
- undici-types@7.19.2: {}
+ undici-types@7.24.6: {}
undici@7.24.4: {}
@@ -12783,70 +12812,56 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- upper-case-first@2.0.2:
- dependencies:
- tslib: 2.8.1
-
- upper-case@2.0.2:
- dependencies:
- tslib: 2.8.1
-
urlpattern-polyfill@10.1.0: {}
- use-callback-ref@1.3.3(@types/react@19.2.15)(react@19.2.6):
+ use-callback-ref@1.3.3(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- use-context-selector@2.0.0(react@19.2.6)(scheduler@0.25.0):
+ use-context-selector@2.0.0(react@19.2.7)(scheduler@0.25.0):
dependencies:
- react: 19.2.6
+ react: 19.2.7
scheduler: 0.25.0
- use-debounce@10.1.1(react@19.2.6):
+ use-debounce@10.1.1(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
- use-intl@4.13.0(react@19.2.6):
+ use-intl@4.13.0(react@19.2.7):
dependencies:
'@formatjs/fast-memoize': 3.1.5
'@schummar/icu-type-parser': 1.21.5
icu-minify: 4.13.0
intl-messageformat: 11.2.7
- react: 19.2.6
+ react: 19.2.7
- use-isomorphic-layout-effect@1.2.1(@types/react@19.2.15)(react@19.2.6):
+ use-isomorphic-layout-effect@1.2.1(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.6
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.15
+ '@types/react': 19.2.17
- use-sidecar@1.1.3(@types/react@19.2.15)(react@19.2.6):
+ use-sidecar@1.1.3(@types/react@19.2.17)(react@19.2.7):
dependencies:
detect-node-es: 1.1.0
- react: 19.2.6
+ react: 19.2.7
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.15
-
- use-sync-external-store@1.6.0(react@19.2.6):
- dependencies:
- react: 19.2.6
+ '@types/react': 19.2.17
- usehooks-ts@3.1.1(react@19.2.6):
+ usehooks-ts@3.1.1(react@19.2.7):
dependencies:
lodash.debounce: 4.0.8
- react: 19.2.6
+ react: 19.2.7
utf8-byte-length@1.0.5: {}
util-deprecate@1.0.2: {}
- uuid@10.0.0: {}
-
- uuid@9.0.0: {}
+ uuid@13.0.2: {}
uvu@0.5.6:
dependencies:
@@ -12872,7 +12887,7 @@ snapshots:
webpack-bundle-analyzer@4.10.1:
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.16.0
+ acorn: 8.17.0
acorn-walk: 8.3.5
commander: 7.2.0
debounce: 1.2.1
@@ -12898,17 +12913,11 @@ snapshots:
dependencies:
isexe: 2.0.0
- wrap-ansi@6.2.0:
- dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
-
- wrap-ansi@7.0.0:
+ wrap-ansi@10.0.0:
dependencies:
- ansi-styles: 4.3.0
- string-width: 4.2.3
- strip-ansi: 6.0.1
+ ansi-styles: 6.2.3
+ string-width: 8.2.1
+ strip-ansi: 7.2.0
wrap-ansi@9.0.2:
dependencies:
@@ -12943,17 +12952,16 @@ snapshots:
yaml@2.9.0: {}
- yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
- yargs@17.7.2:
+ yargs@18.0.0:
dependencies:
- cliui: 8.0.1
+ cliui: 9.0.1
escalade: 3.2.0
get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
+ string-width: 7.2.0
y18n: 5.0.8
- yargs-parser: 21.1.1
+ yargs-parser: 22.0.0
yjs@13.6.31:
dependencies:
@@ -12961,8 +12969,6 @@ snapshots:
yocto-queue@0.1.0: {}
- yoctocolors-cjs@2.1.3: {}
-
yoctocolors@2.1.2: {}
zod@4.4.3: {}
diff --git a/public/favicon.svg b/public/favicon.svg
index 86dc2de..5c5835b 100644
--- a/public/favicon.svg
+++ b/public/favicon.svg
@@ -1,4 +1,5 @@