diff --git a/.gitignore b/.gitignore
index cda69824..53f47767 100644
--- a/.gitignore
+++ b/.gitignore
@@ -46,3 +46,5 @@ schema.graphql
# macOS
.DS_Store
+.env
+.env.local
diff --git a/examples/nextjs/.gitignore b/examples/nextjs/.gitignore
new file mode 100644
index 00000000..5ef6a520
--- /dev/null
+++ b/examples/nextjs/.gitignore
@@ -0,0 +1,41 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.*
+.yarn/*
+!.yarn/patches
+!.yarn/plugins
+!.yarn/releases
+!.yarn/versions
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+
+# env files (can opt-in for committing if needed)
+.env*
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
diff --git a/examples/nextjs/README.md b/examples/nextjs/README.md
new file mode 100644
index 00000000..e215bc4c
--- /dev/null
+++ b/examples/nextjs/README.md
@@ -0,0 +1,36 @@
+This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
+
+This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
diff --git a/examples/nextjs/app/checkout.tsx b/examples/nextjs/app/checkout.tsx
new file mode 100644
index 00000000..aca19ce5
--- /dev/null
+++ b/examples/nextjs/app/checkout.tsx
@@ -0,0 +1,44 @@
+'use client';
+
+import type { CheckoutFormSchema, CheckoutSession } from '@godaddy/react';
+import { Checkout, GoDaddyProvider } from '@godaddy/react';
+import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
+import { ReactQueryDevtools } from '@tanstack/react-query-devtools';
+import { useState } from 'react';
+import { z } from 'zod';
+
+/* Override the checkout form schema to make shippingPhone required */
+const customSchema: CheckoutFormSchema = {
+ shippingPhone: z.string().min(1, 'Phone number is required'),
+};
+
+export function CheckoutPage({ session }: { session: CheckoutSession }) {
+ const [queryClient] = useState(() => new QueryClient());
+
+ return (
+
+
+
+
+
+
+ );
+}
diff --git a/examples/nextjs/app/favicon.ico b/examples/nextjs/app/favicon.ico
new file mode 100644
index 00000000..718d6fea
Binary files /dev/null and b/examples/nextjs/app/favicon.ico differ
diff --git a/examples/nextjs/app/globals.css b/examples/nextjs/app/globals.css
new file mode 100644
index 00000000..a2dc41ec
--- /dev/null
+++ b/examples/nextjs/app/globals.css
@@ -0,0 +1,26 @@
+@import "tailwindcss";
+
+:root {
+ --background: #ffffff;
+ --foreground: #171717;
+}
+
+@theme inline {
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --font-sans: var(--font-geist-sans);
+ --font-mono: var(--font-geist-mono);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ --background: #0a0a0a;
+ --foreground: #ededed;
+ }
+}
+
+body {
+ background: var(--background);
+ color: var(--foreground);
+ font-family: Arial, Helvetica, sans-serif;
+}
diff --git a/examples/nextjs/app/layout.tsx b/examples/nextjs/app/layout.tsx
new file mode 100644
index 00000000..d1cb7eeb
--- /dev/null
+++ b/examples/nextjs/app/layout.tsx
@@ -0,0 +1,35 @@
+import type { Metadata } from 'next';
+import { Geist, Geist_Mono } from 'next/font/google';
+import './globals.css';
+import '@godaddy/react/styles.css';
+
+const geistSans = Geist({
+ variable: '--font-geist-sans',
+ subsets: ['latin'],
+});
+
+const geistMono = Geist_Mono({
+ variable: '--font-geist-mono',
+ subsets: ['latin'],
+});
+
+export const metadata: Metadata = {
+ title: 'Unified Checkout NextJS Example',
+ description: 'An example NextJS application using GoDaddy Unified Checkout',
+};
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode;
+}>) {
+ return (
+
+
+ {children}
+
+
+ );
+}
diff --git a/examples/nextjs/app/page.tsx b/examples/nextjs/app/page.tsx
new file mode 100644
index 00000000..54e0d1ad
--- /dev/null
+++ b/examples/nextjs/app/page.tsx
@@ -0,0 +1,104 @@
+import { createCheckoutSession } from '@godaddy/react/server';
+import { unstable_noStore } from 'next/cache';
+import { notFound } from 'next/navigation';
+import { CheckoutPage } from './checkout';
+
+export const dynamic = 'force-dynamic';
+
+export default async function Home() {
+ unstable_noStore();
+ const session = await createCheckoutSession(
+ {
+ returnUrl: 'https://godaddy.com',
+ successUrl: 'https://godaddy.com/success',
+ draftOrderId: process.env.NEXT_PUBLIC_GODADDY_DRAFT_ORDER_ID || '',
+ storeId: process.env.NEXT_PUBLIC_GODADDY_STORE_ID || '',
+ channelId: process.env.NEXT_PUBLIC_GODADDY_CHANNEL_ID || '',
+ enableLocalPickup: true,
+ enableShippingAddressCollection: true,
+ enableBillingAddressCollection: true,
+ enablePhoneCollection: true,
+ enableTaxCollection: true,
+ enableNotesCollection: true,
+ enablePromotionCodes: true,
+ shipping: {
+ fulfillmentLocationId: 'default-location',
+ originAddress: {
+ addressLine1: '1600 Pennsylvania Ave NW',
+ adminArea1: 'DC',
+ adminArea3: 'Washington',
+ countryCode: 'US',
+ postalCode: '20500',
+ },
+ },
+ taxes: {
+ originAddress: {
+ addressLine1: '1600 Pennsylvania Ave NW',
+ adminArea1: 'DC',
+ adminArea3: 'Washington',
+ countryCode: 'US',
+ postalCode: '20500',
+ },
+ },
+ locations: [
+ {
+ id: 'default-location',
+ isDefault: true,
+ address: {
+ addressLine1: '1600 Pennsylvania Ave NW',
+ adminArea1: 'DC',
+ adminArea3: 'Washington',
+ countryCode: 'US',
+ postalCode: '20500',
+ },
+ },
+ ],
+ paymentMethods: {
+ card: {
+ processor: 'godaddy',
+ checkoutTypes: ['standard'],
+ },
+ express: {
+ processor: 'godaddy',
+ checkoutTypes: ['express'],
+ },
+ paypal: {
+ processor: 'paypal',
+ checkoutTypes: ['standard'],
+ },
+ offline: {
+ processor: 'offline',
+ checkoutTypes: ['standard'],
+ },
+ },
+ operatingHours: {
+ default: {
+ timeZone: 'America/New_York', // CDT timezone
+ leadTime: 60, // 60 minutes lead time
+ pickupWindowInDays: 7,
+ hours: {
+ monday: { enabled: true, openTime: '09:00', closeTime: '17:00' },
+ tuesday: { enabled: true, openTime: '09:00', closeTime: '17:00' },
+ wednesday: { enabled: false, openTime: null, closeTime: null },
+ thursday: { enabled: true, openTime: '09:00', closeTime: '17:00' },
+ friday: { enabled: true, openTime: '09:00', closeTime: '18:00' },
+ saturday: { enabled: true, openTime: '10:00', closeTime: '16:00' },
+ sunday: { enabled: true, openTime: '12:00', closeTime: '15:00' },
+ },
+ },
+ },
+ },
+ {
+ auth: {
+ clientId: process.env.GODADDY_CLIENT_ID || '',
+ clientSecret: process.env.GODADDY_CLIENT_SECRET || '',
+ },
+ }
+ );
+
+ if (!session) {
+ throw notFound();
+ }
+
+ return ;
+}
diff --git a/examples/nextjs/biome.json b/examples/nextjs/biome.json
new file mode 100644
index 00000000..87e71657
--- /dev/null
+++ b/examples/nextjs/biome.json
@@ -0,0 +1,20 @@
+{
+ "$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
+ "extends": ["biome-config-godaddy/biome.json"],
+ "css": {
+ "parser": {
+ "cssModules": true,
+ "tailwindDirectives": true
+ }
+ },
+ "files": {
+ "includes": ["**/*", "!!**/src/globals.css"]
+ },
+ "linter": {
+ "rules": {
+ "correctness": {
+ "useUniqueElementIds": "off"
+ }
+ }
+ }
+}
diff --git a/examples/nextjs/env.sample b/examples/nextjs/env.sample
new file mode 100644
index 00000000..337ff345
--- /dev/null
+++ b/examples/nextjs/env.sample
@@ -0,0 +1,23 @@
+# GoDaddy API Credentials
+GODADDY_CLIENT_ID=
+GODADDY_CLIENT_SECRET=
+NEXT_PUBLIC_GODADDY_ENV=prod
+NEXT_PUBLIC_GODADDY_HOST=api.godaddy.com
+
+# Store and Order Identifiers
+NEXT_PUBLIC_GODADDY_STORE_ID=
+NEXT_PUBLIC_GODADDY_CHANNEL_ID=
+NEXT_PUBLIC_GODADDY_DRAFT_ORDER_ID=
+
+# Stripe Payment Credentials
+NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=
+STRIPE_SECRET=
+
+# GoDaddy Payment Credentials
+NEXT_PUBLIC_GODADDY_APP_ID=
+#NEXT_PUBLIC_GODADDY_BUSINESS_ID=
+
+# Square Credentials
+NEXT_PUBLIC_SQUARE_APP_ID=
+NEXT_PUBLIC_SQUARE_LOCATION_ID=
+NEXT_PUBLIC_PAYPAL_CLIENT_ID=
diff --git a/examples/nextjs/next.config.ts b/examples/nextjs/next.config.ts
new file mode 100644
index 00000000..5e891cf0
--- /dev/null
+++ b/examples/nextjs/next.config.ts
@@ -0,0 +1,7 @@
+import type { NextConfig } from 'next';
+
+const nextConfig: NextConfig = {
+ /* config options here */
+};
+
+export default nextConfig;
diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json
new file mode 100644
index 00000000..b9e3affd
--- /dev/null
+++ b/examples/nextjs/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "nextjs",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build": "next build",
+ "start": "next start",
+ "lint": "biome check .",
+ "lint:fix": "biome check --write --unsafe ."
+ },
+ "dependencies": {
+ "@godaddy/localizations": "workspace:*",
+ "@godaddy/react": "workspace:*",
+ "@tanstack/react-query": "^5.66.0",
+ "@tanstack/react-query-devtools": "^5.76.1",
+ "next": "16.0.1",
+ "react": "19.2.0",
+ "react-dom": "19.2.0",
+ "zod": "^3.24.1"
+ },
+ "devDependencies": {
+ "@biomejs/biome": "^2",
+ "@tailwindcss/postcss": "^4",
+ "@types/node": "^20",
+ "@types/react": "^19",
+ "@types/react-dom": "^19",
+ "biome-config-godaddy": "workspace:*",
+ "tailwindcss": "^4",
+ "typescript": "^5"
+ }
+}
diff --git a/examples/nextjs/postcss.config.mjs b/examples/nextjs/postcss.config.mjs
new file mode 100644
index 00000000..297374d8
--- /dev/null
+++ b/examples/nextjs/postcss.config.mjs
@@ -0,0 +1,7 @@
+const config = {
+ plugins: {
+ '@tailwindcss/postcss': {},
+ },
+};
+
+export default config;
diff --git a/examples/nextjs/public/file.svg b/examples/nextjs/public/file.svg
new file mode 100644
index 00000000..004145cd
--- /dev/null
+++ b/examples/nextjs/public/file.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/nextjs/public/globe.svg b/examples/nextjs/public/globe.svg
new file mode 100644
index 00000000..567f17b0
--- /dev/null
+++ b/examples/nextjs/public/globe.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/nextjs/public/next.svg b/examples/nextjs/public/next.svg
new file mode 100644
index 00000000..5174b28c
--- /dev/null
+++ b/examples/nextjs/public/next.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/nextjs/public/vercel.svg b/examples/nextjs/public/vercel.svg
new file mode 100644
index 00000000..77053960
--- /dev/null
+++ b/examples/nextjs/public/vercel.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/nextjs/public/window.svg b/examples/nextjs/public/window.svg
new file mode 100644
index 00000000..b2b2a44f
--- /dev/null
+++ b/examples/nextjs/public/window.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/examples/nextjs/tsconfig.json b/examples/nextjs/tsconfig.json
new file mode 100644
index 00000000..3a13f90a
--- /dev/null
+++ b/examples/nextjs/tsconfig.json
@@ -0,0 +1,34 @@
+{
+ "compilerOptions": {
+ "target": "ES2017",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "react-jsx",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": ["./*"]
+ }
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ ".next/dev/types/**/*.ts",
+ "**/*.mts"
+ ],
+ "exclude": ["node_modules"]
+}
diff --git a/package.json b/package.json
index a37b71b4..7bc01d2c 100644
--- a/package.json
+++ b/package.json
@@ -8,8 +8,10 @@
"node": ">=22"
},
"scripts": {
+ "dev": "pnpm run -r dev",
"build": "pnpm run -r build",
"lint": "pnpm run -r lint",
+ "lint:fix": "pnpm run -r lint:fix",
"test": "pnpm run build && pnpm run -r --parallel test",
"version": "changeset version && pnpm install --prefer-offline",
"changeset": "changeset",
diff --git a/packages/react/src/components/checkout/checkout.tsx b/packages/react/src/components/checkout/checkout.tsx
index c35de9c0..5a693fe0 100644
--- a/packages/react/src/components/checkout/checkout.tsx
+++ b/packages/react/src/components/checkout/checkout.tsx
@@ -182,11 +182,10 @@ export const baseCheckoutSchema = z.object({
stripePaymentIntentId: z.string().optional(),
}); // We cannot use refine here, as it would not allow extending the schema with session overrides.
-export type CheckoutFormSchema = {
- [K in keyof z.infer]?: z.ZodTypeAny;
-} & {
- [key: string]: z.ZodTypeAny;
-};
+export type CheckoutFormSchema = Partial<{
+ [K in keyof z.infer]: z.ZodTypeAny;
+}> &
+ z.ZodRawShape;
export type CheckoutFormData = z.infer;
diff --git a/packages/react/src/components/checkout/payment/checkout-buttons/express/godaddy.tsx b/packages/react/src/components/checkout/payment/checkout-buttons/express/godaddy.tsx
index 552e1886..aa92fe5d 100644
--- a/packages/react/src/components/checkout/payment/checkout-buttons/express/godaddy.tsx
+++ b/packages/react/src/components/checkout/payment/checkout-buttons/express/godaddy.tsx
@@ -378,7 +378,7 @@ export function ExpressCheckoutButton() {
return;
collect.current?.supportWalletPayments().then(supports => {
- const paymentMethods = [];
+ const paymentMethods: string[] = [];
if (supports.applePay) {
track({
eventId: eventIds.expressApplePayImpression,
diff --git a/packages/react/src/components/checkout/target/target.tsx b/packages/react/src/components/checkout/target/target.tsx
index f97cb5a1..d286bf32 100644
--- a/packages/react/src/components/checkout/target/target.tsx
+++ b/packages/react/src/components/checkout/target/target.tsx
@@ -35,7 +35,7 @@ export function Target({ id }: { id: Target }) {
const target = targets?.[id];
- let content = null;
+ let content: React.ReactNode = null;
if (target) {
content = target?.();
} else if (debug) {
diff --git a/packages/react/src/lib/godaddy/godaddy.ts b/packages/react/src/lib/godaddy/godaddy.ts
index 28eace9e..d3318c97 100644
--- a/packages/react/src/lib/godaddy/godaddy.ts
+++ b/packages/react/src/lib/godaddy/godaddy.ts
@@ -44,7 +44,7 @@ function getHostByEnvironment(): string {
export async function createCheckoutSession(
input: CheckoutSessionInput['input'],
- { accessToken }: { accessToken: string; environment: Environments }
+ { accessToken }: { accessToken: string }
): Promise<
ResultOf['createCheckoutSession']
> {
diff --git a/packages/react/src/server.ts b/packages/react/src/server.ts
index 6dfb0764..34dc7c19 100644
--- a/packages/react/src/server.ts
+++ b/packages/react/src/server.ts
@@ -1,10 +1,6 @@
'use server';
-import type {
- CheckoutSessionInput,
- CheckoutSessionOptions,
- Environments,
-} from '@/types';
+import type { CheckoutSessionInput, CheckoutSessionOptions } from '@/types';
import * as GoDaddy from './lib/godaddy/godaddy';
let accessToken: string | undefined;
@@ -27,7 +23,6 @@ export async function createCheckoutSession(
const getAccessTokenResponse = await getAccessToken({
clientId: CLIENT_ID,
clientSecret: CLIENT_SECRET,
- environment: input?.environment || 'dev',
});
accessToken = getAccessTokenResponse?.access_token;
@@ -40,7 +35,6 @@ export async function createCheckoutSession(
return await GoDaddy.createCheckoutSession(input, {
accessToken,
- environment: input?.environment || 'dev',
});
}
@@ -54,7 +48,6 @@ async function getAccessToken({
}: {
clientId: string;
clientSecret: string;
- environment: Environments;
}) {
if (!clientId || !clientSecret) {
return;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3ee6ffe2..85b62e10 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -48,14 +48,66 @@ importers:
specifier: ^5.8.3
version: 5.9.2
+ examples/nextjs:
+ dependencies:
+ '@godaddy/localizations':
+ specifier: workspace:*
+ version: link:../../packages/localizations
+ '@godaddy/react':
+ specifier: workspace:*
+ version: link:../../packages/react
+ '@tanstack/react-query':
+ specifier: ^5.66.0
+ version: 5.90.5(react@19.2.0)
+ '@tanstack/react-query-devtools':
+ specifier: ^5.76.1
+ version: 5.90.2(@tanstack/react-query@5.90.5(react@19.2.0))(react@19.2.0)
+ next:
+ specifier: 16.0.1
+ version: 16.0.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react:
+ specifier: 19.2.0
+ version: 19.2.0
+ react-dom:
+ specifier: 19.2.0
+ version: 19.2.0(react@19.2.0)
+ zod:
+ specifier: ^3.24.1
+ version: 3.25.76
+ devDependencies:
+ '@biomejs/biome':
+ specifier: ^2
+ version: 2.3.2
+ '@tailwindcss/postcss':
+ specifier: ^4
+ version: 4.1.16
+ '@types/node':
+ specifier: ^20
+ version: 20.19.24
+ '@types/react':
+ specifier: ^19
+ version: 19.2.2
+ '@types/react-dom':
+ specifier: ^19
+ version: 19.2.2(@types/react@19.2.2)
+ biome-config-godaddy:
+ specifier: workspace:*
+ version: link:../../packages/biome-config-godaddy
+ tailwindcss:
+ specifier: ^4
+ version: 4.1.15
+ typescript:
+ specifier: ^5
+ version: 5.9.2
+
packages/app-connect:
dependencies:
'@tanstack/react-router':
specifier: ^1.127.9
- version: 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
+ version: 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@tanstack/react-start':
specifier: ^1.127.9
- version: 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
+ version: 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
pino:
specifier: ^9.7.0
version: 9.14.0
@@ -409,6 +461,10 @@ packages:
graphql: ^15.5.0 || ^16.0.0 || ^17.0.0
typescript: ^5.0.0
+ '@alloc/quick-lru@5.2.0':
+ resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
+ engines: {node: '>=10'}
+
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -1239,6 +1295,132 @@ packages:
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
+ '@img/colour@1.0.0':
+ resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
+ engines: {node: '>=18'}
+
+ '@img/sharp-darwin-arm64@0.34.4':
+ resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.34.4':
+ resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.2.3':
+ resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.2.3':
+ resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.2.3':
+ resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.2.3':
+ resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-ppc64@1.2.3':
+ resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.2.3':
+ resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.2.3':
+ resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.3':
+ resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.2.3':
+ resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.34.4':
+ resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.34.4':
+ resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-ppc64@0.34.4':
+ resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.34.4':
+ resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.34.4':
+ resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.34.4':
+ resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.34.4':
+ resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.34.4':
+ resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-arm64@0.34.4':
+ resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@img/sharp-win32-ia32@0.34.4':
+ resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.34.4':
+ resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
'@inquirer/external-editor@1.0.1':
resolution: {integrity: sha512-Oau4yL24d2B5IL4ma4UpbQigkVhzPDXLoqy1ggK4gnHg/stmkffJE4oOXHXF3uz0UEpywG68KcyXsyYpA1Re/Q==}
engines: {node: '>=18'}
@@ -1289,6 +1471,57 @@ packages:
'@napi-rs/wasm-runtime@1.0.7':
resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
+ '@next/env@16.0.1':
+ resolution: {integrity: sha512-LFvlK0TG2L3fEOX77OC35KowL8D7DlFF45C0OvKMC4hy8c/md1RC4UMNDlUGJqfCoCS2VWrZ4dSE6OjaX5+8mw==}
+
+ '@next/swc-darwin-arm64@16.0.1':
+ resolution: {integrity: sha512-R0YxRp6/4W7yG1nKbfu41bp3d96a0EalonQXiMe+1H9GTHfKxGNCGFNWUho18avRBPsO8T3RmdWuzmfurlQPbg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@next/swc-darwin-x64@16.0.1':
+ resolution: {integrity: sha512-kETZBocRux3xITiZtOtVoVvXyQLB7VBxN7L6EPqgI5paZiUlnsgYv4q8diTNYeHmF9EiehydOBo20lTttCbHAg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@next/swc-linux-arm64-gnu@16.0.1':
+ resolution: {integrity: sha512-hWg3BtsxQuSKhfe0LunJoqxjO4NEpBmKkE+P2Sroos7yB//OOX3jD5ISP2wv8QdUwtRehMdwYz6VB50mY6hqAg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@next/swc-linux-arm64-musl@16.0.1':
+ resolution: {integrity: sha512-UPnOvYg+fjAhP3b1iQStcYPWeBFRLrugEyK/lDKGk7kLNua8t5/DvDbAEFotfV1YfcOY6bru76qN9qnjLoyHCQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@next/swc-linux-x64-gnu@16.0.1':
+ resolution: {integrity: sha512-Et81SdWkcRqAJziIgFtsFyJizHoWne4fzJkvjd6V4wEkWTB4MX6J0uByUb0peiJQ4WeAt6GGmMszE5KrXK6WKg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@next/swc-linux-x64-musl@16.0.1':
+ resolution: {integrity: sha512-qBbgYEBRrC1egcG03FZaVfVxrJm8wBl7vr8UFKplnxNRprctdP26xEv9nJ07Ggq4y1adwa0nz2mz83CELY7N6Q==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@next/swc-win32-arm64-msvc@16.0.1':
+ resolution: {integrity: sha512-cPuBjYP6I699/RdbHJonb3BiRNEDm5CKEBuJ6SD8k3oLam2fDRMKAvmrli4QMDgT2ixyRJ0+DTkiODbIQhRkeQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@next/swc-win32-x64-msvc@16.0.1':
+ resolution: {integrity: sha512-XeEUJsE4JYtfrXe/LaJn3z1pD19fK0Q6Er8Qoufi+HqvdO4LEPyCxLUt4rxA+4RfYo6S9gMlmzCMU2F+AatFqQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
@@ -2312,6 +2545,9 @@ packages:
resolution: {integrity: sha512-ggs5k+/0FUJcIgNY08aZTqpBTtbExkJMYMLSMwyucrhtWexVOEY1KJmhBsxf+E/Q15f5rbwBpj+t0t2AW2oCsQ==}
engines: {node: '>=12.16'}
+ '@swc/helpers@0.5.15':
+ resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+
'@tailwindcss/cli@4.1.15':
resolution: {integrity: sha512-8APzY4H3LgarvTF5JaAq4of27mjSaLhGD3PV9MdA02uGy+VPsboPVDrWJw5YMT0ME0Q2d+36KFVxFb82HEBcMg==}
hasBin: true
@@ -2319,60 +2555,117 @@ packages:
'@tailwindcss/node@4.1.15':
resolution: {integrity: sha512-HF4+7QxATZWY3Jr8OlZrBSXmwT3Watj0OogeDvdUY/ByXJHQ+LBtqA2brDb3sBxYslIFx6UP94BJ4X6a4L9Bmw==}
+ '@tailwindcss/node@4.1.16':
+ resolution: {integrity: sha512-BX5iaSsloNuvKNHRN3k2RcCuTEgASTo77mofW0vmeHkfrDWaoFAFvNHpEgtu0eqyypcyiBkDWzSMxJhp3AUVcw==}
+
'@tailwindcss/oxide-android-arm64@4.1.15':
resolution: {integrity: sha512-TkUkUgAw8At4cBjCeVCRMc/guVLKOU1D+sBPrHt5uVcGhlbVKxrCaCW9OKUIBv1oWkjh4GbunD/u/Mf0ql6kEA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
+ '@tailwindcss/oxide-android-arm64@4.1.16':
+ resolution: {integrity: sha512-8+ctzkjHgwDJ5caq9IqRSgsP70xhdhJvm+oueS/yhD5ixLhqTw9fSL1OurzMUhBwE5zK26FXLCz2f/RtkISqHA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
'@tailwindcss/oxide-darwin-arm64@4.1.15':
resolution: {integrity: sha512-xt5XEJpn2piMSfvd1UFN6jrWXyaKCwikP4Pidcf+yfHTSzSpYhG3dcMktjNkQO3JiLCp+0bG0HoWGvz97K162w==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ '@tailwindcss/oxide-darwin-arm64@4.1.16':
+ resolution: {integrity: sha512-C3oZy5042v2FOALBZtY0JTDnGNdS6w7DxL/odvSny17ORUnaRKhyTse8xYi3yKGyfnTUOdavRCdmc8QqJYwFKA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@tailwindcss/oxide-darwin-x64@4.1.15':
resolution: {integrity: sha512-TnWaxP6Bx2CojZEXAV2M01Yl13nYPpp0EtGpUrY+LMciKfIXiLL2r/SiSRpagE5Fp2gX+rflp/Os1VJDAyqymg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ '@tailwindcss/oxide-darwin-x64@4.1.16':
+ resolution: {integrity: sha512-vjrl/1Ub9+JwU6BP0emgipGjowzYZMjbWCDqwA2Z4vCa+HBSpP4v6U2ddejcHsolsYxwL5r4bPNoamlV0xDdLg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
'@tailwindcss/oxide-freebsd-x64@4.1.15':
resolution: {integrity: sha512-quISQDWqiB6Cqhjc3iWptXVZHNVENsWoI77L1qgGEHNIdLDLFnw3/AfY7DidAiiCIkGX/MjIdB3bbBZR/G2aJg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
+ '@tailwindcss/oxide-freebsd-x64@4.1.16':
+ resolution: {integrity: sha512-TSMpPYpQLm+aR1wW5rKuUuEruc/oOX3C7H0BTnPDn7W/eMw8W+MRMpiypKMkXZfwH8wqPIRKppuZoedTtNj2tg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.15':
resolution: {integrity: sha512-ObG76+vPlab65xzVUQbExmDU9FIeYLQ5k2LrQdR2Ud6hboR+ZobXpDoKEYXf/uOezOfIYmy2Ta3w0ejkTg9yxg==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16':
+ resolution: {integrity: sha512-p0GGfRg/w0sdsFKBjMYvvKIiKy/LNWLWgV/plR4lUgrsxFAoQBFrXkZ4C0w8IOXfslB9vHK/JGASWD2IefIpvw==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.15':
resolution: {integrity: sha512-4WbBacRmk43pkb8/xts3wnOZMDKsPFyEH/oisCm2q3aLZND25ufvJKcDUpAu0cS+CBOL05dYa8D4U5OWECuH/Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.16':
+ resolution: {integrity: sha512-DoixyMmTNO19rwRPdqviTrG1rYzpxgyYJl8RgQvdAQUzxC1ToLRqtNJpU/ATURSKgIg6uerPw2feW0aS8SNr/w==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.15':
resolution: {integrity: sha512-AbvmEiteEj1nf42nE8skdHv73NoR+EwXVSgPY6l39X12Ex8pzOwwfi3Kc8GAmjsnsaDEbk+aj9NyL3UeyHcTLg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.16':
+ resolution: {integrity: sha512-H81UXMa9hJhWhaAUca6bU2wm5RRFpuHImrwXBUvPbYb+3jo32I9VIwpOX6hms0fPmA6f2pGVlybO6qU8pF4fzQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.15':
resolution: {integrity: sha512-+rzMVlvVgrXtFiS+ES78yWgKqpThgV19ISKD58Ck+YO5pO5KjyxLt7AWKsWMbY0R9yBDC82w6QVGz837AKQcHg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.16':
+ resolution: {integrity: sha512-ZGHQxDtFC2/ruo7t99Qo2TTIvOERULPl5l0K1g0oK6b5PGqjYMga+FcY1wIUnrUxY56h28FxybtDEla+ICOyew==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@tailwindcss/oxide-linux-x64-musl@4.1.15':
resolution: {integrity: sha512-fPdEy7a8eQN9qOIK3Em9D3TO1z41JScJn8yxl/76mp4sAXFDfV4YXxsiptJcOwy6bGR+70ZSwFIZhTXzQeqwQg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ '@tailwindcss/oxide-linux-x64-musl@4.1.16':
+ resolution: {integrity: sha512-Oi1tAaa0rcKf1Og9MzKeINZzMLPbhxvm7rno5/zuP1WYmpiG0bEHq4AcRUiG2165/WUzvxkW4XDYCscZWbTLZw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@tailwindcss/oxide-wasm32-wasi@4.1.15':
resolution: {integrity: sha512-sJ4yd6iXXdlgIMfIBXuVGp/NvmviEoMVWMOAGxtxhzLPp9LOj5k0pMEMZdjeMCl4C6Up+RM8T3Zgk+BMQ0bGcQ==}
engines: {node: '>=14.0.0'}
@@ -2385,22 +2678,53 @@ packages:
- '@emnapi/wasi-threads'
- tslib
+ '@tailwindcss/oxide-wasm32-wasi@4.1.16':
+ resolution: {integrity: sha512-B01u/b8LteGRwucIBmCQ07FVXLzImWESAIMcUU6nvFt/tYsQ6IHz8DmZ5KtvmwxD+iTYBtM1xwoGXswnlu9v0Q==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.15':
resolution: {integrity: sha512-sJGE5faXnNQ1iXeqmRin7Ds/ru2fgCiaQZQQz3ZGIDtvbkeV85rAZ0QJFMDg0FrqsffZG96H1U9AQlNBRLsHVg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.16':
+ resolution: {integrity: sha512-zX+Q8sSkGj6HKRTMJXuPvOcP8XfYON24zJBRPlszcH1Np7xuHXhWn8qfFjIujVzvH3BHU+16jBXwgpl20i+v9A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.15':
resolution: {integrity: sha512-NLeHE7jUV6HcFKS504bpOohyi01zPXi2PXmjFfkzTph8xRxDdxkRsXm/xDO5uV5K3brrE1cCwbUYmFUSHR3u1w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.16':
+ resolution: {integrity: sha512-m5dDFJUEejbFqP+UXVstd4W/wnxA4F61q8SoL+mqTypId2T2ZpuxosNSgowiCnLp2+Z+rivdU0AqpfgiD7yCBg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@tailwindcss/oxide@4.1.15':
resolution: {integrity: sha512-krhX+UOOgnsUuks2SR7hFafXmLQrKxB4YyRTERuCE59JlYL+FawgaAlSkOYmDRJdf1Q+IFNDMl9iRnBW7QBDfQ==}
engines: {node: '>= 10'}
+ '@tailwindcss/oxide@4.1.16':
+ resolution: {integrity: sha512-2OSv52FRuhdlgyOQqgtQHuCgXnS8nFSYRp2tJ+4WZXKgTxqPy7SMSls8c3mPT5pkZ17SBToGM5LHEJBO7miEdg==}
+ engines: {node: '>= 10'}
+
+ '@tailwindcss/postcss@4.1.16':
+ resolution: {integrity: sha512-Qn3SFGPXYQMKR/UtqS+dqvPrzEeBZHrFA92maT4zijCVggdsXnDBMsPFJo1eArX3J+O+Gi+8pV4PkqjLCNBk3A==}
+
'@tailwindcss/vite@4.1.15':
resolution: {integrity: sha512-B6s60MZRTUil+xKoZoGe6i0Iar5VuW+pmcGlda2FX+guDuQ1G1sjiIy1W0frneVpeL/ZjZ4KEgWZHNrIm++2qA==}
peerDependencies:
@@ -2423,6 +2747,9 @@ packages:
'@tanstack/query-core@5.90.5':
resolution: {integrity: sha512-wLamYp7FaDq6ZnNehypKI5fNvxHPfTYylE0m/ZpuuzJfJqhR5Pxg9gvGBHZx4n7J+V5Rg5mZxHHTlv25Zt5u+w==}
+ '@tanstack/query-devtools@5.90.1':
+ resolution: {integrity: sha512-GtINOPjPUH0OegJExZ70UahT9ykmAhmtNVcmtdnOZbxLwT7R5OmRztR5Ahe3/Cu7LArEmR6/588tAycuaWb1xQ==}
+
'@tanstack/react-pacer@0.2.0':
resolution: {integrity: sha512-KU5GtjkKSeNdYCilen5Dc+Pu/6BPQbsQshKrUUjrg7URyJIiGBCz6ZZFre1QjDz/aeUeqUJWMWSm+2Dsh64v+w==}
engines: {node: '>=18'}
@@ -2430,6 +2757,12 @@ packages:
react: '>=16.8'
react-dom: '>=16.8'
+ '@tanstack/react-query-devtools@5.90.2':
+ resolution: {integrity: sha512-vAXJzZuBXtCQtrY3F/yUNJCV4obT/A/n81kb3+YqLbro5Z2+phdAbceO+deU3ywPw8B42oyJlp4FhO0SoivDFQ==}
+ peerDependencies:
+ '@tanstack/react-query': ^5.90.2
+ react: ^18 || ^19
+
'@tanstack/react-query@5.90.5':
resolution: {integrity: sha512-pN+8UWpxZkEJ/Rnnj2v2Sxpx1WFlaa9L6a4UO89p6tTQbeo+m0MS8oYDjbggrR8QcTyjKoYWKS3xJQGr3ExT8Q==}
peerDependencies:
@@ -2580,6 +2913,9 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ '@types/node@20.19.24':
+ resolution: {integrity: sha512-FE5u0ezmi6y9OZEzlJfg37mqqf6ZDSF2V/NLjUyGrR9uTZ7Sb9F7bLNZ03S4XVUNRWGA7Ck4c1kK+YnuWjl+DA==}
+
'@types/node@22.18.12':
resolution: {integrity: sha512-BICHQ67iqxQGFSzfCFTT7MRQ5XcBjG5aeKh5Ok38UBbPe5fxTyE+aHFxwVrGyr8GNlqFMLKD1D3P2K/1ks8tog==}
@@ -2964,6 +3300,9 @@ packages:
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
+ client-only@0.0.1:
+ resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
+
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -4078,6 +4417,27 @@ packages:
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ next@16.0.1:
+ resolution: {integrity: sha512-e9RLSssZwd35p7/vOa+hoDFggUZIUbZhIUSLZuETCwrCVvxOs87NamoUzT+vbcNAL8Ld9GobBnWOA6SbV/arOw==}
+ engines: {node: '>=20.9.0'}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ '@playwright/test': ^1.51.1
+ babel-plugin-react-compiler: '*'
+ 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
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ '@playwright/test':
+ optional: true
+ babel-plugin-react-compiler:
+ optional: true
+ sass:
+ optional: true
+
node-addon-api@7.1.1:
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
@@ -4286,6 +4646,10 @@ packages:
resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
+ postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
+
postcss@8.5.6:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
@@ -4419,6 +4783,10 @@ packages:
resolution: {integrity: sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==}
engines: {node: '>=0.10.0'}
+ react@19.2.0:
+ resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
+ engines: {node: '>=0.10.0'}
+
read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
@@ -4574,6 +4942,10 @@ packages:
resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
engines: {node: '>= 0.4'}
+ sharp@0.34.4:
+ resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -4719,6 +5091,19 @@ packages:
strip-literal@3.1.0:
resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
+ styled-jsx@5.1.6:
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ babel-plugin-macros:
+ optional: true
+
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -4739,6 +5124,9 @@ packages:
tailwindcss@4.1.15:
resolution: {integrity: sha512-k2WLnWkYFkdpRv+Oby3EBXIyQC8/s1HOFMBUViwtAh6Z5uAozeUSMQlIsn/c6Q2iJzqG6aJT3wdPaRNj70iYxQ==}
+ tailwindcss@4.1.16:
+ resolution: {integrity: sha512-pONL5awpaQX4LN5eiv7moSiSPd/DLDzKVRJz8Q9PgzmAdd1R4307GQS2ZpfiN7ZmekdQrfhZZiSE5jkLR4WNaA==}
+
tapable@2.3.0:
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
@@ -5194,6 +5582,8 @@ snapshots:
graphql: 16.11.0
typescript: 5.7.3
+ '@alloc/quick-lru@5.2.0': {}
+
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
@@ -5972,6 +6362,95 @@ snapshots:
'@humanwhocodes/retry@0.4.3': {}
+ '@img/colour@1.0.0':
+ optional: true
+
+ '@img/sharp-darwin-arm64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.2.3
+ optional: true
+
+ '@img/sharp-darwin-x64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.2.3
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linux-ppc64@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.3':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.2.3':
+ optional: true
+
+ '@img/sharp-linux-arm64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.2.3
+ optional: true
+
+ '@img/sharp-linux-arm@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.2.3
+ optional: true
+
+ '@img/sharp-linux-ppc64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-ppc64': 1.2.3
+ optional: true
+
+ '@img/sharp-linux-s390x@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.2.3
+ optional: true
+
+ '@img/sharp-linux-x64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.2.3
+ optional: true
+
+ '@img/sharp-linuxmusl-arm64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.3
+ optional: true
+
+ '@img/sharp-linuxmusl-x64@0.34.4':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.3
+ optional: true
+
+ '@img/sharp-wasm32@0.34.4':
+ dependencies:
+ '@emnapi/runtime': 1.6.0
+ optional: true
+
+ '@img/sharp-win32-arm64@0.34.4':
+ optional: true
+
+ '@img/sharp-win32-ia32@0.34.4':
+ optional: true
+
+ '@img/sharp-win32-x64@0.34.4':
+ optional: true
+
'@inquirer/external-editor@1.0.1(@types/node@22.18.12)':
dependencies:
chardet: 2.1.0
@@ -6040,6 +6519,32 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
+ '@next/env@16.0.1': {}
+
+ '@next/swc-darwin-arm64@16.0.1':
+ optional: true
+
+ '@next/swc-darwin-x64@16.0.1':
+ optional: true
+
+ '@next/swc-linux-arm64-gnu@16.0.1':
+ optional: true
+
+ '@next/swc-linux-arm64-musl@16.0.1':
+ optional: true
+
+ '@next/swc-linux-x64-gnu@16.0.1':
+ optional: true
+
+ '@next/swc-linux-x64-musl@16.0.1':
+ optional: true
+
+ '@next/swc-win32-arm64-msvc@16.0.1':
+ optional: true
+
+ '@next/swc-win32-x64-msvc@16.0.1':
+ optional: true
+
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
dependencies:
eslint-scope: 5.1.1
@@ -6952,6 +7457,10 @@ snapshots:
'@stripe/stripe-js@7.9.0': {}
+ '@swc/helpers@0.5.15':
+ dependencies:
+ tslib: 2.8.1
+
'@tailwindcss/cli@4.1.15':
dependencies:
'@parcel/watcher': 2.5.1
@@ -6972,42 +7481,88 @@ snapshots:
source-map-js: 1.2.1
tailwindcss: 4.1.15
+ '@tailwindcss/node@4.1.16':
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ enhanced-resolve: 5.18.3
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ magic-string: 0.30.19
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.16
+
'@tailwindcss/oxide-android-arm64@4.1.15':
optional: true
+ '@tailwindcss/oxide-android-arm64@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-darwin-arm64@4.1.15':
optional: true
+ '@tailwindcss/oxide-darwin-arm64@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-darwin-x64@4.1.15':
optional: true
+ '@tailwindcss/oxide-darwin-x64@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-freebsd-x64@4.1.15':
optional: true
+ '@tailwindcss/oxide-freebsd-x64@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.15':
optional: true
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.15':
optional: true
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.15':
optional: true
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.15':
optional: true
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-linux-x64-musl@4.1.15':
optional: true
+ '@tailwindcss/oxide-linux-x64-musl@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-wasm32-wasi@4.1.15':
optional: true
+ '@tailwindcss/oxide-wasm32-wasi@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.15':
optional: true
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.16':
+ optional: true
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.15':
optional: true
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.16':
+ optional: true
+
'@tailwindcss/oxide@4.1.15':
optionalDependencies:
'@tailwindcss/oxide-android-arm64': 4.1.15
@@ -7023,6 +7578,29 @@ snapshots:
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.15
'@tailwindcss/oxide-win32-x64-msvc': 4.1.15
+ '@tailwindcss/oxide@4.1.16':
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.16
+ '@tailwindcss/oxide-darwin-arm64': 4.1.16
+ '@tailwindcss/oxide-darwin-x64': 4.1.16
+ '@tailwindcss/oxide-freebsd-x64': 4.1.16
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.16
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.16
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.16
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.16
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.16
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.16
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.16
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.16
+
+ '@tailwindcss/postcss@4.1.16':
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ '@tailwindcss/node': 4.1.16
+ '@tailwindcss/oxide': 4.1.16
+ postcss: 8.5.6
+ tailwindcss: 4.1.16
+
'@tailwindcss/vite@4.1.15(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
dependencies:
'@tailwindcss/node': 4.1.15
@@ -7050,62 +7628,75 @@ snapshots:
'@tanstack/query-core@5.90.5': {}
+ '@tanstack/query-devtools@5.90.1': {}
+
'@tanstack/react-pacer@0.2.0(react-dom@19.2.0(react@19.1.1))(react@19.1.1)':
dependencies:
'@tanstack/pacer': 0.2.0
react: 19.1.1
react-dom: 19.2.0(react@19.1.1)
+ '@tanstack/react-query-devtools@5.90.2(@tanstack/react-query@5.90.5(react@19.2.0))(react@19.2.0)':
+ dependencies:
+ '@tanstack/query-devtools': 5.90.1
+ '@tanstack/react-query': 5.90.5(react@19.2.0)
+ react: 19.2.0
+
'@tanstack/react-query@5.90.5(react@19.1.1)':
dependencies:
'@tanstack/query-core': 5.90.5
react: 19.1.1
- '@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)':
+ '@tanstack/react-query@5.90.5(react@19.2.0)':
+ dependencies:
+ '@tanstack/query-core': 5.90.5
+ react: 19.2.0
+
+ '@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@tanstack/history': 1.133.19
- '@tanstack/react-store': 0.7.7(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
+ '@tanstack/react-store': 0.7.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@tanstack/router-core': 1.133.20
isbot: 5.1.31
- react: 19.1.1
- react-dom: 19.2.0(react@19.1.1)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- '@tanstack/react-start-client@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)':
+ '@tanstack/react-start-client@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
- '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
+ '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@tanstack/router-core': 1.133.20
'@tanstack/start-client-core': 1.133.20
- react: 19.1.1
- react-dom: 19.2.0(react@19.1.1)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- '@tanstack/react-start-server@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)':
+ '@tanstack/react-start-server@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@tanstack/history': 1.133.19
- '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
+ '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@tanstack/router-core': 1.133.20
'@tanstack/start-client-core': 1.133.20
'@tanstack/start-server-core': 1.133.20
- react: 19.1.1
- react-dom: 19.2.0(react@19.1.1)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
transitivePeerDependencies:
- crossws
- '@tanstack/react-start@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
+ '@tanstack/react-start@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
dependencies:
- '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
- '@tanstack/react-start-client': 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
- '@tanstack/react-start-server': 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
+ '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@tanstack/react-start-client': 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@tanstack/react-start-server': 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
'@tanstack/router-utils': 1.133.19
'@tanstack/start-client-core': 1.133.20
- '@tanstack/start-plugin-core': 1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
+ '@tanstack/start-plugin-core': 1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
'@tanstack/start-server-core': 1.133.20
pathe: 2.0.3
- react: 19.1.1
- react-dom: 19.2.0(react@19.1.1)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
vite: 5.4.21(@types/node@22.18.12)(lightningcss@1.30.2)
transitivePeerDependencies:
- '@rsbuild/core'
@@ -7114,12 +7705,12 @@ snapshots:
- vite-plugin-solid
- webpack
- '@tanstack/react-store@0.7.7(react-dom@19.2.0(react@19.1.1))(react@19.1.1)':
+ '@tanstack/react-store@0.7.7(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
dependencies:
'@tanstack/store': 0.7.7
- react: 19.1.1
- react-dom: 19.2.0(react@19.1.1)
- use-sync-external-store: 1.6.0(react@19.1.1)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ use-sync-external-store: 1.6.0(react@19.2.0)
'@tanstack/router-core@1.133.20':
dependencies:
@@ -7144,7 +7735,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@tanstack/router-plugin@1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
+ '@tanstack/router-plugin@1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
dependencies:
'@babel/core': 7.28.3
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
@@ -7161,7 +7752,7 @@ snapshots:
unplugin: 2.3.10
zod: 3.25.76
optionalDependencies:
- '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
+ '@tanstack/react-router': 1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
vite: 5.4.21(@types/node@22.18.12)(lightningcss@1.30.2)
transitivePeerDependencies:
- supports-color
@@ -7203,7 +7794,7 @@ snapshots:
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- '@tanstack/start-plugin-core@1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
+ '@tanstack/start-plugin-core@1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))':
dependencies:
'@babel/code-frame': 7.26.2
'@babel/core': 7.28.3
@@ -7211,7 +7802,7 @@ snapshots:
'@rolldown/pluginutils': 1.0.0-beta.40
'@tanstack/router-core': 1.133.20
'@tanstack/router-generator': 1.133.20
- '@tanstack/router-plugin': 1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.1.1))(react@19.1.1))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
+ '@tanstack/router-plugin': 1.133.22(@tanstack/react-router@1.133.22(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
'@tanstack/router-utils': 1.133.19
'@tanstack/server-functions-plugin': 1.133.19(vite@5.4.21(@types/node@22.18.12)(lightningcss@1.30.2))
'@tanstack/start-client-core': 1.133.20
@@ -7320,6 +7911,10 @@ snapshots:
'@types/node@12.20.55': {}
+ '@types/node@20.19.24':
+ dependencies:
+ undici-types: 6.21.0
+
'@types/node@22.18.12':
dependencies:
undici-types: 6.21.0
@@ -7811,6 +8406,8 @@ snapshots:
classnames@2.5.1: {}
+ client-only@0.0.1: {}
+
clsx@2.1.1: {}
cmdk@1.0.0(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.1.1))(react@19.1.1):
@@ -9047,6 +9644,29 @@ snapshots:
natural-compare@1.4.0: {}
+ next@16.0.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ dependencies:
+ '@next/env': 16.0.1
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001737
+ postcss: 8.4.31
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ styled-jsx: 5.1.6(react@19.2.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 16.0.1
+ '@next/swc-darwin-x64': 16.0.1
+ '@next/swc-linux-arm64-gnu': 16.0.1
+ '@next/swc-linux-arm64-musl': 16.0.1
+ '@next/swc-linux-x64-gnu': 16.0.1
+ '@next/swc-linux-x64-musl': 16.0.1
+ '@next/swc-win32-arm64-msvc': 16.0.1
+ '@next/swc-win32-x64-msvc': 16.0.1
+ sharp: 0.34.4
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
node-addon-api@7.1.1: {}
node-fetch@2.7.0:
@@ -9262,6 +9882,12 @@ snapshots:
possible-typed-array-names@1.1.0: {}
+ postcss@8.4.31:
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
postcss@8.5.6:
dependencies:
nanoid: 3.3.11
@@ -9315,6 +9941,11 @@ snapshots:
react: 19.1.1
scheduler: 0.27.0
+ react-dom@19.2.0(react@19.2.0):
+ dependencies:
+ react: 19.2.0
+ scheduler: 0.27.0
+
react-hook-form@7.65.0(react@19.1.1):
dependencies:
react: 19.1.1
@@ -9380,6 +10011,8 @@ snapshots:
react@19.1.1: {}
+ react@19.2.0: {}
+
read-yaml-file@1.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -9581,6 +10214,36 @@ snapshots:
es-errors: 1.3.0
es-object-atoms: 1.1.1
+ sharp@0.34.4:
+ dependencies:
+ '@img/colour': 1.0.0
+ detect-libc: 2.1.2
+ semver: 7.7.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.34.4
+ '@img/sharp-darwin-x64': 0.34.4
+ '@img/sharp-libvips-darwin-arm64': 1.2.3
+ '@img/sharp-libvips-darwin-x64': 1.2.3
+ '@img/sharp-libvips-linux-arm': 1.2.3
+ '@img/sharp-libvips-linux-arm64': 1.2.3
+ '@img/sharp-libvips-linux-ppc64': 1.2.3
+ '@img/sharp-libvips-linux-s390x': 1.2.3
+ '@img/sharp-libvips-linux-x64': 1.2.3
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.3
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.3
+ '@img/sharp-linux-arm': 0.34.4
+ '@img/sharp-linux-arm64': 0.34.4
+ '@img/sharp-linux-ppc64': 0.34.4
+ '@img/sharp-linux-s390x': 0.34.4
+ '@img/sharp-linux-x64': 0.34.4
+ '@img/sharp-linuxmusl-arm64': 0.34.4
+ '@img/sharp-linuxmusl-x64': 0.34.4
+ '@img/sharp-wasm32': 0.34.4
+ '@img/sharp-win32-arm64': 0.34.4
+ '@img/sharp-win32-ia32': 0.34.4
+ '@img/sharp-win32-x64': 0.34.4
+ optional: true
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
@@ -9746,6 +10409,11 @@ snapshots:
dependencies:
js-tokens: 9.0.1
+ styled-jsx@5.1.6(react@19.2.0):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.2.0
+
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -9760,6 +10428,8 @@ snapshots:
tailwindcss@4.1.15: {}
+ tailwindcss@4.1.16: {}
+
tapable@2.3.0: {}
term-size@2.2.1: {}
@@ -9958,6 +10628,10 @@ snapshots:
dependencies:
react: 19.1.1
+ use-sync-external-store@1.6.0(react@19.2.0):
+ dependencies:
+ react: 19.2.0
+
vaul@1.1.2(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.1.1))(react@19.1.1):
dependencies:
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.2(@types/react@19.2.2))(@types/react@19.2.2)(react-dom@19.2.0(react@19.1.1))(react@19.1.1)
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 924b55f4..e535fd37 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,2 +1,3 @@
packages:
- packages/*
+ - examples/*