diff --git a/package.json b/package.json index 5c445a2a..a59a3d13 100644 --- a/package.json +++ b/package.json @@ -21,10 +21,10 @@ "changeset": "changeset" }, "devDependencies": { - "@changesets/cli": "^2.27.6", + "@changesets/cli": "^2.27.7", "@ianvs/prettier-plugin-sort-imports": "^4.3.0", - "@remix-run/eslint-config": "2.9.2", - "@types/node": "20.14.8", + "@remix-run/eslint-config": "2.10.1", + "@types/node": "20.14.9", "@types/react": "18.3.3", "@types/react-dom": "18.3.0", "cross-env": "7.0.3", @@ -35,12 +35,12 @@ "react-dom": "18.3.1", "rimraf": "5.0.7", "tsup": "8.1.0", - "turbo": "2.0.4", - "typescript": "5.5.2" + "turbo": "2.0.6", + "typescript": "5.5.3" }, "optionalDependencies": { - "@esbuild/darwin-x64": "^0.21.5", - "turbo-darwin-arm64": "^2.0.5" + "@esbuild/darwin-x64": "^0.23.0", + "turbo-darwin-arm64": "^2.0.6" }, "engines": { "node": ">=18" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index dcd48685..af1e1889 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @weaverse/core +## 3.2.1 + +### Patch Changes + +- chore: fix some typos + +## 3.2.0 + +### Minor Changes + +- Update dependencies + ## 3.1.16 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 264499ab..de029bde 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -2,7 +2,7 @@ "name": "@weaverse/core", "author": "Weaverse Team", "description": "Weaverse Core", - "version": "3.1.16", + "version": "3.2.1", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -22,12 +22,24 @@ "node": ">=18" }, "scripts": { - "start": "npm run dev", - "dev": "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --sourcemap", - "build": "tsup src/index.ts --format esm,cjs --dts --outDir dist", + "dev": "tsup --watch", + "build": "tsup", "clean": "rimraf dist", "prepublish": "npm run build" }, + "tsup": { + "entry": [ + "src/index.ts" + ], + "format": [ + "esm", + "cjs" + ], + "dts": true, + "sourcemap": true, + "clean": true, + "outDir": "dist" + }, "dependencies": { "@stitches/core": "^1.2.8" } diff --git a/packages/hydrogen/CHANGELOG.md b/packages/hydrogen/CHANGELOG.md index 1e71ef62..b1a9027c 100644 --- a/packages/hydrogen/CHANGELOG.md +++ b/packages/hydrogen/CHANGELOG.md @@ -1,5 +1,24 @@ # @weaverse/hydrogen +## 3.2.1 + +### Patch Changes + +- chore: fix some typos +- Updated dependencies + - @weaverse/react@3.2.1 + +## 3.2.0 + +### Minor Changes + +- Update dependencies + +### Patch Changes + +- Updated dependencies + - @weaverse/react@3.2.0 + ## 3.1.16 ### Patch Changes diff --git a/packages/hydrogen/package.json b/packages/hydrogen/package.json index 5a30998d..d35cfe49 100644 --- a/packages/hydrogen/package.json +++ b/packages/hydrogen/package.json @@ -2,7 +2,7 @@ "name": "@weaverse/hydrogen", "author": "Weaverse Team", "description": "Components, hooks, and utilities for building Shopify Hydrogen websites with Weaverse", - "version": "3.1.16", + "version": "3.2.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -22,27 +22,41 @@ "node": ">=18" }, "scripts": { - "start": "npm run dev", - "dev": "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --external @remix-run/react,@shopify/hydrogen", - "build": "tsup src/index.ts --format esm,cjs --dts --outDir dist --external @remix-run/react,@shopify/hydrogen", + "dev": "tsup --watch", + "build": "tsup", "clean": "rimraf dist", "prepublish": "npm run build" }, + "tsup": { + "entry": [ + "src/index.ts" + ], + "format": [ + "esm", + "cjs" + ], + "dts": true, + "sourcemap": true, + "clean": true, + "outDir": "dist", + "external": [ + "@remix-run/react", + "@shopify/hydrogen", + "react", + "react-dom", + "react-error-boundary" + ] + }, + "dependencies": { + "@weaverse/react": "3.2.1", + "react-error-boundary": "^4.0.13" + }, "peerDependencies": { "@remix-run/react": "^2", "@shopify/hydrogen": ">=2023", "react": ">=18", "react-dom": ">=18" }, - "prettier": { - "printWidth": 80, - "semi": false, - "singleQuote": true - }, - "dependencies": { - "@weaverse/react": "3.1.16", - "react-error-boundary": "^4.0.13" - }, "devDependencies": { "@shopify/oxygen-workers-types": "4", "@shopify/remix-oxygen": "2" diff --git a/packages/hydrogen/src/WeaverseHydrogenRoot.tsx b/packages/hydrogen/src/WeaverseHydrogenRoot.tsx index b3b4b9a9..a2da0624 100644 --- a/packages/hydrogen/src/WeaverseHydrogenRoot.tsx +++ b/packages/hydrogen/src/WeaverseHydrogenRoot.tsx @@ -23,6 +23,7 @@ export let WeaverseHydrogenRoot = memo( weaverseData: WeaverseData } let data = loaderData?.weaverseData + if (data) { if (data instanceof Promise) { return ( diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index e1210cbc..3a77f10c 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,24 @@ # @weaverse/react +## 3.2.1 + +### Patch Changes + +- chore: fix some typos +- Updated dependencies + - @weaverse/core@3.2.1 + +## 3.2.0 + +### Minor Changes + +- Update dependencies + +### Patch Changes + +- Updated dependencies + - @weaverse/core@3.2.0 + ## 3.1.16 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 579cadb5..e06aa764 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -2,7 +2,7 @@ "name": "@weaverse/react", "author": "Weaverse Team", "description": "React bindings for Weaverse", - "version": "3.1.16", + "version": "3.2.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -22,23 +22,34 @@ "node": ">=18" }, "scripts": { - "start": "npm run dev", - "dev": "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --external react,clsx --sourcemap", - "build": "tsup src/index.ts --format esm,cjs --dts --outDir dist --external react,clsx", + "dev": "tsup --watch", + "build": "tsup", "clean": "rimraf dist", "prepublish": "npm run build" }, + "tsup": { + "entry": [ + "src/index.ts" + ], + "format": [ + "esm", + "cjs" + ], + "dts": true, + "sourcemap": true, + "clean": true, + "outDir": "dist", + "external": [ + "react", + "clsx" + ] + }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" }, - "prettier": { - "printWidth": 80, - "semi": false, - "singleQuote": true - }, "dependencies": { - "@weaverse/core": "3.1.16", + "@weaverse/core": "3.2.1", "clsx": "^2.1.1" } } diff --git a/packages/shopify/CHANGELOG.md b/packages/shopify/CHANGELOG.md index 713478bf..03505115 100644 --- a/packages/shopify/CHANGELOG.md +++ b/packages/shopify/CHANGELOG.md @@ -1,5 +1,24 @@ # @weaverse/shopify +## 3.2.1 + +### Patch Changes + +- chore: fix some typos +- Updated dependencies + - @weaverse/react@3.2.1 + +## 3.2.0 + +### Minor Changes + +- Update dependencies + +### Patch Changes + +- Updated dependencies + - @weaverse/react@3.2.0 + ## 3.1.16 ### Patch Changes diff --git a/packages/shopify/package.json b/packages/shopify/package.json index 85711bff..2b8c360f 100644 --- a/packages/shopify/package.json +++ b/packages/shopify/package.json @@ -2,7 +2,7 @@ "name": "@weaverse/shopify", "author": "Weaverse Team", "description": "Weaverse Components for Shopify Online Store 2.0 Section builder", - "version": "3.1.16", + "version": "3.2.1", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -22,25 +22,39 @@ "node": ">=18" }, "scripts": { - "start": "npm run dev", - "dev": "tsup src/index.ts --format esm,cjs --dts --outDir dist --watch --external react,keen-slider,clsx --sourcemap", - "build": "tsup src/index.ts --format esm,cjs --dts --outDir dist --external react,keen-slider,clsx", + "dev": "tsup --watch", + "build": "tsup", "clean": "rimraf dist", "prepublish": "npm run build" }, + "tsup": { + "entry": [ + "src/index.ts" + ], + "format": [ + "esm", + "cjs" + ], + "dts": true, + "sourcemap": true, + "clean": true, + "outDir": "dist", + "external": [ + "react", + "keen-slider", + "clsx", + "@stitches/react", + "@radix-ui/react-dialog" + ] + }, "peerDependencies": { "react": ">=18", "react-dom": ">=18" }, - "prettier": { - "printWidth": 80, - "semi": false, - "singleQuote": true - }, "dependencies": { "@radix-ui/react-dialog": "^1.1.1", "@stitches/react": "^1.2.8", - "@weaverse/react": "3.1.16", + "@weaverse/react": "3.2.1", "keen-slider": "^6.8.6" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 44bf2278..d1f50d52 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,24 +9,24 @@ importers: .: optionalDependencies: '@esbuild/darwin-x64': - specifier: ^0.21.5 - version: 0.21.5 + specifier: ^0.23.0 + version: 0.23.0 turbo-darwin-arm64: - specifier: ^2.0.5 - version: 2.0.5 + specifier: ^2.0.6 + version: 2.0.6 devDependencies: '@changesets/cli': - specifier: ^2.27.6 - version: 2.27.6 + specifier: ^2.27.7 + version: 2.27.7 '@ianvs/prettier-plugin-sort-imports': specifier: ^4.3.0 version: 4.3.0(prettier@3.3.2) '@remix-run/eslint-config': - specifier: 2.9.2 - version: 2.9.2(eslint@8.57.0)(react@18.3.1)(typescript@5.5.2) + specifier: 2.10.1 + version: 2.10.1(eslint@8.57.0)(react@18.3.1)(typescript@5.5.3) '@types/node': - specifier: 20.14.8 - version: 20.14.8 + specifier: 20.14.9 + version: 20.14.9 '@types/react': specifier: 18.3.3 version: 18.3.3 @@ -56,13 +56,13 @@ importers: version: 5.0.7 tsup: specifier: 8.1.0 - version: 8.1.0(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2))(typescript@5.5.2) + version: 8.1.0(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3))(typescript@5.5.3) turbo: - specifier: 2.0.4 - version: 2.0.4 + specifier: 2.0.6 + version: 2.0.6 typescript: - specifier: 5.5.2 - version: 5.5.2 + specifier: 5.5.3 + version: 5.5.3 packages/cli: dependencies: @@ -92,10 +92,10 @@ importers: dependencies: '@remix-run/react': specifier: ^2 - version: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.2) + version: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) '@shopify/hydrogen': specifier: '>=2023' - version: 2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.2))(@remix-run/server-runtime@2.9.2(typescript@5.5.2))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.8)) + version: 2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@remix-run/server-runtime@2.9.2(typescript@5.5.3))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.9)) '@weaverse/react': specifier: 3.1.16 version: link:../react @@ -114,7 +114,7 @@ importers: version: 4.0.0 '@shopify/remix-oxygen': specifier: '2' - version: 2.0.4(@remix-run/server-runtime@2.9.2(typescript@5.5.2))(@shopify/oxygen-workers-types@4.0.0) + version: 2.0.4(@remix-run/server-runtime@2.9.2(typescript@5.5.3))(@shopify/oxygen-workers-types@4.0.0) packages/react: dependencies: @@ -159,7 +159,7 @@ importers: version: 5.0.14 '@graphql-codegen/cli': specifier: 5.0.2 - version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5) + version: 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.9)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5) '@headlessui/react': specifier: 2.0.4 version: 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -177,15 +177,15 @@ importers: version: 3.61.2 '@shopify/cli-hydrogen': specifier: ^8.1.1 - version: 8.1.1(@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5))(@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.8)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8)))(@shopify/hydrogen-codegen@0.3.1(graphql@16.8.2))(@shopify/mini-oxygen@3.0.3(vite@5.3.0(@types/node@20.14.8)))(@types/react@18.3.3)(graphql-config@5.0.3(@types/node@20.14.8)(graphql@16.8.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.8)) + version: 8.1.1(@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.9)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5))(@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9)))(@shopify/hydrogen-codegen@0.3.1(graphql@16.8.2))(@shopify/mini-oxygen@3.0.3(vite@5.3.0(@types/node@20.14.9)))(@types/react@18.3.3)(graphql-config@5.0.3(@types/node@20.14.9)(graphql@16.8.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.9)) '@shopify/hydrogen': specifier: ^2024.4.7 - version: 2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/server-runtime@2.9.2(typescript@5.4.5))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.8)) + version: 2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/server-runtime@2.9.2(typescript@5.4.5))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.9)) '@shopify/remix-oxygen': specifier: ^2.0.4 version: 2.0.4(@remix-run/server-runtime@2.9.2(typescript@5.4.5))(@shopify/oxygen-workers-types@4.0.0) '@weaverse/hydrogen': - specifier: 3.1.16 + specifier: ^3.1.16 version: link:../../packages/hydrogen class-variance-authority: specifier: 0.7.0 @@ -254,7 +254,7 @@ importers: version: 1.44.1 '@remix-run/dev': specifier: 2.9.2 - version: 2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.8)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8)) + version: 2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9)) '@remix-run/eslint-config': specifier: 2.9.2 version: 2.9.2(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5) @@ -263,7 +263,7 @@ importers: version: 0.3.1(graphql@16.8.2) '@shopify/mini-oxygen': specifier: 3.0.3 - version: 3.0.3(vite@5.3.0(@types/node@20.14.8)) + version: 3.0.3(vite@5.3.0(@types/node@20.14.9)) '@shopify/oxygen-workers-types': specifier: 4.0.0 version: 4.0.0 @@ -272,10 +272,10 @@ importers: version: 1.1.2 '@tailwindcss/forms': specifier: 0.5.7 - version: 0.5.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))) + version: 0.5.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))) '@tailwindcss/typography': specifier: 0.5.13 - version: 0.5.13(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))) + version: 0.5.13(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))) '@total-typescript/ts-reset': specifier: 0.5.1 version: 0.5.1 @@ -305,19 +305,19 @@ importers: version: 5.0.7 tailwindcss: specifier: 3.4.4 - version: 3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)) + version: 3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)) ts-node: specifier: 10.9.2 - version: 10.9.2(@types/node@20.14.8)(typescript@5.4.5) + version: 10.9.2(@types/node@20.14.9)(typescript@5.4.5) typescript: specifier: 5.4.5 version: 5.4.5 vite: specifier: 5.3.0 - version: 5.3.0(@types/node@20.14.8) + version: 5.3.0(@types/node@20.14.9) vite-tsconfig-paths: specifier: 4.3.2 - version: 4.3.2(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8)) + version: 4.3.2(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9)) packages: @@ -717,11 +717,11 @@ packages: resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==} engines: {node: '>=6.9.0'} - '@bugsnag/browser@7.22.7': - resolution: {integrity: sha512-70jFkWKscK2osm7bnFbPLevrzHClrygM3UcKetKs/l81Xuzlxnu1SS3onN5OUl9kd9RN4XMFr46Pv5jSqWqImQ==} + '@bugsnag/browser@7.25.0': + resolution: {integrity: sha512-PzzWy5d9Ly1CU1KkxTB6ZaOw/dO+CYSfVtqxVJccy832e6+7rW/dvSw5Jy7rsNhgcKSKjZq86LtNkPSvritOLA==} - '@bugsnag/core@7.22.7': - resolution: {integrity: sha512-9DPWBkkBjhFJc5dCFy/wVC3HE0Aw3ZiLJKjyAxgywSKbILgtpD+qT1Xe8sacWyxU92znamlZ8H8ziQOe7jhhbA==} + '@bugsnag/core@7.25.0': + resolution: {integrity: sha512-JZLak1b5BVzy77CPcklViZrppac/pE07L3uSDmfSvFYSCGReXkik2txOgV05VlF9EDe36dtUAIIV7iAPDfFpQQ==} '@bugsnag/cuid@3.1.1': resolution: {integrity: sha512-d2z4b0rEo3chI07FNN1Xds8v25CNeekecU6FC/2Fs9MxY2EipkZTThVcV2YinMn8dvRUlViKOyC50evoUxg8tw==} @@ -729,39 +729,39 @@ packages: '@bugsnag/js@7.21.0': resolution: {integrity: sha512-fFTR7cRBSlLtwa1wPTse92igZUEX2V95KyGGCXq2qb2F2w6hJ6oJDxA0BMPS8qqsciYXRjbfn8HX+TFgO1oErg==} - '@bugsnag/js@7.23.0': - resolution: {integrity: sha512-gnCpcv/v6p3CtbwwDuAjVYPPNq4NMVj4hp70MiB3OGJ+LmIS66CwElDiyvRMA8Ar6OzCF4joTeaNG5bD9cM41w==} + '@bugsnag/js@7.25.0': + resolution: {integrity: sha512-d8n8SyKdRUz8jMacRW1j/Sj/ckhKbIEp49+Dacp3CS8afRgfMZ//NXhUFFXITsDP5cXouaejR9fx4XVapYXNgg==} - '@bugsnag/node@7.23.0': - resolution: {integrity: sha512-eXA8/h+J2booEMlKsuRl1NAszebwm4KZ9zxCSg/xN4sw5boXia7kMifLf8QTqk+UBtIhNKBsyQQKHXbawKyE6Q==} + '@bugsnag/node@7.25.0': + resolution: {integrity: sha512-KlxBaJ8EREEsfKInybAjTO9LmdDXV3cUH5+XNXyqUZrcRVuPOu4j4xvljh+n24ifok/wbFZTKVXUzrN4iKIeIA==} '@bugsnag/safe-json-stringify@6.0.0': resolution: {integrity: sha512-htzFO1Zc57S8kgdRK9mLcPVTW1BY2ijfH7Dk2CeZmspTWKdKqSo1iwmqrq2WtRjFlo8aRZYgLX0wFrDXF/9DLA==} - '@changesets/apply-release-plan@7.0.3': - resolution: {integrity: sha512-klL6LCdmfbEe9oyfLxnidIf/stFXmrbFO/3gT5LU5pcyoZytzJe4gWpTBx3BPmyNPl16dZ1xrkcW7b98e3tYkA==} + '@changesets/apply-release-plan@7.0.4': + resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==} - '@changesets/assemble-release-plan@6.0.2': - resolution: {integrity: sha512-n9/Tdq+ze+iUtjmq0mZO3pEhJTKkku9hUxtUadW30jlN7kONqJG3O6ALeXrmc6gsi/nvoCuKjqEJ68Hk8RbMTQ==} + '@changesets/assemble-release-plan@6.0.3': + resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==} '@changesets/changelog-git@0.2.0': resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - '@changesets/cli@2.27.6': - resolution: {integrity: sha512-PB7KS5JkCQ4WSXlnfThn8CXAHVwYxFdZvYTimhi12fls/tzj9iimUhKsYwkrKSbw1AiVlGCZtihj5Wkt6siIjA==} + '@changesets/cli@2.27.7': + resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==} hasBin: true - '@changesets/config@3.0.1': - resolution: {integrity: sha512-nCr8pOemUjvGJ8aUu8TYVjqnUL+++bFOQHBVmtNbLvKzIDkN/uiP/Z4RKmr7NNaiujIURHySDEGFPftR4GbTUA==} + '@changesets/config@3.0.2': + resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==} '@changesets/errors@0.2.0': resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - '@changesets/get-dependents-graph@2.1.0': - resolution: {integrity: sha512-QOt6pQq9RVXKGHPVvyKimJDYJumx7p4DO5MO9AhRJYgAPgv0emhNqAqqysSVKHBm4sxKlGN4S1zXOIb5yCFuhQ==} + '@changesets/get-dependents-graph@2.1.1': + resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==} - '@changesets/get-release-plan@4.0.2': - resolution: {integrity: sha512-rOalz7nMuMV2vyeP7KBeAhqEB7FM2GFPO5RQSoOoUKKH9L6wW3QyPA2K+/rG9kBrWl2HckPVES73/AuwPvbH3w==} + '@changesets/get-release-plan@4.0.3': + resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==} '@changesets/get-version-range-type@0.4.0': resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} @@ -827,47 +827,47 @@ packages: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} - '@csstools/cascade-layer-name-parser@1.0.11': - resolution: {integrity: sha512-yhsonEAhaWRQvHFYhSzOUobH2Ev++fMci+ppFRagw0qVSPlcPV4FnNmlwpM/b2BM10ZeMRkVV4So6YRswD0O0w==} + '@csstools/cascade-layer-name-parser@1.0.12': + resolution: {integrity: sha512-iNCCOnaoycAfcIot3v/orjkTol+j8+Z5xgpqxUpZSdqeaxCADQZtldHhlvzDipmi7OoWdcJUO6DRZcnkMSBEIg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-parser-algorithms': ^2.6.3 - '@csstools/css-tokenizer': ^2.3.1 + '@csstools/css-parser-algorithms': ^2.7.0 + '@csstools/css-tokenizer': ^2.3.2 - '@csstools/color-helpers@4.2.0': - resolution: {integrity: sha512-hJJrSBzbfGxUsaR6X4Bzd/FLx0F1ulKnR5ljY9AiXCtsR+H+zSWQDFWlKES1BRaVZTDHLpIIHS9K2o0h+JLlrg==} + '@csstools/color-helpers@4.2.1': + resolution: {integrity: sha512-CEypeeykO9AN7JWkr1OEOQb0HRzZlPWGwV0Ya6DuVgFdDi6g3ma/cPZ5ZPZM4AWQikDpq/0llnGGlIL+j8afzw==} engines: {node: ^14 || ^16 || >=18} - '@csstools/css-calc@1.2.2': - resolution: {integrity: sha512-0owrl7AruDRKAxoSIW8XzJdz7GnuW3AOj4rYLfmXsoKIX2ZZzttzGXoiC8n8V08X7wIBlEWWVB4C8fAN18+I6Q==} + '@csstools/css-calc@1.2.3': + resolution: {integrity: sha512-rlOh81K3CvtY969Od5b1h29YT6MpCHejMCURKrRrXFeCpz67HGaBNvBmWT5S7S+CKn+V7KJ+qxSmK8jNd/aZWA==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-parser-algorithms': ^2.6.3 - '@csstools/css-tokenizer': ^2.3.1 + '@csstools/css-parser-algorithms': ^2.7.0 + '@csstools/css-tokenizer': ^2.3.2 - '@csstools/css-color-parser@2.0.2': - resolution: {integrity: sha512-Agx2YmxTcZ7TfB7KNZQ+iekaxbWSdblvtA35aTwE3KfuYyjOlCg3P4KGGdQF/cjm1pHWVSBo5duF/BRfZ8s07A==} + '@csstools/css-color-parser@2.0.3': + resolution: {integrity: sha512-Qqhb5I/gEh1wI4brf6Kmy0Xn4J1IqO8OTDKWGRsBYtL4bGkHcV9i0XI2Mmo/UYFtSRoXW/RmKTcMh6sCI433Cw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-parser-algorithms': ^2.6.3 - '@csstools/css-tokenizer': ^2.3.1 + '@csstools/css-parser-algorithms': ^2.7.0 + '@csstools/css-tokenizer': ^2.3.2 - '@csstools/css-parser-algorithms@2.6.3': - resolution: {integrity: sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==} + '@csstools/css-parser-algorithms@2.7.0': + resolution: {integrity: sha512-qvBMcOU/uWFCH/VO0MYe0AMs0BGMWAt6FTryMbFIKYtZtVnqTZtT8ktv5o718llkaGZWomJezJZjq3vJDHeJNQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-tokenizer': ^2.3.1 + '@csstools/css-tokenizer': ^2.3.2 - '@csstools/css-tokenizer@2.3.1': - resolution: {integrity: sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==} + '@csstools/css-tokenizer@2.3.3': + resolution: {integrity: sha512-fTaF0vRcXVJ4cmwg8nHofydDjitKMDBzC8cCu+O/Lg13C4PdkC15GVjGpbmWauOOnhomVSTg5I5LpLJFJE2Hfw==} engines: {node: ^14 || ^16 || >=18} - '@csstools/media-query-list-parser@2.1.11': - resolution: {integrity: sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==} + '@csstools/media-query-list-parser@2.1.12': + resolution: {integrity: sha512-t1/CdyVJzOQUiGUcIBXRzTAkWTFPxiPnoKwowKW2z9Uj78c2bBWI/X94BeVfUwVq1xtCjD7dnO8kS6WONgp8Jw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: - '@csstools/css-parser-algorithms': ^2.6.3 - '@csstools/css-tokenizer': ^2.3.1 + '@csstools/css-parser-algorithms': ^2.7.0 + '@csstools/css-tokenizer': ^2.3.2 '@csstools/postcss-cascade-layers@4.0.6': resolution: {integrity: sha512-Xt00qGAQyqAODFiFEJNkTpSUz5VfYqnDLECdlA/Vv17nl/OIV5QfTRHGAXrBGG5YcJyHpJ+GF9gF/RZvOQz4oA==} @@ -875,20 +875,20 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-function@3.0.16': - resolution: {integrity: sha512-KtmXfckANSKsLBoTQCzggvKft1cmmmDKYjFO4yVlB23nWUgGInVBTE9T5JLmH29NNdTWSEPLWPUxoQ6XiIEn2Q==} + '@csstools/postcss-color-function@3.0.17': + resolution: {integrity: sha512-hi6g5KHMvxpxf01LCVu5xnNxX5h2Vkn9aKRmspn2esWjWtshuTXVOavTjwvogA+Eycm9Rn21QTYNU+qbKw6IeQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-color-mix-function@2.0.16': - resolution: {integrity: sha512-BJnD1M5Pdypl1cJuwGuzVC52PqgzaObsDLu34jgf+QU7daVFqz432PvpqvXTmfTSNt4OckOT1QIzWexEFlDNXw==} + '@csstools/postcss-color-mix-function@2.0.17': + resolution: {integrity: sha512-Y65GHGCY1R+9+/5KrJjN7gAF1NZydng4AGknMggeUJIyo2ckLb4vBrlDmpIcHDdjQtV5631j1hxvalVTbpoiFw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-exponential-functions@1.0.7': - resolution: {integrity: sha512-9usBPQX74OhiF/VuaVrp44UAPzqbKNyoaxEa6tbEXiFp+OAm3yB/TLRKyPUWg5tvvHGCduGJVdJJB3w8c8NBtA==} + '@csstools/postcss-exponential-functions@1.0.8': + resolution: {integrity: sha512-/4WHpu4MrCCsUWRaDreyBcdF+5xnudk1JJLg6aWREeMaSpr3vsD0eywmOXct3xUm28TCqKS//S86IlcDJJdzoQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -899,20 +899,20 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-gamut-mapping@1.0.9': - resolution: {integrity: sha512-JmOeiBJj1RJriAkr+aLBaiYUpEqdNOIo3ERQ5a4uNzy18upzrQ6tz7m2Vt1GQpJ62zQj7rC5PjAhCoZCoyE31g==} + '@csstools/postcss-gamut-mapping@1.0.10': + resolution: {integrity: sha512-iPz4/cO8YiNjAYdtAiKGBdKZdFlAvDtUr2AgvAMxCa83e9MwTIKmsJZC3Frw7VYmkfknmdElEZr1FJU+PmB2PA==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-gradients-interpolation-method@4.0.17': - resolution: {integrity: sha512-qSNIqzLPKd2SadfWwHZv42lDRyYlLaM+Vx5rRIsnYCZbQxzFfe1XAwssrcCsHgba5bA6bi5oDoFCx0W+PRCpfw==} + '@csstools/postcss-gradients-interpolation-method@4.0.18': + resolution: {integrity: sha512-rZH7RnNYY911I/n8+DRrcri89GffptdyuFDGGj/UbxDISFirdR1uI/wcur9KYR/uFHXqrnJjrfi1cisfB7bL+g==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-hwb-function@3.0.15': - resolution: {integrity: sha512-l34fRiZ7o5+pULv7OplXniBTU4TuKYNNOv0abuvUanddWGSy3+YHlMKUSgcVFo0d1DorxPAhJSTCrugl+4OmMQ==} + '@csstools/postcss-hwb-function@3.0.16': + resolution: {integrity: sha512-nlC4D5xB7pomgR4kDZ1lqbVqrs6gxPqsM2OE5CkCn0EqCMxtqqtadtbK2dcFwzyujv3DL4wYNo+fgF4rJgLPZA==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -935,8 +935,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-light-dark-function@1.0.5': - resolution: {integrity: sha512-kKM9dtEaVmSTb3scL2pgef62KyWv6SK19JiAnCCuiDhlRE6PADKzaPPBXmP3qj4IEgIH+cQhdEosB0eroU6Fnw==} + '@csstools/postcss-light-dark-function@1.0.6': + resolution: {integrity: sha512-bu+cxKpcTrMDMkVCv7QURwKNPZEuXA3J0Udvz3HfmQHt4+OIvvfvDpTgejFXdOliCU4zK9/QdqebPcYneygZtg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -965,20 +965,20 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-logical-viewport-units@2.0.9': - resolution: {integrity: sha512-iBBJuExgHwedFH9AqNOHWzZFgYnt17zhu1qWjmSihu1P5pw0lIG9q5t3uIgJJFDNmYoOGfBKan66z9u1QH8yBQ==} + '@csstools/postcss-logical-viewport-units@2.0.10': + resolution: {integrity: sha512-nGP0KanI/jXrUMpaIBz6mdy/vNs3d/cjbNYuoEc7lCdNkntmxZvwxC2zIKI8QzGWaYsh9jahozMVceZ0jNyjgg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-media-minmax@1.1.6': - resolution: {integrity: sha512-bc0frf2Lod53j6wEHVsaVElfvCf6uhc96v99M/wUfer4MmNYfO3YLx1kFuB8xXvb0AXiWx4fohCJqemHV3bfRg==} + '@csstools/postcss-media-minmax@1.1.7': + resolution: {integrity: sha512-AjLG+vJvhrN2geUjYNvzncW1TJ+vC4QrVPGrLPxOSJ2QXC94krQErSW4aXMj0b13zhvVWeqf2NHIOVQknqV9cg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.9': - resolution: {integrity: sha512-PR0s3tFSxPoKoPLoKuiZuYhwQC5bQxq/gFfywX2u/kh8rMzesARPZYKxE71I3jHWi6KDHGZl9Xb5xcFPwtvLiQ==} + '@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.10': + resolution: {integrity: sha512-DXae3i7OYJTejxcoUuf/AOIpy+6FWfGGKo/I3WefZI538l3k+ErU6V2xQOx/UmUXT2FDIdE1Ucl9JkZib2rEsA==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -995,8 +995,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-oklab-function@3.0.16': - resolution: {integrity: sha512-zm8nND+EraZrmbO4mgcT8FrJrAQUfWNfMmbV5uTCpWtAcO5ycX3E3bO8T1TjczKYRxC5QMM/91n9YExYCF4Mvw==} + '@csstools/postcss-oklab-function@3.0.17': + resolution: {integrity: sha512-kIng3Xmw6NKUvD/eEoHGwbyDFXDsuzsVGtNo3ndgZYYqy+DLiD+3drxwRKiViE5LUieLB1ERczXpLVmpSw61eg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -1007,8 +1007,8 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-relative-color-syntax@2.0.16': - resolution: {integrity: sha512-TSM8fVqJkT8JZDranZPnkpxjU/Q1sNR192lXMND+EcKOUjYa6uYpGSfHgjnWjCRiBSciettS+sL7y9wmnas7qQ==} + '@csstools/postcss-relative-color-syntax@2.0.17': + resolution: {integrity: sha512-EVckAtG8bocItZflXLJ50Su+gwg/4Jhkz1BztyNsT0/svwS6QMAeLjyUA75OsgtejNWQHvBMWna4xc9LCqdjrQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -1019,20 +1019,20 @@ packages: peerDependencies: postcss: ^8.4 - '@csstools/postcss-stepped-value-functions@3.0.8': - resolution: {integrity: sha512-X76+thsvsmH/SkqVbN+vjeFKe1ABGLRx8/Wl68QTb/zvJWdzgx5S/nbszZP5O3nTRc5eI8NxIOrQUiy30fR+0g==} + '@csstools/postcss-stepped-value-functions@3.0.9': + resolution: {integrity: sha512-uAw1J8hiZ0mM1DLaziI7CP5oagSwDnS5kufuROGIJFzESYfTqNVS3b7FgDZto9AxXdkwI+Sn48+cvG8PwzGMog==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-text-decoration-shorthand@3.0.6': - resolution: {integrity: sha512-Q8HEu4AEiwNVZBD6+DpQ8M9SajpMow4+WtmndWIAv8qxDtDYL4JK1xXWkhOGk28PrcJawOvkrEZ8Ri59UN1TJw==} + '@csstools/postcss-text-decoration-shorthand@3.0.7': + resolution: {integrity: sha512-+cptcsM5r45jntU6VjotnkC9GteFR7BQBfZ5oW7inLCxj7AfLGAzMbZ60hKTP13AULVZBdxky0P8um0IBfLHVA==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - '@csstools/postcss-trigonometric-functions@3.0.8': - resolution: {integrity: sha512-zEzyGriPqoIYFgHJqWNy8bmoxjM4+ONyTap1ZzQK/Lll/VsCYvx0IckB33W/u89uLSVeeB8xC7uTrkoQ7ogKyQ==} + '@csstools/postcss-trigonometric-functions@3.0.9': + resolution: {integrity: sha512-rCAtKX3EsH91ZIHoxFzAAcMQeQCS+PsjzHl6fvsGXz/SV3lqzSmO7MWgFXyPktC2zjZXgOObAJ/2QkhMqVpgNg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -1160,6 +1160,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.23.0': + resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.17.6': resolution: {integrity: sha512-EnUwjRc1inT4ccZh4pB3v1cIhohE2S4YXlt1OvI7sw/+pD+dIE4smwekZlEPIwY6PhU6oDWwITrQQm5S2/iZgg==} engines: {node: '>=12'} @@ -1472,8 +1478,8 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.10.1': - resolution: {integrity: sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==} + '@eslint-community/regexpp@4.11.0': + resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} '@eslint/eslintrc@2.1.4': @@ -1488,26 +1494,26 @@ packages: resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} engines: {node: '>=14'} - '@floating-ui/core@1.6.2': - resolution: {integrity: sha512-+2XpQV9LLZeanU4ZevzRnGFg2neDeKHgFLjP6YLW+tly0IvrhqT4u8enLGjLH3qeh85g19xY5rsAusfwTdn5lg==} + '@floating-ui/core@1.6.4': + resolution: {integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==} - '@floating-ui/dom@1.6.5': - resolution: {integrity: sha512-Nsdud2X65Dz+1RHjAIP0t8z5e2ff/IRbei6BqFrl1urT8sDVzM1HMQ+R0XcU5ceRfyO3I6ayeqIfh+6Wb8LGTw==} + '@floating-ui/dom@1.6.7': + resolution: {integrity: sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==} - '@floating-ui/react-dom@2.1.0': - resolution: {integrity: sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==} + '@floating-ui/react-dom@2.1.1': + resolution: {integrity: sha512-4h84MJt3CHrtG18mGsXuLCHMrug49d7DFkU0RMIyshRveBeyV2hmV/pDaF2Uxtu8kgq5r46llp5E5FQiR0K2Yg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/react@0.26.17': - resolution: {integrity: sha512-ESD+jYWwqwVzaIgIhExrArdsCL1rOAzryG/Sjlu8yaD3Mtqi3uVyhbE2V7jD58Mo52qbzKz2eUY/Xgh5I86FCQ==} + '@floating-ui/react@0.26.19': + resolution: {integrity: sha512-Jk6zITdjjIvjO/VdQFvpRaD3qPwOHH6AoDHxjhpy+oK4KFgaSP871HYWUAPdnLmx1gQ+w/pB312co3tVml+BXA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/utils@0.2.2': - resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==} + '@floating-ui/utils@0.2.4': + resolution: {integrity: sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==} '@fontsource/poppins@5.0.14': resolution: {integrity: sha512-nmM1zpPo3Uh4JcGAVSQuWaZNYh2FbbwWhZ5t6hRaynmJaNTBW85d3nEh9zMmzI0HX7X5xqQVdRHeDatKpOGsnA==} @@ -1531,8 +1537,8 @@ packages: '@parcel/watcher': optional: true - '@graphql-codegen/client-preset@4.3.0': - resolution: {integrity: sha512-p2szj5YiyLUYnQn1h7S4dsSY2Jc1LNrm32ptkb6CGtqPo3w9vgqki2WRJwgeJN8s3bhifqWRPzhoid/smrFVgA==} + '@graphql-codegen/client-preset@4.3.2': + resolution: {integrity: sha512-42jHyG6u2uFDIVNvzue8zR529aPT16EYIJQmvMk8XuYHo3PneQVlWmQ3j2fBy+RuWCBzpJKPKm7IGSKiw19nmg==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -1541,8 +1547,8 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/gql-tag-operations@4.0.7': - resolution: {integrity: sha512-2I69+IDC8pqAohH6cgKse/vPfJ/4TRTJX96PkAKz8S4RD54PUHtBmzCdBInIFEP/vQuH5mFUAaIKXXjznmGOsg==} + '@graphql-codegen/gql-tag-operations@4.0.9': + resolution: {integrity: sha512-lVgu1HClel896HqZAEjynatlU6eJrYOw+rh05DPgM150xvmb7Gz5TnRHA2vfwlDNIXDaToAIpz5RFfkjjnYM1Q==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -1551,28 +1557,28 @@ packages: peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/schema-ast@4.0.2': - resolution: {integrity: sha512-5mVAOQQK3Oz7EtMl/l3vOQdc2aYClUzVDHHkMvZlunc+KlGgl81j8TLa+X7ANIllqU4fUEsQU3lJmk4hXP6K7Q==} + '@graphql-codegen/schema-ast@4.1.0': + resolution: {integrity: sha512-kZVn0z+th9SvqxfKYgztA6PM7mhnSZaj4fiuBWvMTqA+QqQ9BBed6Pz41KuD/jr0gJtnlr2A4++/0VlpVbCTmQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typed-document-node@5.0.7': - resolution: {integrity: sha512-rgFh96hAbNwPUxLVlRcNhGaw2+y7ZGx7giuETtdO8XzPasTQGWGRkZ3wXQ5UUiTX4X3eLmjnuoXYKT7HoxSznQ==} + '@graphql-codegen/typed-document-node@5.0.9': + resolution: {integrity: sha512-Wx6fyA4vpfIbfNTMiWUECGnjqzKkJdEbZHxVMIegiCBPzBYPAJV4mZZcildLAfm2FtZcgW4YKtFoTbnbXqPB3w==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typescript-operations@4.2.1': - resolution: {integrity: sha512-LhEPsaP+AI65zfK2j6CBAL4RT0bJL/rR9oRWlvwtHLX0t7YQr4CP4BXgvvej9brYdedAxHGPWeV1tPHy5/z9KQ==} + '@graphql-codegen/typescript-operations@4.2.3': + resolution: {integrity: sha512-6z7avSSOr03l5SyKbeDs7MzRyGwnQFSCqQm8Om5wIuoIgXVu2gXRmcJAY/I7SLdAy9xbF4Sho7XNqieFM2CAFQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/typescript@4.0.7': - resolution: {integrity: sha512-Gn+JNvQBJhBqH7s83piAJ6UeU/MTj9GXWFO9bdbl8PMLCAM1uFAtg04iHfkGCtDKXcUg5a3Dt/SZG85uk5KuhA==} + '@graphql-codegen/typescript@4.0.9': + resolution: {integrity: sha512-0O35DMR4d/ctuHL1Zo6mRUUzp0BoszKfeWsa6sCm/g70+S98+hEfTwZNDkQHylLxapiyjssF9uw/F+sXqejqLw==} peerDependencies: graphql: ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@graphql-codegen/visitor-plugin-common@5.2.0': - resolution: {integrity: sha512-0p8AwmARaZCAlDFfQu6Sz+JV6SjbPDx3y2nNM7WAAf0au7Im/GpJ7Ke3xaIYBc1b2rTZ+DqSTJI/zomENGD9NA==} + '@graphql-codegen/visitor-plugin-common@5.3.1': + resolution: {integrity: sha512-MktoBdNZhSmugiDjmFl1z6rEUUaqyxtFJYWnDilE7onkPgyw//O0M+TuPBJPBWdyV6J2ond0Hdqtq+rkghgSIQ==} peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -1594,8 +1600,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/delegate@10.0.11': - resolution: {integrity: sha512-+sKeecdIVXhFB/66e5yjeKYZ3Lpn52yNG637ElVhciuLGgFc153rC6l6zcuNd9yx5wMrNx35U/h3HsMIEI3xNw==} + '@graphql-tools/delegate@10.0.13': + resolution: {integrity: sha512-9l7cwrHQFbvR6zhZOKYABa3ffqgyV51gNglammupXhptE3Z94p6A6hP0hLw7GHErkm6MiQINl3VBVpFJDlrZuQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -1624,8 +1630,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/executor@1.2.7': - resolution: {integrity: sha512-oyIw69QA+PuS/g7ttZZeEpIPS5CCGiIYitGtNxaChuiK7NPb7FD1dwOEXyekQt9/2FOEqZoYNpRY0NFfx/tO9Q==} + '@graphql-tools/executor@1.2.8': + resolution: {integrity: sha512-0qZs/iuRiYRir7bBkA7oN+21wwmSMPQuFK8WcAcxUYJZRhvnlrJ8Nid++PN4OCzTgHPV70GNFyXOajseVCCffA==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -1708,8 +1714,8 @@ packages: peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - '@graphql-tools/utils@10.2.2': - resolution: {integrity: sha512-ueoplzHIgFfxhFrF4Mf/niU/tYHuO6Uekm2nCYU72qpI+7Hn9dA2/o5XOBvFXDk27Lp5VSvQY5WfmRbqwVxaYQ==} + '@graphql-tools/utils@10.2.3': + resolution: {integrity: sha512-j7x0sO0VtWVhD3FubyY42abx+g61/at5W5Y3DSOckPkBo7yVjkcnAsXoB4jiUnznhGme/o+uX5VgA8HrjyR5ZQ==} engines: {node: '>=16.0.0'} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 @@ -2397,6 +2403,17 @@ packages: wrangler: optional: true + '@remix-run/eslint-config@2.10.1': + resolution: {integrity: sha512-bPWK5vfdwOHzgNNvqOVHZeNoZbc2aQrwlFDn+gLidEm+4sGhamLV5+zog5WfKEhxjELVO7qJiSR3N2AbMTUoTw==} + engines: {node: '>=18.0.0'} + peerDependencies: + eslint: ^8.0.0 + react: ^18.0.0 + typescript: ^5.1.0 + peerDependenciesMeta: + typescript: + optional: true + '@remix-run/eslint-config@2.9.2': resolution: {integrity: sha512-tZV98Fz1QHAwIA9MOo48Es0ltAzvOIj/uCjCDsKOEndhEX+qwH1qC7eLIBGJiRDgEO3hIQUtzUuw5S6J8B2B+w==} engines: {node: '>=18.0.0'} @@ -2710,8 +2727,8 @@ packages: '@types/aria-query@5.0.4': resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - '@types/better-sqlite3@7.6.10': - resolution: {integrity: sha512-TZBjD+yOsyrUJGmcUj6OS3JADk3+UZcNv3NOBqGkM09bZdi28fNZw8ODqbMOLfKCu7RYCO62/ldq1iHbzxqoPw==} + '@types/better-sqlite3@7.6.11': + resolution: {integrity: sha512-i8KcD3PgGtGBLl3+mMYA8PdKkButvPyARxA7IQAd6qeslht13qxb1zzO8dRCtE7U3IoJS782zDBAeoKiM695kg==} '@types/cli-progress@3.11.5': resolution: {integrity: sha512-D4PbNRbviKyppS5ivBGyFO29POlySLmA2HyUFE4p5QGazAMM3CwkKWcvTl8gvElSuxRh6FPKL8XmidX873ou4g==} @@ -2758,8 +2775,8 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@20.14.8': - resolution: {integrity: sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==} + '@types/node@20.14.9': + resolution: {integrity: sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg==} '@types/prop-types@15.7.12': resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} @@ -2923,8 +2940,8 @@ packages: resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} engines: {node: '>=0.4.0'} - acorn@8.12.0: - resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==} + acorn@8.12.1: + resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} engines: {node: '>=0.4.0'} hasBin: true @@ -3266,8 +3283,8 @@ packages: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - caniuse-lite@1.0.30001636: - resolution: {integrity: sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==} + caniuse-lite@1.0.30001640: + resolution: {integrity: sha512-lA4VMpW0PSUrFnkmVuEKBUovSWKhj7puyCg8StBChgu298N1AtuF1sKWEvfDuimSEDbhlb/KqPKC3fs1HbuQUA==} capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -3842,8 +3859,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.4.810: - resolution: {integrity: sha512-Kaxhu4T7SJGpRQx99tq216gCq2nMxJo+uuT6uzz9l8TVN2stL7M06MIIXAtr9jsrLs2Glflgf2vMQRepxawOdQ==} + electron-to-chromium@1.4.816: + resolution: {integrity: sha512-EKH5X5oqC6hLmiS7/vYtZHZFTNdhsYG5NVPRN6Yn0kQHNBlT59+xSM8HBy66P5fxWpKgZbPqb+diC64ng295Jw==} emoji-regex@10.3.0: resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} @@ -4219,8 +4236,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-loops@1.1.3: - resolution: {integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==} + fast-loops@1.1.4: + resolution: {integrity: sha512-8dbd3XWoKCTms18ize6JmQF1SFnnfj5s0B7rRry22EofgMu7B6LKHVh+XfFqFGsqnbH54xgeO83PzpKI+ODhlg==} fast-querystring@1.1.2: resolution: {integrity: sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==} @@ -4637,8 +4654,8 @@ packages: resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} engines: {node: '>=10.19.0'} - https-proxy-agent@7.0.4: - resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} + https-proxy-agent@7.0.5: + resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} engines: {node: '>= 14'} human-id@1.0.2: @@ -5019,8 +5036,8 @@ packages: resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} hasBin: true - jose@5.4.1: - resolution: {integrity: sha512-U6QajmpV/nhL9SyfAewo000fkiRQ+Yd2H0lBxJJ9apjpOgkOcBQJWOrMo917lxLptdS/n/o/xPzMkXhF46K8hQ==} + jose@5.6.3: + resolution: {integrity: sha512-1Jh//hEEwMhNYPDDLwXHa2ePWgWiFNNUadVmguAAw2IJ6sj9mNxV5tGXJNqlMkJAybF6Lgw1mISDxTePP/187g==} joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} @@ -5255,8 +5272,8 @@ packages: resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - lru-cache@10.2.2: - resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} + lru-cache@10.3.0: + resolution: {integrity: sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==} engines: {node: 14 || >=16.14} lru-cache@4.1.5: @@ -5517,8 +5534,8 @@ packages: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} - minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} engines: {node: '>=16 || 14 >=14.17'} minimist@1.2.8: @@ -6006,8 +6023,8 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} - pkg-types@1.1.1: - resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==} + pkg-types@1.1.3: + resolution: {integrity: sha512-+JrgthZG6m3ckicaOB74TwQ+tBWsFl3qVQg7mN8ulwSOElJ7gBhKzj2VkCPnZ4NlF6kEquYU+RIYNVAvzd54UA==} playwright-core@1.44.1: resolution: {integrity: sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==} @@ -6035,8 +6052,8 @@ packages: peerDependencies: postcss: ^8.4.6 - postcss-color-functional-notation@6.0.11: - resolution: {integrity: sha512-gJ+hAtAsgBF4w7eh28Pg7EA60lx7vE5xO/B/yZawaI6FYHky+5avA9YSe73nJHnAMEVFpCMeJc6Wts5g+niksg==} + postcss-color-functional-notation@6.0.12: + resolution: {integrity: sha512-LGLWl6EDofJwDHMElYvt4YU9AeH+oijzOfeKhE0ebuu0aBSDeEg7CfFXMi0iiXWV1VKxn3MLGOtcBNnOiQS9Yg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -6053,20 +6070,20 @@ packages: peerDependencies: postcss: ^8.4 - postcss-custom-media@10.0.6: - resolution: {integrity: sha512-BjihQoIO4Wjqv9fQNExSJIim8UAmkhLxuJnhJsLTRFSba1y1MhxkJK5awsM//6JJ+/Tu5QUxf624RQAvKHv6SA==} + postcss-custom-media@10.0.7: + resolution: {integrity: sha512-o2k5nnvRZhF36pr1fGFM7a1EMTcNdKNO70Tp1g2lfpYgiwIctR7ic4acBCDHBMYRcQ8mFlaBB1QsEywqrSIaFQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - postcss-custom-properties@13.3.10: - resolution: {integrity: sha512-ejaalIpl7p0k0L5ngIZ86AZGmp3m1KdeOCbSQTK4gQcB1ncaoPTHorw206+tsZRIhIDYvh5ZButEje6740YDXw==} + postcss-custom-properties@13.3.11: + resolution: {integrity: sha512-CAIgz03I/GMhVbAKIi3u3P8j5JY2KHl0TlePcfUX3OUy8t0ynnWvyJaS1D92pEAw1LjmeKWi7+aIU0s53iYdOQ==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 - postcss-custom-selectors@7.1.10: - resolution: {integrity: sha512-bV/6+IExyT2J4kMzX6c+ZMlN1xDfjcC4ePr1ywKezcTgwgUn11qQN3jdzFBpo8Dk1K7vO/OYOwMb5AtJP4JZcg==} + postcss-custom-selectors@7.1.11: + resolution: {integrity: sha512-IoGprXOueDJL5t3ZuWR+QzPpmrQCFNhvoICsg0vDSehGwWNG0YV/Z4A+zouGRonC7NJThoV+A8A74IEMqMQUQw==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -6136,8 +6153,8 @@ packages: peerDependencies: postcss: ^8.4.21 - postcss-lab-function@6.0.16: - resolution: {integrity: sha512-QWv0VxfjgIl8jBR/wuQcm/o31jn4P/LwzYuVKzNQoO5t7HPcU0d3RfWUiDrHN3frmSv+YYZppr3P81tKFTDyqg==} + postcss-lab-function@6.0.17: + resolution: {integrity: sha512-QzjC6/3J6XKZzHGuUKhWNvlDMfWo+08dQOfQj4vWQdpZFdOxCh9QCR4w4XbV68EkdzywJie1mcm81jwFyV0+kg==} engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss: ^8.4 @@ -6977,8 +6994,8 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} - string-width@7.1.0: - resolution: {integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==} + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} engines: {node: '>=18'} string.prototype.includes@2.0.0: @@ -7242,8 +7259,8 @@ packages: '@swc/wasm': optional: true - tsconfck@3.1.0: - resolution: {integrity: sha512-CMjc5zMnyAjcS9sPLytrbFmj89st2g+JYtY/c02ug4Q+CZaAtCgbyviI0n1YvjZE/pzoc6FbNsINS13DOL1B9w==} + tsconfck@3.1.1: + resolution: {integrity: sha512-00eoI6WY57SvZEVjm13stEVE90VkEdJAFGgpFLTsZbJyW/LwFQ7uQxJHWpZ2hzSWgCPKc9AnBnNP+0X7o3hAmQ==} engines: {node: ^18 || >=20} hasBin: true peerDependencies: @@ -7290,46 +7307,41 @@ packages: peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - turbo-darwin-64@2.0.4: - resolution: {integrity: sha512-x9mvmh4wudBstML8Z8IOmokLWglIhSfhQwnh2gBCSqabgVBKYvzl8Y+i+UCNPxheCGTgtsPepTcIaKBIyFIcvw==} + turbo-darwin-64@2.0.6: + resolution: {integrity: sha512-XpgBwWj3Ggmz/gQVqXdMKXHC1iFPMDiuwugLwSzE7Ih0O13JuNtYZKhQnopvbDQnFQCeRq2Vsm5OTWabg/oB/g==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.0.4: - resolution: {integrity: sha512-/B1Ih8zPRGVw5vw4SlclOf3C/woJ/2T6ieH6u54KT4wypoaVyaiyMqBcziIXycdObIYr7jQ+raHO7q3mhay9/A==} + turbo-darwin-arm64@2.0.6: + resolution: {integrity: sha512-RfeZYXIAkiA21E8lsvfptGTqz/256YD+eI1x37fedfvnHFWuIMFZGAOwJxtZc6QasQunDZ9TRRREbJNI68tkIw==} cpu: [arm64] os: [darwin] - turbo-darwin-arm64@2.0.5: - resolution: {integrity: sha512-//5y4RJvnal8CttOLBwlaBqblcQb1qTlIxLN+I8O3E3rPuvHOupNKB9ZJxYIQ8oWf8ns8Ec8cxQ0GSBLTJIMtA==} - cpu: [arm64] - os: [darwin] - - turbo-linux-64@2.0.4: - resolution: {integrity: sha512-6aG670e5zOWu6RczEYcB81nEl8EhiGJEvWhUrnAfNEUIMBEH1pR5SsMmG2ol5/m3PgiRM12r13dSqTxCLcHrVg==} + turbo-linux-64@2.0.6: + resolution: {integrity: sha512-92UDa0xNQQbx0HdSp9ag3YSS3xPdavhc7q9q9mxIAcqyjjD6VElA4Y85m4F/DDGE5SolCrvBz2sQhVmkOd6Caw==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.0.4: - resolution: {integrity: sha512-AXfVOjst+mCtPDFT4tCu08Qrfv12Nj7NDd33AjGwV79NYN1Y1rcFY59UQ4nO3ij3rbcvV71Xc+TZJ4csEvRCSg==} + turbo-linux-arm64@2.0.6: + resolution: {integrity: sha512-eQKu6utCVUkIH2kqOzD8OS6E0ba6COjWm6PRDTNCHQRljZW503ycaTUIdMOiJrVg1MkEjDyOReUg8s8D18aJ4Q==} cpu: [arm64] os: [linux] turbo-stream@2.2.0: resolution: {integrity: sha512-FKFg7A0To1VU4CH9YmSMON5QphK0BXjSoiC7D9yMh+mEEbXLUP9qJ4hEt1qcjKtzncs1OpcnjZO8NgrlVbZH+g==} - turbo-windows-64@2.0.4: - resolution: {integrity: sha512-QOnUR9hKl0T5gq5h1fAhVEqBSjpcBi/BbaO71YGQNgsr6pAnCQdbG8/r3MYXet53efM0KTdOhieWeO3KLNKybA==} + turbo-windows-64@2.0.6: + resolution: {integrity: sha512-+9u4EPrpoeHYCQ46dRcou9kbkSoelhOelHNcbs2d86D6ruYD/oIAHK9qgYK8LeARRz0jxhZIA/dWYdYsxJJWkw==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.0.4: - resolution: {integrity: sha512-3v8WpdZy1AxZw0gha0q3caZmm+0gveBQ40OspD6mxDBIS+oBtO5CkxhIXkFJJW+jDKmDlM7wXDIGfMEq+QyNCQ==} + turbo-windows-arm64@2.0.6: + resolution: {integrity: sha512-rdrKL+p+EjtdDVg0wQ/7yTbzkIYrnb0Pw4IKcjsy3M0RqUM9UcEi67b94XOAyTa5a0GqJL1+tUj2ebsFGPgZbg==} cpu: [arm64] os: [win32] - turbo@2.0.4: - resolution: {integrity: sha512-Ilme/2Q5kYw0AeRr+aw3s02+WrEYaY7U8vPnqSZU/jaDG/qd6jHVN6nRWyd/9KXvJGYM69vE6JImoGoyNjLwaw==} + turbo@2.0.6: + resolution: {integrity: sha512-/Ftmxd5Mq//a9yMonvmwENNUN65jOVTwhhBPQjEtNZutYT9YKyzydFGLyVM1nzhpLWahQSMamRc/RDBv5EapzA==} hasBin: true type-check@0.4.0: @@ -7360,8 +7372,8 @@ packages: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} - type-fest@4.20.1: - resolution: {integrity: sha512-R6wDsVsoS9xYOpy8vgeBlqpdOyzJ12HNfQhC/aAKWM3YoCV9TtunJzh/QpkMgeDhkoynDcw5f1y+qF9yc/HHyg==} + type-fest@4.21.0: + resolution: {integrity: sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==} engines: {node: '>=16'} type-is@1.6.18: @@ -7389,8 +7401,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - typescript@5.5.2: - resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==} + typescript@5.5.3: + resolution: {integrity: sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==} engines: {node: '>=14.17'} hasBin: true @@ -7528,8 +7540,8 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - update-browserslist-db@1.0.16: - resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} + update-browserslist-db@1.1.0: + resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -7701,8 +7713,8 @@ packages: whatwg-url@7.1.0: resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - when-exit@2.1.2: - resolution: {integrity: sha512-u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==} + when-exit@2.1.3: + resolution: {integrity: sha512-uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw==} which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} @@ -7791,8 +7803,8 @@ packages: utf-8-validate: optional: true - ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -7858,8 +7870,8 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} engines: {node: '>=12.20'} yoga-wasm-web@0.3.3: @@ -8375,11 +8387,11 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - '@bugsnag/browser@7.22.7': + '@bugsnag/browser@7.25.0': dependencies: - '@bugsnag/core': 7.22.7 + '@bugsnag/core': 7.25.0 - '@bugsnag/core@7.22.7': + '@bugsnag/core@7.25.0': dependencies: '@bugsnag/cuid': 3.1.1 '@bugsnag/safe-json-stringify': 6.0.0 @@ -8391,17 +8403,17 @@ snapshots: '@bugsnag/js@7.21.0': dependencies: - '@bugsnag/browser': 7.22.7 - '@bugsnag/node': 7.23.0 + '@bugsnag/browser': 7.25.0 + '@bugsnag/node': 7.25.0 - '@bugsnag/js@7.23.0': + '@bugsnag/js@7.25.0': dependencies: - '@bugsnag/browser': 7.22.7 - '@bugsnag/node': 7.23.0 + '@bugsnag/browser': 7.25.0 + '@bugsnag/node': 7.25.0 - '@bugsnag/node@7.23.0': + '@bugsnag/node@7.25.0': dependencies: - '@bugsnag/core': 7.22.7 + '@bugsnag/core': 7.25.0 byline: 5.0.0 error-stack-parser: 2.1.4 iserror: 0.0.2 @@ -8410,10 +8422,10 @@ snapshots: '@bugsnag/safe-json-stringify@6.0.0': {} - '@changesets/apply-release-plan@7.0.3': + '@changesets/apply-release-plan@7.0.4': dependencies: '@babel/runtime': 7.24.7 - '@changesets/config': 3.0.1 + '@changesets/config': 3.0.2 '@changesets/get-version-range-type': 0.4.0 '@changesets/git': 3.0.0 '@changesets/should-skip-package': 0.1.0 @@ -8427,11 +8439,11 @@ snapshots: resolve-from: 5.0.0 semver: 7.6.2 - '@changesets/assemble-release-plan@6.0.2': + '@changesets/assemble-release-plan@6.0.3': dependencies: '@babel/runtime': 7.24.7 '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.0 + '@changesets/get-dependents-graph': 2.1.1 '@changesets/should-skip-package': 0.1.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 @@ -8441,16 +8453,16 @@ snapshots: dependencies: '@changesets/types': 6.0.0 - '@changesets/cli@2.27.6': + '@changesets/cli@2.27.7': dependencies: '@babel/runtime': 7.24.7 - '@changesets/apply-release-plan': 7.0.3 - '@changesets/assemble-release-plan': 6.0.2 + '@changesets/apply-release-plan': 7.0.4 + '@changesets/assemble-release-plan': 6.0.3 '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.1 + '@changesets/config': 3.0.2 '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.0 - '@changesets/get-release-plan': 4.0.2 + '@changesets/get-dependents-graph': 2.1.1 + '@changesets/get-release-plan': 4.0.3 '@changesets/git': 3.0.0 '@changesets/logger': 0.1.0 '@changesets/pre': 2.0.0 @@ -8476,10 +8488,10 @@ snapshots: spawndamnit: 2.0.0 term-size: 2.2.1 - '@changesets/config@3.0.1': + '@changesets/config@3.0.2': dependencies: '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.0 + '@changesets/get-dependents-graph': 2.1.1 '@changesets/logger': 0.1.0 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 @@ -8490,7 +8502,7 @@ snapshots: dependencies: extendable-error: 0.1.7 - '@changesets/get-dependents-graph@2.1.0': + '@changesets/get-dependents-graph@2.1.1': dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 @@ -8498,11 +8510,11 @@ snapshots: fs-extra: 7.0.1 semver: 7.6.2 - '@changesets/get-release-plan@4.0.2': + '@changesets/get-release-plan@4.0.3': dependencies: '@babel/runtime': 7.24.7 - '@changesets/assemble-release-plan': 6.0.2 - '@changesets/config': 3.0.1 + '@changesets/assemble-release-plan': 6.0.3 + '@changesets/config': 3.0.2 '@changesets/pre': 2.0.0 '@changesets/read': 0.6.0 '@changesets/types': 6.0.0 @@ -8585,35 +8597,35 @@ snapshots: dependencies: '@jridgewell/trace-mapping': 0.3.9 - '@csstools/cascade-layer-name-parser@1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)': + '@csstools/cascade-layer-name-parser@1.0.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3)': dependencies: - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 - '@csstools/color-helpers@4.2.0': {} + '@csstools/color-helpers@4.2.1': {} - '@csstools/css-calc@1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)': + '@csstools/css-calc@1.2.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3)': dependencies: - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 - '@csstools/css-color-parser@2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)': + '@csstools/css-color-parser@2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3)': dependencies: - '@csstools/color-helpers': 4.2.0 - '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/color-helpers': 4.2.1 + '@csstools/css-calc': 1.2.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 - '@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1)': + '@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3)': dependencies: - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-tokenizer': 2.3.3 - '@csstools/css-tokenizer@2.3.1': {} + '@csstools/css-tokenizer@2.3.3': {} - '@csstools/media-query-list-parser@2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)': + '@csstools/media-query-list-parser@2.1.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3)': dependencies: - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-cascade-layers@4.0.6(postcss@8.4.38)': dependencies: @@ -8621,29 +8633,29 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.1.0 - '@csstools/postcss-color-function@3.0.16(postcss@8.4.38)': + '@csstools/postcss-color-function@3.0.17(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 - '@csstools/postcss-color-mix-function@2.0.16(postcss@8.4.38)': + '@csstools/postcss-color-mix-function@2.0.17(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 - '@csstools/postcss-exponential-functions@1.0.7(postcss@8.4.38)': + '@csstools/postcss-exponential-functions@1.0.8(postcss@8.4.38)': dependencies: - '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-calc': 1.2.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 postcss: 8.4.38 '@csstools/postcss-font-format-keywords@3.0.2(postcss@8.4.38)': @@ -8652,27 +8664,27 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-gamut-mapping@1.0.9(postcss@8.4.38)': + '@csstools/postcss-gamut-mapping@1.0.10(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 postcss: 8.4.38 - '@csstools/postcss-gradients-interpolation-method@4.0.17(postcss@8.4.38)': + '@csstools/postcss-gradients-interpolation-method@4.0.18(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 - '@csstools/postcss-hwb-function@3.0.15(postcss@8.4.38)': + '@csstools/postcss-hwb-function@3.0.16(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 @@ -8694,10 +8706,10 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.1.0 - '@csstools/postcss-light-dark-function@1.0.5(postcss@8.4.38)': + '@csstools/postcss-light-dark-function@1.0.6(postcss@8.4.38)': dependencies: - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 @@ -8719,25 +8731,25 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-logical-viewport-units@2.0.9(postcss@8.4.38)': + '@csstools/postcss-logical-viewport-units@2.0.10(postcss@8.4.38)': dependencies: - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-tokenizer': 2.3.3 '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 - '@csstools/postcss-media-minmax@1.1.6(postcss@8.4.38)': + '@csstools/postcss-media-minmax@1.1.7(postcss@8.4.38)': dependencies: - '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 - '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) + '@csstools/css-calc': 1.2.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 + '@csstools/media-query-list-parser': 2.1.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) postcss: 8.4.38 - '@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.9(postcss@8.4.38)': + '@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.10(postcss@8.4.38)': dependencies: - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 - '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 + '@csstools/media-query-list-parser': 2.1.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) postcss: 8.4.38 '@csstools/postcss-nested-calc@3.0.2(postcss@8.4.38)': @@ -8751,11 +8763,11 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@3.0.16(postcss@8.4.38)': + '@csstools/postcss-oklab-function@3.0.17(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 @@ -8765,11 +8777,11 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-relative-color-syntax@2.0.16(postcss@8.4.38)': + '@csstools/postcss-relative-color-syntax@2.0.17(postcss@8.4.38)': dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 @@ -8779,24 +8791,24 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.1.0 - '@csstools/postcss-stepped-value-functions@3.0.8(postcss@8.4.38)': + '@csstools/postcss-stepped-value-functions@3.0.9(postcss@8.4.38)': dependencies: - '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-calc': 1.2.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 postcss: 8.4.38 - '@csstools/postcss-text-decoration-shorthand@3.0.6(postcss@8.4.38)': + '@csstools/postcss-text-decoration-shorthand@3.0.7(postcss@8.4.38)': dependencies: - '@csstools/color-helpers': 4.2.0 + '@csstools/color-helpers': 4.2.1 postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@3.0.8(postcss@8.4.38)': + '@csstools/postcss-trigonometric-functions@3.0.9(postcss@8.4.38)': dependencies: - '@csstools/css-calc': 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-calc': 1.2.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 postcss: 8.4.38 '@csstools/postcss-unset-value@3.0.1(postcss@8.4.38)': @@ -8865,6 +8877,9 @@ snapshots: '@esbuild/darwin-x64@0.21.5': optional: true + '@esbuild/darwin-x64@0.23.0': + optional: true + '@esbuild/freebsd-arm64@0.17.6': optional: true @@ -9023,7 +9038,7 @@ snapshots: eslint: 8.57.0 eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.10.1': {} + '@eslint-community/regexpp@4.11.0': {} '@eslint/eslintrc@2.1.4': dependencies: @@ -9043,30 +9058,30 @@ snapshots: '@fastify/busboy@2.1.1': {} - '@floating-ui/core@1.6.2': + '@floating-ui/core@1.6.4': dependencies: - '@floating-ui/utils': 0.2.2 + '@floating-ui/utils': 0.2.4 - '@floating-ui/dom@1.6.5': + '@floating-ui/dom@1.6.7': dependencies: - '@floating-ui/core': 1.6.2 - '@floating-ui/utils': 0.2.2 + '@floating-ui/core': 1.6.4 + '@floating-ui/utils': 0.2.4 - '@floating-ui/react-dom@2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@floating-ui/react-dom@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/dom': 1.6.5 + '@floating-ui/dom': 1.6.7 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react@0.26.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@floating-ui/react@0.26.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/react-dom': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@floating-ui/utils': 0.2.2 + '@floating-ui/react-dom': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/utils': 0.2.4 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tabbable: 6.2.0 - '@floating-ui/utils@0.2.2': {} + '@floating-ui/utils@0.2.4': {} '@fontsource/poppins@5.0.14': {} @@ -9081,31 +9096,31 @@ snapshots: graphql: 16.8.2 tslib: 2.6.3 - '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5)': + '@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.9)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5)': dependencies: '@babel/generator': 7.24.7 '@babel/template': 7.24.7 '@babel/types': 7.24.7 - '@graphql-codegen/client-preset': 4.3.0(graphql@16.8.2) + '@graphql-codegen/client-preset': 4.3.2(graphql@16.8.2) '@graphql-codegen/core': 4.0.2(graphql@16.8.2) '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) '@graphql-tools/apollo-engine-loader': 8.0.1(graphql@16.8.2) '@graphql-tools/code-file-loader': 8.1.2(graphql@16.8.2) '@graphql-tools/git-loader': 8.0.6(graphql@16.8.2) - '@graphql-tools/github-loader': 8.0.1(@types/node@20.14.8)(graphql@16.8.2) + '@graphql-tools/github-loader': 8.0.1(@types/node@20.14.9)(graphql@16.8.2) '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.2) '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.2) '@graphql-tools/load': 8.0.2(graphql@16.8.2) - '@graphql-tools/prisma-loader': 8.0.4(@types/node@20.14.8)(graphql@16.8.2) - '@graphql-tools/url-loader': 8.0.2(@types/node@20.14.8)(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/prisma-loader': 8.0.4(@types/node@20.14.9)(graphql@16.8.2) + '@graphql-tools/url-loader': 8.0.2(@types/node@20.14.9)(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.4.5) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.8.2 - graphql-config: 5.0.3(@types/node@20.14.8)(graphql@16.8.2)(typescript@5.4.5) + graphql-config: 5.0.3(@types/node@20.14.9)(graphql@16.8.2)(typescript@5.4.5) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.21.6 @@ -9131,19 +9146,19 @@ snapshots: - typescript - utf-8-validate - '@graphql-codegen/client-preset@4.3.0(graphql@16.8.2)': + '@graphql-codegen/client-preset@4.3.2(graphql@16.8.2)': dependencies: '@babel/helper-plugin-utils': 7.24.7 '@babel/template': 7.24.7 '@graphql-codegen/add': 5.0.3(graphql@16.8.2) - '@graphql-codegen/gql-tag-operations': 4.0.7(graphql@16.8.2) + '@graphql-codegen/gql-tag-operations': 4.0.9(graphql@16.8.2) '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/typed-document-node': 5.0.7(graphql@16.8.2) - '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2) - '@graphql-codegen/typescript-operations': 4.2.1(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/typed-document-node': 5.0.9(graphql@16.8.2) + '@graphql-codegen/typescript': 4.0.9(graphql@16.8.2) + '@graphql-codegen/typescript-operations': 4.2.3(graphql@16.8.2) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.8.2) '@graphql-tools/documents': 1.0.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 @@ -9155,15 +9170,15 @@ snapshots: dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 - '@graphql-codegen/gql-tag-operations@4.0.7(graphql@16.8.2)': + '@graphql-codegen/gql-tag-operations@4.0.9(graphql@16.8.2)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) auto-bind: 4.0.0 graphql: 16.8.2 tslib: 2.6.3 @@ -9173,7 +9188,7 @@ snapshots: '@graphql-codegen/plugin-helpers@5.0.4(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) change-case-all: 1.0.15 common-tags: 1.8.2 graphql: 16.8.2 @@ -9181,17 +9196,17 @@ snapshots: lodash: 4.17.21 tslib: 2.6.3 - '@graphql-codegen/schema-ast@4.0.2(graphql@16.8.2)': + '@graphql-codegen/schema-ast@4.1.0(graphql@16.8.2)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 - '@graphql-codegen/typed-document-node@5.0.7(graphql@16.8.2)': + '@graphql-codegen/typed-document-node@5.0.9(graphql@16.8.2)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.8.2) auto-bind: 4.0.0 change-case-all: 1.0.15 graphql: 16.8.2 @@ -9200,11 +9215,11 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript-operations@4.2.1(graphql@16.8.2)': + '@graphql-codegen/typescript-operations@4.2.3(graphql@16.8.2)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/typescript': 4.0.9(graphql@16.8.2) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.8.2) auto-bind: 4.0.0 graphql: 16.8.2 tslib: 2.6.3 @@ -9212,11 +9227,11 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript@4.0.7(graphql@16.8.2)': + '@graphql-codegen/typescript@4.0.9(graphql@16.8.2)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) - '@graphql-codegen/schema-ast': 4.0.2(graphql@16.8.2) - '@graphql-codegen/visitor-plugin-common': 5.2.0(graphql@16.8.2) + '@graphql-codegen/schema-ast': 4.1.0(graphql@16.8.2) + '@graphql-codegen/visitor-plugin-common': 5.3.1(graphql@16.8.2) auto-bind: 4.0.0 graphql: 16.8.2 tslib: 2.6.3 @@ -9224,12 +9239,12 @@ snapshots: - encoding - supports-color - '@graphql-codegen/visitor-plugin-common@5.2.0(graphql@16.8.2)': + '@graphql-codegen/visitor-plugin-common@5.3.1(graphql@16.8.2)': dependencies: '@graphql-codegen/plugin-helpers': 5.0.4(graphql@16.8.2) '@graphql-tools/optimize': 2.0.0(graphql@16.8.2) '@graphql-tools/relay-operation-optimizer': 7.0.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) auto-bind: 4.0.0 change-case-all: 1.0.15 dependency-graph: 0.11.0 @@ -9244,7 +9259,7 @@ snapshots: '@graphql-tools/apollo-engine-loader@8.0.1(graphql@16.8.2)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@whatwg-node/fetch': 0.9.18 graphql: 16.8.2 tslib: 2.6.3 @@ -9253,7 +9268,7 @@ snapshots: '@graphql-tools/batch-execute@9.0.4(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) dataloader: 2.2.2 graphql: 16.8.2 tslib: 2.6.3 @@ -9262,7 +9277,7 @@ snapshots: '@graphql-tools/code-file-loader@8.1.2(graphql@16.8.2)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) globby: 11.1.0 graphql: 16.8.2 tslib: 2.6.3 @@ -9270,12 +9285,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/delegate@10.0.11(graphql@16.8.2)': + '@graphql-tools/delegate@10.0.13(graphql@16.8.2)': dependencies: '@graphql-tools/batch-execute': 9.0.4(graphql@16.8.2) - '@graphql-tools/executor': 1.2.7(graphql@16.8.2) + '@graphql-tools/executor': 1.2.8(graphql@16.8.2) '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) dataloader: 2.2.2 graphql: 16.8.2 tslib: 2.6.3 @@ -9288,25 +9303,25 @@ snapshots: '@graphql-tools/executor-graphql-ws@1.1.2(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@types/ws': 8.5.10 graphql: 16.8.2 graphql-ws: 5.16.0(graphql@16.8.2) - isomorphic-ws: 5.0.0(ws@8.17.1) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.6.3 - ws: 8.17.1 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.0.9(@types/node@20.14.8)(graphql@16.8.2)': + '@graphql-tools/executor-http@1.0.9(@types/node@20.14.9)(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@repeaterjs/repeater': 3.0.6 '@whatwg-node/fetch': 0.9.18 extract-files: 11.0.0 graphql: 16.8.2 - meros: 1.3.0(@types/node@20.14.8) + meros: 1.3.0(@types/node@20.14.9) tslib: 2.6.3 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -9314,19 +9329,19 @@ snapshots: '@graphql-tools/executor-legacy-ws@1.0.6(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@types/ws': 8.5.10 graphql: 16.8.2 - isomorphic-ws: 5.0.0(ws@8.17.1) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.6.3 - ws: 8.17.1 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@graphql-tools/executor@1.2.7(graphql@16.8.2)': + '@graphql-tools/executor@1.2.8(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) '@repeaterjs/repeater': 3.0.6 graphql: 16.8.2 @@ -9336,7 +9351,7 @@ snapshots: '@graphql-tools/git-loader@8.0.6(graphql@16.8.2)': dependencies: '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 is-glob: 4.0.3 micromatch: 4.0.7 @@ -9345,12 +9360,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.1(@types/node@20.14.8)(graphql@16.8.2)': + '@graphql-tools/github-loader@8.0.1(@types/node@20.14.9)(graphql@16.8.2)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/executor-http': 1.0.9(@types/node@20.14.8)(graphql@16.8.2) + '@graphql-tools/executor-http': 1.0.9(@types/node@20.14.9)(graphql@16.8.2) '@graphql-tools/graphql-tag-pluck': 8.3.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@whatwg-node/fetch': 0.9.18 graphql: 16.8.2 tslib: 2.6.3 @@ -9363,7 +9378,7 @@ snapshots: '@graphql-tools/graphql-file-loader@8.0.1(graphql@16.8.2)': dependencies: '@graphql-tools/import': 7.0.1(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) globby: 11.1.0 graphql: 16.8.2 tslib: 2.6.3 @@ -9376,7 +9391,7 @@ snapshots: '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7) '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 transitivePeerDependencies: @@ -9384,14 +9399,14 @@ snapshots: '@graphql-tools/import@7.0.1(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 resolve-from: 5.0.0 tslib: 2.6.3 '@graphql-tools/json-file-loader@8.0.1(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) globby: 11.1.0 graphql: 16.8.2 tslib: 2.6.3 @@ -9400,14 +9415,14 @@ snapshots: '@graphql-tools/load@8.0.2(graphql@16.8.2)': dependencies: '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 p-limit: 3.1.0 tslib: 2.6.3 '@graphql-tools/merge@9.0.4(graphql@16.8.2)': dependencies: - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 @@ -9416,10 +9431,10 @@ snapshots: graphql: 16.8.2 tslib: 2.6.3 - '@graphql-tools/prisma-loader@8.0.4(@types/node@20.14.8)(graphql@16.8.2)': + '@graphql-tools/prisma-loader@8.0.4(@types/node@20.14.9)(graphql@16.8.2)': dependencies: - '@graphql-tools/url-loader': 8.0.2(@types/node@20.14.8)(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/url-loader': 8.0.2(@types/node@20.14.9)(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@types/js-yaml': 4.0.9 '@whatwg-node/fetch': 0.9.18 chalk: 4.1.2 @@ -9428,8 +9443,8 @@ snapshots: graphql: 16.8.2 graphql-request: 6.1.0(graphql@16.8.2) http-proxy-agent: 7.0.2 - https-proxy-agent: 7.0.4 - jose: 5.4.1 + https-proxy-agent: 7.0.5 + jose: 5.6.3 js-yaml: 4.1.0 lodash: 4.17.21 scuid: 1.1.0 @@ -9445,7 +9460,7 @@ snapshots: '@graphql-tools/relay-operation-optimizer@7.0.1(graphql@16.8.2)': dependencies: '@ardatan/relay-compiler': 12.0.0(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 transitivePeerDependencies: @@ -9455,34 +9470,34 @@ snapshots: '@graphql-tools/schema@10.0.4(graphql@16.8.2)': dependencies: '@graphql-tools/merge': 9.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 value-or-promise: 1.0.12 - '@graphql-tools/url-loader@8.0.2(@types/node@20.14.8)(graphql@16.8.2)': + '@graphql-tools/url-loader@8.0.2(@types/node@20.14.9)(graphql@16.8.2)': dependencies: '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 10.0.11(graphql@16.8.2) + '@graphql-tools/delegate': 10.0.13(graphql@16.8.2) '@graphql-tools/executor-graphql-ws': 1.1.2(graphql@16.8.2) - '@graphql-tools/executor-http': 1.0.9(@types/node@20.14.8)(graphql@16.8.2) + '@graphql-tools/executor-http': 1.0.9(@types/node@20.14.9)(graphql@16.8.2) '@graphql-tools/executor-legacy-ws': 1.0.6(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) '@graphql-tools/wrap': 10.0.5(graphql@16.8.2) '@types/ws': 8.5.10 '@whatwg-node/fetch': 0.9.18 graphql: 16.8.2 - isomorphic-ws: 5.0.0(ws@8.17.1) + isomorphic-ws: 5.0.0(ws@8.18.0) tslib: 2.6.3 value-or-promise: 1.0.12 - ws: 8.17.1 + ws: 8.18.0 transitivePeerDependencies: - '@types/node' - bufferutil - encoding - utf-8-validate - '@graphql-tools/utils@10.2.2(graphql@16.8.2)': + '@graphql-tools/utils@10.2.3(graphql@16.8.2)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.2) cross-inspect: 1.0.0 @@ -9492,9 +9507,9 @@ snapshots: '@graphql-tools/wrap@10.0.5(graphql@16.8.2)': dependencies: - '@graphql-tools/delegate': 10.0.11(graphql@16.8.2) + '@graphql-tools/delegate': 10.0.13(graphql@16.8.2) '@graphql-tools/schema': 10.0.4(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) graphql: 16.8.2 tslib: 2.6.3 value-or-promise: 1.0.12 @@ -9509,7 +9524,7 @@ snapshots: '@headlessui/react@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/react': 0.26.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@floating-ui/react': 0.26.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@react-aria/focus': 3.17.1(react@18.3.1) '@react-aria/interactions': 3.21.3(react@18.3.1) '@tanstack/react-virtual': 3.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -9661,7 +9676,7 @@ snapshots: '@miniflare/shared@2.14.2': dependencies: - '@types/better-sqlite3': 7.6.10 + '@types/better-sqlite3': 7.6.11 kleur: 4.1.5 npx-import: 1.1.4 picomatch: 2.3.1 @@ -9679,7 +9694,7 @@ snapshots: '@miniflare/core': 2.14.2 '@miniflare/shared': 2.14.2 undici: 5.28.2 - ws: 8.17.1 + ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -9751,7 +9766,7 @@ snapshots: indent-string: 4.0.0 is-wsl: 2.2.0 js-yaml: 3.14.1 - minimatch: 9.0.4 + minimatch: 9.0.5 natural-orderby: 2.0.3 object-treeify: 1.1.33 password-prompt: 1.1.3 @@ -10217,7 +10232,7 @@ snapshots: dependencies: react: 18.3.1 - '@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.8)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8))': + '@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9))': dependencies: '@babel/core': 7.24.7 '@babel/generator': 7.24.7 @@ -10234,7 +10249,7 @@ snapshots: '@remix-run/router': 1.16.1 '@remix-run/server-runtime': 2.9.2(typescript@5.4.5) '@types/mdx': 2.0.13 - '@vanilla-extract/integration': 6.5.0(@types/node@20.14.8) + '@vanilla-extract/integration': 6.5.0(@types/node@20.14.9) arg: 5.0.2 cacache: 17.1.4 chalk: 4.1.2 @@ -10254,14 +10269,14 @@ snapshots: json5: 2.2.3 lodash: 4.17.21 lodash.debounce: 4.0.8 - minimatch: 9.0.4 + minimatch: 9.0.5 ora: 5.4.1 picocolors: 1.0.1 picomatch: 2.3.1 pidtree: 0.6.0 postcss: 8.4.38 postcss-discard-duplicates: 5.1.0(postcss@8.4.38) - postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)) postcss-modules: 6.0.0(postcss@8.4.38) prettier: 2.8.8 pretty-ms: 7.0.1 @@ -10275,7 +10290,7 @@ snapshots: ws: 7.5.10 optionalDependencies: typescript: 5.4.5 - vite: 5.3.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -10291,55 +10306,55 @@ snapshots: - ts-node - utf-8-validate - '@remix-run/eslint-config@2.9.2(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5)': + '@remix-run/eslint-config@2.10.1(eslint@8.57.0)(react@18.3.1)(typescript@5.5.3)': dependencies: '@babel/core': 7.24.7 '@babel/eslint-parser': 7.24.7(@babel/core@7.24.7)(eslint@8.57.0) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) '@rushstack/eslint-patch': 1.10.3 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-jest: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-jest: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) eslint-plugin-jest-dom: 4.0.3(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) eslint-plugin-node: 11.1.0(eslint@8.57.0) eslint-plugin-react: 7.34.3(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) - eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.4.5) + eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.5.3) react: 18.3.1 optionalDependencies: - typescript: 5.4.5 + typescript: 5.5.3 transitivePeerDependencies: - eslint-import-resolver-webpack - jest - supports-color - '@remix-run/eslint-config@2.9.2(eslint@8.57.0)(react@18.3.1)(typescript@5.5.2)': + '@remix-run/eslint-config@2.9.2(eslint@8.57.0)(react@18.3.1)(typescript@5.4.5)': dependencies: '@babel/core': 7.24.7 '@babel/eslint-parser': 7.24.7(@babel/core@7.24.7)(eslint@8.57.0) '@babel/preset-react': 7.24.7(@babel/core@7.24.7) '@rushstack/eslint-patch': 1.10.3 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2) - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) - eslint-plugin-jest: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-jest: 26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) eslint-plugin-jest-dom: 4.0.3(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) eslint-plugin-node: 11.1.0(eslint@8.57.0) eslint-plugin-react: 7.34.3(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) - eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.5.2) + eslint-plugin-testing-library: 5.11.1(eslint@8.57.0)(typescript@5.4.5) react: 18.3.1 optionalDependencies: - typescript: 5.5.2 + typescript: 5.4.5 transitivePeerDependencies: - eslint-import-resolver-webpack - jest @@ -10369,17 +10384,17 @@ snapshots: optionalDependencies: typescript: 5.4.5 - '@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.2)': + '@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3)': dependencies: '@remix-run/router': 1.16.1 - '@remix-run/server-runtime': 2.9.2(typescript@5.5.2) + '@remix-run/server-runtime': 2.9.2(typescript@5.5.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-router: 6.23.1(react@18.3.1) react-router-dom: 6.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) turbo-stream: 2.2.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 '@remix-run/router@1.16.1': {} @@ -10395,7 +10410,7 @@ snapshots: optionalDependencies: typescript: 5.4.5 - '@remix-run/server-runtime@2.9.2(typescript@5.5.2)': + '@remix-run/server-runtime@2.9.2(typescript@5.5.3)': dependencies: '@remix-run/router': 1.16.1 '@types/cookie': 0.6.0 @@ -10405,7 +10420,7 @@ snapshots: source-map: 0.7.4 turbo-stream: 2.2.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 '@remix-run/web-blob@3.1.0': dependencies: @@ -10487,7 +10502,7 @@ snapshots: '@rushstack/eslint-patch@1.10.3': {} - '@shopify/cli-hydrogen@8.1.1(@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5))(@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.8)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8)))(@shopify/hydrogen-codegen@0.3.1(graphql@16.8.2))(@shopify/mini-oxygen@3.0.3(vite@5.3.0(@types/node@20.14.8)))(@types/react@18.3.3)(graphql-config@5.0.3(@types/node@20.14.8)(graphql@16.8.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.8))': + '@shopify/cli-hydrogen@8.1.1(@graphql-codegen/cli@5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.9)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5))(@remix-run/dev@2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9)))(@shopify/hydrogen-codegen@0.3.1(graphql@16.8.2))(@shopify/mini-oxygen@3.0.3(vite@5.3.0(@types/node@20.14.9)))(@types/react@18.3.3)(graphql-config@5.0.3(@types/node@20.14.9)(graphql@16.8.2)(typescript@5.4.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.9))': dependencies: '@ast-grep/napi': 0.11.0 '@oclif/core': 3.26.5 @@ -10509,13 +10524,13 @@ snapshots: ts-morph: 20.0.0 use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - '@graphql-codegen/cli': 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.8)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5) + '@graphql-codegen/cli': 5.0.2(@parcel/watcher@2.4.1)(@types/node@20.14.9)(enquirer@2.4.1)(graphql@16.8.2)(typescript@5.4.5) '@parcel/watcher': 2.4.1 - '@remix-run/dev': 2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.8)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8)) + '@remix-run/dev': 2.9.2(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@types/node@20.14.9)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5))(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9)) '@shopify/hydrogen-codegen': 0.3.1(graphql@16.8.2) - '@shopify/mini-oxygen': 3.0.3(vite@5.3.0(@types/node@20.14.8)) - graphql-config: 5.0.3(@types/node@20.14.8)(graphql@16.8.2)(typescript@5.4.5) - vite: 5.3.0(@types/node@20.14.8) + '@shopify/mini-oxygen': 3.0.3(vite@5.3.0(@types/node@20.14.9)) + graphql-config: 5.0.3(@types/node@20.14.9)(graphql@16.8.2)(typescript@5.4.5) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/react' - bufferutil @@ -10601,10 +10616,10 @@ snapshots: '@shopify/graphql-codegen@0.0.2(graphql@16.8.2)': dependencies: '@graphql-codegen/add': 5.0.3(graphql@16.8.2) - '@graphql-codegen/typescript': 4.0.7(graphql@16.8.2) - '@graphql-codegen/typescript-operations': 4.2.1(graphql@16.8.2) + '@graphql-codegen/typescript': 4.0.9(graphql@16.8.2) + '@graphql-codegen/typescript-operations': 4.2.3(graphql@16.8.2) graphql: 16.8.2 - type-fest: 4.20.1 + type-fest: 4.21.0 transitivePeerDependencies: - encoding - supports-color @@ -10625,13 +10640,13 @@ snapshots: graphql: 16.8.2 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - type-fest: 4.20.1 + type-fest: 4.21.0 worktop: 0.7.3 transitivePeerDependencies: - '@types/react' - xstate - '@shopify/hydrogen@2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/server-runtime@2.9.2(typescript@5.4.5))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.8))': + '@shopify/hydrogen@2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5))(@remix-run/server-runtime@2.9.2(typescript@5.4.5))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.9))': dependencies: '@remix-run/react': 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) '@remix-run/server-runtime': 2.9.2(typescript@5.4.5) @@ -10639,35 +10654,35 @@ snapshots: content-security-policy-builder: 2.2.0 react: 18.3.1 source-map-support: 0.5.21 - type-fest: 4.20.1 + type-fest: 4.21.0 use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) worktop: 0.7.3 optionalDependencies: - vite: 5.3.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/react' - react-dom - xstate - '@shopify/hydrogen@2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.2))(@remix-run/server-runtime@2.9.2(typescript@5.5.2))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.8))': + '@shopify/hydrogen@2024.4.7(@remix-run/react@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3))(@remix-run/server-runtime@2.9.2(typescript@5.5.3))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(vite@5.3.0(@types/node@20.14.9))': dependencies: - '@remix-run/react': 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.2) - '@remix-run/server-runtime': 2.9.2(typescript@5.5.2) + '@remix-run/react': 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.5.3) + '@remix-run/server-runtime': 2.9.2(typescript@5.5.3) '@shopify/hydrogen-react': 2024.4.4(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) content-security-policy-builder: 2.2.0 react: 18.3.1 source-map-support: 0.5.21 - type-fest: 4.20.1 + type-fest: 4.21.0 use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) worktop: 0.7.3 optionalDependencies: - vite: 5.3.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/react' - react-dom - xstate - '@shopify/mini-oxygen@3.0.3(vite@5.3.0(@types/node@20.14.8))': + '@shopify/mini-oxygen@3.0.3(vite@5.3.0(@types/node@20.14.9))': dependencies: '@miniflare/cache': 2.14.2 '@miniflare/core': 2.14.2 @@ -10685,9 +10700,9 @@ snapshots: source-map-support: 0.5.21 stack-trace: 1.0.0-pre2 undici: 5.28.4 - ws: 8.17.1 + ws: 8.18.0 optionalDependencies: - vite: 5.3.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - bufferutil - supports-color @@ -10695,9 +10710,9 @@ snapshots: '@shopify/oxygen-cli@4.4.9(@oclif/core@3.26.5)(@shopify/cli-kit@3.60.0(@types/react@18.3.3))': dependencies: - '@bugsnag/core': 7.22.7 - '@bugsnag/js': 7.23.0 - '@bugsnag/node': 7.23.0 + '@bugsnag/core': 7.25.0 + '@bugsnag/js': 7.25.0 + '@bugsnag/node': 7.25.0 '@oclif/core': 3.26.5 '@shopify/cli-kit': 3.60.0(@types/react@18.3.3) async: 3.2.5 @@ -10723,9 +10738,9 @@ snapshots: '@remix-run/server-runtime': 2.9.2(typescript@5.4.5) '@shopify/oxygen-workers-types': 4.0.0 - '@shopify/remix-oxygen@2.0.4(@remix-run/server-runtime@2.9.2(typescript@5.5.2))(@shopify/oxygen-workers-types@4.0.0)': + '@shopify/remix-oxygen@2.0.4(@remix-run/server-runtime@2.9.2(typescript@5.5.3))(@shopify/oxygen-workers-types@4.0.0)': dependencies: - '@remix-run/server-runtime': 2.9.2(typescript@5.5.2) + '@remix-run/server-runtime': 2.9.2(typescript@5.5.3) '@shopify/oxygen-workers-types': 4.0.0 '@sindresorhus/is@5.6.0': {} @@ -10744,18 +10759,18 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@tailwindcss/forms@0.5.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)))': + '@tailwindcss/forms@0.5.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)))': dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)) - '@tailwindcss/typography@0.5.13(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)))': + '@tailwindcss/typography@0.5.13(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)))': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)) + tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)) '@tanstack/react-virtual@3.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -10803,13 +10818,13 @@ snapshots: '@types/aria-query@5.0.4': {} - '@types/better-sqlite3@7.6.10': + '@types/better-sqlite3@7.6.11': dependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 '@types/cli-progress@3.11.5': dependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 '@types/cookie@0.6.0': {} @@ -10847,7 +10862,7 @@ snapshots: '@types/node@12.20.55': {} - '@types/node@20.14.8': + '@types/node@20.14.9': dependencies: undici-types: 5.26.5 @@ -10864,7 +10879,7 @@ snapshots: '@types/readdir-glob@1.1.5': dependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 '@types/semver@7.5.8': {} @@ -10876,11 +10891,11 @@ snapshots: '@types/ws@8.5.10': dependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@eslint-community/regexpp': 4.10.1 + '@eslint-community/regexpp': 4.11.0 '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) @@ -10897,22 +10912,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2)': + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3)': dependencies: - '@eslint-community/regexpp': 4.10.1 - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@eslint-community/regexpp': 4.11.0 + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.5.2) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) debug: 4.3.5(supports-color@8.1.1) eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare-lite: 1.4.0 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.5.2) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 transitivePeerDependencies: - supports-color @@ -10928,15 +10943,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2)': + '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) debug: 4.3.5(supports-color@8.1.1) eslint: 8.57.0 optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 transitivePeerDependencies: - supports-color @@ -10957,15 +10972,15 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.5.2)': + '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) debug: 4.3.5(supports-color@8.1.1) eslint: 8.57.0 - tsutils: 3.21.0(typescript@5.5.2) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 transitivePeerDependencies: - supports-color @@ -10985,7 +11000,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.2)': + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.3)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 @@ -10993,9 +11008,9 @@ snapshots: globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.2 - tsutils: 3.21.0(typescript@5.5.2) + tsutils: 3.21.0(typescript@5.5.3) optionalDependencies: - typescript: 5.5.2 + typescript: 5.5.3 transitivePeerDependencies: - supports-color @@ -11014,14 +11029,14 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.2)': + '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.3) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.2 @@ -11058,21 +11073,21 @@ snapshots: transitivePeerDependencies: - babel-plugin-macros - '@vanilla-extract/integration@6.5.0(@types/node@20.14.8)': + '@vanilla-extract/integration@6.5.0(@types/node@20.14.9)': dependencies: '@babel/core': 7.24.7 '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7) '@vanilla-extract/babel-plugin-debug-ids': 1.0.6 '@vanilla-extract/css': 1.15.3 - esbuild: 0.19.8 + esbuild: 0.17.6 eval: 0.1.8 find-up: 5.0.0 javascript-stringify: 2.1.0 lodash: 4.17.21 mlly: 1.7.1 outdent: 0.8.0 - vite: 5.3.0(@types/node@20.14.8) - vite-node: 1.6.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) + vite-node: 1.6.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -11147,15 +11162,15 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-jsx@5.3.2(acorn@8.12.0): + acorn-jsx@5.3.2(acorn@8.12.1): dependencies: - acorn: 8.12.0 + acorn: 8.12.1 acorn-walk@8.3.3: dependencies: - acorn: 8.12.0 + acorn: 8.12.1 - acorn@8.12.0: {} + acorn@8.12.1: {} agent-base@7.1.1: dependencies: @@ -11382,7 +11397,7 @@ snapshots: atomically@2.0.3: dependencies: stubborn-fs: 1.2.5 - when-exit: 2.1.2 + when-exit: 2.1.3 auto-bind@4.0.0: {} @@ -11391,7 +11406,7 @@ snapshots: autoprefixer@10.4.19(postcss@8.4.38): dependencies: browserslist: 4.23.1 - caniuse-lite: 1.0.30001636 + caniuse-lite: 1.0.30001640 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.1 @@ -11504,10 +11519,10 @@ snapshots: browserslist@4.23.1: dependencies: - caniuse-lite: 1.0.30001636 - electron-to-chromium: 1.4.810 + caniuse-lite: 1.0.30001640 + electron-to-chromium: 1.4.816 node-releases: 2.0.14 - update-browserslist-db: 1.0.16(browserslist@4.23.1) + update-browserslist-db: 1.1.0(browserslist@4.23.1) bser@2.1.1: dependencies: @@ -11596,7 +11611,7 @@ snapshots: camelcase@5.3.1: {} - caniuse-lite@1.0.30001636: {} + caniuse-lite@1.0.30001640: {} capital-case@1.0.4: dependencies: @@ -11726,7 +11741,7 @@ snapshots: cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 - string-width: 7.1.0 + string-width: 7.2.0 cli-width@3.0.0: {} @@ -12173,7 +12188,7 @@ snapshots: dependencies: jake: 10.9.1 - electron-to-chromium@1.4.810: {} + electron-to-chromium@1.4.816: {} emoji-regex@10.3.0: {} @@ -12443,13 +12458,13 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0): + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0): dependencies: debug: 4.3.5(supports-color@8.1.1) enhanced-resolve: 5.17.0 eslint: 8.57.0 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) fast-glob: 3.3.2 get-tsconfig: 4.7.5 is-core-module: 2.14.0 @@ -12482,25 +12497,25 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color @@ -12537,7 +12552,7 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -12547,7 +12562,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.14.0 is-glob: 4.0.3 @@ -12558,7 +12573,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.5.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -12581,12 +12596,12 @@ snapshots: - supports-color - typescript - eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2): + eslint-plugin-jest@26.9.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.2))(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.3))(eslint@8.57.0)(typescript@5.5.3) transitivePeerDependencies: - supports-color - typescript @@ -12655,9 +12670,9 @@ snapshots: - supports-color - typescript - eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.5.2): + eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.5.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.5.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -12686,7 +12701,7 @@ snapshots: eslint@8.57.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@eslint-community/regexpp': 4.10.1 + '@eslint-community/regexpp': 4.11.0 '@eslint/eslintrc': 2.1.4 '@eslint/js': 8.57.0 '@humanwhocodes/config-array': 0.11.14 @@ -12728,8 +12743,8 @@ snapshots: espree@9.6.1: dependencies: - acorn: 8.12.0 - acorn-jsx: 5.3.2(acorn@8.12.0) + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -12785,7 +12800,7 @@ snapshots: eval@0.1.8: dependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 require-like: 0.1.2 event-target-shim@5.0.1: {} @@ -12912,7 +12927,7 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-loops@1.1.3: {} + fast-loops@1.1.4: {} fast-querystring@1.1.2: dependencies: @@ -13210,7 +13225,7 @@ snapshots: dependencies: foreground-child: 3.2.1 jackspeak: 3.4.0 - minimatch: 9.0.4 + minimatch: 9.0.5 minipass: 7.1.2 package-json-from-dist: 1.0.0 path-scurry: 1.11.1 @@ -13275,14 +13290,14 @@ snapshots: graphemer@1.4.0: {} - graphql-config@5.0.3(@types/node@20.14.8)(graphql@16.8.2)(typescript@5.4.5): + graphql-config@5.0.3(@types/node@20.14.9)(graphql@16.8.2)(typescript@5.4.5): dependencies: '@graphql-tools/graphql-file-loader': 8.0.1(graphql@16.8.2) '@graphql-tools/json-file-loader': 8.0.1(graphql@16.8.2) '@graphql-tools/load': 8.0.2(graphql@16.8.2) '@graphql-tools/merge': 9.0.4(graphql@16.8.2) - '@graphql-tools/url-loader': 8.0.2(@types/node@20.14.8)(graphql@16.8.2) - '@graphql-tools/utils': 10.2.2(graphql@16.8.2) + '@graphql-tools/url-loader': 8.0.2(@types/node@20.14.9)(graphql@16.8.2) + '@graphql-tools/utils': 10.2.3(graphql@16.8.2) cosmiconfig: 8.3.6(typescript@5.4.5) graphql: 16.8.2 jiti: 1.21.6 @@ -13411,7 +13426,7 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@7.0.4: + https-proxy-agent@7.0.5: dependencies: agent-base: 7.1.1 debug: 4.3.5(supports-color@8.1.1) @@ -13492,7 +13507,7 @@ snapshots: type-fest: 0.12.0 widest-line: 4.0.1 wrap-ansi: 8.1.0 - ws: 8.17.1 + ws: 8.18.0 yoga-wasm-web: 0.3.3 optionalDependencies: '@types/react': 18.3.3 @@ -13505,7 +13520,7 @@ snapshots: inline-style-prefixer@7.0.0: dependencies: css-in-js-utils: 3.1.0 - fast-loops: 1.1.3 + fast-loops: 1.1.4 inquirer@8.2.6: dependencies: @@ -13736,9 +13751,9 @@ snapshots: isexe@2.0.0: {} - isomorphic-ws@5.0.0(ws@8.17.1): + isomorphic-ws@5.0.0(ws@8.18.0): dependencies: - ws: 8.17.1 + ws: 8.18.0 iterator.prototype@1.1.2: dependencies: @@ -13765,7 +13780,7 @@ snapshots: jiti@1.21.6: {} - jose@5.4.1: {} + jose@5.6.3: {} joycon@3.1.1: {} @@ -13915,7 +13930,7 @@ snapshots: local-pkg@0.5.0: dependencies: mlly: 1.7.1 - pkg-types: 1.1.1 + pkg-types: 1.1.3 locate-path@5.0.0: dependencies: @@ -13981,7 +13996,7 @@ snapshots: lowercase-keys@3.0.0: {} - lru-cache@10.2.2: {} + lru-cache@10.3.0: {} lru-cache@4.1.5: dependencies: @@ -14139,9 +14154,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@20.14.8): + meros@1.3.0(@types/node@20.14.9): optionalDependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 methods@1.1.2: {} @@ -14213,8 +14228,8 @@ snapshots: micromark-extension-mdxjs@1.0.1: dependencies: - acorn: 8.12.0 - acorn-jsx: 5.3.2(acorn@8.12.0) + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) micromark-extension-mdx-expression: 1.0.8 micromark-extension-mdx-jsx: 1.0.5 micromark-extension-mdx-md: 1.0.1 @@ -14384,7 +14399,7 @@ snapshots: miniflare@3.20240304.2: dependencies: '@cspotcode/source-map-support': 0.8.1 - acorn: 8.12.0 + acorn: 8.12.1 acorn-walk: 8.3.3 capnp-ts: 0.7.0 exit-hook: 2.2.1 @@ -14392,7 +14407,7 @@ snapshots: stoppable: 1.1.0 undici: 5.28.4 workerd: 1.20240304.0 - ws: 8.17.1 + ws: 8.18.0 youch: 3.3.3 zod: 3.23.8 transitivePeerDependencies: @@ -14420,7 +14435,7 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.4: + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -14459,9 +14474,9 @@ snapshots: mlly@1.7.1: dependencies: - acorn: 8.12.0 + acorn: 8.12.1 pathe: 1.1.2 - pkg-types: 1.1.1 + pkg-types: 1.1.3 ufo: 1.5.3 modern-ahocorasick@1.0.1: {} @@ -14716,7 +14731,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.0.0 + yocto-queue: 1.1.1 p-locate@4.1.0: dependencies: @@ -14829,7 +14844,7 @@ snapshots: path-scurry@1.11.1: dependencies: - lru-cache: 10.2.2 + lru-cache: 10.3.0 minipass: 7.1.2 path-to-regexp@0.1.7: {} @@ -14882,7 +14897,7 @@ snapshots: dependencies: find-up: 4.1.0 - pkg-types@1.1.1: + pkg-types@1.1.3: dependencies: confbox: 0.1.7 mlly: 1.7.1 @@ -14908,11 +14923,11 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@6.0.11(postcss@8.4.38): + postcss-color-functional-notation@6.0.12(postcss@8.4.38): dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 @@ -14929,28 +14944,28 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-custom-media@10.0.6(postcss@8.4.38): + postcss-custom-media@10.0.7(postcss@8.4.38): dependencies: - '@csstools/cascade-layer-name-parser': 1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 - '@csstools/media-query-list-parser': 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) + '@csstools/cascade-layer-name-parser': 1.0.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 + '@csstools/media-query-list-parser': 2.1.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) postcss: 8.4.38 - postcss-custom-properties@13.3.10(postcss@8.4.38): + postcss-custom-properties@13.3.11(postcss@8.4.38): dependencies: - '@csstools/cascade-layer-name-parser': 1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/cascade-layer-name-parser': 1.0.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-custom-selectors@7.1.10(postcss@8.4.38): + postcss-custom-selectors@7.1.11(postcss@8.4.38): dependencies: - '@csstools/cascade-layer-name-parser': 1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/cascade-layer-name-parser': 1.0.12(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 postcss: 8.4.38 postcss-selector-parser: 6.1.0 @@ -15013,30 +15028,30 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.38 - postcss-lab-function@6.0.16(postcss@8.4.38): + postcss-lab-function@6.0.17(postcss@8.4.38): dependencies: - '@csstools/css-color-parser': 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - '@csstools/css-parser-algorithms': 2.6.3(@csstools/css-tokenizer@2.3.1) - '@csstools/css-tokenizer': 2.3.1 + '@csstools/css-color-parser': 2.0.3(@csstools/css-parser-algorithms@2.7.0(@csstools/css-tokenizer@2.3.3))(@csstools/css-tokenizer@2.3.3) + '@csstools/css-parser-algorithms': 2.7.0(@csstools/css-tokenizer@2.3.3) + '@csstools/css-tokenizer': 2.3.3 '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) '@csstools/utilities': 1.0.0(postcss@8.4.38) postcss: 8.4.38 - postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)): + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)): dependencies: lilconfig: 3.1.2 yaml: 2.4.5 optionalDependencies: postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.4.5) + ts-node: 10.9.2(@types/node@20.14.9)(typescript@5.4.5) - postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2)): + postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)): dependencies: lilconfig: 3.1.2 yaml: 2.4.5 optionalDependencies: postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.14.8)(typescript@5.5.2) + ts-node: 10.9.2(@types/node@20.14.9)(typescript@5.5.3) postcss-logical@7.0.1(postcss@8.4.38): dependencies: @@ -15109,33 +15124,33 @@ snapshots: postcss-preset-env@9.5.14(postcss@8.4.38): dependencies: '@csstools/postcss-cascade-layers': 4.0.6(postcss@8.4.38) - '@csstools/postcss-color-function': 3.0.16(postcss@8.4.38) - '@csstools/postcss-color-mix-function': 2.0.16(postcss@8.4.38) - '@csstools/postcss-exponential-functions': 1.0.7(postcss@8.4.38) + '@csstools/postcss-color-function': 3.0.17(postcss@8.4.38) + '@csstools/postcss-color-mix-function': 2.0.17(postcss@8.4.38) + '@csstools/postcss-exponential-functions': 1.0.8(postcss@8.4.38) '@csstools/postcss-font-format-keywords': 3.0.2(postcss@8.4.38) - '@csstools/postcss-gamut-mapping': 1.0.9(postcss@8.4.38) - '@csstools/postcss-gradients-interpolation-method': 4.0.17(postcss@8.4.38) - '@csstools/postcss-hwb-function': 3.0.15(postcss@8.4.38) + '@csstools/postcss-gamut-mapping': 1.0.10(postcss@8.4.38) + '@csstools/postcss-gradients-interpolation-method': 4.0.18(postcss@8.4.38) + '@csstools/postcss-hwb-function': 3.0.16(postcss@8.4.38) '@csstools/postcss-ic-unit': 3.0.6(postcss@8.4.38) '@csstools/postcss-initial': 1.0.1(postcss@8.4.38) '@csstools/postcss-is-pseudo-class': 4.0.8(postcss@8.4.38) - '@csstools/postcss-light-dark-function': 1.0.5(postcss@8.4.38) + '@csstools/postcss-light-dark-function': 1.0.6(postcss@8.4.38) '@csstools/postcss-logical-float-and-clear': 2.0.1(postcss@8.4.38) '@csstools/postcss-logical-overflow': 1.0.1(postcss@8.4.38) '@csstools/postcss-logical-overscroll-behavior': 1.0.1(postcss@8.4.38) '@csstools/postcss-logical-resize': 2.0.1(postcss@8.4.38) - '@csstools/postcss-logical-viewport-units': 2.0.9(postcss@8.4.38) - '@csstools/postcss-media-minmax': 1.1.6(postcss@8.4.38) - '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.9(postcss@8.4.38) + '@csstools/postcss-logical-viewport-units': 2.0.10(postcss@8.4.38) + '@csstools/postcss-media-minmax': 1.1.7(postcss@8.4.38) + '@csstools/postcss-media-queries-aspect-ratio-number-values': 2.0.10(postcss@8.4.38) '@csstools/postcss-nested-calc': 3.0.2(postcss@8.4.38) '@csstools/postcss-normalize-display-values': 3.0.2(postcss@8.4.38) - '@csstools/postcss-oklab-function': 3.0.16(postcss@8.4.38) + '@csstools/postcss-oklab-function': 3.0.17(postcss@8.4.38) '@csstools/postcss-progressive-custom-properties': 3.2.0(postcss@8.4.38) - '@csstools/postcss-relative-color-syntax': 2.0.16(postcss@8.4.38) + '@csstools/postcss-relative-color-syntax': 2.0.17(postcss@8.4.38) '@csstools/postcss-scope-pseudo-class': 3.0.1(postcss@8.4.38) - '@csstools/postcss-stepped-value-functions': 3.0.8(postcss@8.4.38) - '@csstools/postcss-text-decoration-shorthand': 3.0.6(postcss@8.4.38) - '@csstools/postcss-trigonometric-functions': 3.0.8(postcss@8.4.38) + '@csstools/postcss-stepped-value-functions': 3.0.9(postcss@8.4.38) + '@csstools/postcss-text-decoration-shorthand': 3.0.7(postcss@8.4.38) + '@csstools/postcss-trigonometric-functions': 3.0.9(postcss@8.4.38) '@csstools/postcss-unset-value': 3.0.1(postcss@8.4.38) autoprefixer: 10.4.19(postcss@8.4.38) browserslist: 4.23.1 @@ -15146,12 +15161,12 @@ snapshots: postcss: 8.4.38 postcss-attribute-case-insensitive: 6.0.3(postcss@8.4.38) postcss-clamp: 4.1.0(postcss@8.4.38) - postcss-color-functional-notation: 6.0.11(postcss@8.4.38) + postcss-color-functional-notation: 6.0.12(postcss@8.4.38) postcss-color-hex-alpha: 9.0.4(postcss@8.4.38) postcss-color-rebeccapurple: 9.0.3(postcss@8.4.38) - postcss-custom-media: 10.0.6(postcss@8.4.38) - postcss-custom-properties: 13.3.10(postcss@8.4.38) - postcss-custom-selectors: 7.1.10(postcss@8.4.38) + postcss-custom-media: 10.0.7(postcss@8.4.38) + postcss-custom-properties: 13.3.11(postcss@8.4.38) + postcss-custom-selectors: 7.1.11(postcss@8.4.38) postcss-dir-pseudo-class: 8.0.1(postcss@8.4.38) postcss-double-position-gradients: 5.0.6(postcss@8.4.38) postcss-focus-visible: 9.0.1(postcss@8.4.38) @@ -15159,7 +15174,7 @@ snapshots: postcss-font-variant: 5.0.0(postcss@8.4.38) postcss-gap-properties: 5.0.1(postcss@8.4.38) postcss-image-set-function: 6.0.3(postcss@8.4.38) - postcss-lab-function: 6.0.16(postcss@8.4.38) + postcss-lab-function: 6.0.17(postcss@8.4.38) postcss-logical: 7.0.1(postcss@8.4.38) postcss-nesting: 12.1.5(postcss@8.4.38) postcss-opacity-percentage: 2.0.0(postcss@8.4.38) @@ -15927,7 +15942,7 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string-width@7.1.0: + string-width@7.2.0: dependencies: emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 @@ -16063,7 +16078,7 @@ snapshots: dependencies: '@babel/runtime': 7.24.7 - tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)): + tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -16082,7 +16097,7 @@ snapshots: postcss: 8.4.38 postcss-import: 15.1.0(postcss@8.4.38) postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5)) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5)) postcss-nested: 6.0.1(postcss@8.4.38) postcss-selector-parser: 6.1.0 resolve: 1.22.8 @@ -16221,15 +16236,15 @@ snapshots: '@ts-morph/common': 0.21.0 code-block-writer: 12.0.0 - ts-node@10.9.2(@types/node@20.14.8)(typescript@5.4.5): + ts-node@10.9.2(@types/node@20.14.9)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.14.8 - acorn: 8.12.0 + '@types/node': 20.14.9 + acorn: 8.12.1 acorn-walk: 8.3.3 arg: 4.1.3 create-require: 1.1.1 @@ -16239,26 +16254,26 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2): + ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.14.8 - acorn: 8.12.0 + '@types/node': 20.14.9 + acorn: 8.12.1 acorn-walk: 8.3.3 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.5.2 + typescript: 5.5.3 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optional: true - tsconfck@3.1.0(typescript@5.4.5): + tsconfck@3.1.1(typescript@5.4.5): optionalDependencies: typescript: 5.4.5 @@ -16279,7 +16294,7 @@ snapshots: tslib@2.6.3: {} - tsup@8.1.0(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2))(typescript@5.5.2): + tsup@8.1.0(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3))(typescript@5.5.3): dependencies: bundle-require: 4.2.1(esbuild@0.21.5) cac: 6.7.14 @@ -16289,7 +16304,7 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.5.2)) + postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.9)(typescript@5.5.3)) resolve-from: 5.0.0 rollup: 4.18.0 source-map: 0.8.0-beta.0 @@ -16297,7 +16312,7 @@ snapshots: tree-kill: 1.2.2 optionalDependencies: postcss: 8.4.38 - typescript: 5.5.2 + typescript: 5.5.3 transitivePeerDependencies: - supports-color - ts-node @@ -16307,42 +16322,39 @@ snapshots: tslib: 1.14.1 typescript: 5.4.5 - tsutils@3.21.0(typescript@5.5.2): + tsutils@3.21.0(typescript@5.5.3): dependencies: tslib: 1.14.1 - typescript: 5.5.2 - - turbo-darwin-64@2.0.4: - optional: true + typescript: 5.5.3 - turbo-darwin-arm64@2.0.4: + turbo-darwin-64@2.0.6: optional: true - turbo-darwin-arm64@2.0.5: + turbo-darwin-arm64@2.0.6: optional: true - turbo-linux-64@2.0.4: + turbo-linux-64@2.0.6: optional: true - turbo-linux-arm64@2.0.4: + turbo-linux-arm64@2.0.6: optional: true turbo-stream@2.2.0: {} - turbo-windows-64@2.0.4: + turbo-windows-64@2.0.6: optional: true - turbo-windows-arm64@2.0.4: + turbo-windows-arm64@2.0.6: optional: true - turbo@2.0.4: + turbo@2.0.6: optionalDependencies: - turbo-darwin-64: 2.0.4 - turbo-darwin-arm64: 2.0.4 - turbo-linux-64: 2.0.4 - turbo-linux-arm64: 2.0.4 - turbo-windows-64: 2.0.4 - turbo-windows-arm64: 2.0.4 + turbo-darwin-64: 2.0.6 + turbo-darwin-arm64: 2.0.6 + turbo-linux-64: 2.0.6 + turbo-linux-arm64: 2.0.6 + turbo-windows-64: 2.0.6 + turbo-windows-arm64: 2.0.6 type-check@0.4.0: dependencies: @@ -16360,7 +16372,7 @@ snapshots: type-fest@3.13.1: {} - type-fest@4.20.1: {} + type-fest@4.21.0: {} type-is@1.6.18: dependencies: @@ -16401,7 +16413,7 @@ snapshots: typescript@5.4.5: {} - typescript@5.5.2: {} + typescript@5.5.3: {} typographic-apostrophes-for-possessive-plurals@1.0.5: {} @@ -16550,7 +16562,7 @@ snapshots: unpipe@1.0.0: {} - update-browserslist-db@1.0.16(browserslist@4.23.1): + update-browserslist-db@1.1.0(browserslist@4.23.1): dependencies: browserslist: 4.23.1 escalade: 3.1.2 @@ -16653,13 +16665,13 @@ snapshots: unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 - vite-node@1.6.0(@types/node@20.14.8): + vite-node@1.6.0(@types/node@20.14.9): dependencies: cac: 6.7.14 debug: 4.3.5(supports-color@8.1.1) pathe: 1.1.2 picocolors: 1.0.1 - vite: 5.3.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - '@types/node' - less @@ -16670,24 +16682,24 @@ snapshots: - supports-color - terser - vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.8)): + vite-tsconfig-paths@4.3.2(typescript@5.4.5)(vite@5.3.0(@types/node@20.14.9)): dependencies: debug: 4.3.5(supports-color@8.1.1) globrex: 0.1.2 - tsconfck: 3.1.0(typescript@5.4.5) + tsconfck: 3.1.1(typescript@5.4.5) optionalDependencies: - vite: 5.3.0(@types/node@20.14.8) + vite: 5.3.0(@types/node@20.14.9) transitivePeerDependencies: - supports-color - typescript - vite@5.3.0(@types/node@20.14.8): + vite@5.3.0(@types/node@20.14.9): dependencies: esbuild: 0.21.5 postcss: 8.4.38 rollup: 4.18.0 optionalDependencies: - '@types/node': 20.14.8 + '@types/node': 20.14.9 fsevents: 2.3.3 wcwidth@1.0.1: @@ -16725,7 +16737,7 @@ snapshots: tr46: 1.0.1 webidl-conversions: 4.0.2 - when-exit@2.1.2: {} + when-exit@2.1.3: {} which-boxed-primitive@1.0.2: dependencies: @@ -16830,7 +16842,7 @@ snapshots: ws@7.5.10: {} - ws@8.17.1: {} + ws@8.18.0: {} xtend@4.0.2: {} @@ -16888,7 +16900,7 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.0.0: {} + yocto-queue@1.1.1: {} yoga-wasm-web@0.3.3: {} diff --git a/templates/pilot b/templates/pilot index f39150c3..71424040 160000 --- a/templates/pilot +++ b/templates/pilot @@ -1 +1 @@ -Subproject commit f39150c302d6464d637162dca76527f5a186e823 +Subproject commit 714240402fd71ffccd7701d2e4767448edf98601