diff --git a/apps/csk/package.json b/apps/csk/package.json
index e33399e2..33fd49da 100644
--- a/apps/csk/package.json
+++ b/apps/csk/package.json
@@ -45,15 +45,15 @@
"@ai-sdk/react": "^1.1.23",
"@next/third-parties": "^16.0.3",
"@radix-ui/react-slider": "^1.3.5",
- "@uniformdev/assets": "20.7.1-alpha.120",
- "@uniformdev/canvas": "20.7.1-alpha.120",
- "@uniformdev/next-app-router": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120",
- "@uniformdev/context-gtag": "20.7.1-alpha.120",
+ "@uniformdev/assets": "20.7.1-alpha.134",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134",
+ "@uniformdev/context-gtag": "20.7.1-alpha.134",
"@uniformdev/csk-components": "*",
"@uniformdev/design-extensions-tools": "*",
- "@uniformdev/insights": "20.7.1-alpha.120",
+ "@uniformdev/insights": "20.7.1-alpha.134",
"ai": "^4.1.61",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.7.1",
@@ -79,7 +79,7 @@
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
- "@uniformdev/cli": "20.7.1-alpha.120",
+ "@uniformdev/cli": "20.7.1-alpha.134",
"@uniformdev/csk-cli": "*",
"@uniformdev/csk-recipes": "*",
"cross-env": "^10.1.0",
diff --git a/apps/csk/src/app/layout.tsx b/apps/csk/src/app/uniform/[code]/layout.tsx
similarity index 74%
rename from apps/csk/src/app/layout.tsx
rename to apps/csk/src/app/uniform/[code]/layout.tsx
index f11ecdab..e30c26eb 100644
--- a/apps/csk/src/app/layout.tsx
+++ b/apps/csk/src/app/uniform/[code]/layout.tsx
@@ -13,17 +13,27 @@ import CoffeeShopProvider from '@/providers';
import { getDir } from '@/utils/localization';
//? if (ga) {
import { GoogleAnalytics } from '@next/third-parties/google';
+import { deserializeEvaluationResult } from '@uniformdev/next-app-router-shared';
//? }
export default async function RootLayout({
children,
+ params,
}: Readonly<{
children: ReactNode;
+ params: Promise<{ code: string }>;
}>) {
- const cookieStore = await cookies();
- const locale = cookieStore.get('NEXT_LOCALE')?.value || locales?.defaultLocale;
+ const { code } = await params;
+ const pageState = deserializeEvaluationResult({
+ input: code,
+ });
return (
-
+
diff --git a/apps/csk/src/middleware.ts b/apps/csk/src/middleware.ts
index 3f581904..3b56d1b1 100644
--- a/apps/csk/src/middleware.ts
+++ b/apps/csk/src/middleware.ts
@@ -7,6 +7,7 @@ import { geolocation } from '@vercel/functions';
import { routing } from './i18n/routing';
import { DEVICE_TYPE_COOKIE_NAME, getDeviceType } from './utils/deviceType';
import { formatPath } from './utils/formatPath';
+import locales from '@/i18n/locales.json';
const intlMiddleware = createIntlMiddleware(routing);
@@ -82,9 +83,13 @@ export async function middleware(request: NextRequest) {
if (!baseResponse.ok) return baseResponse;
+ const cookieLocale = request.cookies.get('NEXT_LOCALE')?.value;
+ const locale = cookieLocale || locales.defaultLocale;
+
const response = await uniformMiddleware({
//? if (cookieConsent) {
defaultConsent: true,
+ locale,
//? }
rewriteRequestPath: async ({ url }) => ({
path: formatPath(url.pathname),
diff --git a/apps/csk/src/utils/metadata.ts b/apps/csk/src/utils/metadata.ts
index 14f06116..a518d7d4 100644
--- a/apps/csk/src/utils/metadata.ts
+++ b/apps/csk/src/utils/metadata.ts
@@ -1,5 +1,4 @@
import type { Metadata } from 'next';
-import { cookies } from 'next/headers';
import { notFound } from 'next/navigation';
import { AssetParamValue } from '@uniformdev/assets';
import { flattenValues } from '@uniformdev/canvas';
@@ -45,9 +44,9 @@ type HeaderParameters = {
* @throws Will throw an error if the route contains issues or cannot be found.
*/
export async function generateMetadata(props: UniformPageParameters): Promise {
- const result = await resolveRouteFromCode(props);
- const cookieStore = await cookies();
- const currentLocale = cookieStore.get('NEXT_LOCALE')?.value || locales.defaultLocale;
+ const { code } = await props.params;
+ const result = await resolveRouteFromCode({ code });
+ const currentLocale = result.pageState.locale!;
if (!result.route) {
notFound();
diff --git a/apps/csk/src/utils/resolveRouteFromRoutePath.ts b/apps/csk/src/utils/resolveRouteFromRoutePath.ts
index 79acc75a..facfa192 100644
--- a/apps/csk/src/utils/resolveRouteFromRoutePath.ts
+++ b/apps/csk/src/utils/resolveRouteFromRoutePath.ts
@@ -14,13 +14,12 @@ const resolveRouteFromRoutePath = async (routePath: string, isPreviewMode: boole
rules: undefined,
defaultConsent: undefined,
previewMode: undefined,
+ locale: undefined,
},
});
return await resolveRouteFromCode({
- params: Promise.resolve({
- code,
- }),
+ code,
});
};
diff --git a/package-lock.json b/package-lock.json
index 3ef3378f..04b0b39f 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -34,15 +34,15 @@
"@ai-sdk/react": "^1.1.23",
"@next/third-parties": "^16.0.3",
"@radix-ui/react-slider": "^1.3.5",
- "@uniformdev/assets": "20.7.1-alpha.120",
- "@uniformdev/canvas": "20.7.1-alpha.120",
- "@uniformdev/context-gtag": "20.7.1-alpha.120",
+ "@uniformdev/assets": "20.7.1-alpha.134",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
+ "@uniformdev/context-gtag": "20.7.1-alpha.134",
"@uniformdev/csk-components": "*",
"@uniformdev/design-extensions-tools": "*",
- "@uniformdev/insights": "20.7.1-alpha.120",
- "@uniformdev/next-app-router": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120",
+ "@uniformdev/insights": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134",
"ai": "^4.1.61",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.7.1",
@@ -68,7 +68,7 @@
"@types/node": "^24.10.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
- "@uniformdev/cli": "20.7.1-alpha.120",
+ "@uniformdev/cli": "20.7.1-alpha.134",
"@uniformdev/csk-cli": "*",
"@uniformdev/csk-recipes": "*",
"cross-env": "^10.1.0",
@@ -102,73 +102,6 @@
"undici-types": "~7.16.0"
}
},
- "apps/csk/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "apps/csk/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "apps/csk/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "apps/csk/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "license": "SEE LICENSE IN LICENSE.txt"
- },
- "apps/csk/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "apps/csk/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/@ai-sdk/openai": {
"version": "1.3.24",
"resolved": "https://registry.npmjs.org/@ai-sdk/openai/-/openai-1.3.24.tgz",
@@ -317,6 +250,7 @@
"integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@babel/code-frame": "^7.27.1",
"@babel/generator": "^7.28.5",
@@ -3659,6 +3593,13 @@
"node": ">=12"
}
},
+ "node_modules/@posthog/core": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/@posthog/core/-/core-1.3.1.tgz",
+ "integrity": "sha512-sGKVHituJ8L/bJxVV4KamMFp+IBWAZyCiYunFawJZ4cc59PCtLnKFIMEV6kn7A4eZQcQ6EKV5Via4sF3Z7qMLQ==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@radix-ui/number": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
@@ -4418,6 +4359,7 @@
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
"integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
"license": "Apache-2.0",
+ "peer": true,
"dependencies": {
"tslib": "^2.8.0"
}
@@ -4911,6 +4853,7 @@
"integrity": "sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==",
"devOptional": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"undici-types": "~7.16.0"
}
@@ -4920,6 +4863,7 @@
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.7.tgz",
"integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"csstype": "^3.2.2"
}
@@ -4930,6 +4874,7 @@
"integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
"devOptional": true,
"license": "MIT",
+ "peer": true,
"peerDependencies": {
"@types/react": "^19.2.0"
}
@@ -5028,6 +4973,7 @@
"integrity": "sha512-hM5faZwg7aVNa819m/5r7D0h0c9yC4DUlWAOvHAtISdFTc8xB86VmX5Xqabrama3wIPJ/q9RbGS1worb6JfnMg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"@typescript-eslint/scope-manager": "8.50.1",
"@typescript-eslint/types": "8.50.1",
@@ -5245,22 +5191,60 @@
"integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
"license": "ISC"
},
+ "node_modules/@uniformdev/assets": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-SZm+LxtrcePR9Dcfr+dvBJqewmLjLUpORyoZAc9Ono0RI/iakSpXW3ijSM1v87jgs6o4i14oS/4eNzcE/e74iQ==",
+ "license": "SEE LICENSE IN LICENSE.txt",
+ "dependencies": {
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7"
+ }
+ },
+ "node_modules/@uniformdev/canvas": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-hozUkSjK72diSNi8H+4oiB4zjUf3SJmeLYWNSj4EoMpWWj6a2wfO1JFOIiCqUIJPRQWWAyJpnLg2Zsm73qujBA==",
+ "license": "SEE LICENSE IN LICENSE.txt",
+ "dependencies": {
+ "@uniformdev/assets": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/richtext": "20.7.1-alpha.134+97fe4134d7",
+ "immer": "10.1.3"
+ }
+ },
+ "node_modules/@uniformdev/canvas-react": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/canvas-react/-/canvas-react-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-pbe+Zo6jDRbcsXtYNGHAUu2udggRYuEFA3cozlo/KQYfZvyxLKu3sEYtQ1j2PbUtVWjcwNNDrzkqo3fSMFhVSw==",
+ "license": "SEE LICENSE IN LICENSE.txt",
+ "dependencies": {
+ "@uniformdev/canvas": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context-react": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/richtext": "20.7.1-alpha.134+97fe4134d7"
+ },
+ "peerDependencies": {
+ "immer": ">= 10",
+ "react": ">= 16 || 17 || 18",
+ "react-dom": ">=16"
+ }
+ },
"node_modules/@uniformdev/cli": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/cli/-/cli-20.7.1-alpha.120.tgz",
- "integrity": "sha512-EW2D2ki8w0rG3lyHF7ea4ZlDt6bYKpFcdzun1bPzPsJkZzlnSyJM0+vkQwAIJ7mys0WJxJMv7l9DwduzFWFImA==",
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/cli/-/cli-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-CSCJQJDRcDndH45n0Ywwww3BQZ6279pK98u0aRVU0hKcPIC6DYavEa2pjekcvS+nu1W0cn2xrhTUZMsKeUzoRg==",
"dev": true,
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"@inquirer/prompts": "^7.10.1",
"@thi.ng/mime": "^2.2.23",
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/canvas": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/files": "20.7.1-alpha.120+5160373551",
- "@uniformdev/project-map": "20.7.1-alpha.120+5160373551",
- "@uniformdev/redirect": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
+ "@uniformdev/assets": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/canvas": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/files": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/project-map": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/redirect": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/richtext": "20.7.1-alpha.134+97fe4134d7",
"call-bind": "^1.0.2",
"colorette": "2.0.20",
"cosmiconfig": "9.0.0",
@@ -5276,20 +5260,20 @@
"image-size": "^1.2.1",
"isomorphic-git": "1.35.0",
"js-yaml": "^4.1.0",
- "jsonwebtoken": "9.0.2",
+ "jsonwebtoken": "9.0.3",
"mitt": "^3.0.1",
"normalize-newline": "^4.1.0",
"open": "10.2.0",
"ora": "8.0.1",
"p-queue": "7.3.4",
- "posthog-node": "4.11.3",
+ "posthog-node": "5.10.3",
"registry-auth-token": "^5.0.0",
"registry-url": "^6.0.0",
"slugify": "1.6.6",
"svix": "^1.71.0",
"undici": "^7.16.0",
"yargs": "^17.6.2",
- "zod": "3.23.8"
+ "zod": "3.25.76"
},
"bin": {
"uniform": "cli.js"
@@ -5720,62 +5704,6 @@
"node": ">=18"
}
},
- "node_modules/@uniformdev/cli/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "node_modules/@uniformdev/cli/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "node_modules/@uniformdev/cli/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/cli/node_modules/@uniformdev/redirect": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/redirect/-/redirect-20.7.1-alpha.120.tgz",
- "integrity": "sha512-jz/xbw/KWfza+saOLFz0FECkvvf66w+/ezoFOa0G9cezNdb25/Gi+9/OkD0OWKx2HMqFC+r9zIBo2okKK/lvww==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/cli/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt"
- },
"node_modules/@uniformdev/cli/node_modules/cosmiconfig-typescript-loader": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz",
@@ -5845,62 +5773,14 @@
"jiti": "bin/jiti.js"
}
},
- "node_modules/@uniformdev/cli/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/cli/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/cli/node_modules/zod": {
- "version": "3.23.8",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
- "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
- "dev": true,
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/colinhacks"
- }
- },
"node_modules/@uniformdev/component-starter-kit": {
"resolved": "apps/csk",
"link": true
},
- "node_modules/@uniformdev/context-gtag": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context-gtag/-/context-gtag-20.7.1-alpha.120.tgz",
- "integrity": "sha512-XxKhq6/BPGdP2dgyZd+WsUjCZ3/8zYIqK9vz9hCLJ8hWTQ1yjNfEC+F3CGXMWJtJpAwqdZ0mDQ/n5cptneY/wQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "node_modules/@uniformdev/context-gtag/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
+ "node_modules/@uniformdev/context": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-1ejfyDSi4YAoPv9n714hg/8i2qAeeoyLVfdockOI1RP4Ys9xRX+XXOD5TcMXjWLcNBozc3vgiGWynPOsHns8Dg==",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"dequal": "^2.0.2",
@@ -5910,7 +5790,31 @@
"rfdc": "^1.4.1"
}
},
- "node_modules/@uniformdev/context-gtag/node_modules/p-limit": {
+ "node_modules/@uniformdev/context-gtag": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/context-gtag/-/context-gtag-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-up6aLSROB5V2GjZdd456AAjRIGU9L5XNnMToUe9GAPH4GJoqf06178cAHiHDQuVwjowLK4CSeK7eDsRC0mDzJQ==",
+ "license": "SEE LICENSE IN LICENSE.txt",
+ "dependencies": {
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7"
+ }
+ },
+ "node_modules/@uniformdev/context-react": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/context-react/-/context-react-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-SdFGgHUox8yYUVlafkIgCnhF9vwaxjZJ9n2+h0/u5DOqT07lf5BntIEKPsY43BUCm1PS/YlE35rk7qAoaZSJQg==",
+ "license": "SEE LICENSE IN LICENSE.txt",
+ "dependencies": {
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
+ "cookie": "1.0.1",
+ "dequal": "2.0.3"
+ },
+ "peerDependencies": {
+ "react": ">=16.13.1 || 17 || 18",
+ "react-dom": ">=16.13.1"
+ }
+ },
+ "node_modules/@uniformdev/context/node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
@@ -5925,7 +5829,7 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@uniformdev/context-gtag/node_modules/yocto-queue": {
+ "node_modules/@uniformdev/context/node_modules/yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
@@ -5954,81 +5858,25 @@
"link": true
},
"node_modules/@uniformdev/files": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/files/-/files-20.7.1-alpha.120.tgz",
- "integrity": "sha512-DosPglhUaaGiHNkFWrKIn9+m1cYlqHKEErKxRBSLd8MWKnKBJnXD/ETpYVUWKAwQMQEDnWTsv54ZNrOlOyD0Sw==",
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/files/-/files-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-qiOjpLi6bV2sUI84Bb5Tqq0XjtHLXVu2FV0tCBKUjNngV0Z2wL8Oa1pC7rcRyU4FM8tjOu3hu3zYzk6Cdq30Sw==",
"dev": true,
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "node_modules/@uniformdev/files/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/files/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/files/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7"
}
},
"node_modules/@uniformdev/insights": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/insights/-/insights-20.7.1-alpha.120.tgz",
- "integrity": "sha512-q7yx2vTR0DT0h6KI9CjzGQnHxA+fodXEM6EKdLE30cGfAzA0ptIQWGz5KHTZ2kn1VI5fZSOdJ5DL0RDz8F7TfQ==",
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/insights/-/insights-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-dpFoyh9t0eRxdqAhpaR8Wyszne7PIHqAD0pK2SQuDygZ/P5Vhl9+J6OMxklYo6n4+RrqanCmr5QOsp6wORG/Lg==",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
"p-limit": "3.1.0"
}
},
- "node_modules/@uniformdev/insights/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
"node_modules/@uniformdev/insights/node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
@@ -6074,17 +5922,17 @@
}
},
"node_modules/@uniformdev/next-app-router": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/next-app-router/-/next-app-router-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qMUfmtBVguDrh+e1UbZ6KJshWMCgaU9ifb0s4tl34YcqLceP9w6oiXkezsY6TR0FJ0mUl0/BgV1SrY6ukNfzgg==",
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/next-app-router/-/next-app-router-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-exij28WB/cW+wEccyzzR++X1fNj435o1ZCVaj48w+Rq8aviNu/dzmiiQAwdeHzN7H0AGwkkPnTskizEQhjWrhg==",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "@uniformdev/canvas-react": "20.7.1-alpha.120+5160373551",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120+5160373551",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120+5160373551",
- "@uniformdev/redirect": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "@uniformdev/webhooks": "20.7.1-alpha.120+5160373551",
+ "@uniformdev/canvas-react": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/redirect": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/richtext": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/webhooks": "20.7.1-alpha.134+97fe4134d7",
"@vercel/functions": "^2.2.2",
"encoding": "^0.1.13",
"server-only": "^0.0.1",
@@ -6100,399 +5948,71 @@
}
},
"node_modules/@uniformdev/next-app-router-client": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/next-app-router-client/-/next-app-router-client-20.7.1-alpha.120.tgz",
- "integrity": "sha512-d5zNWuaEfa9BDqdf1qF/839X47WwUaZr0A9j3Tg9z4xKEb+1dJFD5mPkoW61ztu3tFODKUxbHa9L9cGLS1SZlw==",
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/next-app-router-client/-/next-app-router-client-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-eH8zj9bpOmJVezYU8mGZXRW5nE6Drq1b4KGWDCMkT9qTj5HzUTl4aKZ70FBBInvfNPHdpIIul8eGNpQc68WTcQ==",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120+5160373551",
- "@uniformdev/canvas-react": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120+5160373551",
+ "@uniformdev/canvas": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/canvas-react": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134+97fe4134d7",
"js-cookie": "3.0.5"
},
"engines": {
"node": ">=20.9.0"
},
- "peerDependencies": {
- "next": ">=16.0.7",
- "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
- "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/@uniformdev/canvas-react": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas-react/-/canvas-react-20.7.1-alpha.120.tgz",
- "integrity": "sha512-5Zey9hTazhaSMzQs47N5C1tbtwWacww1oOVg391tjwN7n9e+KvjY8rMXmnFiMKyNM7sgTvmZCRGCbqo1frBDxw==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context-react": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551"
- },
- "peerDependencies": {
- "immer": ">= 10",
- "react": ">= 16 || 17 || 18",
- "react-dom": ">=16"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/@uniformdev/context-react": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context-react/-/context-react-20.7.1-alpha.120.tgz",
- "integrity": "sha512-hhCdXv3ZlIqai3W+1j6FPAcSkooszuIxInwuDkNvdmYk7Q9Q2bbFvra7y0Gr/lbI6WBnw/icZwmdHtWKp/TeZg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "cookie": "1.0.1",
- "dequal": "2.0.3"
- },
- "peerDependencies": {
- "react": ">=16.13.1 || 17 || 18",
- "react-dom": ">=16.13.1"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "license": "SEE LICENSE IN LICENSE.txt"
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/next-app-router-client/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/next-app-router-shared": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/next-app-router-shared/-/next-app-router-shared-20.7.1-alpha.120.tgz",
- "integrity": "sha512-uL9CIjigXNKGhI+Pp9I/hnq82I2jJxxwK1JWNH/7TlcrQSusZHFeRXJsnPoKMDadEI8cDxhgfG+fT6YP8JijyQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "uuid": "9.0.1"
- },
- "engines": {
- "node": ">=20.9.0"
- },
- "peerDependencies": {
- "next": ">=16.0.7",
- "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
- "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0"
- }
- },
- "node_modules/@uniformdev/next-app-router-shared/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "node_modules/@uniformdev/next-app-router-shared/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "node_modules/@uniformdev/next-app-router-shared/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/next-app-router-shared/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "license": "SEE LICENSE IN LICENSE.txt"
- },
- "node_modules/@uniformdev/next-app-router-shared/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/next-app-router-shared/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/canvas-react": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas-react/-/canvas-react-20.7.1-alpha.120.tgz",
- "integrity": "sha512-5Zey9hTazhaSMzQs47N5C1tbtwWacww1oOVg391tjwN7n9e+KvjY8rMXmnFiMKyNM7sgTvmZCRGCbqo1frBDxw==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context-react": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551"
- },
- "peerDependencies": {
- "immer": ">= 10",
- "react": ">= 16 || 17 || 18",
- "react-dom": ">=16"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/context-react": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context-react/-/context-react-20.7.1-alpha.120.tgz",
- "integrity": "sha512-hhCdXv3ZlIqai3W+1j6FPAcSkooszuIxInwuDkNvdmYk7Q9Q2bbFvra7y0Gr/lbI6WBnw/icZwmdHtWKp/TeZg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "cookie": "1.0.1",
- "dequal": "2.0.3"
- },
- "peerDependencies": {
- "react": ">=16.13.1 || 17 || 18",
- "react-dom": ">=16.13.1"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/redirect": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/redirect/-/redirect-20.7.1-alpha.120.tgz",
- "integrity": "sha512-jz/xbw/KWfza+saOLFz0FECkvvf66w+/ezoFOa0G9cezNdb25/Gi+9/OkD0OWKx2HMqFC+r9zIBo2okKK/lvww==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "license": "SEE LICENSE IN LICENSE.txt"
- },
- "node_modules/@uniformdev/next-app-router/node_modules/@uniformdev/webhooks": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/webhooks/-/webhooks-20.7.1-alpha.120.tgz",
- "integrity": "sha512-kn677chP1f0AeOuUKXb2lhciS6JFILyzhPxl+43AD91UAt4x5soiFBBMm2K33G8EDpOT4UA6Te0U71GiyvPnUg==",
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "zod": "3.23.8"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@uniformdev/next-app-router/node_modules/zod": {
- "version": "3.23.8",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
- "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
- "license": "MIT",
- "funding": {
- "url": "https://github.com/sponsors/colinhacks"
- }
- },
- "node_modules/@uniformdev/project-map": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/project-map/-/project-map-20.7.1-alpha.120.tgz",
- "integrity": "sha512-v+y3GC6++lSwbaOT4fcp25HW+po6dSn9aF7exNsjkp/51EMYfYcqD4agnlt+oDLfJB+XyOtv2T80a8MQyIwJwg==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
+ "peerDependencies": {
+ "next": ">=16.0.7",
+ "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
+ "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0"
}
},
- "node_modules/@uniformdev/project-map/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "dev": true,
+ "node_modules/@uniformdev/next-app-router-shared": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/next-app-router-shared/-/next-app-router-shared-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-5vRZaPEm8WYSNvwRxm+WbP1SJ/tDvAUjbgE9lXBoZLJTAT+hTw4HdG/thc+z3GKCxc2/UhL5V7lvX5/kMs9jUg==",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
+ "@uniformdev/canvas": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
+ "uuid": "9.0.1"
+ },
+ "engines": {
+ "node": ">=20.9.0"
+ },
+ "peerDependencies": {
+ "next": ">=16.0.7",
+ "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
+ "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0"
}
},
- "node_modules/@uniformdev/project-map/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
+ "node_modules/@uniformdev/project-map": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/project-map/-/project-map-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-3fmt6UOCUGaT48XAZXaJCcsIE8NLBDoVHtTZIuw9sdHvoetB9F+zgHYA8PZ+OUjS2cb7SkUxnF0kfDwDPdcxUQ==",
"dev": true,
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
+ "@uniformdev/canvas": "20.7.1-alpha.134+97fe4134d7",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7"
}
},
- "node_modules/@uniformdev/project-map/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "dev": true,
+ "node_modules/@uniformdev/redirect": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/redirect/-/redirect-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-elbUOMIa8XE5LvuFKk6gqVdEd69HVIC7G+Odg4bEd97Ftf5XPOZVBNmnVxtel+/YF9jk3g8v7A9lEiBPnlJ1hw==",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
+ "@uniformdev/context": "20.7.1-alpha.134+97fe4134d7",
"p-limit": "^3.1.0",
"rfdc": "^1.4.1"
}
},
- "node_modules/@uniformdev/project-map/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt"
- },
- "node_modules/@uniformdev/project-map/node_modules/p-limit": {
+ "node_modules/@uniformdev/redirect/node_modules/p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
"license": "MIT",
"dependencies": {
"yocto-queue": "^0.1.0"
@@ -6504,11 +6024,10 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@uniformdev/project-map/node_modules/yocto-queue": {
+ "node_modules/@uniformdev/redirect/node_modules/yocto-queue": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -6517,6 +6036,21 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/@uniformdev/richtext": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-EPtSAhBJsY1Msx8eZPiK58w9KU1W8SD98gstKc9bu2AwwnajZ2sZX1gwLrfEE3WOfi9vvLXt1ma2cqSSXnc3jQ==",
+ "license": "SEE LICENSE IN LICENSE.txt"
+ },
+ "node_modules/@uniformdev/webhooks": {
+ "version": "20.7.1-alpha.134",
+ "resolved": "https://registry.npmjs.org/@uniformdev/webhooks/-/webhooks-20.7.1-alpha.134.tgz",
+ "integrity": "sha512-DeSsfe4w8gDzmPbZUotBPJkfAi7w2y1hqFxNAWn84SaYwEfT0hoPb6eI7r6PRdir+KZtl/cudxiyjy6mzFQGGg==",
+ "license": "SEE LICENSE IN LICENSE.txt",
+ "dependencies": {
+ "zod": "3.25.76"
+ }
+ },
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz",
@@ -6838,6 +6372,7 @@
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"bin": {
"acorn": "bin/acorn"
},
@@ -7181,13 +6716,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/asynckit": {
- "version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/available-typed-arrays": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
@@ -7214,18 +6742,6 @@
"node": ">=4"
}
},
- "node_modules/axios": {
- "version": "1.13.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.2.tgz",
- "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "follow-redirects": "^1.15.6",
- "form-data": "^4.0.4",
- "proxy-from-env": "^1.1.0"
- }
- },
"node_modules/axobject-query": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
@@ -7330,6 +6846,7 @@
}
],
"license": "MIT",
+ "peer": true,
"dependencies": {
"baseline-browser-mapping": "^2.9.0",
"caniuse-lite": "^1.0.30001759",
@@ -7862,19 +7379,6 @@
"node": ">=0.8"
}
},
- "node_modules/combined-stream": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "delayed-stream": "~1.0.0"
- },
- "engines": {
- "node": ">= 0.8"
- }
- },
"node_modules/comma-separated-tokens": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
@@ -8039,6 +7543,7 @@
"integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"dependencies": {
"env-paths": "^2.2.1",
"import-fresh": "^3.3.0",
@@ -8381,16 +7886,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/delayed-stream": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.4.0"
- }
- },
"node_modules/dequal": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
@@ -9016,6 +8511,7 @@
"resolved": "https://registry.npmjs.org/drizzle-orm/-/drizzle-orm-0.43.1.tgz",
"integrity": "sha512-dUcDaZtE/zN4RV/xqGrVSMpnEczxd5cIaoDeor7Zst9wOe/HzC/7eAaulywWGYXdDEc9oBPMjayVEDg0ziTLJA==",
"license": "Apache-2.0",
+ "peer": true,
"peerDependencies": {
"@aws-sdk/client-rds-data": ">=3",
"@cloudflare/workers-types": ">=4",
@@ -9231,6 +8727,7 @@
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
"integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"iconv-lite": "^0.6.2"
}
@@ -9478,6 +8975,7 @@
"dev": true,
"hasInstallScript": true,
"license": "MIT",
+ "peer": true,
"bin": {
"esbuild": "bin/esbuild"
},
@@ -10522,27 +10020,6 @@
"dev": true,
"license": "ISC"
},
- "node_modules/follow-redirects": {
- "version": "1.15.11",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
- "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
- "dev": true,
- "funding": [
- {
- "type": "individual",
- "url": "https://github.com/sponsors/RubenVerborgh"
- }
- ],
- "license": "MIT",
- "engines": {
- "node": ">=4.0"
- },
- "peerDependenciesMeta": {
- "debug": {
- "optional": true
- }
- }
- },
"node_modules/for-each": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
@@ -10559,23 +10036,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/form-data": {
- "version": "4.0.5",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
- "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "asynckit": "^0.4.0",
- "combined-stream": "^1.0.8",
- "es-set-tostringtag": "^2.1.0",
- "hasown": "^2.0.2",
- "mime-types": "^2.1.12"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/fs-extra": {
"version": "11.3.3",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
@@ -10923,6 +10383,7 @@
"integrity": "sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0"
}
@@ -11199,10 +10660,11 @@
}
},
"node_modules/immer": {
- "version": "10.1.1",
- "resolved": "https://registry.npmjs.org/immer/-/immer-10.1.1.tgz",
- "integrity": "sha512-s2MPrmjovJcoMaHtx6K11Ra7oD05NT97w1IC5zpMkT6Atjr7H8LjaDd81iIxUYpMKSRRNMJE703M1Fhr/TctHw==",
+ "version": "10.1.3",
+ "resolved": "https://registry.npmjs.org/immer/-/immer-10.1.3.tgz",
+ "integrity": "sha512-tmjF/k8QDKydUlm3mZU+tjM6zeq9/fFpPqH9SzWmBnVVKsPBg/V66qsMwb3/Bo90cgUN+ghdVBess+hPsxUyRw==",
"license": "MIT",
+ "peer": true,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/immer"
@@ -12449,13 +11911,13 @@
}
},
"node_modules/jsonwebtoken": {
- "version": "9.0.2",
- "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz",
- "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==",
+ "version": "9.0.3",
+ "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz",
+ "integrity": "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==",
"dev": true,
"license": "MIT",
"dependencies": {
- "jws": "^3.2.2",
+ "jws": "^4.0.1",
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isinteger": "^4.0.4",
@@ -12488,9 +11950,9 @@
}
},
"node_modules/jwa": {
- "version": "1.4.2",
- "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.2.tgz",
- "integrity": "sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
+ "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12500,13 +11962,13 @@
}
},
"node_modules/jws": {
- "version": "3.2.3",
- "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.3.tgz",
- "integrity": "sha512-byiJ0FLRdLdSVSReO/U4E7RoEyOCKnEnEPMjq3HxWtvzLsV08/i5RQKsFVNkCldrCaPr2vDNAOMsfs8T/Hze7g==",
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
+ "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "jwa": "^1.4.2",
+ "jwa": "^2.0.1",
"safe-buffer": "^5.0.1"
}
},
@@ -14310,29 +13772,6 @@
"node": ">=8.6"
}
},
- "node_modules/mime-db": {
- "version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">= 0.6"
- }
- },
- "node_modules/mime-types": {
- "version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "mime-db": "1.52.0"
- },
- "engines": {
- "node": ">= 0.6"
- }
- },
"node_modules/mimic-fn": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
@@ -14511,6 +13950,7 @@
"resolved": "https://registry.npmjs.org/next/-/next-16.1.1.tgz",
"integrity": "sha512-QI+T7xrxt1pF6SQ/JYFz95ro/mg/1Znk5vBebsWwbpejj1T0A23hO7GYEaVac9QUOT2BIMiuzm0L99ooq7k0/w==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"@next/env": "16.1.1",
"@swc/helpers": "0.5.15",
@@ -15700,6 +15140,7 @@
"resolved": "https://registry.npmjs.org/postgres/-/postgres-3.4.7.tgz",
"integrity": "sha512-Jtc2612XINuBjIl/QTWsV5UvE8UHuNblcO3vVADSrKsrc6RqGX6lOW1cEo3CM2v0XG4Nat8nI+YM7/f26VxXLw==",
"license": "Unlicense",
+ "peer": true,
"engines": {
"node": ">=12"
},
@@ -15709,16 +15150,16 @@
}
},
"node_modules/posthog-node": {
- "version": "4.11.3",
- "resolved": "https://registry.npmjs.org/posthog-node/-/posthog-node-4.11.3.tgz",
- "integrity": "sha512-Ye7d9ZJX1reWP9084Gm9+O7NnvlW7LnbU09GzlsSdD0HzGTfxeKTQZsl9h1+CDHhfvpdWJRm8uc91/aDmXzaCA==",
+ "version": "5.10.3",
+ "resolved": "https://registry.npmjs.org/posthog-node/-/posthog-node-5.10.3.tgz",
+ "integrity": "sha512-pe0P/4MfTSBgM4PWRTeg2iKDSSX6nxnlxAyW+v2+acpCSU50KM2YE5UFJ1Vkq/PtwcJgrt2Ydj66IzuRn2uwFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "axios": "^1.8.2"
+ "@posthog/core": "1.3.1"
},
"engines": {
- "node": ">=15.0.0"
+ "node": ">=20"
}
},
"node_modules/prelude-ls": {
@@ -15736,6 +15177,7 @@
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
"license": "MIT",
+ "peer": true,
"bin": {
"prettier": "bin/prettier.cjs"
},
@@ -15837,13 +15279,6 @@
"dev": true,
"license": "ISC"
},
- "node_modules/proxy-from-env": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
- "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/punycode": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
@@ -15923,6 +15358,7 @@
"resolved": "https://registry.npmjs.org/react/-/react-19.2.3.tgz",
"integrity": "sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==",
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=0.10.0"
}
@@ -15932,6 +15368,7 @@
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.3.tgz",
"integrity": "sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==",
"license": "MIT",
+ "peer": true,
"dependencies": {
"scheduler": "^0.27.0"
},
@@ -17460,7 +16897,8 @@
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.18.tgz",
"integrity": "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peer": true
},
"node_modules/tapable": {
"version": "2.3.0",
@@ -17588,6 +17026,7 @@
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
"dev": true,
"license": "MIT",
+ "peer": true,
"engines": {
"node": ">=12"
},
@@ -18794,6 +18233,7 @@
"integrity": "sha512-zAj9jGc7VDvuAo/5Jbos4QTtWz9uUpkMhMKGyTjDJkx//hdL2bM31qQoJSAbU+7JyK5vb0LPzpwf6DUt3zayqg==",
"dev": true,
"license": "MIT",
+ "peer": true,
"bin": {
"turbo": "bin/turbo"
},
@@ -18997,6 +18437,7 @@
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
"devOptional": true,
"license": "Apache-2.0",
+ "peer": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -19711,6 +19152,7 @@
"integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
"dev": true,
"license": "ISC",
+ "peer": true,
"bin": {
"yaml": "bin.mjs"
},
@@ -19835,6 +19277,7 @@
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT",
+ "peer": true,
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
@@ -19888,7 +19331,7 @@
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/jest": "^29.5.14",
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": "^16.1.1",
"prettier": "3.6.2",
"react": "^19.2.1",
@@ -19900,57 +19343,13 @@
"node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
},
"peerDependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": ">=16",
"prettier": ">=3",
"react": ">=19",
"react-dom": ">=19"
}
},
- "packages/csk-cli/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "packages/csk-cli/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "packages/csk-cli/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "packages/csk-cli/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt"
- },
"packages/csk-cli/node_modules/commander": {
"version": "9.5.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
@@ -19991,35 +19390,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "packages/csk-cli/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "packages/csk-cli/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"packages/csk-components": {
"name": "@uniformdev/csk-components",
"version": "6.1.60",
@@ -20045,12 +19415,12 @@
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/js-cookie": "^3.0.6",
- "@uniformdev/assets": "20.7.1-alpha.120",
- "@uniformdev/canvas": "20.7.1-alpha.120",
- "@uniformdev/next-app-router": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120",
- "@uniformdev/project-map": "20.7.1-alpha.120",
+ "@uniformdev/assets": "20.7.1-alpha.134",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134",
+ "@uniformdev/project-map": "20.7.1-alpha.134",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"react": "^19.2.1",
@@ -20063,12 +19433,12 @@
"node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
},
"peerDependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120",
- "@uniformdev/canvas": "20.7.1-alpha.120",
- "@uniformdev/next-app-router": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120",
- "@uniformdev/project-map": "20.7.1-alpha.120",
+ "@uniformdev/assets": "20.7.1-alpha.134",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134",
+ "@uniformdev/project-map": "20.7.1-alpha.134",
"next": ">=16",
"next-themes": ">=0.4.0",
"react": ">=19",
@@ -20076,50 +19446,6 @@
"tailwindcss": ">=3"
}
},
- "packages/csk-components/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "packages/csk-components/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "packages/csk-components/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "packages/csk-components/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt"
- },
"packages/csk-components/node_modules/commander": {
"version": "9.5.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
@@ -20160,35 +19486,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "packages/csk-components/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "packages/csk-components/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"packages/csk-recipes": {
"name": "@uniformdev/csk-recipes",
"version": "6.1.60",
@@ -20211,7 +19508,7 @@
"@repo/typescript-config": "*",
"@types/jest": "^29.5.14",
"@types/unzipper": "^0.10.11",
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": "^16.1.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
@@ -20222,56 +19519,12 @@
"node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
},
"peerDependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": ">=16",
"react": ">=19",
"react-dom": ">=19"
}
},
- "packages/csk-recipes/node_modules/@uniformdev/assets": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/assets/-/assets-20.7.1-alpha.120.tgz",
- "integrity": "sha512-3Pg3cgsD2rlvLxKoAgM0lzhM+0V2ZtJCOsulHsyxM582X54m8tBnSco5APUQEht/3AX96VJ3nGgCrkHfefK5dw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/context": "20.7.1-alpha.120+5160373551"
- }
- },
- "packages/csk-recipes/node_modules/@uniformdev/canvas": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/canvas/-/canvas-20.7.1-alpha.120.tgz",
- "integrity": "sha512-lNCl7yeqWP83xdQ8MUQDDlXG8YRlTgA/45fNmzXm4R5ieLaa6TWxF3THVM4IxD5d2hXYyckHmksnMqGBLOMwRg==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120+5160373551",
- "@uniformdev/context": "20.7.1-alpha.120+5160373551",
- "@uniformdev/richtext": "20.7.1-alpha.120+5160373551",
- "immer": "10.1.1"
- }
- },
- "packages/csk-recipes/node_modules/@uniformdev/context": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/context/-/context-20.7.1-alpha.120.tgz",
- "integrity": "sha512-dHdWrLPcLikV6EYxgqrJ+wELnVg530WukpP4PCagTII1PfTMOYSOCk3c9CJWbWfXLC5HSJOOXmWBoqTZZ/v3MQ==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt",
- "dependencies": {
- "dequal": "^2.0.2",
- "js-cookie": "3.0.5",
- "mitt": "^3.0.1",
- "p-limit": "^3.1.0",
- "rfdc": "^1.4.1"
- }
- },
- "packages/csk-recipes/node_modules/@uniformdev/richtext": {
- "version": "20.7.1-alpha.120",
- "resolved": "https://registry.npmjs.org/@uniformdev/richtext/-/richtext-20.7.1-alpha.120.tgz",
- "integrity": "sha512-qGZUiupReGIXlCNKj5Bxyn0TEe0a4iDmiHAf4lbh3Ap2yEVlUDmwGv1+nv5YH4xBUUTpVVzb1SAlUcj2/9Y6Yw==",
- "dev": true,
- "license": "SEE LICENSE IN LICENSE.txt"
- },
"packages/csk-recipes/node_modules/commander": {
"version": "9.5.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
@@ -20312,35 +19565,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "packages/csk-recipes/node_modules/p-limit": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "yocto-queue": "^0.1.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "packages/csk-recipes/node_modules/yocto-queue": {
- "version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"packages/design-extensions-tools": {
"name": "@uniformdev/design-extensions-tools",
"version": "6.1.60",
diff --git a/packages/csk-cli/package.json b/packages/csk-cli/package.json
index f79eec0a..853ba6cf 100644
--- a/packages/csk-cli/package.json
+++ b/packages/csk-cli/package.json
@@ -44,7 +44,7 @@
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/jest": "^29.5.14",
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": "^16.1.1",
"prettier": "3.6.2",
"react": "^19.2.1",
@@ -53,7 +53,7 @@
"typescript": "^5.7.3"
},
"peerDependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": ">=16",
"prettier": ">=3",
"react": ">=19",
diff --git a/packages/csk-components/package.json b/packages/csk-components/package.json
index 819495c6..d65870ca 100644
--- a/packages/csk-components/package.json
+++ b/packages/csk-components/package.json
@@ -102,12 +102,12 @@
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/js-cookie": "^3.0.6",
- "@uniformdev/assets": "20.7.1-alpha.120",
- "@uniformdev/canvas": "20.7.1-alpha.120",
- "@uniformdev/next-app-router": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120",
- "@uniformdev/project-map": "20.7.1-alpha.120",
+ "@uniformdev/assets": "20.7.1-alpha.134",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134",
+ "@uniformdev/project-map": "20.7.1-alpha.134",
"next": "^16.1.1",
"next-themes": "^0.4.6",
"react": "^19.2.1",
@@ -117,12 +117,12 @@
"tsx": "^4.19.2"
},
"peerDependencies": {
- "@uniformdev/assets": "20.7.1-alpha.120",
- "@uniformdev/canvas": "20.7.1-alpha.120",
- "@uniformdev/next-app-router": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-client": "20.7.1-alpha.120",
- "@uniformdev/next-app-router-shared": "20.7.1-alpha.120",
- "@uniformdev/project-map": "20.7.1-alpha.120",
+ "@uniformdev/assets": "20.7.1-alpha.134",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-client": "20.7.1-alpha.134",
+ "@uniformdev/next-app-router-shared": "20.7.1-alpha.134",
+ "@uniformdev/project-map": "20.7.1-alpha.134",
"next": ">=16",
"next-themes": ">=0.4.0",
"react": ">=19",
diff --git a/packages/csk-recipes/package.json b/packages/csk-recipes/package.json
index 90fb9b2a..4e1bd87b 100644
--- a/packages/csk-recipes/package.json
+++ b/packages/csk-recipes/package.json
@@ -48,7 +48,7 @@
"@repo/typescript-config": "*",
"@types/jest": "^29.5.14",
"@types/unzipper": "^0.10.11",
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": "^16.1.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
@@ -56,7 +56,7 @@
"typescript": "^5.7.3"
},
"peerDependencies": {
- "@uniformdev/canvas": "20.7.1-alpha.120",
+ "@uniformdev/canvas": "20.7.1-alpha.134",
"next": ">=16",
"react": ">=19",
"react-dom": ">=19"