diff --git a/docs/services/BrowserTracker.tsx b/docs/src/services/BrowserTracker.tsx
similarity index 100%
rename from docs/services/BrowserTracker.tsx
rename to docs/src/services/BrowserTracker.tsx
diff --git a/docs/services/ServerTracker.tsx b/docs/src/services/ServerTracker.tsx
similarity index 100%
rename from docs/services/ServerTracker.tsx
rename to docs/src/services/ServerTracker.tsx
diff --git a/docs/styles.css b/docs/src/styles.css
similarity index 64%
rename from docs/styles.css
rename to docs/src/styles.css
index 9e5651d2b..d17554741 100644
--- a/docs/styles.css
+++ b/docs/src/styles.css
@@ -6,29 +6,11 @@
--color-text-primary: #0073e6;
--nextra-bg: white;
--docsearch-text-color: black;
-
- /* Only for styling on home page */
- --shiki-token-punctuation: rgba(0, 0, 0, 0.5);
- --shiki-token-comment: rgba(100, 116, 139, 0.8);
- --shiki-color-text: lab(27.5348% 0 0);
- --shiki-token-constant: lab(48.3994% 0.649333 -55.5719);
- --shiki-token-string: lab(49.1367% -42.0409 31.8582);
- --shiki-token-keyword: lab(47.8876% 63.025 42.31);
- --shiki-token-parameter: lab(72.7377% 33.9074 77.3632);
- --shiki-token-function: lab(39.0339% 41.1896 -60.5821);
- --shiki-token-string-expression: var(--shiki-token-string);
+ --logo-color: #008fd6;
}
.dark {
- /* Only for styling on home page */
- --shiki-token-string-expression: hsl(160, 75%, 45%);
- --shiki-token-punctuation: rgba(255, 255, 255, 0.5);
- --shiki-color-text: lab(83.8412% -0.0000298023 0);
- --shiki-token-constant: lab(72.6797% -5.9377 -41.8341);
- --shiki-token-string: lab(77.5312% 27.4176 43.2358);
- --shiki-token-comment: lab(47.984% -1.63257 -6.06269);
- --shiki-token-keyword: lab(65.9075% 52.4906 18.1315);
- --shiki-token-function: lab(66.4473% 27.2323 -43.2583);
+ --logo-color: #70d1ff;
}
/**
@@ -36,6 +18,7 @@
*/
.navbar-home {
@apply bg-slate-850 text-white dark:bg-slate-850;
+ --logo-color: #70d1ff;
}
.navbar-home .nextra-scrollbar > a {
@@ -110,7 +93,7 @@
}
summary {
- @apply font-bold !pr-8;
+ @apply flex-wrap font-bold !pr-8;
}
summary > code {
margin: 0 0.3em;
diff --git a/docs/theme.config.tsx b/docs/src/theme.config.tsx
similarity index 87%
rename from docs/theme.config.tsx
rename to docs/src/theme.config.tsx
index 1b8386889..63bf9b886 100644
--- a/docs/theme.config.tsx
+++ b/docs/src/theme.config.tsx
@@ -6,11 +6,11 @@ import {
useConfig
} from 'nextra-theme-docs';
import {ComponentProps} from 'react';
-import AlgoliaSearch from 'components/AlgoliaSearch';
-import Footer from 'components/Footer';
-import Logo from 'components/Logo';
-import PartnerSidebar from 'components/PartnerSidebar';
-import Pre from 'components/Pre';
+import AlgoliaSearch from '@/components/AlgoliaSearch';
+import Footer from '@/components/Footer';
+import Logo from '@/components/Logo';
+import PartnerSidebar from '@/components/PartnerSidebar';
+import Pre from '@/components/Pre';
import config from './config';
export const TITLE_TEMPLATE_SUFFIX = ' – ' + config.description;
@@ -26,6 +26,23 @@ export default {
components: {
pre: Pre
},
+ banner: {
+ key: 'banner-learn-next-intl',
+ content: (
+
+ )
+ },
footer: {
component: Footer
},
diff --git a/docs/tailwind.config.js b/docs/tailwind.config.js
index 0618be85b..d628dfe8c 100644
--- a/docs/tailwind.config.js
+++ b/docs/tailwind.config.js
@@ -7,11 +7,7 @@ function makePrimaryColor(luminance) {
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
- content: [
- './components/**/*.{js,tsx}',
- './pages/**/*.{md,mdx}',
- './theme.config.{js,tsx}'
- ],
+ content: ['./src/**/*.{js,tsx,md,mdx}', './theme.config.tsx'],
theme: {
extend: {
fontSize: {
diff --git a/docs/tsconfig.json b/docs/tsconfig.json
index f75fb62ec..bf4b2bdd7 100644
--- a/docs/tsconfig.json
+++ b/docs/tsconfig.json
@@ -1,7 +1,6 @@
{
"extends": "eslint-config-molindo/tsconfig.json",
"compilerOptions": {
- "baseUrl": ".",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
@@ -20,7 +19,10 @@
}
],
"strict": true,
- "target": "ES2017"
+ "target": "ES2017",
+ "paths": {
+ "@/*": ["./src/*"]
+ }
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
diff --git a/examples/example-app-router-mixed-routing/README.md b/examples/example-app-router-mixed-routing/README.md
index 35a925e4a..452f94929 100644
--- a/examples/example-app-router-mixed-routing/README.md
+++ b/examples/example-app-router-mixed-routing/README.md
@@ -4,8 +4,8 @@ An example of how to achieve locale prefixes on public routes while reading the
**Relevant docs:**
-1. [Setting up `next-intl` with i18n routing](https://next-intl-docs.vercel.app/docs/getting-started/app-router/with-i18n-routing)
-2. [Setting up `next-intl` without i18n routing](https://next-intl-docs.vercel.app/docs/getting-started/app-router/without-i18n-routing)
+1. [Setting up `next-intl` with i18n routing](https://next-intl.dev/docs/getting-started/app-router/with-i18n-routing)
+2. [Setting up `next-intl` without i18n routing](https://next-intl.dev/docs/getting-started/app-router/without-i18n-routing)
**Relevant parts in app code:**
diff --git a/examples/example-app-router-mixed-routing/src/i18n/routing.public.ts b/examples/example-app-router-mixed-routing/src/i18n/routing.public.ts
index 1a5bcafe9..f7042682b 100644
--- a/examples/example-app-router-mixed-routing/src/i18n/routing.public.ts
+++ b/examples/example-app-router-mixed-routing/src/i18n/routing.public.ts
@@ -1,4 +1,4 @@
-import {createSharedPathnamesNavigation} from 'next-intl/navigation';
+import {createNavigation} from 'next-intl/navigation';
import {defineRouting} from 'next-intl/routing';
import {defaultLocale, locales} from '../config';
@@ -8,4 +8,4 @@ export const routing = defineRouting({
});
// Should only be used on public routes in the `[locale]` segment
-export const {Link, usePathname} = createSharedPathnamesNavigation(routing);
+export const {Link, usePathname} = createNavigation(routing);
diff --git a/examples/example-app-router-next-auth/README.md b/examples/example-app-router-next-auth/README.md
index 1d452a452..91a07ee70 100644
--- a/examples/example-app-router-next-auth/README.md
+++ b/examples/example-app-router-next-auth/README.md
@@ -4,7 +4,7 @@ An example that showcases the usage of `next-intl` together with Auth.js and the
**Credentials**: admin / admin
-See [the corresponding docs for this example](https://next-intl-docs.vercel.app/docs/routing/middleware#example-auth-js).
+See [the corresponding docs for this example](https://next-intl.dev/docs/routing/middleware#example-auth-js).
## Deploy your own
diff --git a/examples/example-app-router-next-auth/next-env.d.ts b/examples/example-app-router-next-auth/next-env.d.ts
index 4f11a03dc..40c3d6809 100644
--- a/examples/example-app-router-next-auth/next-env.d.ts
+++ b/examples/example-app-router-next-auth/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
diff --git a/examples/example-app-router-next-auth/package.json b/examples/example-app-router-next-auth/package.json
index e5ae9940b..dfc6f3e58 100644
--- a/examples/example-app-router-next-auth/package.json
+++ b/examples/example-app-router-next-auth/package.json
@@ -10,7 +10,7 @@
},
"dependencies": {
"next": "^15.0.3",
- "next-auth": "^4.24.7",
+ "next-auth": "^4.24.11",
"next-intl": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
diff --git a/examples/example-app-router-playground/package.json b/examples/example-app-router-playground/package.json
index ee323b67d..3c5101677 100644
--- a/examples/example-app-router-playground/package.json
+++ b/examples/example-app-router-playground/package.json
@@ -27,8 +27,8 @@
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^15.0.0-rc.1",
"@playwright/test": "^1.48.1",
- "@storybook/nextjs": "^8.2.9",
- "@storybook/react": "^8.2.9",
+ "@storybook/nextjs": "^8.5.1",
+ "@storybook/react": "^8.5.1",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
@@ -44,7 +44,7 @@
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"sharp": "^0.33.4",
- "storybook": "^8.2.9",
+ "storybook": "^8.5.1",
"storybook-next-intl": "^1.1.4",
"typescript": "^5.5.3"
},
diff --git a/examples/example-app-router-playground/src/middleware.ts b/examples/example-app-router-playground/src/middleware.ts
index 7468bf33d..7d2492f4e 100644
--- a/examples/example-app-router-playground/src/middleware.ts
+++ b/examples/example-app-router-playground/src/middleware.ts
@@ -6,7 +6,7 @@ export default createMiddleware(routing);
export const config = {
matcher: [
// Skip all paths that should not be internationalized
- '/((?!_next|.*\\..*).*)',
+ '/((?!_next|.*/opengraph-image|.*\\..*).*)',
// Necessary for base path to work
'/'
diff --git a/examples/example-app-router-playground/src/type-portability-test.ts b/examples/example-app-router-playground/src/type-portability-test.ts
new file mode 100644
index 000000000..18facf87d
--- /dev/null
+++ b/examples/example-app-router-playground/src/type-portability-test.ts
@@ -0,0 +1,69 @@
+// Ensure that exported types function as expected for library creators.
+//
+// Most functionality is already tested through usage in this application.
+// This file includes exports for any that are not yet covered.
+
+import {
+ createFormatter,
+ createTranslator,
+ initializeConfig,
+ useFormatter,
+ useLocale,
+ useMessages,
+ useNow,
+ useTimeZone,
+ useTranslations
+} from 'next-intl';
+import createNextIntlPlugin from 'next-intl/plugin';
+import {
+ getFormatter,
+ getLocale,
+ getMessages,
+ getNow,
+ getTimeZone,
+ getTranslations
+} from 'next-intl/server';
+
+export function useExports() {
+ const messages = useMessages();
+ const now = useNow();
+ const locale = useLocale();
+ const timezone = useTimeZone();
+ const formatter = useFormatter();
+ const translations = useTranslations();
+
+ return {
+ messages,
+ now,
+ locale,
+ timezone,
+ formatter,
+ translations
+ };
+}
+
+export async function asyncApis() {
+ const messages = await getMessages();
+ const now = await getNow();
+ const locale = await getLocale();
+ const timezone = await getTimeZone();
+ const formatter = await getFormatter();
+ const translations = await getTranslations();
+
+ return {
+ messages,
+ now,
+ locale,
+ timezone,
+ formatter,
+ translations
+ };
+}
+
+export const withNextIntl = createNextIntlPlugin();
+export const config = initializeConfig({locale: 'en'});
+export const translator = createTranslator({locale: 'en'});
+export const formatter = createFormatter({
+ locale: 'en',
+ now: new Date(2022, 10, 6, 20, 20, 0, 0)
+});
diff --git a/examples/example-app-router-playground/tests/main.spec.ts b/examples/example-app-router-playground/tests/main.spec.ts
index fb5c746cd..14288afa0 100644
--- a/examples/example-app-router-playground/tests/main.spec.ts
+++ b/examples/example-app-router-playground/tests/main.spec.ts
@@ -1,5 +1,5 @@
-import {test as it, expect, BrowserContext} from '@playwright/test';
-import {getAlternateLinks, assertLocaleCookieValue} from './utils';
+import {BrowserContext, expect, test as it} from '@playwright/test';
+import {assertLocaleCookieValue, getAlternateLinks} from './utils';
const describe = it.describe;
@@ -618,7 +618,10 @@ it('populates metadata', async ({page}) => {
);
});
-it('supports opengraph images', async ({page, request}) => {
+it('supports opengraph images for the default locale', async ({
+ page,
+ request
+}) => {
await page.goto('/');
const ogImage = await page
.locator('meta[property="og:image"]')
@@ -630,6 +633,21 @@ it('supports opengraph images', async ({page, request}) => {
expect(result.ok()).toBe(true);
});
+it('supports opengraph images for a locale with a custom prefix', async ({
+ page,
+ request
+}) => {
+ await page.goto('/spain');
+ const ogImage = await page
+ .locator('meta[property="og:image"]')
+ .getAttribute('content');
+ expect(ogImage).toBeTruthy();
+ const ogImageUrl = new URL(ogImage!);
+ expect(ogImageUrl.pathname).toBe('/es/opengraph-image');
+ const result = await request.get(ogImageUrl.pathname);
+ expect(result.ok()).toBe(true);
+});
+
it('can use async APIs in async components', async ({page}) => {
await page.goto('/');
diff --git a/examples/example-app-router-playground/tsconfig.json b/examples/example-app-router-playground/tsconfig.json
index 8d6bca754..710349cbe 100644
--- a/examples/example-app-router-playground/tsconfig.json
+++ b/examples/example-app-router-playground/tsconfig.json
@@ -20,7 +20,10 @@
],
"paths": {
"@/*": ["./src/*"]
- }
+ },
+
+ // See https://github.com/amannn/next-intl/pull/1509
+ "declaration": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
diff --git a/examples/example-app-router-without-i18n-routing/README.md b/examples/example-app-router-without-i18n-routing/README.md
index 5e636d502..76b07aec2 100644
--- a/examples/example-app-router-without-i18n-routing/README.md
+++ b/examples/example-app-router-without-i18n-routing/README.md
@@ -1,6 +1,6 @@
# example-app-router-without-i18n-routing
-An example that showcases how an app can provide a locale in `i18n.ts` to `next-intl` in an App Router setup ([without i18n routing setup](https://next-intl-docs.vercel.app/docs/getting-started/app-router/without-i18n-routing)).
+An example that showcases how an app can provide a locale in `i18n.ts` to `next-intl` in an App Router setup ([without i18n routing setup](https://next-intl.dev/docs/getting-started/app-router/without-i18n-routing)).
This app uses Server Actions in two places:
diff --git a/examples/example-app-router-without-i18n-routing/next-env.d.ts b/examples/example-app-router-without-i18n-routing/next-env.d.ts
index 4f11a03dc..40c3d6809 100644
--- a/examples/example-app-router-without-i18n-routing/next-env.d.ts
+++ b/examples/example-app-router-without-i18n-routing/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
diff --git a/examples/example-app-router/messages/de.json b/examples/example-app-router/messages/de.json
index 7533cf4eb..99061df1c 100644
--- a/examples/example-app-router/messages/de.json
+++ b/examples/example-app-router/messages/de.json
@@ -15,7 +15,6 @@
"locale": "{locale, select, de {🇩🇪 Deutsch} en {🇺🇸 English} other {Unbekannt}}"
},
"Manifest": {
- "description": "",
"name": ""
},
"Navigation": {
@@ -30,7 +29,7 @@
"links": {
"docs": {
"description": "Erfahre mehr über next-intl in der offiziellen Dokumentation.",
- "href": "https://next-intl-docs.vercel.app/",
+ "href": "https://next-intl.dev",
"title": "Dokumentation"
},
"source": {
diff --git a/examples/example-app-router/messages/en.json b/examples/example-app-router/messages/en.json
index 12d30d856..0dd025ec1 100644
--- a/examples/example-app-router/messages/en.json
+++ b/examples/example-app-router/messages/en.json
@@ -29,7 +29,7 @@
"links": {
"docs": {
"description": "Learn more about next-intl in the official docs.",
- "href": "https://next-intl-docs.vercel.app/",
+ "href": "https://next-intl.dev",
"title": "Docs"
},
"source": {
diff --git a/examples/example-pages-router-advanced/next-env.d.ts b/examples/example-pages-router-advanced/next-env.d.ts
index 4f11a03dc..a4a7b3f5c 100644
--- a/examples/example-pages-router-advanced/next-env.d.ts
+++ b/examples/example-pages-router-advanced/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
diff --git a/examples/example-pages-router-advanced/src/pages/about.tsx b/examples/example-pages-router-advanced/src/pages/about.tsx
index 671c91329..c14fc676a 100644
--- a/examples/example-pages-router-advanced/src/pages/about.tsx
+++ b/examples/example-pages-router-advanced/src/pages/about.tsx
@@ -31,7 +31,7 @@ export async function getServerSideProps({locale}: GetServerSidePropsContext) {
),
// Note that when `now` is passed to the app, you need to make sure the
// value is updated from time to time, so relative times are updated. See
- // https://next-intl-docs.vercel.app/docs/usage/configuration#global-now-value
+ // https://next-intl.dev/docs/usage/configuration#global-now-value
now: new Date().getTime()
}
};
diff --git a/examples/example-pages-router/next-env.d.ts b/examples/example-pages-router/next-env.d.ts
index 4f11a03dc..a4a7b3f5c 100644
--- a/examples/example-pages-router/next-env.d.ts
+++ b/examples/example-pages-router/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
diff --git a/examples/example-react-native/README.md b/examples/example-react-native/README.md
index f4f7768e8..fac07ae6c 100644
--- a/examples/example-react-native/README.md
+++ b/examples/example-react-native/README.md
@@ -2,7 +2,7 @@
An example that showcases the usage of `use-intl` with React Native.
-Please double check that [the runtime requirements](https://next-intl-docs.vercel.app/docs/environments/runtime-requirements) are fulfilled.
+Please double check that [the runtime requirements](https://next-intl.dev/docs/environments/runtime-requirements) are fulfilled.
```
pnpm install
diff --git a/lerna.json b/lerna.json
index f201518af..2ec594f2f 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
- "version": "3.22.0",
+ "version": "3.26.3",
"packages": [
"packages/*"
],
diff --git a/media/assets.sketch b/media/assets.sketch
index 0d6d24a69..4fec67162 100644
Binary files a/media/assets.sketch and b/media/assets.sketch differ
diff --git a/media/logo-dark-mode.svg b/media/logo-dark-mode.svg
index 5da92faca..1bec308ba 100644
--- a/media/logo-dark-mode.svg
+++ b/media/logo-dark-mode.svg
@@ -1,17 +1,15 @@
-
- logo-dark
-
-
-
-
-
-
-
-
-
-
-
+
+ logo-dark-padding
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/media/logo.png b/media/logo.png
index 32cbf46d3..a8d954212 100644
Binary files a/media/logo.png and b/media/logo.png differ
diff --git a/media/logo.svg b/media/logo.svg
index d22128500..c3103fecd 100644
--- a/media/logo.svg
+++ b/media/logo.svg
@@ -1,18 +1,15 @@
-
- logo
-
-
-
-
-
-
-
-
-
-
-
-
+
+ logo-bright-padding@4x
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/media/og-image.png b/media/og-image.png
index 4c8367867..1a0c1ed9c 100644
Binary files a/media/og-image.png and b/media/og-image.png differ
diff --git a/media/twitter-image.png b/media/twitter-image.png
index 779e9d1cf..e78eb2bfa 100644
Binary files a/media/twitter-image.png and b/media/twitter-image.png differ
diff --git a/package.json b/package.json
index 670dbec2b..ca8821447 100644
--- a/package.json
+++ b/package.json
@@ -2,11 +2,7 @@
"name": "root",
"private": true,
"scripts": {
- "build": "turbo run build --env-mode=loose",
- "test": "turbo run test --concurrency 1 --env-mode=loose",
- "lint": "turbo run lint --env-mode=loose",
- "postinstall": "turbo run build --filter './packages/**' --env-mode=loose",
- "size": "turbo run size --env-mode=loose",
+ "postinstall": "turbo run build --filter './packages/**'",
"publish": "lerna publish"
},
"devDependencies": {
@@ -24,7 +20,12 @@
"conventional-changelog-conventionalcommits": "^7.0.0",
"execa": "^9.2.0",
"rollup": "^4.18.0",
- "turbo": "^2.0.4"
+ "turbo": "^2.2.3"
+ },
+ "pnpm": {
+ "overrides": {
+ "@babel/parser": "7.21.9"
+ }
},
"packageManager": "pnpm@9.11.0"
}
diff --git a/packages/next-intl/.size-limit.ts b/packages/next-intl/.size-limit.ts
index 303c31598..1e129f675 100644
--- a/packages/next-intl/.size-limit.ts
+++ b/packages/next-intl/.size-limit.ts
@@ -15,37 +15,37 @@ const config: SizeLimitConfig = [
name: "import {createSharedPathnamesNavigation} from 'next-intl/navigation' (react-client)",
path: 'dist/production/navigation.react-client.js',
import: '{createSharedPathnamesNavigation}',
- limit: '4.035 KB'
+ limit: '4.125 KB'
},
{
name: "import {createLocalizedPathnamesNavigation} from 'next-intl/navigation' (react-client)",
path: 'dist/production/navigation.react-client.js',
import: '{createLocalizedPathnamesNavigation}',
- limit: '4.035 KB'
+ limit: '4.115 KB'
},
{
name: "import {createNavigation} from 'next-intl/navigation' (react-client)",
path: 'dist/production/navigation.react-client.js',
import: '{createNavigation}',
- limit: '4.045 KB'
+ limit: '4.115 KB'
},
{
name: "import {createSharedPathnamesNavigation} from 'next-intl/navigation' (react-server)",
path: 'dist/production/navigation.react-server.js',
import: '{createSharedPathnamesNavigation}',
- limit: '16.755 KB'
+ limit: '16.805 KB'
},
{
name: "import {createLocalizedPathnamesNavigation} from 'next-intl/navigation' (react-server)",
path: 'dist/production/navigation.react-server.js',
import: '{createLocalizedPathnamesNavigation}',
- limit: '16.785 KB'
+ limit: '16.805 KB'
},
{
name: "import {createNavigation} from 'next-intl/navigation' (react-server)",
path: 'dist/production/navigation.react-server.js',
import: '{createNavigation}',
- limit: '16.785 KB'
+ limit: '16.805 KB'
},
{
name: "import * from 'next-intl/server' (react-client)",
@@ -60,7 +60,7 @@ const config: SizeLimitConfig = [
{
name: "import createMiddleware from 'next-intl/middleware'",
path: 'dist/production/middleware.js',
- limit: '9.675 KB'
+ limit: '9.725 KB'
},
{
name: "import * from 'next-intl/routing'",
@@ -71,7 +71,7 @@ const config: SizeLimitConfig = [
name: "import * from 'next-intl' (react-client, ESM)",
path: 'dist/esm/index.react-client.js',
import: '*',
- limit: '14.245 kB'
+ limit: '14.365 kB'
},
{
name: "import {NextIntlProvider} from 'next-intl' (react-client, ESM)",
diff --git a/packages/next-intl/CHANGELOG.md b/packages/next-intl/CHANGELOG.md
index fcf5df628..6cae48e0a 100644
--- a/packages/next-intl/CHANGELOG.md
+++ b/packages/next-intl/CHANGELOG.md
@@ -3,6 +3,96 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## 3.26.3 (2024-12-20)
+
+### Bug Fixes
+
+* Add missing deprecation warnings for `next-intl@4.0` ([#1485](https://github.com/amannn/next-intl/issues/1485)) ([1d60d08](https://github.com/amannn/next-intl/commit/1d60d08c446d9eeac8bcc5bfbd0654113a737518)) – by @amannn
+
+## 3.26.2 (2024-12-18)
+
+### Bug Fixes
+
+* Support `t.has` when `getTranslations` is called with an object argument ([#1616](https://github.com/amannn/next-intl/issues/1616)) ([64895a2](https://github.com/amannn/next-intl/commit/64895a2bb3c445f6e3deab85152a0d04ced17e46)), closes [/github.com/amannn/next-intl/discussions/437#discussioncomment-11593318](https://github.com/amannn//github.com/amannn/next-intl/discussions/437/issues/discussioncomment-11593318) – by @amannn
+
+## 3.26.1 (2024-12-11)
+
+### Bug Fixes
+
+* Use new domain `next-intl.dev` in links ([#1601](https://github.com/amannn/next-intl/issues/1601)) ([40a9a77](https://github.com/amannn/next-intl/commit/40a9a7722edc8e7787ed799a4bf1d3c4a2e04848)) – by @amannn
+
+## 3.26.0 (2024-12-06)
+
+### Features
+
+* Support React 19 ([#1597](https://github.com/amannn/next-intl/issues/1597)) ([e0ffe29](https://github.com/amannn/next-intl/commit/e0ffe292a3cae8955fcd06bd8e8e2b02c525ef69)) – by @amannn
+
+## 3.25.3 (2024-11-26)
+
+### Bug Fixes
+
+* Follow-up for [#1573](https://github.com/amannn/next-intl/issues/1573) to also handle the case when a non-default locale is in use ([#1578](https://github.com/amannn/next-intl/issues/1578)) ([fd71741](https://github.com/amannn/next-intl/commit/fd7174179881a19e3573fceb9c6e903923644761)), closes [#1568](https://github.com/amannn/next-intl/issues/1568) – by @amannn
+
+## 3.25.2 (2024-11-25)
+
+### Bug Fixes
+
+* Handle inconsistency in Next.js when using `usePathname` with custom prefixes, `localePrefix: 'as-needed'` and static rendering ([#1573](https://github.com/amannn/next-intl/issues/1573)) ([20fd0f0](https://github.com/amannn/next-intl/commit/20fd0f0015839357893bcd256ff880a98b01ea1f)) – by @amannn
+
+## 3.25.1 (2024-11-13)
+
+### Bug Fixes
+
+* Correctly handle search params in redirects when using `trailingSlash: true` ([#1537](https://github.com/amannn/next-intl/issues/1537)) ([03a4620](https://github.com/amannn/next-intl/commit/03a4620432ff063b2b84f4dba5c49ae36b92fd73)) – by @deini
+
+## 3.25.0 (2024-11-08)
+
+### Features
+
+* Add type exports to enable `declaration: true` in `tsconfig.json` ([#1509](https://github.com/amannn/next-intl/issues/1509)) ([6b2ca9c](https://github.com/amannn/next-intl/commit/6b2ca9cfddcf8611893f76f9690e0bafb534e8fd)) – by @osaton
+
+## 3.24.0 (2024-10-31)
+
+### Features
+
+* Add support for React 19 RC ([#1490](https://github.com/amannn/next-intl/issues/1490)) ([2dea022](https://github.com/amannn/next-intl/commit/2dea02271f79e183dfd18a3c77112a79e1fce581)) – by @amannn
+
+## 3.23.5 (2024-10-24)
+
+### Bug Fixes
+
+* Don't warn when setting `prefetch={true}` on ` ` ([#1463](https://github.com/amannn/next-intl/issues/1463)) ([fd6d73d](https://github.com/amannn/next-intl/commit/fd6d73dc145a0679e85a1a71fe40c43d3312e27e)), closes [#1462](https://github.com/amannn/next-intl/issues/1462) – by @amannn
+
+## 3.23.4 (2024-10-24)
+
+### Bug Fixes
+
+* Upgrade to `negotiator@^1.0` ([#1460](https://github.com/amannn/next-intl/issues/1460)) ([b93f297](https://github.com/amannn/next-intl/commit/b93f29736250a749333d438b06b7a608e9d73c28)) – by @amannn
+
+## 3.23.3 (2024-10-24)
+
+### Bug Fixes
+
+* Resolve locale for navigation APIs consistently from `i18n/request.ts` in `react-server` like all other APIs do ([#1459](https://github.com/amannn/next-intl/issues/1459)) ([8c6d5ff](https://github.com/amannn/next-intl/commit/8c6d5fff009ac3c54b2847c23b8148759d0b6ffa)) – by @amannn
+
+## 3.23.2 (2024-10-22)
+
+### Bug Fixes
+
+* Handle inlined search params and hashes correctly in ` ` from `createNavigation` ([#1448](https://github.com/amannn/next-intl/issues/1448)) ([ba0a537](https://github.com/amannn/next-intl/commit/ba0a537571b49d2d31cbc3c5079a7ad738e1409b)) – by @amannn
+
+## 3.23.1 (2024-10-22)
+
+### Bug Fixes
+
+* Remove usage of deprecated `ReactNodeArray` which is removed in React 19 ([#1445](https://github.com/amannn/next-intl/issues/1445)) ([2396345](https://github.com/amannn/next-intl/commit/23963458e3ef3d5d29eeb9df01f40bbe11245301)) – by @amannn
+
+## 3.23.0 (2024-10-22)
+
+### Features
+
+* Add Next.js 15 to peer dependencies ([#1443](https://github.com/amannn/next-intl/issues/1443)) ([4cb22bb](https://github.com/amannn/next-intl/commit/4cb22bb10990961dba7e5accd2b5c70664f2b6d2)) – by @amannn
+
## 3.22.0 (2024-10-21)
### Features
diff --git a/packages/next-intl/package.json b/packages/next-intl/package.json
index 5bdb5a980..57ee411b7 100644
--- a/packages/next-intl/package.json
+++ b/packages/next-intl/package.json
@@ -1,6 +1,6 @@
{
"name": "next-intl",
- "version": "3.22.0",
+ "version": "3.26.3",
"sideEffects": false,
"author": "Jan Amann ",
"funding": [
@@ -11,7 +11,7 @@
],
"description": "Internationalization (i18n) for Next.js",
"license": "MIT",
- "homepage": "https://next-intl-docs.vercel.app",
+ "homepage": "https://next-intl.dev",
"repository": {
"type": "git",
"url": "https://github.com/amannn/next-intl"
@@ -87,12 +87,12 @@
],
"dependencies": {
"@formatjs/intl-localematcher": "^0.5.4",
- "negotiator": "^0.6.3",
+ "negotiator": "^1.0.0",
"use-intl": "workspace:^"
},
"peerDependencies": {
- "next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
diff --git a/packages/next-intl/src/config.tsx b/packages/next-intl/src/config.tsx
index 46ed72e73..352eca1db 100644
--- a/packages/next-intl/src/config.tsx
+++ b/packages/next-intl/src/config.tsx
@@ -1,5 +1,5 @@
export default function getConfig() {
throw new Error(
- "Couldn't find next-intl config file. Please follow the instructions at https://next-intl-docs.vercel.app/docs/getting-started/app-router"
+ "Couldn't find next-intl config file. Please follow the instructions at https://next-intl.dev/docs/getting-started/app-router"
);
}
diff --git a/packages/next-intl/src/middleware/middleware.test.tsx b/packages/next-intl/src/middleware/middleware.test.tsx
index 14aa25c5e..7449040eb 100644
--- a/packages/next-intl/src/middleware/middleware.test.tsx
+++ b/packages/next-intl/src/middleware/middleware.test.tsx
@@ -1125,6 +1125,20 @@ describe('prefix-based routing', () => {
'http://localhost:3000/en/'
);
});
+
+ it('keeps search params when redirecting to a locale at the root', () => {
+ middleware(createMockRequest('/?sort=asc'));
+ expect(MockedNextResponse.redirect.mock.calls[0][0].toString()).toBe(
+ 'http://localhost:3000/en/?sort=asc'
+ );
+ });
+
+ it('keeps search params when redirecting to a locale', () => {
+ middleware(createMockRequest('/users?sort=asc'));
+ expect(MockedNextResponse.redirect.mock.calls[0][0].toString()).toBe(
+ 'http://localhost:3000/en/users/?sort=asc'
+ );
+ });
});
describe('localized pathnames', () => {
diff --git a/packages/next-intl/src/middleware/middleware.tsx b/packages/next-intl/src/middleware/middleware.tsx
index 6ed38e8e2..620bee462 100644
--- a/packages/next-intl/src/middleware/middleware.tsx
+++ b/packages/next-intl/src/middleware/middleware.tsx
@@ -120,7 +120,9 @@ export default function createMiddleware<
}
function redirect(url: string, redirectDomain?: string) {
- const urlObj = new URL(normalizeTrailingSlash(url), request.url);
+ const urlObj = new URL(url, request.url);
+
+ urlObj.pathname = normalizeTrailingSlash(urlObj.pathname);
if (domainsConfig.length > 0 && !redirectDomain && domain) {
const bestMatchingDomain = getBestMatchingDomain(
diff --git a/packages/next-intl/src/navigation/createNavigation.test.tsx b/packages/next-intl/src/navigation/createNavigation.test.tsx
index 90759c8d7..eacb29ea9 100644
--- a/packages/next-intl/src/navigation/createNavigation.test.tsx
+++ b/packages/next-intl/src/navigation/createNavigation.test.tsx
@@ -9,9 +9,9 @@ import React from 'react';
import {renderToString} from 'react-dom/server';
import {beforeEach, describe, expect, it, vi} from 'vitest';
import {DomainsConfig, Pathnames, defineRouting} from '../routing';
-import {getRequestLocale} from '../server/react-server/RequestLocale';
import createNavigationClient from './react-client/createNavigation';
import createNavigationServer from './react-server/createNavigation';
+import getServerLocale from './react-server/getServerLocale';
vi.mock('react');
vi.mock('next/navigation', async () => {
@@ -23,15 +23,16 @@ vi.mock('next/navigation', async () => {
permanentRedirect: vi.fn()
};
});
-vi.mock('../../src/server/react-server/RequestLocale');
+vi.mock('./react-server/getServerLocale');
function mockCurrentLocale(locale: string) {
// Enable synchronous rendering without having to suspend
- const localePromise = Promise.resolve(locale);
- (localePromise as any).status = 'fulfilled';
- (localePromise as any).value = locale;
+ const value = locale;
+ const promise = Promise.resolve(value);
+ (promise as any).status = 'fulfilled';
+ (promise as any).value = value;
- vi.mocked(getRequestLocale).mockImplementation(() => localePromise);
+ vi.mocked(getServerLocale).mockImplementation(() => promise);
vi.mocked(nextUseParams<{locale: string}>).mockImplementation(() => ({
locale
@@ -128,6 +129,13 @@ describe.each([
expect(markup).toContain('href="/en/about?foo=bar"');
});
+ it('accepts search params and hashes as part of the pathname', () => {
+ const markup = renderToString(
+ About
+ );
+ expect(markup).toContain('href="/en/about?foo=bar#top"');
+ });
+
it('renders a prefix for a different locale', () => {
// Being able to accept a string and not only a strictly typed locale is
// important in order to be able to use a result from `useLocale()`.
@@ -196,6 +204,17 @@ describe.each([
}}
/>;
});
+
+ it('does not warn when setting the `prefetch` prop', () => {
+ const consoleSpy = vi.spyOn(console, 'error');
+ const markup = renderToString(
+
+ About
+
+ );
+ expect(markup).toContain('href="/en/about"');
+ expect(consoleSpy).not.toHaveBeenCalled();
+ });
});
describe('getPathname', () => {
diff --git a/packages/next-intl/src/navigation/react-client/createLocalizedPathnamesNavigation.tsx b/packages/next-intl/src/navigation/react-client/createLocalizedPathnamesNavigation.tsx
index b3e20d222..52babd5b4 100644
--- a/packages/next-intl/src/navigation/react-client/createLocalizedPathnamesNavigation.tsx
+++ b/packages/next-intl/src/navigation/react-client/createLocalizedPathnamesNavigation.tsx
@@ -25,7 +25,7 @@ import useBasePathname from './useBasePathname';
import useBaseRouter from './useBaseRouter';
/**
- * @deprecated Consider switching to `createNavigation` (see https://next-intl-docs.vercel.app/blog/next-intl-3-22#create-navigation)
+ * @deprecated Consider switching to `createNavigation` (see https://next-intl.dev/blog/next-intl-3-22#create-navigation)
**/
export default function createLocalizedPathnamesNavigation<
AppLocales extends Locales,
@@ -168,7 +168,7 @@ export default function createLocalizedPathnamesNavigation<
}
function usePathname(): keyof AppPathnames {
- const pathname = useBasePathname(config.localePrefix);
+ const pathname = useBasePathname(config);
const locale = useTypedLocale();
// @ts-expect-error -- Mirror the behavior from Next.js, where `null` is returned when `usePathname` is used outside of Next, but the types indicate that a string is always returned.
diff --git a/packages/next-intl/src/navigation/react-client/createNavigation.test.tsx b/packages/next-intl/src/navigation/react-client/createNavigation.test.tsx
index e7db73269..e8aa6a9a3 100644
--- a/packages/next-intl/src/navigation/react-client/createNavigation.test.tsx
+++ b/packages/next-intl/src/navigation/react-client/createNavigation.test.tsx
@@ -543,6 +543,36 @@ describe("localePrefix: 'as-needed'", () => {
});
});
+describe("localePrefix: 'as-needed', custom `prefixes`", () => {
+ const {usePathname} = createNavigation({
+ defaultLocale,
+ locales,
+ localePrefix: {
+ mode: 'as-needed',
+ prefixes: {
+ en: '/english',
+ de: '/deutsch'
+ }
+ }
+ });
+ const renderPathname = getRenderPathname(usePathname);
+
+ // https://github.com/vercel/next.js/issues/73085
+ it('is tolerant when a locale is used in the pathname for the default locale', () => {
+ mockCurrentLocale('en');
+ mockLocation({pathname: '/en/about'});
+ renderPathname();
+ screen.getByText('/about');
+ });
+
+ it('is tolerant when a locale is used in the pathname for a non-default locale', () => {
+ mockCurrentLocale('de');
+ mockLocation({pathname: '/de/about'});
+ renderPathname();
+ screen.getByText('/about');
+ });
+});
+
describe("localePrefix: 'as-needed', with `basePath` and `domains`", () => {
const {useRouter} = createNavigation({
locales,
diff --git a/packages/next-intl/src/navigation/react-client/createNavigation.tsx b/packages/next-intl/src/navigation/react-client/createNavigation.tsx
index 868f352e3..7f3dd7698 100644
--- a/packages/next-intl/src/navigation/react-client/createNavigation.tsx
+++ b/packages/next-intl/src/navigation/react-client/createNavigation.tsx
@@ -51,11 +51,11 @@ export default function createNavigation<
routing
);
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#usepathname */
+ /** @see https://next-intl.dev/docs/routing/navigation#usepathname */
function usePathname(): [AppPathnames] extends [never]
? string
: keyof AppPathnames {
- const pathname = useBasePathname(config.localePrefix);
+ const pathname = useBasePathname(config);
const locale = useTypedLocale();
// @ts-expect-error -- Mirror the behavior from Next.js, where `null` is returned when `usePathname` is used outside of Next, but the types indicate that a string is always returned.
@@ -117,17 +117,17 @@ export default function createNavigation<
return {
...router,
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#userouter */
+ /** @see https://next-intl.dev/docs/routing/navigation#userouter */
push: createHandler<
Parameters[1],
typeof router.push
>(router.push),
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#userouter */
+ /** @see https://next-intl.dev/docs/routing/navigation#userouter */
replace: createHandler<
Parameters[1],
typeof router.replace
>(router.replace),
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#userouter */
+ /** @see https://next-intl.dev/docs/routing/navigation#userouter */
prefetch: createHandler<
Parameters[1],
typeof router.prefetch
diff --git a/packages/next-intl/src/navigation/react-client/createSharedPathnamesNavigation.tsx b/packages/next-intl/src/navigation/react-client/createSharedPathnamesNavigation.tsx
index c3e9019e0..d72e875cf 100644
--- a/packages/next-intl/src/navigation/react-client/createSharedPathnamesNavigation.tsx
+++ b/packages/next-intl/src/navigation/react-client/createSharedPathnamesNavigation.tsx
@@ -12,7 +12,7 @@ import useBasePathname from './useBasePathname';
import useBaseRouter from './useBaseRouter';
/**
- * @deprecated Consider switching to `createNavigation` (see https://next-intl-docs.vercel.app/blog/next-intl-3-22#create-navigation)
+ * @deprecated Consider switching to `createNavigation` (see https://next-intl.dev/blog/next-intl-3-22#create-navigation)
**/
export default function createSharedPathnamesNavigation<
AppLocales extends Locales,
@@ -62,7 +62,10 @@ export default function createSharedPathnamesNavigation<
}
function usePathname(): string {
- const result = useBasePathname(localePrefix);
+ const result = useBasePathname({
+ localePrefix,
+ defaultLocale: routing?.defaultLocale
+ });
// @ts-expect-error -- Mirror the behavior from Next.js, where `null` is returned when `usePathname` is used outside of Next, but the types indicate that a string is always returned.
return result;
}
diff --git a/packages/next-intl/src/navigation/react-client/index.tsx b/packages/next-intl/src/navigation/react-client/index.tsx
index c4183b53b..7d0372b79 100644
--- a/packages/next-intl/src/navigation/react-client/index.tsx
+++ b/packages/next-intl/src/navigation/react-client/index.tsx
@@ -2,6 +2,8 @@ export {default as createSharedPathnamesNavigation} from './createSharedPathname
export {default as createLocalizedPathnamesNavigation} from './createLocalizedPathnamesNavigation';
export {default as createNavigation} from './createNavigation';
+export type {QueryParams} from '../shared/utils';
+
import type {
Locales,
Pathnames as PathnamesDeprecatedExport
diff --git a/packages/next-intl/src/navigation/react-client/useBasePathname.test.tsx b/packages/next-intl/src/navigation/react-client/useBasePathname.test.tsx
index 4e8370fe4..9a4c94d32 100644
--- a/packages/next-intl/src/navigation/react-client/useBasePathname.test.tsx
+++ b/packages/next-intl/src/navigation/react-client/useBasePathname.test.tsx
@@ -13,12 +13,13 @@ function mockPathname(pathname: string) {
}
function Component() {
- const pathname = useBasePathname({
- // The mode is not used, only the absence of
- // `prefixes` is relevant for this test suite
- mode: 'as-needed'
+ return useBasePathname({
+ localePrefix: {
+ // The mode is not used, only the absence of
+ // `prefixes` is relevant for this test suite
+ mode: 'as-needed'
+ }
});
- return <>{pathname}>;
}
describe('unprefixed routing', () => {
diff --git a/packages/next-intl/src/navigation/react-client/useBasePathname.tsx b/packages/next-intl/src/navigation/react-client/useBasePathname.tsx
index 21562dcc2..bd52dffc8 100644
--- a/packages/next-intl/src/navigation/react-client/useBasePathname.tsx
+++ b/packages/next-intl/src/navigation/react-client/useBasePathname.tsx
@@ -7,6 +7,7 @@ import {
Locales
} from '../../routing/types';
import {
+ getLocaleAsPrefix,
getLocalePrefix,
hasPathnamePrefixed,
unprefixPathname
@@ -15,7 +16,10 @@ import {
export default function useBasePathname<
AppLocales extends Locales,
AppLocalePrefixMode extends LocalePrefixMode
->(localePrefix: LocalePrefixConfigVerbose) {
+>(config: {
+ localePrefix: LocalePrefixConfigVerbose;
+ defaultLocale?: AppLocales[number];
+}) {
// The types aren't entirely correct here. Outside of Next.js
// `useParams` can be called, but the return type is `null`.
@@ -34,12 +38,24 @@ export default function useBasePathname<
return useMemo(() => {
if (!pathname) return pathname;
- const prefix = getLocalePrefix(locale, localePrefix);
+ let unlocalizedPathname = pathname;
+
+ const prefix = getLocalePrefix(locale, config.localePrefix);
const isPathnamePrefixed = hasPathnamePrefixed(prefix, pathname);
- const unlocalizedPathname = isPathnamePrefixed
- ? unprefixPathname(pathname, prefix)
- : pathname;
+
+ if (isPathnamePrefixed) {
+ unlocalizedPathname = unprefixPathname(pathname, prefix);
+ } else if (
+ config.localePrefix.mode === 'as-needed' &&
+ config.localePrefix.prefixes
+ ) {
+ // Workaround for https://github.com/vercel/next.js/issues/73085
+ const localeAsPrefix = getLocaleAsPrefix(locale);
+ if (hasPathnamePrefixed(localeAsPrefix, pathname)) {
+ unlocalizedPathname = unprefixPathname(pathname, localeAsPrefix);
+ }
+ }
return unlocalizedPathname;
- }, [locale, localePrefix, pathname]);
+ }, [config.localePrefix, locale, pathname]);
}
diff --git a/packages/next-intl/src/navigation/react-server/createNavigation.tsx b/packages/next-intl/src/navigation/react-server/createNavigation.tsx
index 13055861a..ba09f314c 100644
--- a/packages/next-intl/src/navigation/react-server/createNavigation.tsx
+++ b/packages/next-intl/src/navigation/react-server/createNavigation.tsx
@@ -8,8 +8,8 @@ import {
Locales,
Pathnames
} from '../../routing/types';
-import {getRequestLocale} from '../../server/react-server/RequestLocale';
import createSharedNavigationFns from '../shared/createSharedNavigationFns';
+import getServerLocale from './getServerLocale';
export default function createNavigation<
const AppLocales extends Locales,
@@ -35,7 +35,7 @@ export default function createNavigation<
type Locale = AppLocales extends never ? string : AppLocales[number];
function getLocale() {
- return getRequestLocale() as Promise;
+ return getServerLocale() as Promise;
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
diff --git a/packages/next-intl/src/navigation/react-server/getServerLocale.tsx b/packages/next-intl/src/navigation/react-server/getServerLocale.tsx
new file mode 100644
index 000000000..b153bdf4c
--- /dev/null
+++ b/packages/next-intl/src/navigation/react-server/getServerLocale.tsx
@@ -0,0 +1,10 @@
+import getConfig from '../../server/react-server/getConfig';
+
+/**
+ * This is only moved to a separate module for easier mocking in
+ * `../createNavigatoin.test.tsx` in order to avoid suspending.
+ */
+export default async function getServerLocale() {
+ const config = await getConfig();
+ return config.locale;
+}
diff --git a/packages/next-intl/src/navigation/shared/BaseLink.tsx b/packages/next-intl/src/navigation/shared/BaseLink.tsx
index 57ef571d8..fe595688a 100644
--- a/packages/next-intl/src/navigation/shared/BaseLink.tsx
+++ b/packages/next-intl/src/navigation/shared/BaseLink.tsx
@@ -38,7 +38,7 @@ function BaseLink(
ref: ComponentProps['ref']
) {
const curLocale = useLocale();
- const isChangingLocale = locale !== curLocale;
+ const isChangingLocale = locale != null && locale !== curLocale;
const linkLocale = locale || curLocale;
const host = useHost();
diff --git a/packages/next-intl/src/navigation/shared/createSharedNavigationFns.tsx b/packages/next-intl/src/navigation/shared/createSharedNavigationFns.tsx
index f507fe8cf..aa05d2a68 100644
--- a/packages/next-intl/src/navigation/shared/createSharedNavigationFns.tsx
+++ b/packages/next-intl/src/navigation/shared/createSharedNavigationFns.tsx
@@ -86,11 +86,11 @@ export default function createSharedNavigationFns<
ComponentProps,
'href' | 'localePrefix' | 'unprefixed' | 'defaultLocale' | 'localeCookie'
> & {
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#link */
+ /** @see https://next-intl.dev/docs/routing/navigation#link */
href: [AppPathnames] extends [never]
? ComponentProps['href']
: HrefOrUrlObjectWithParams;
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#link */
+ /** @see https://next-intl.dev/docs/routing/navigation#link */
locale?: string;
}
>;
@@ -132,11 +132,12 @@ export default function createSharedNavigationFns<
ref={ref}
// @ts-expect-error -- Available after the validation
defaultLocale={config.defaultLocale}
- href={{
- ...(typeof href === 'object' && href),
- // @ts-expect-error -- This is ok
- pathname: finalPathname
- }}
+ // @ts-expect-error -- This is ok
+ href={
+ typeof href === 'object'
+ ? {...href, pathname: finalPathname}
+ : finalPathname
+ }
locale={locale}
localeCookie={config.localeCookie}
// Provide the minimal relevant information to the client side in order
@@ -180,7 +181,7 @@ export default function createSharedNavigationFns<
: {
/**
* In case you're using `localePrefix: 'as-needed'` in combination with `domains`, the `defaultLocale` can differ by domain and therefore the locales that need to be prefixed can differ as well. For this particular case, this parameter should be provided in order to compute the correct pathname. Note that the actual domain is not part of the result, but only the pathname is returned.
- * @see https://next-intl-docs.vercel.app/docs/routing/navigation#getpathname
+ * @see https://next-intl.dev/docs/routing/navigation#getpathname
*/
domain: AppDomains[number]['domain'];
}
@@ -188,7 +189,7 @@ export default function createSharedNavigationFns<
function getPathname(
args: {
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#getpathname */
+ /** @see https://next-intl.dev/docs/routing/navigation#getpathname */
href: [AppPathnames] extends [never]
? string | {pathname: string; query?: QueryParams}
: HrefOrHrefWithParams;
@@ -232,7 +233,7 @@ export default function createSharedNavigationFns<
function getRedirectFn(
fn: typeof nextRedirect | typeof nextPermanentRedirect
) {
- /** @see https://next-intl-docs.vercel.app/docs/routing/navigation#redirect */
+ /** @see https://next-intl.dev/docs/routing/navigation#redirect */
return function redirectFn(
args: Omit[0], 'domain'> &
Partial,
diff --git a/packages/next-intl/src/navigation/shared/utils.tsx b/packages/next-intl/src/navigation/shared/utils.tsx
index 789b78536..2dd158146 100644
--- a/packages/next-intl/src/navigation/shared/utils.tsx
+++ b/packages/next-intl/src/navigation/shared/utils.tsx
@@ -273,7 +273,7 @@ export function applyPathnamePrefix<
} else if (process.env.NODE_ENV !== 'production') {
if (!domain) {
console.error(
- "You're using a routing configuration with `localePrefix: 'as-needed'` in combination with `domains`. In order to compute a correct pathname, you need to provide a `domain` parameter.\n\nSee: https://next-intl-docs.vercel.app/docs/routing#domains-localeprefix-asneeded"
+ "You're using a routing configuration with `localePrefix: 'as-needed'` in combination with `domains`. In order to compute a correct pathname, you need to provide a `domain` parameter.\n\nSee: https://next-intl.dev/docs/routing#domains-localeprefix-asneeded"
);
} else {
// If a domain was provided, but it wasn't found in the routing
diff --git a/packages/next-intl/src/plugin.tsx b/packages/next-intl/src/plugin.tsx
index afa33423f..96a2ec8a8 100644
--- a/packages/next-intl/src/plugin.tsx
+++ b/packages/next-intl/src/plugin.tsx
@@ -51,7 +51,7 @@ function resolveI18nPath(providedPath?: string, cwd?: string) {
if (pathExists(candidate)) {
if (!hasWarnedForDeprecatedI18nConfig) {
console.warn(
- `\n[next-intl] Reading request configuration from ${candidate} is deprecated, please see https://next-intl-docs.vercel.app/blog/next-intl-3-22#i18n-request — you can either move your configuration to ./i18n/request.ts or provide a custom path in your Next.js config:
+ `\n[next-intl] Reading request configuration from ${candidate} is deprecated, please see https://next-intl.dev/blog/next-intl-3-22#i18n-request — you can either move your configuration to ./i18n/request.ts or provide a custom path in your Next.js config:
const withNextIntl = createNextIntlPlugin(
'./path/to/i18n/request.tsx'
@@ -78,7 +78,7 @@ const withNextIntl = createNextIntlPlugin(
function initPlugin(i18nPath?: string, nextConfig?: NextConfig): NextConfig {
if (nextConfig?.i18n != null) {
console.warn(
- "\n[next-intl] An `i18n` property was found in your Next.js config. This likely causes conflicts and should therefore be removed if you use the App Router.\n\nIf you're in progress of migrating from the Pages Router, you can refer to this example: https://next-intl-docs.vercel.app/examples#app-router-migration\n"
+ "\n[next-intl] An `i18n` property was found in your Next.js config. This likely causes conflicts and should therefore be removed if you use the App Router.\n\nIf you're in progress of migrating from the Pages Router, you can refer to this example: https://next-intl.dev/examples#app-router-migration\n"
);
}
diff --git a/packages/next-intl/src/react-client/index.tsx b/packages/next-intl/src/react-client/index.tsx
index aca9e6df9..335f33d66 100644
--- a/packages/next-intl/src/react-client/index.tsx
+++ b/packages/next-intl/src/react-client/index.tsx
@@ -30,7 +30,7 @@ This can happen because:
failed, and therefore React attempted to render the component on the client
instead. If this is the case, check the console for server errors.
2) You intended to render this component on the client side, but no context was found.
- Learn more about this error here: https://next-intl-docs.vercel.app/docs/environments/server-client-components#missing-context`
+ Learn more about this error here: https://next-intl.dev/docs/environments/server-client-components#missing-context`
: undefined
);
}
diff --git a/packages/next-intl/src/react-client/useLocale.tsx b/packages/next-intl/src/react-client/useLocale.tsx
index 1b4f4f98f..2c21738a7 100644
--- a/packages/next-intl/src/react-client/useLocale.tsx
+++ b/packages/next-intl/src/react-client/useLocale.tsx
@@ -3,6 +3,8 @@ import {useParams} from 'next/navigation';
import {useLocale as useBaseLocale} from 'use-intl/_useLocale';
import {LOCALE_SEGMENT_NAME} from '../shared/constants';
+let hasWarnedForParams = false;
+
export default function useLocale(): string {
// The types aren't entirely correct here. Outside of Next.js
// `useParams` can be called, but the return type is `null`.
@@ -16,6 +18,12 @@ export default function useLocale(): string {
locale = useBaseLocale();
} catch (error) {
if (typeof params?.[LOCALE_SEGMENT_NAME] === 'string') {
+ if (process.env.NODE_ENV !== 'production' && !hasWarnedForParams) {
+ console.warn(
+ 'Deprecation warning: `useLocale` has returned a default from `useParams().locale` since no `NextIntlClientProvider` ancestor was found for the calling component. This behavior will be removed in the next major version. Please ensure all Client Components that use `next-intl` are wrapped in a `NextIntlClientProvider`.'
+ );
+ hasWarnedForParams = true;
+ }
locale = params[LOCALE_SEGMENT_NAME];
} else {
throw error;
diff --git a/packages/next-intl/src/react-server/getTranslator.tsx b/packages/next-intl/src/react-server/getTranslator.tsx
index 1a975fe08..640170d09 100644
--- a/packages/next-intl/src/react-server/getTranslator.tsx
+++ b/packages/next-intl/src/react-server/getTranslator.tsx
@@ -1,4 +1,4 @@
-import {ReactElement, ReactNodeArray, cache} from 'react';
+import {ReactNode, cache} from 'react';
import {
Formats,
MarkupTranslationValues,
@@ -59,7 +59,7 @@ function getTranslatorImpl<
key: TargetKey,
values?: RichTranslationValues,
formats?: Formats
- ): string | ReactElement | ReactNodeArray;
+ ): ReactNode;
// `markup`
markup<
diff --git a/packages/next-intl/src/react-server/useConfig.tsx b/packages/next-intl/src/react-server/useConfig.tsx
index 2731c730d..83b7227a6 100644
--- a/packages/next-intl/src/react-server/useConfig.tsx
+++ b/packages/next-intl/src/react-server/useConfig.tsx
@@ -10,7 +10,7 @@ function useHook(hookName: string, promise: Promise) {
error.message.includes("Cannot read properties of null (reading 'use')")
) {
throw new Error(
- `\`${hookName}\` is not callable within an async component. Please refer to https://next-intl-docs.vercel.app/docs/environments/server-client-components#async-components`,
+ `\`${hookName}\` is not callable within an async component. Please refer to https://next-intl.dev/docs/environments/server-client-components#async-components`,
{cause: error}
);
} else {
diff --git a/packages/next-intl/src/routing/config.tsx b/packages/next-intl/src/routing/config.tsx
index 4e50c5ad9..46d357d85 100644
--- a/packages/next-intl/src/routing/config.tsx
+++ b/packages/next-intl/src/routing/config.tsx
@@ -32,43 +32,43 @@ export type RoutingConfig<
> = {
/**
* All available locales.
- * @see https://next-intl-docs.vercel.app/docs/routing
+ * @see https://next-intl.dev/docs/routing
*/
locales: AppLocales;
/**
* Used when no locale matches.
- * @see https://next-intl-docs.vercel.app/docs/routing
+ * @see https://next-intl.dev/docs/routing
*/
defaultLocale: AppLocales[number];
/**
* Configures whether and which prefix is shown for a given locale.
- * @see https://next-intl-docs.vercel.app/docs/routing#locale-prefix
+ * @see https://next-intl.dev/docs/routing#locale-prefix
**/
localePrefix?: LocalePrefix;
/**
* Can be used to change the locale handling per domain.
- * @see https://next-intl-docs.vercel.app/docs/routing#domains
+ * @see https://next-intl.dev/docs/routing#domains
**/
domains?: AppDomains;
/**
* Can be used to disable the locale cookie or to customize it.
- * @see https://next-intl-docs.vercel.app/docs/routing/middleware#locale-cookie
+ * @see https://next-intl.dev/docs/routing/middleware#locale-cookie
*/
localeCookie?: boolean | CookieAttributes;
/**
* Sets the `Link` response header to notify search engines about content in other languages (defaults to `true`). See https://developers.google.com/search/docs/specialty/international/localized-versions#http
- * @see https://next-intl-docs.vercel.app/docs/routing/middleware#alternate-links
+ * @see https://next-intl.dev/docs/routing/middleware#alternate-links
**/
alternateLinks?: boolean;
/**
* By setting this to `false`, the cookie as well as the `accept-language` header will no longer be used for locale detection.
- * @see https://next-intl-docs.vercel.app/docs/routing/middleware#locale-detection
+ * @see https://next-intl.dev/docs/routing/middleware#locale-detection
**/
localeDetection?: boolean;
} & ([AppPathnames] extends [never]
@@ -77,7 +77,7 @@ export type RoutingConfig<
: {
/**
* A map of localized pathnames per locale.
- * @see https://next-intl-docs.vercel.app/docs/routing#pathnames
+ * @see https://next-intl.dev/docs/routing#pathnames
**/
pathnames: AppPathnames;
});
diff --git a/packages/next-intl/src/routing/index.tsx b/packages/next-intl/src/routing/index.tsx
index d0832e45d..ac10d4159 100644
--- a/packages/next-intl/src/routing/index.tsx
+++ b/packages/next-intl/src/routing/index.tsx
@@ -1,2 +1,8 @@
-export type {Pathnames, LocalePrefix, DomainsConfig} from './types';
+export type {
+ Pathnames,
+ DomainsConfig,
+ LocalePrefix,
+ LocalePrefixMode
+} from './types';
+export type {RoutingConfig} from './config';
export {default as defineRouting} from './defineRouting';
diff --git a/packages/next-intl/src/server/react-client/index.test.tsx b/packages/next-intl/src/server/react-client/index.test.tsx
index de0a04679..786560db4 100644
--- a/packages/next-intl/src/server/react-client/index.test.tsx
+++ b/packages/next-intl/src/server/react-client/index.test.tsx
@@ -15,7 +15,7 @@ describe('getRequestConfig', () => {
messages: {hello: 'Hello ' + locale}
}));
expect(() =>
- getConfig({locale: 'en', requestLocale: Promise.resolve('en')})
+ getConfig({requestLocale: Promise.resolve('en'), locale: 'en'})
).toThrow('`getRequestConfig` is not supported in Client Components.');
});
});
diff --git a/packages/next-intl/src/server/react-server/RequestLocale.tsx b/packages/next-intl/src/server/react-server/RequestLocale.tsx
index bfadd880c..2a62aeaaa 100644
--- a/packages/next-intl/src/server/react-server/RequestLocale.tsx
+++ b/packages/next-intl/src/server/react-server/RequestLocale.tsx
@@ -24,7 +24,7 @@ async function getLocaleFromHeaderImpl(): Promise {
(error as any).digest === 'DYNAMIC_SERVER_USAGE'
) {
const wrappedError = new Error(
- 'Usage of next-intl APIs in Server Components currently opts into dynamic rendering. This limitation will eventually be lifted, but as a stopgap solution, you can use the `setRequestLocale` API to enable static rendering, see https://next-intl-docs.vercel.app/docs/getting-started/app-router/with-i18n-routing#static-rendering',
+ 'Usage of next-intl APIs in Server Components currently opts into dynamic rendering. This limitation will eventually be lifted, but as a stopgap solution, you can use the `setRequestLocale` API to enable static rendering, see https://next-intl.dev/docs/getting-started/app-router/with-i18n-routing#static-rendering',
{cause: error}
);
(wrappedError as any).digest = (error as any).digest;
diff --git a/packages/next-intl/src/server/react-server/RequestLocaleLegacy.tsx b/packages/next-intl/src/server/react-server/RequestLocaleLegacy.tsx
index 1a267f566..64904e170 100644
--- a/packages/next-intl/src/server/react-server/RequestLocaleLegacy.tsx
+++ b/packages/next-intl/src/server/react-server/RequestLocaleLegacy.tsx
@@ -22,7 +22,7 @@ function getLocaleFromHeaderImpl() {
(error as any).digest === 'DYNAMIC_SERVER_USAGE'
) {
throw new Error(
- 'Usage of next-intl APIs in Server Components currently opts into dynamic rendering. This limitation will eventually be lifted, but as a stopgap solution, you can use the `setRequestLocale` API to enable static rendering, see https://next-intl-docs.vercel.app/docs/getting-started/app-router/with-i18n-routing#static-rendering',
+ 'Usage of next-intl APIs in Server Components currently opts into dynamic rendering. This limitation will eventually be lifted, but as a stopgap solution, you can use the `setRequestLocale` API to enable static rendering, see https://next-intl.dev/docs/getting-started/app-router/with-i18n-routing#static-rendering',
{cause: error}
);
} else {
@@ -33,7 +33,7 @@ function getLocaleFromHeaderImpl() {
if (!locale) {
if (process.env.NODE_ENV !== 'production') {
console.error(
- `\nUnable to find \`next-intl\` locale because the middleware didn't run on this request. See https://next-intl-docs.vercel.app/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
+ `\nUnable to find \`next-intl\` locale because the middleware didn't run on this request. See https://next-intl.dev/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
);
}
notFound();
diff --git a/packages/next-intl/src/server/react-server/getConfig.tsx b/packages/next-intl/src/server/react-server/getConfig.tsx
index a5fbbe326..362dc915f 100644
--- a/packages/next-intl/src/server/react-server/getConfig.tsx
+++ b/packages/next-intl/src/server/react-server/getConfig.tsx
@@ -11,6 +11,9 @@ import {getRequestLocale as getRequestLocaleLegacy} from './RequestLocaleLegacy'
import createRequestConfig from './createRequestConfig';
import {GetRequestConfigParams} from './getRequestConfig';
+let hasWarnedForMissingReturnedLocale = false;
+let hasWarnedForAccessedLocaleParam = false;
+
// Make sure `now` is consistent across the request in case none was configured
function getDefaultNowImpl() {
return new Date();
@@ -39,7 +42,7 @@ Please verify that:
1. In case you've specified a custom location in your Next.js config, make sure that the path is correct.
2. You have a default export in your i18n request configuration file.
-See also: https://next-intl-docs.vercel.app/docs/usage/configuration#i18n-request
+See also: https://next-intl.dev/docs/usage/configuration#i18n-request
`
);
}
@@ -49,6 +52,15 @@ See also: https://next-intl-docs.vercel.app/docs/usage/configuration#i18n-reques
// `locale` (either in a single-language workflow or because the locale is
// read from the user settings), don't attempt to read the request locale.
get locale() {
+ if (
+ process.env.NODE_ENV !== 'production' &&
+ !hasWarnedForAccessedLocaleParam
+ ) {
+ console.warn(
+ `\nThe \`locale\` parameter in \`getRequestConfig\` is deprecated, please switch to \`await requestLocale\`. See https://next-intl.dev/blog/next-intl-3-22#await-request-locale\n`
+ );
+ hasWarnedForAccessedLocaleParam = true;
+ }
return localeOverride || getRequestLocaleLegacy();
},
@@ -64,15 +76,28 @@ See also: https://next-intl-docs.vercel.app/docs/usage/configuration#i18n-reques
result = await result;
}
- const locale = result.locale || (await params.requestLocale);
+ let locale = result.locale;
if (!locale) {
- if (process.env.NODE_ENV !== 'production') {
+ if (
+ process.env.NODE_ENV !== 'production' &&
+ !hasWarnedForMissingReturnedLocale
+ ) {
console.error(
- `\nUnable to find \`next-intl\` locale because the middleware didn't run on this request and no \`locale\` was returned in \`getRequestConfig\`. See https://next-intl-docs.vercel.app/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
+ `\nA \`locale\` is expected to be returned from \`getRequestConfig\`, but none was returned. This will be an error in the next major version of next-intl.\n\nSee: https://next-intl.dev/blog/next-intl-3-22#await-request-locale\n`
);
+ hasWarnedForMissingReturnedLocale = true;
+ }
+
+ locale = await params.requestLocale;
+ if (!locale) {
+ if (process.env.NODE_ENV !== 'production') {
+ console.error(
+ `\nUnable to find \`next-intl\` locale because the middleware didn't run on this request and no \`locale\` was returned in \`getRequestConfig\`. See https://next-intl.dev/docs/routing/middleware#unable-to-find-locale. The \`notFound()\` function will be called as a result.\n`
+ );
+ }
+ notFound();
}
- notFound();
}
return {
diff --git a/packages/next-intl/src/server/react-server/getMessages.tsx b/packages/next-intl/src/server/react-server/getMessages.tsx
index 72d6ac118..0fc92bcbe 100644
--- a/packages/next-intl/src/server/react-server/getMessages.tsx
+++ b/packages/next-intl/src/server/react-server/getMessages.tsx
@@ -7,7 +7,7 @@ export function getMessagesFromConfig(
): AbstractIntlMessages {
if (!config.messages) {
throw new Error(
- 'No messages found. Have you configured them correctly? See https://next-intl-docs.vercel.app/docs/configuration#messages'
+ 'No messages found. Have you configured them correctly? See https://next-intl.dev/docs/configuration#messages'
);
}
return config.messages;
diff --git a/packages/next-intl/src/server/react-server/getRequestConfig.tsx b/packages/next-intl/src/server/react-server/getRequestConfig.tsx
index 127656ff5..b16b196e4 100644
--- a/packages/next-intl/src/server/react-server/getRequestConfig.tsx
+++ b/packages/next-intl/src/server/react-server/getRequestConfig.tsx
@@ -2,21 +2,14 @@ import type {IntlConfig} from 'use-intl/core';
export type RequestConfig = Omit & {
/**
- * Instead of reading a `requestLocale` from the argument that's passed to the
- * function within `getRequestConfig`, you can include a locale as part of the
- * returned request configuration.
- *
- * This can be helpful for the following use cases:
- * - Apps that only support a single language
- * - Apps where the locale should be read from user settings instead of the pathname
- * - Providing a fallback locale in case the locale was not matched by the middleware
+ * @see https://next-intl.dev/docs/usage/configuration#i18n-request
**/
locale?: IntlConfig['locale'];
};
export type GetRequestConfigParams = {
/**
- * Deprecated in favor of `requestLocale` (see https://next-intl-docs.vercel.app/blog/next-intl-3-22#await-request-locale).
+ * Deprecated in favor of `requestLocale` (see https://next-intl.dev/blog/next-intl-3-22#await-request-locale).
*
* The locale that was matched by the `[locale]` path segment. Note however
* that this can be overridden in async APIs when the `locale` is explicitly
@@ -39,7 +32,7 @@ export type GetRequestConfigParams = {
* catch-all for unknown routes (e.g. `/unknown.txt`), invalid values should
* be replaced with a valid locale.
*
- * @see https://next-intl-docs.vercel.app/docs/usage/configuration#i18n-request
+ * @see https://next-intl.dev/docs/usage/configuration#i18n-request
*/
requestLocale: Promise;
};
diff --git a/packages/next-intl/src/server/react-server/getTranslations.tsx b/packages/next-intl/src/server/react-server/getTranslations.tsx
index 25980502a..c3068e908 100644
--- a/packages/next-intl/src/server/react-server/getTranslations.tsx
+++ b/packages/next-intl/src/server/react-server/getTranslations.tsx
@@ -1,4 +1,4 @@
-import {ReactElement, ReactNodeArray, cache} from 'react';
+import {ReactNode, cache} from 'react';
import {
Formats,
MarkupTranslationValues,
@@ -64,7 +64,7 @@ Promise<{
key: [TargetKey] extends [never] ? string : TargetKey,
values?: RichTranslationValues,
formats?: Formats
- ): string | ReactElement | ReactNodeArray;
+ ): ReactNode;
// `markup`
markup<
@@ -171,7 +171,7 @@ Promise<{
key: TargetKey,
values?: RichTranslationValues,
formats?: Formats
- ): string | ReactElement | ReactNodeArray;
+ ): ReactNode;
// `markup`
markup<
@@ -210,6 +210,24 @@ Promise<{
>(
key: TargetKey
): any;
+
+ // `has`
+ has<
+ TargetKey extends MessageKeys<
+ NestedValueOf<
+ {'!': IntlMessages},
+ [NestedKey] extends [never] ? '!' : `!.${NestedKey}`
+ >,
+ NestedKeyOf<
+ NestedValueOf<
+ {'!': IntlMessages},
+ [NestedKey] extends [never] ? '!' : `!.${NestedKey}`
+ >
+ >
+ >
+ >(
+ key: [TargetKey] extends [never] ? string : TargetKey
+ ): boolean;
}>;
// IMPLEMENTATION
async function getTranslations<
diff --git a/packages/next-intl/src/server/react-server/index.tsx b/packages/next-intl/src/server/react-server/index.tsx
index 258707b90..3b368f52e 100644
--- a/packages/next-intl/src/server/react-server/index.tsx
+++ b/packages/next-intl/src/server/react-server/index.tsx
@@ -2,7 +2,11 @@
* Server-only APIs available via `next-intl/server`.
*/
-export {default as getRequestConfig} from './getRequestConfig';
+export {
+ default as getRequestConfig,
+ type GetRequestConfigParams,
+ type RequestConfig
+} from './getRequestConfig';
export {default as getFormatter} from './getFormatter';
export {default as getNow} from './getNow';
export {default as getTimeZone} from './getTimeZone';
diff --git a/packages/next-intl/src/shared/NextIntlClientProvider.tsx b/packages/next-intl/src/shared/NextIntlClientProvider.tsx
index 2b0385ae4..9f9cdce55 100644
--- a/packages/next-intl/src/shared/NextIntlClientProvider.tsx
+++ b/packages/next-intl/src/shared/NextIntlClientProvider.tsx
@@ -16,7 +16,7 @@ export default function NextIntlClientProvider({locale, ...rest}: Props) {
if (!locale) {
throw new Error(
process.env.NODE_ENV !== 'production'
- ? 'Failed to determine locale in `NextIntlClientProvider`, please provide the `locale` prop explicitly.\n\nSee https://next-intl-docs.vercel.app/docs/configuration#locale'
+ ? 'Failed to determine locale in `NextIntlClientProvider`, please provide the `locale` prop explicitly.\n\nSee https://next-intl.dev/docs/configuration#locale'
: undefined
);
}
diff --git a/packages/next-intl/src/shared/utils.tsx b/packages/next-intl/src/shared/utils.tsx
index a99ceed9e..bd6b28065 100644
--- a/packages/next-intl/src/shared/utils.tsx
+++ b/packages/next-intl/src/shared/utils.tsx
@@ -154,10 +154,14 @@ export function getLocalePrefix<
(localePrefix.mode !== 'never' && localePrefix.prefixes?.[locale]) ||
// We return a prefix even if `mode: 'never'`. It's up to the consumer
// to decide to use it or not.
- '/' + locale
+ getLocaleAsPrefix(locale)
);
}
+export function getLocaleAsPrefix(locale: string) {
+ return '/' + locale;
+}
+
export function templateToRegex(template: string): RegExp {
const regexPattern = template
// Replace optional catchall ('[[...slug]]')
diff --git a/packages/use-intl/CHANGELOG.md b/packages/use-intl/CHANGELOG.md
index ce8251520..56f9ba8c8 100644
--- a/packages/use-intl/CHANGELOG.md
+++ b/packages/use-intl/CHANGELOG.md
@@ -3,6 +3,96 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## 3.26.3 (2024-12-20)
+
+### Bug Fixes
+
+* Add missing deprecation warnings for `next-intl@4.0` ([#1485](https://github.com/amannn/next-intl/issues/1485)) ([1d60d08](https://github.com/amannn/next-intl/commit/1d60d08c446d9eeac8bcc5bfbd0654113a737518)) – by @amannn
+
+## 3.26.2 (2024-12-18)
+
+### Bug Fixes
+
+* Support `t.has` when `getTranslations` is called with an object argument ([#1616](https://github.com/amannn/next-intl/issues/1616)) ([64895a2](https://github.com/amannn/next-intl/commit/64895a2bb3c445f6e3deab85152a0d04ced17e46)), closes [/github.com/amannn/next-intl/discussions/437#discussioncomment-11593318](https://github.com/amannn//github.com/amannn/next-intl/discussions/437/issues/discussioncomment-11593318) – by @amannn
+
+## 3.26.1 (2024-12-11)
+
+### Bug Fixes
+
+* Use new domain `next-intl.dev` in links ([#1601](https://github.com/amannn/next-intl/issues/1601)) ([40a9a77](https://github.com/amannn/next-intl/commit/40a9a7722edc8e7787ed799a4bf1d3c4a2e04848)) – by @amannn
+
+## 3.26.0 (2024-12-06)
+
+### Features
+
+* Support React 19 ([#1597](https://github.com/amannn/next-intl/issues/1597)) ([e0ffe29](https://github.com/amannn/next-intl/commit/e0ffe292a3cae8955fcd06bd8e8e2b02c525ef69)) – by @amannn
+
+## 3.25.3 (2024-11-26)
+
+### Bug Fixes
+
+* Follow-up for [#1573](https://github.com/amannn/next-intl/issues/1573) to also handle the case when a non-default locale is in use ([#1578](https://github.com/amannn/next-intl/issues/1578)) ([fd71741](https://github.com/amannn/next-intl/commit/fd7174179881a19e3573fceb9c6e903923644761)), closes [#1568](https://github.com/amannn/next-intl/issues/1568) – by @amannn
+
+## 3.25.2 (2024-11-25)
+
+### Bug Fixes
+
+* Handle inconsistency in Next.js when using `usePathname` with custom prefixes, `localePrefix: 'as-needed'` and static rendering ([#1573](https://github.com/amannn/next-intl/issues/1573)) ([20fd0f0](https://github.com/amannn/next-intl/commit/20fd0f0015839357893bcd256ff880a98b01ea1f)) – by @amannn
+
+## 3.25.1 (2024-11-13)
+
+### Bug Fixes
+
+* Correctly handle search params in redirects when using `trailingSlash: true` ([#1537](https://github.com/amannn/next-intl/issues/1537)) ([03a4620](https://github.com/amannn/next-intl/commit/03a4620432ff063b2b84f4dba5c49ae36b92fd73)) – by @deini
+
+## 3.25.0 (2024-11-08)
+
+### Features
+
+* Add type exports to enable `declaration: true` in `tsconfig.json` ([#1509](https://github.com/amannn/next-intl/issues/1509)) ([6b2ca9c](https://github.com/amannn/next-intl/commit/6b2ca9cfddcf8611893f76f9690e0bafb534e8fd)) – by @osaton
+
+## 3.24.0 (2024-10-31)
+
+### Features
+
+* Add support for React 19 RC ([#1490](https://github.com/amannn/next-intl/issues/1490)) ([2dea022](https://github.com/amannn/next-intl/commit/2dea02271f79e183dfd18a3c77112a79e1fce581)) – by @amannn
+
+## 3.23.5 (2024-10-24)
+
+### Bug Fixes
+
+* Don't warn when setting `prefetch={true}` on ` ` ([#1463](https://github.com/amannn/next-intl/issues/1463)) ([fd6d73d](https://github.com/amannn/next-intl/commit/fd6d73dc145a0679e85a1a71fe40c43d3312e27e)), closes [#1462](https://github.com/amannn/next-intl/issues/1462) – by @amannn
+
+## 3.23.4 (2024-10-24)
+
+### Bug Fixes
+
+* Upgrade to `negotiator@^1.0` ([#1460](https://github.com/amannn/next-intl/issues/1460)) ([b93f297](https://github.com/amannn/next-intl/commit/b93f29736250a749333d438b06b7a608e9d73c28)) – by @amannn
+
+## 3.23.3 (2024-10-24)
+
+### Bug Fixes
+
+* Resolve locale for navigation APIs consistently from `i18n/request.ts` in `react-server` like all other APIs do ([#1459](https://github.com/amannn/next-intl/issues/1459)) ([8c6d5ff](https://github.com/amannn/next-intl/commit/8c6d5fff009ac3c54b2847c23b8148759d0b6ffa)) – by @amannn
+
+## 3.23.2 (2024-10-22)
+
+### Bug Fixes
+
+* Handle inlined search params and hashes correctly in ` ` from `createNavigation` ([#1448](https://github.com/amannn/next-intl/issues/1448)) ([ba0a537](https://github.com/amannn/next-intl/commit/ba0a537571b49d2d31cbc3c5079a7ad738e1409b)) – by @amannn
+
+## 3.23.1 (2024-10-22)
+
+### Bug Fixes
+
+* Remove usage of deprecated `ReactNodeArray` which is removed in React 19 ([#1445](https://github.com/amannn/next-intl/issues/1445)) ([2396345](https://github.com/amannn/next-intl/commit/23963458e3ef3d5d29eeb9df01f40bbe11245301)) – by @amannn
+
+## 3.23.0 (2024-10-22)
+
+### Features
+
+* Add Next.js 15 to peer dependencies ([#1443](https://github.com/amannn/next-intl/issues/1443)) ([4cb22bb](https://github.com/amannn/next-intl/commit/4cb22bb10990961dba7e5accd2b5c70664f2b6d2)) – by @amannn
+
## 3.22.0 (2024-10-21)
### Deprecations
diff --git a/packages/use-intl/README.md b/packages/use-intl/README.md
index 64980a657..1a7150d9f 100644
--- a/packages/use-intl/README.md
+++ b/packages/use-intl/README.md
@@ -35,7 +35,7 @@ export default function UserProfile({user}) {
// en.json
{
"UserProfile": {
- "title": "{username}'s profile",
+ "title": "{firstName}'s profile",
"membership": "Member since {memberSince, date, short}",
"followers": "{count, plural, ↵
=0 {No followers yet} ↵
@@ -60,24 +60,24 @@ import {IntlProvider, useTranslations} from 'use-intl';
// along with your app once you have the messages.
const messages = {
App: {
- hello: 'Hello {username}!'
+ hello: 'Hello {firstName}!'
}
};
function Root() {
return (
-
+
);
}
function App({user}) {
const t = useTranslations('App');
- return {t('hello', {username: user.name})} ;
+ return {t('hello', {firstName: user.firstName})} ;
}
```
Have a look at [the minimal setup example](https://github.com/amannn/next-intl/tree/main/examples/example-use-intl) to explore a working app.
-### [→ Read the docs](https://next-intl-docs.vercel.app/docs/environments/core-library)
+### [→ Read the docs](https://next-intl.dev/docs/environments/core-library)
diff --git a/packages/use-intl/package.json b/packages/use-intl/package.json
index 80c06a4da..a5f3ea3fd 100644
--- a/packages/use-intl/package.json
+++ b/packages/use-intl/package.json
@@ -1,11 +1,11 @@
{
"name": "use-intl",
- "version": "3.22.0",
+ "version": "3.26.3",
"sideEffects": false,
"author": "Jan Amann ",
"description": "Internationalization (i18n) for React",
"license": "MIT",
- "homepage": "https://next-intl-docs.vercel.app/",
+ "homepage": "https://next-intl.dev",
"repository": {
"type": "git",
"url": "https://github.com/amannn/next-intl/tree/main/packages/use-intl"
@@ -68,7 +68,7 @@
"intl-messageformat": "^10.5.14"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc <19.0.0 || ^19.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
diff --git a/packages/use-intl/src/core/AbstractIntlMessages.tsx b/packages/use-intl/src/core/AbstractIntlMessages.tsx
index 42f02a333..dd496ea98 100644
--- a/packages/use-intl/src/core/AbstractIntlMessages.tsx
+++ b/packages/use-intl/src/core/AbstractIntlMessages.tsx
@@ -1,7 +1,7 @@
/** A generic type that describes the shape of messages.
*
* Optionally `IntlMessages` can be provided to get type safety for message
- * namespaces and keys. See https://next-intl-docs.vercel.app/docs/usage/typescript
+ * namespaces and keys. See https://next-intl.dev/docs/usage/typescript
*/
type AbstractIntlMessages = {
[id: string]: AbstractIntlMessages | string;
diff --git a/packages/use-intl/src/core/IntlConfig.tsx b/packages/use-intl/src/core/IntlConfig.tsx
index 487beff34..b7d51ea44 100644
--- a/packages/use-intl/src/core/IntlConfig.tsx
+++ b/packages/use-intl/src/core/IntlConfig.tsx
@@ -45,7 +45,7 @@ type IntlConfig = {
* Can be used for consistent usage or styling of rich text elements.
* Defaults will be overidden by locally provided values.
*
- * @deprecated See https://next-intl-docs.vercel.app/docs/usage/messages#rich-text-reuse-tags
+ * @deprecated See https://next-intl.dev/docs/usage/messages#rich-text-reuse-tags
**/
defaultTranslationValues?: RichTranslationValues;
};
diff --git a/packages/use-intl/src/core/createBaseTranslator.tsx b/packages/use-intl/src/core/createBaseTranslator.tsx
index 5007bf183..f1e90eb74 100644
--- a/packages/use-intl/src/core/createBaseTranslator.tsx
+++ b/packages/use-intl/src/core/createBaseTranslator.tsx
@@ -1,11 +1,5 @@
import IntlMessageFormat from 'intl-messageformat';
-import {
- ReactElement,
- ReactNode,
- ReactNodeArray,
- cloneElement,
- isValidElement
-} from 'react';
+import {ReactNode, cloneElement, isValidElement} from 'react';
import AbstractIntlMessages from './AbstractIntlMessages';
import Formats from './Formats';
import {InitializedIntlConfig} from './IntlConfig';
@@ -225,7 +219,7 @@ function createBaseTranslatorImpl<
values?: RichTranslationValues,
/** Provide custom formats for numbers, dates and times. */
formats?: Formats
- ): string | ReactElement | ReactNodeArray {
+ ): ReactNode {
if (hasMessagesError) {
// We have already warned about this during render
return getMessageFallback({
@@ -255,7 +249,7 @@ function createBaseTranslatorImpl<
errorMessage = `Message at \`${joinPath(
namespace,
key
- )}\` resolved to an array, but only strings are supported. See https://next-intl-docs.vercel.app/docs/usage/messages#arrays-of-messages`;
+ )}\` resolved to an array, but only strings are supported. See https://next-intl.dev/docs/usage/messages#arrays-of-messages`;
}
} else {
code = IntlErrorCode.INSUFFICIENT_PATH;
@@ -263,7 +257,7 @@ function createBaseTranslatorImpl<
errorMessage = `Message at \`${joinPath(
namespace,
key
- )}\` resolved to an object, but only strings are supported. Use a \`.\` to retrieve nested messages. See https://next-intl-docs.vercel.app/docs/usage/messages#structuring-messages`;
+ )}\` resolved to an object, but only strings are supported. Use a \`.\` to retrieve nested messages. See https://next-intl.dev/docs/usage/messages#structuring-messages`;
}
}
diff --git a/packages/use-intl/src/core/createFormatter.tsx b/packages/use-intl/src/core/createFormatter.tsx
index f5745f566..f4064fb68 100644
--- a/packages/use-intl/src/core/createFormatter.tsx
+++ b/packages/use-intl/src/core/createFormatter.tsx
@@ -99,7 +99,7 @@ export default function createFormatter({
new IntlError(
IntlErrorCode.ENVIRONMENT_FALLBACK,
process.env.NODE_ENV !== 'production'
- ? `The \`timeZone\` parameter wasn't provided and there is no global default configured. Consider adding a global default to avoid markup mismatches caused by environment differences. Learn more: https://next-intl-docs.vercel.app/docs/configuration#time-zone`
+ ? `The \`timeZone\` parameter wasn't provided and there is no global default configured. Consider adding a global default to avoid markup mismatches caused by environment differences. Learn more: https://next-intl.dev/docs/configuration#time-zone`
: undefined
)
);
@@ -224,7 +224,7 @@ export default function createFormatter({
new IntlError(
IntlErrorCode.ENVIRONMENT_FALLBACK,
process.env.NODE_ENV !== 'production'
- ? `The \`now\` parameter wasn't provided and there is no global default configured. Consider adding a global default to avoid markup mismatches caused by environment differences. Learn more: https://next-intl-docs.vercel.app/docs/configuration#now`
+ ? `The \`now\` parameter wasn't provided and there is no global default configured. Consider adding a global default to avoid markup mismatches caused by environment differences. Learn more: https://next-intl.dev/docs/configuration#now`
: undefined
)
);
diff --git a/packages/use-intl/src/core/createTranslator.tsx b/packages/use-intl/src/core/createTranslator.tsx
index da8ba6d7f..92a25e9da 100644
--- a/packages/use-intl/src/core/createTranslator.tsx
+++ b/packages/use-intl/src/core/createTranslator.tsx
@@ -1,4 +1,4 @@
-import {ReactElement, ReactNodeArray} from 'react';
+import {ReactNode} from 'react';
import Formats from './Formats';
import IntlConfig from './IntlConfig';
import TranslationValues, {
@@ -86,7 +86,7 @@ export default function createTranslator<
key: TargetKey,
values?: RichTranslationValues,
formats?: Formats
- ): string | ReactElement | ReactNodeArray;
+ ): ReactNode;
// `markup`
markup<
diff --git a/packages/use-intl/src/core/index.tsx b/packages/use-intl/src/core/index.tsx
index cfc3cc0e4..a298caf02 100644
--- a/packages/use-intl/src/core/index.tsx
+++ b/packages/use-intl/src/core/index.tsx
@@ -8,6 +8,8 @@ export type {default as Formats} from './Formats';
export type {default as IntlConfig} from './IntlConfig';
export type {default as DateTimeFormatOptions} from './DateTimeFormatOptions';
export type {default as NumberFormatOptions} from './NumberFormatOptions';
+export type {default as RelativeTimeFormatOptions} from './RelativeTimeFormatOptions';
+export type {default as Timezone} from './TimeZone';
export {default as IntlError, IntlErrorCode} from './IntlError';
export {default as createTranslator} from './createTranslator';
export {default as createFormatter} from './createFormatter';
diff --git a/packages/use-intl/src/react/useIntlContext.tsx b/packages/use-intl/src/react/useIntlContext.tsx
index 2df59c853..e8d3a5f2c 100644
--- a/packages/use-intl/src/react/useIntlContext.tsx
+++ b/packages/use-intl/src/react/useIntlContext.tsx
@@ -7,7 +7,7 @@ export default function useIntlContext(): IntlContextValue {
if (!context) {
throw new Error(
process.env.NODE_ENV !== 'production'
- ? 'No intl context found. Have you configured the provider? See https://next-intl-docs.vercel.app/docs/usage/configuration#client-server-components'
+ ? 'No intl context found. Have you configured the provider? See https://next-intl.dev/docs/usage/configuration#client-server-components'
: undefined
);
}
diff --git a/packages/use-intl/src/react/useMessages.tsx b/packages/use-intl/src/react/useMessages.tsx
index 24a9d0481..315583eeb 100644
--- a/packages/use-intl/src/react/useMessages.tsx
+++ b/packages/use-intl/src/react/useMessages.tsx
@@ -7,7 +7,7 @@ export default function useMessages(): AbstractIntlMessages {
if (!context.messages) {
throw new Error(
process.env.NODE_ENV !== 'production'
- ? 'No messages found. Have you configured them correctly? See https://next-intl-docs.vercel.app/docs/configuration#messages'
+ ? 'No messages found. Have you configured them correctly? See https://next-intl.dev/docs/configuration#messages'
: undefined
);
}
diff --git a/packages/use-intl/src/react/useTranslations.test.tsx b/packages/use-intl/src/react/useTranslations.test.tsx
index 4d934035c..ded90ee04 100644
--- a/packages/use-intl/src/react/useTranslations.test.tsx
+++ b/packages/use-intl/src/react/useTranslations.test.tsx
@@ -840,7 +840,7 @@ describe('error handling', () => {
const error: IntlError = onError.mock.calls[0][0];
expect(error.code).toBe(IntlErrorCode.INSUFFICIENT_PATH);
expect(error.message).toBe(
- 'INSUFFICIENT_PATH: Message at `Component.object` resolved to an object, but only strings are supported. Use a `.` to retrieve nested messages. See https://next-intl-docs.vercel.app/docs/usage/messages#structuring-messages'
+ 'INSUFFICIENT_PATH: Message at `Component.object` resolved to an object, but only strings are supported. Use a `.` to retrieve nested messages. See https://next-intl.dev/docs/usage/messages#structuring-messages'
);
});
@@ -865,7 +865,7 @@ describe('error handling', () => {
const error: IntlError = onError.mock.calls[0][0];
expect(error.code).toBe(IntlErrorCode.INSUFFICIENT_PATH);
expect(error.message).toBe(
- 'INSUFFICIENT_PATH: Message at `Component.object` resolved to an object, but only strings are supported. Use a `.` to retrieve nested messages. See https://next-intl-docs.vercel.app/docs/usage/messages#structuring-messages'
+ 'INSUFFICIENT_PATH: Message at `Component.object` resolved to an object, but only strings are supported. Use a `.` to retrieve nested messages. See https://next-intl.dev/docs/usage/messages#structuring-messages'
);
});
@@ -891,7 +891,7 @@ describe('error handling', () => {
const error: IntlError = onError.mock.calls[0][0];
expect(error.code).toBe(IntlErrorCode.INVALID_MESSAGE);
expect(error.message).toBe(
- 'INVALID_MESSAGE: Message at `Component.array` resolved to an array, but only strings are supported. See https://next-intl-docs.vercel.app/docs/usage/messages#arrays-of-messages'
+ 'INVALID_MESSAGE: Message at `Component.array` resolved to an array, but only strings are supported. See https://next-intl.dev/docs/usage/messages#arrays-of-messages'
);
});
@@ -917,7 +917,7 @@ describe('error handling', () => {
const error: IntlError = onError.mock.calls[0][0];
expect(error.code).toBe(IntlErrorCode.INVALID_MESSAGE);
expect(error.message).toBe(
- 'INVALID_MESSAGE: Message at `Component.array` resolved to an array, but only strings are supported. See https://next-intl-docs.vercel.app/docs/usage/messages#arrays-of-messages'
+ 'INVALID_MESSAGE: Message at `Component.array` resolved to an array, but only strings are supported. See https://next-intl.dev/docs/usage/messages#arrays-of-messages'
);
});
});
diff --git a/packages/use-intl/src/react/useTranslations.tsx b/packages/use-intl/src/react/useTranslations.tsx
index 282db233b..8bcc71f18 100644
--- a/packages/use-intl/src/react/useTranslations.tsx
+++ b/packages/use-intl/src/react/useTranslations.tsx
@@ -1,4 +1,4 @@
-import {ReactElement, ReactNodeArray} from 'react';
+import {ReactNode} from 'react';
import Formats from '../core/Formats';
import TranslationValues, {
MarkupTranslationValues,
@@ -66,7 +66,7 @@ export default function useTranslations<
key: TargetKey,
values?: RichTranslationValues,
formats?: Formats
- ): string | ReactElement | ReactNodeArray;
+ ): ReactNode;
// `markup`
markup<
diff --git a/packages/use-intl/src/react/useTranslationsImpl.tsx b/packages/use-intl/src/react/useTranslationsImpl.tsx
index 6529d00b6..d79fc8302 100644
--- a/packages/use-intl/src/react/useTranslationsImpl.tsx
+++ b/packages/use-intl/src/react/useTranslationsImpl.tsx
@@ -43,7 +43,7 @@ export default function useTranslationsImpl<
new IntlError(
IntlErrorCode.ENVIRONMENT_FALLBACK,
process.env.NODE_ENV !== 'production'
- ? `There is no \`timeZone\` configured, this can lead to markup mismatches caused by environment differences. Consider adding a global default: https://next-intl-docs.vercel.app/docs/configuration#time-zone`
+ ? `There is no \`timeZone\` configured, this can lead to markup mismatches caused by environment differences. Consider adding a global default: https://next-intl.dev/docs/configuration#time-zone`
: undefined
)
);
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 840db9728..7cd158dbb 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,31 +4,34 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ '@babel/parser': 7.21.9
+
importers:
.:
devDependencies:
'@babel/core':
specifier: ^7.24.7
- version: 7.25.8
+ version: 7.25.9
'@babel/preset-env':
specifier: ^7.24.7
- version: 7.25.8(@babel/core@7.25.8)
+ version: 7.25.9(@babel/core@7.25.9)
'@babel/preset-react':
specifier: ^7.24.7
- version: 7.25.7(@babel/core@7.25.8)
+ version: 7.25.9(@babel/core@7.25.9)
'@babel/preset-typescript':
specifier: ^7.24.7
- version: 7.25.7(@babel/core@7.25.8)
+ version: 7.25.9(@babel/core@7.25.9)
'@lerna-lite/cli':
specifier: ^3.9.0
- version: 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)
+ version: 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)
'@lerna-lite/publish':
specifier: ^3.9.0
- version: 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
+ version: 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
'@rollup/plugin-babel':
specifier: ^6.0.3
- version: 6.0.4(@babel/core@7.25.8)(@types/babel__core@7.20.5)(rollup@4.24.0)
+ version: 6.0.4(@babel/core@7.25.9)(@types/babel__core@7.20.5)(rollup@4.24.0)
'@rollup/plugin-commonjs':
specifier: ^26.0.1
version: 26.0.3(rollup@4.24.0)
@@ -46,13 +49,13 @@ importers:
version: 7.0.2
execa:
specifier: ^9.2.0
- version: 9.4.0
+ version: 9.4.1
rollup:
specifier: ^4.18.0
version: 4.24.0
turbo:
- specifier: ^2.0.4
- version: 2.1.3
+ specifier: ^2.2.3
+ version: 2.2.3
docs:
dependencies:
@@ -61,7 +64,7 @@ importers:
version: 3.6.2
'@docsearch/react':
specifier: ^3.6.0
- version: 3.6.2(@algolia/client-search@5.8.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)
+ version: 3.6.2(@algolia/client-search@5.10.2)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)
'@headlessui/react':
specifier: ^2.0.0
version: 2.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -70,13 +73,10 @@ importers:
version: 2.1.5(react@18.3.1)
'@vercel/analytics':
specifier: 1.3.1
- version: 1.3.1(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
- '@vercel/og':
- specifier: ^0.6.3
- version: 0.6.3
+ version: 1.3.1(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@vercel/speed-insights':
specifier: ^1.0.12
- version: 1.0.12(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 1.0.13(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -84,14 +84,14 @@ importers:
specifier: ^2.3.0
version: 2.3.0
next:
- specifier: ^14.0.0
- version: 14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^14.2.4
+ version: 14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nextra:
- specifier: ^3.0.13
- version: 3.0.13(@types/react@18.3.11)(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
+ specifier: ^3.1.0
+ version: 3.1.0(@types/react@18.3.12)(acorn@8.14.0)(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
nextra-theme-docs:
- specifier: ^3.0.13
- version: 3.0.13(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.0.13(@types/react@18.3.11)(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^3.1.0
+ version: 3.1.0(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.1.0(@types/react@18.3.12)(acorn@8.14.0)(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -110,22 +110,31 @@ importers:
devDependencies:
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
autoprefixer:
specifier: ^10.4.19
version: 10.4.20(postcss@8.4.39)
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
+ fast-glob:
+ specifier: ^3.3.2
+ version: 3.3.2
+ globals:
+ specifier: ^15.11.0
+ version: 15.11.0
next-sitemap:
specifier: ^4.2.3
- version: 4.2.3(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ version: 4.2.3(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ next-validate-link:
+ specifier: ^1.3.0
+ version: 1.3.0
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -140,7 +149,7 @@ importers:
version: 2.1.1
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -162,31 +171,31 @@ importers:
version: 1.48.1
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/jest':
specifier: ^29.5.12
- version: 29.5.13
+ version: 29.5.14
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
autoprefixer:
specifier: ^10.4.19
version: 10.4.20(postcss@8.4.47)
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.16.11)
+ version: 29.7.0(@types/node@20.17.0)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
@@ -204,7 +213,7 @@ importers:
dependencies:
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -217,19 +226,19 @@ importers:
devDependencies:
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -241,7 +250,7 @@ importers:
dependencies:
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -260,19 +269,19 @@ importers:
version: 1.48.1
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
autoprefixer:
specifier: ^10.4.19
version: 10.4.20(postcss@8.4.47)
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
postcss:
specifier: ^8.4.38
version: 8.4.47
@@ -287,10 +296,10 @@ importers:
dependencies:
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-auth:
- specifier: ^4.24.7
- version: 4.24.8(next@15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^4.24.11
+ version: 4.24.11(next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -306,19 +315,19 @@ importers:
version: 1.48.1
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -330,7 +339,7 @@ importers:
dependencies:
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.1
- version: 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -339,7 +348,7 @@ importers:
version: 2.1.3
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -358,40 +367,40 @@ importers:
version: 29.7.0
'@mdx-js/loader':
specifier: ^3.0.1
- version: 3.0.1(webpack@5.95.0(esbuild@0.23.1))
+ version: 3.1.0(webpack@5.97.1(esbuild@0.24.2))
'@mdx-js/react':
specifier: ^3.0.1
- version: 3.0.1(@types/react@18.3.11)(react@18.3.1)
+ version: 3.1.0(@types/react@18.3.12)(react@18.3.1)
'@next/mdx':
specifier: ^15.0.0-rc.1
- version: 15.0.0-rc.1(@mdx-js/loader@3.0.1(webpack@5.95.0(esbuild@0.23.1)))(@mdx-js/react@3.0.1(@types/react@18.3.11)(react@18.3.1))
+ version: 15.0.0-rc.1(@mdx-js/loader@3.1.0(webpack@5.97.1(esbuild@0.24.2)))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.3.1))
'@playwright/test':
specifier: ^1.48.1
version: 1.48.1
'@storybook/nextjs':
- specifier: ^8.2.9
- version: 8.3.5(@types/webpack@5.28.5(esbuild@0.23.1))(esbuild@0.23.1)(next@15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sockjs-client@1.6.1)(storybook@8.3.5)(type-fest@4.26.1)(typescript@5.6.3)(webpack-dev-server@5.1.0(webpack@5.95.0(esbuild@0.23.1)))(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))
+ specifier: ^8.5.1
+ version: 8.5.1(@types/webpack@5.28.5(esbuild@0.24.2))(esbuild@0.24.2)(next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sockjs-client@1.6.1)(storybook@8.5.1(prettier@3.3.3))(type-fest@4.33.0)(typescript@5.6.3)(webpack-dev-server@5.1.0(webpack@5.97.1(esbuild@0.24.2)))(webpack-hot-middleware@2.26.1)(webpack@5.97.1(esbuild@0.24.2))
'@storybook/react':
- specifier: ^8.2.9
- version: 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)
+ specifier: ^8.5.1
+ version: 8.5.1(@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/jest':
specifier: ^29.5.12
- version: 29.5.13
+ version: 29.5.14
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/mdx':
specifier: ^2.0.13
version: 2.0.13
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
@@ -400,16 +409,16 @@ importers:
version: 3.0.0
css-loader:
specifier: ^6.8.1
- version: 6.11.0(webpack@5.95.0(esbuild@0.23.1))
+ version: 6.11.0(webpack@5.97.1(esbuild@0.24.2))
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.16.11)
+ version: 29.7.0(@types/node@20.17.0)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
@@ -420,8 +429,8 @@ importers:
specifier: ^0.33.4
version: 0.33.5
storybook:
- specifier: ^8.2.9
- version: 8.3.5
+ specifier: ^8.5.1
+ version: 8.5.1(prettier@3.3.3)
storybook-next-intl:
specifier: ^1.1.4
version: 1.1.6(next-intl@packages+next-intl)
@@ -433,7 +442,7 @@ importers:
dependencies:
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -449,19 +458,19 @@ importers:
version: 1.48.1
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -476,7 +485,7 @@ importers:
version: 2.1.5(react@18.3.1)
'@radix-ui/react-select':
specifier: ^2.1.1
- version: 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx:
specifier: ^2.1.1
version: 2.1.1
@@ -485,7 +494,7 @@ importers:
version: 4.17.21
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -504,13 +513,13 @@ importers:
version: 1.48.1
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
@@ -519,10 +528,10 @@ importers:
version: 10.4.20(postcss@8.4.47)
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
postcss:
specifier: ^8.4.38
version: 8.4.47
@@ -543,7 +552,7 @@ importers:
version: 3.6.0
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -556,19 +565,19 @@ importers:
devDependencies:
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -586,7 +595,7 @@ importers:
version: 4.17.21
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-intl:
specifier: ^3.0.0
version: link:../../packages/next-intl
@@ -599,31 +608,31 @@ importers:
devDependencies:
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/accept-language-parser':
specifier: ^1.5.6
version: 1.5.6
'@types/jest':
specifier: ^29.5.12
- version: 29.5.13
+ version: 29.5.14
'@types/lodash':
specifier: ^4.17.5
- version: 4.17.10
+ version: 4.17.12
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@20.16.11)
+ version: 29.7.0(@types/node@20.17.0)
jest-environment-jsdom:
specifier: ^29.7.0
version: 29.7.0
@@ -638,7 +647,7 @@ importers:
dependencies:
next:
specifier: ^12.0.0
- version: 12.3.4(@babel/core@7.25.8)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ version: 12.3.4(@babel/core@7.25.9)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
react:
specifier: ^17.0.0
version: 17.0.2
@@ -651,10 +660,10 @@ importers:
devDependencies:
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.7.5))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.10.9))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -663,10 +672,10 @@ importers:
dependencies:
'@expo/webpack-config':
specifier: ^0.17.2
- version: 0.17.4(encoding@0.1.13)(eslint@9.12.0(jiti@2.3.3))(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))(typescript@5.6.3)
+ version: 0.17.4(encoding@0.1.13)(eslint@9.13.0(jiti@2.3.3))(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))(typescript@5.6.3)
expo:
specifier: ~47.0.12
- version: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ version: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
expo-status-bar:
specifier: ~1.4.2
version: 1.4.4
@@ -678,7 +687,7 @@ importers:
version: 18.1.0(react@18.1.0)
react-native:
specifier: ^0.70.5
- version: 0.70.15(@babel/core@7.25.8)(@babel/preset-env@7.25.8(@babel/core@7.25.8))(encoding@0.1.13)(react@18.1.0)
+ version: 0.70.15(@babel/core@7.25.9)(@babel/preset-env@7.25.9(@babel/core@7.25.9))(encoding@0.1.13)(react@18.1.0)
react-native-web:
specifier: ~0.18.9
version: 0.18.12(encoding@0.1.13)(react-dom@18.1.0(react@18.1.0))(react@18.1.0)
@@ -688,7 +697,7 @@ importers:
devDependencies:
'@babel/core':
specifier: ^7.12.9
- version: 7.25.8
+ version: 7.25.9
examples/example-remix:
dependencies:
@@ -719,22 +728,22 @@ importers:
devDependencies:
'@remix-run/dev':
specifier: ^2.9.2
- version: 2.13.1(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/serve@2.13.1(typescript@5.6.3))(@types/node@22.7.5)(terser@5.35.0)(typescript@5.6.3)(vite@5.4.9(@types/node@22.7.5)(terser@5.35.0))
+ version: 2.13.1(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/serve@2.13.1(typescript@5.6.3))(@types/node@22.10.9)(terser@5.37.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.10.9)(terser@5.37.0))
'@types/accept-language-parser':
specifier: ^1.5.6
version: 1.5.6
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.7.5))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.10.9))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -756,19 +765,19 @@ importers:
devDependencies:
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.2(vite@5.4.9(@types/node@22.7.5)(terser@5.35.0))
+ version: 4.3.3(vite@5.4.10(@types/node@22.10.9)(terser@5.37.0))
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.7.5))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.10.9))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0))
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -777,7 +786,7 @@ importers:
version: 5.6.3
vite:
specifier: ^5.3.1
- version: 5.4.9(@types/node@22.7.5)(terser@5.35.0)
+ version: 5.4.10(@types/node@22.10.9)(terser@5.37.0)
packages/next-intl:
dependencies:
@@ -785,8 +794,8 @@ importers:
specifier: ^0.5.4
version: 0.5.5
negotiator:
- specifier: ^0.6.3
- version: 0.6.3
+ specifier: ^1.0.0
+ version: 1.0.0
use-intl:
specifier: workspace:^
version: link:../use-intl
@@ -802,31 +811,31 @@ importers:
version: 11.1.6(size-limit@11.1.6)
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/negotiator':
specifier: ^0.6.3
version: 0.6.3
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
eslint-plugin-react-compiler:
specifier: 0.0.0-experimental-8e3b87c-20240822
- version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.12.0(jiti@2.3.3))
+ version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.13.0(jiti@2.3.3))
next:
specifier: ^15.0.3
- version: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
path-to-regexp:
specifier: ^6.2.2
version: 6.3.0
@@ -835,7 +844,7 @@ importers:
version: 3.3.3
publint:
specifier: ^0.2.8
- version: 0.2.11
+ version: 0.2.12
react:
specifier: ^18.3.1
version: 18.3.1
@@ -856,7 +865,7 @@ importers:
version: 5.6.3
vitest:
specifier: ^2.0.2
- version: 2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0)
+ version: 2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)
packages/use-intl:
dependencies:
@@ -865,7 +874,7 @@ importers:
version: 2.2.1
intl-messageformat:
specifier: ^10.5.14
- version: 10.7.0
+ version: 10.7.1
devDependencies:
'@arethetypeswrong/cli':
specifier: ^0.15.3
@@ -875,13 +884,13 @@ importers:
version: 11.1.6(size-limit@11.1.6)
'@testing-library/react':
specifier: ^16.0.0
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/node':
specifier: ^20.14.5
- version: 20.16.11
+ version: 20.17.0
'@types/react':
specifier: ^18.3.3
- version: 18.3.11
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
version: 18.3.1
@@ -890,19 +899,19 @@ importers:
version: 3.6.0
eslint:
specifier: ^9.11.1
- version: 9.12.0(jiti@2.3.3)
+ version: 9.13.0(jiti@2.3.3)
eslint-config-molindo:
specifier: ^8.0.0
- version: 8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ version: 8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
eslint-plugin-react-compiler:
specifier: 0.0.0-experimental-8e3b87c-20240822
- version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.12.0(jiti@2.3.3))
+ version: 0.0.0-experimental-8e3b87c-20240822(eslint@9.13.0(jiti@2.3.3))
prettier:
specifier: ^3.3.3
version: 3.3.3
publint:
specifier: ^0.2.8
- version: 0.2.11
+ version: 0.2.12
react:
specifier: ^18.3.1
version: 18.3.1
@@ -923,7 +932,7 @@ importers:
version: 5.6.3
vitest:
specifier: ^2.0.2
- version: 2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0)
+ version: 2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)
packages:
@@ -931,8 +940,8 @@ packages:
resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
engines: {node: '>=0.10.0'}
- '@adobe/css-tools@4.4.0':
- resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==}
+ '@adobe/css-tools@4.4.1':
+ resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==}
'@algolia/autocomplete-core@1.9.3':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
@@ -972,8 +981,8 @@ packages:
'@algolia/client-common@4.23.3':
resolution: {integrity: sha512-l6EiPxdAlg8CYhroqS5ybfIczsGUIAC47slLPOMDeKSVXYG1n0qGiz4RjAHLw2aD0xzh2EXZ7aRguPfz7UKDKw==}
- '@algolia/client-common@5.8.1':
- resolution: {integrity: sha512-MLX/gipPFEhJPCExsxXf9tnt+kLfWCe9JWRp1adcoVySkhzPxpIeSiWaQaOqyy0TYIgIpdeVx/emlBT9Ni8GFw==}
+ '@algolia/client-common@5.10.2':
+ resolution: {integrity: sha512-eE4OaTlb5KZdCehWmDARq2KEmMF7DEeFLjKqFDcZNb56k1DMSsa9zCQRXZMovlf2AXLsx0A/1q+SGAEgzF7G3w==}
engines: {node: '>= 14.0.0'}
'@algolia/client-personalization@4.23.3':
@@ -982,8 +991,8 @@ packages:
'@algolia/client-search@4.23.3':
resolution: {integrity: sha512-P4VAKFHqU0wx9O+q29Q8YVuaowaZ5EM77rxfmGnkHUJggh28useXQdopokgwMeYw2XUht49WX5RcTQ40rZIabw==}
- '@algolia/client-search@5.8.1':
- resolution: {integrity: sha512-zy3P4fI28GfzKihUw5+L76pEedQxyLDiMsdDYEWghIz8yAnELDatPNEThyWuUk8fD0PeVoCi1M4tr1iz00fOtQ==}
+ '@algolia/client-search@5.10.2':
+ resolution: {integrity: sha512-rGX8uil2uvPycFgtS9Fzwvh4tgKvfFWG5RIh3E77W42HrO66bykCf9jHqhIIlCxdDJih1PuUqBYZIkIAAoSkww==}
engines: {node: '>= 14.0.0'}
'@algolia/logger-common@4.23.3':
@@ -998,22 +1007,22 @@ packages:
'@algolia/requester-browser-xhr@4.23.3':
resolution: {integrity: sha512-jDWGIQ96BhXbmONAQsasIpTYWslyjkiGu0Quydjlowe+ciqySpiDUrJHERIRfELE5+wFc7hc1Q5hqjGoV7yghw==}
- '@algolia/requester-browser-xhr@5.8.1':
- resolution: {integrity: sha512-x0iULVrx5PocaYBqH+G6jyEsEHf7m5FDiZW7CP8AaJdzdCzoUyx7YH6e6TSCNlkFEjwmn8uj05coN8uljCHXTg==}
+ '@algolia/requester-browser-xhr@5.10.2':
+ resolution: {integrity: sha512-gzlfE/H05ggDiEWNi8WaDSRhpE5X8rD1JqYKPPeM31JRI3TutQIKAk3MSUsa1bHM/Di56r2Gm6L1g3ZlZv2ETA==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-common@4.23.3':
resolution: {integrity: sha512-xloIdr/bedtYEGcXCiF2muajyvRhwop4cMZo+K2qzNht0CMzlRkm8YsDdj5IaBhshqfgmBb3rTg4sL4/PpvLYw==}
- '@algolia/requester-fetch@5.8.1':
- resolution: {integrity: sha512-SRWGrNsKSLNYIDNlVKVkf4wxsm6h57xI+0b8JPm0wUe0ly0jymAgQU2yW2GDzNuXyiPiS7U1oWwaVGs71IT5Pw==}
+ '@algolia/requester-fetch@5.10.2':
+ resolution: {integrity: sha512-Q27ciW9WRdq3pUITVlxpHIwe9QWOe+oPvgs8Z+gsv8vMkwXnLfANvSgeZCyQgx3SqzUPzhel0ozVq7Qoh8xIkg==}
engines: {node: '>= 14.0.0'}
'@algolia/requester-node-http@4.23.3':
resolution: {integrity: sha512-zgu++8Uj03IWDEJM3fuNl34s746JnZOWn1Uz5taV1dFyJhVM/kTNw9Ik7YJWiUNHJQXcaD8IXD1eCb0nq/aByA==}
- '@algolia/requester-node-http@5.8.1':
- resolution: {integrity: sha512-pYylr2gBsV68E88bltaVoJHIc3YNIllVmA12d+jefAcutR9ytQM7iP6dXbCYuRqF4CHF32YvZuwvqNI3J4kowA==}
+ '@algolia/requester-node-http@5.10.2':
+ resolution: {integrity: sha512-WMUQ4iFhNnQXC4F1Yj51x8tgIvq5h8jtTLMBs7LbMiW6JhnLHfBVl7IVk6X1fZJO5YcvXW051HN8aFlfAb5QEw==}
engines: {node: '>= 14.0.0'}
'@algolia/transporter@4.23.3':
@@ -1045,19 +1054,26 @@ packages:
resolution: {integrity: sha512-FYp6GBAgsNz81BkfItRz8RLZO03w5+BaeiPma1uCfmxTnxbtuMrI/dbzGiOk8VghO108uFI0oJo0OkewdSHw7g==}
engines: {node: '>=18'}
+ '@asamuzakjp/css-color@2.8.3':
+ resolution: {integrity: sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==}
+
'@babel/code-frame@7.10.4':
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
- '@babel/code-frame@7.25.7':
- resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
+ '@babel/code-frame@7.25.9':
+ resolution: {integrity: sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.8':
- resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
+ '@babel/compat-data@7.25.9':
+ resolution: {integrity: sha512-yD+hEuJ/+wAJ4Ox2/rpNv5HIuPG82x3ZlQvYVn8iYCprdxzE7P1udpGF1jyjQVBU4dgznN+k2h103vxZ7NdPyw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.25.8':
- resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==}
+ '@babel/core@7.25.9':
+ resolution: {integrity: sha512-WYvQviPw+Qyib0v92AwNIrdLISTp7RfDkM7bPqBvpbnhY4wq8HvHBZREVdYDXk98C8BkOIVnHAY3yvj7AVISxQ==}
engines: {node: '>=6.9.0'}
'@babel/core@7.9.0':
@@ -1068,34 +1084,32 @@ packages:
resolution: {integrity: sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.7':
- resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
+ '@babel/generator@7.25.9':
+ resolution: {integrity: sha512-omlUGkr5EaoIJrhLf9CJ0TvjBRpd9+AXRG//0GEQ9THSo8wPiTlbpy1/Ow8ZTrbXpjd9FHXfbFQx32I04ht0FA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.24.7':
- resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
+ '@babel/generator@7.26.5':
+ resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.7':
- resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==}
+ '@babel/helper-annotate-as-pure@7.24.7':
+ resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
- resolution: {integrity: sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.7':
- resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.7':
- resolution: {integrity: sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.25.7':
- resolution: {integrity: sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==}
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1106,8 +1120,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.25.7':
- resolution: {integrity: sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==}
+ '@babel/helper-create-regexp-features-plugin@7.25.9':
+ resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1129,62 +1143,50 @@ packages:
resolution: {integrity: sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.7':
- resolution: {integrity: sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-member-expression-to-functions@7.25.7':
- resolution: {integrity: sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.22.5':
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-module-imports@7.25.7':
- resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.7':
- resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
+ '@babel/helper-module-transforms@7.25.9':
+ resolution: {integrity: sha512-TvLZY/F3+GvdRYFZFyxMvnsKi+4oJdgZzU3BoGN9Uc2d9C6zfNwJcKKhjqLAhK8i46mv93jsO74fDh3ih6rpHA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.24.7':
- resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-optimise-call-expression@7.25.7':
- resolution: {integrity: sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.25.7':
- resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
+ '@babel/helper-plugin-utils@7.25.9':
+ resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.7':
- resolution: {integrity: sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==}
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.25.7':
- resolution: {integrity: sha512-iy8JhqlUW9PtZkd4pHM96v6BdJ66Ba9yWSE4z0W4TvSZwLBPkyDsiIU3ENe4SmrzRBs76F7rQXTy1lYC49n6Lw==}
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.25.7':
- resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
- resolution: {integrity: sha512-pPbNbchZBkPMD50K0p3JGcFMNLVUCuU/ABybm/PGNj4JiHrpmNyqqCphBk4i19xXtNV0JhldQJJtbSW5aUvbyA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
'@babel/helper-split-export-declaration@7.24.7':
@@ -1195,8 +1197,8 @@ packages:
resolution: {integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.7':
- resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.7':
@@ -1207,63 +1209,57 @@ packages:
resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.7':
- resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.7':
- resolution: {integrity: sha512-MA0roW3JF2bD1ptAaJnvcabsVlNQShUaThyJbCDD4bCp8NEgiFvpoqRI2YS22hHlc2thjO/fTg2ShLMC3jygAg==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.7':
- resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.25.7':
- resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
+ '@babel/helpers@7.25.9':
+ resolution: {integrity: sha512-oKWp3+usOJSzDZOucZUAMayhPz/xVjzymyDzUN8dk0Wd3RWMlGLXi07UCQ/CgQVb8LvXx3XBajJH4XGgkt7H7g==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.7':
- resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.24.8':
- resolution: {integrity: sha512-WzfbgXOkGzZiXXCqk43kKwZjzwx4oulxZi3nq2TYL9mOjQv6kYwul9mz6ID36njuL7Xkp6nJEfok848Zj10j/w==}
- engines: {node: '>=6.0.0'}
- hasBin: true
+ '@babel/highlight@7.25.9':
+ resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
+ engines: {node: '>=6.9.0'}
- '@babel/parser@7.25.8':
- resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
+ '@babel/parser@7.21.9':
+ resolution: {integrity: sha512-q5PNg/Bi1OpGgx5jYlvWZwAorZepEudDMCLtj967aeS7WMont7dUZI46M2XwcIQqvUlMxWfdLFu4S/qSxeUu5g==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7':
- resolution: {integrity: sha512-UV9Lg53zyebzD1DwQoT9mzkEKa922LNUp5YkTJ6Uta0RbyXaQNUgcvSt7qIu1PpPzVb6rd10OVNTzkyBGeVmxQ==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7':
- resolution: {integrity: sha512-GDDWeVLNxRIkQTnJn2pDOM1pkCgYdSqPeT1a9vh9yIqu2uzzgw1zcqEb+IJOhy+dTBMlNdThrDIksr2o09qrrQ==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7':
- resolution: {integrity: sha512-wxyWg2RYaSUYgmd9MR0FyRGyeOMQE/Uzr1wzd/g5cf5bwi9A4v6HFdDm7y1MgDtod/fLOSTZY6jDgV0xU9d5bA==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7':
- resolution: {integrity: sha512-Xwg6tZpLxc4iQjorYsyGMyfJE7nP5MV8t/Ka58BgiA7Jw0fRqQNcANlLfdJ/yvBt9z9LD2We+BEkT7vLqZRWng==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7':
- resolution: {integrity: sha512-UVATLMidXrnH+GMUIuxq55nejlj02HP7F5ETyBONzP6G87fPBogG4CH6kxrSrdIuAjdwNO9VzyaYsrZPscWUrw==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1282,14 +1278,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-decorators@7.25.7':
- resolution: {integrity: sha512-q1mqqqH0e1lhmsEQHV5U8OmdueBC2y0RFr2oUzZoFRtN3MvPmt2fsFRcNQAoGLTSNdHBFUYGnlgcRFhkBbKjPw==}
+ '@babel/plugin-proposal-decorators@7.25.9':
+ resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-export-default-from@7.25.8':
- resolution: {integrity: sha512-5SLPHA/Gk7lNdaymtSVS9jH77Cs7yuHTR3dYj+9q+M7R7tNLXhNuvnmOfafRIzpWL+dtMibuu1I4ofrc768Gkw==}
+ '@babel/plugin-proposal-export-default-from@7.25.9':
+ resolution: {integrity: sha512-ykqgwNfSnNOB+C8fV5X4mG3AVmvu+WVxcaU9xHHtBb7PCrPeweMmPjGsn8eMaeJg6SJuoUuZENeeSWaarWqonQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1350,14 +1346,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-class-static-block@7.14.5':
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-decorators@7.24.7':
resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-decorators@7.25.7':
- resolution: {integrity: sha512-oXduHo642ZhstLVYTe2z2GSJIruU0c/W3/Ghr6A5yGMsVrvdnxO1z+3pbTcT7f3/Clnt+1z8D/w1r1f1SHaCHw==}
+ '@babel/plugin-syntax-decorators@7.25.9':
+ resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1367,8 +1369,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-default-from@7.25.7':
- resolution: {integrity: sha512-LRUCsC0YucSjabsmxx6yly8+Q/5mxKdp9gemlpR9ro3bfpcOQOXx/CHivs7QCbjgygd6uQ2GcRfHu1FVax/hgg==}
+ '@babel/plugin-syntax-export-default-from@7.25.9':
+ resolution: {integrity: sha512-9MhJ/SMTsVqsd69GyQg89lYR4o9T+oDGv5F6IsigxxqFVOyR/IflDLYP8WDI1l8fkhNGGktqkvL5qwNCtGEpgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1378,8 +1380,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.25.7':
- resolution: {integrity: sha512-fyoj6/YdVtlv2ROig/J0fP7hh/wNO1MJGm1NR70Pg7jbkF+jOUL9joorqaCOQh06Y+LfgTagHzC8KqZ3MF782w==}
+ '@babel/plugin-syntax-flow@7.25.9':
+ resolution: {integrity: sha512-F3FVgxwamIRS3+kfjNaPARX0DSAiH1exrQUVajXiR34hkdA9eyK+8rJbnu55DQjKL/ayuXqjNr2HDXwBEMEtFQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1390,14 +1392,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.25.7':
- resolution: {integrity: sha512-ZvZQRmME0zfJnDQnVBKYzHxXT7lYBB3Revz1GuS7oLXWMgqUPX4G+DDbT30ICClht9WKV34QVrZhSw6WdklwZQ==}
+ '@babel/plugin-syntax-import-assertions@7.25.9':
+ resolution: {integrity: sha512-4GHX5uzr5QMOOuzV0an9MFju4hKlm0OyePl/lHhcsTVae5t/IKVHnb8W67Vr6FuLlk5lPqLB7n7O+K5R46emYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.25.7':
- resolution: {integrity: sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==}
+ '@babel/plugin-syntax-import-attributes@7.25.9':
+ resolution: {integrity: sha512-u3EN9ub8LyYvgTnrgp8gboElouayiwPdnM7x5tcnW3iSt09/lQYPwMNK40I9IUxo7QOZhAsPHCmmuO7EPdruqg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1418,8 +1420,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.25.7':
- resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1454,6 +1456,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-private-property-in-object@7.14.5':
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -1466,8 +1474,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.7':
- resolution: {integrity: sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1478,32 +1486,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.25.7':
- resolution: {integrity: sha512-EJN2mKxDwfOUCPxMO6MUI58RN3ganiRAG/MS/S3HfB6QFNjroAMelQo/gybyYq97WerCBAZoyrAoW8Tzdq2jWg==}
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.25.8':
- resolution: {integrity: sha512-9ypqkozyzpG+HxlH4o4gdctalFGIjjdufzo7I2XPda0iBnZ6a+FO0rIEQcdSPXp02CkvGsII1exJhmROPQd5oA==}
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.25.7':
- resolution: {integrity: sha512-ZUCjAavsh5CESCmi/xCpX1qcCaAglzs/7tmuvoFnJgA1dM7gQplsguljoTg+Ru8WENpX89cQyAtWoaE0I3X3Pg==}
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.25.7':
- resolution: {integrity: sha512-xHttvIM9fvqW+0a3tZlYcZYSBpSWzGBFIt/sYG3tcdSzBB8ZeVgz2gBP7Df+sM0N1850jrviYSSeUuc+135dmQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.25.7':
- resolution: {integrity: sha512-ZEPJSkVZaeTFG/m2PARwLZQ+OG0vFIhPlKHK/JdIMy8DbRJ/htz6LRrTFtdzxi9EHmcwbNPAKDnadpNSIW+Aow==}
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1514,62 +1522,62 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.25.7':
- resolution: {integrity: sha512-mhyfEW4gufjIqYFo9krXHJ3ElbFLIze5IDp+wQTxoPd+mwFb1NxatNAwmv8Q8Iuxv7Zc+q8EkiMQwc9IhyGf4g==}
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.25.8':
- resolution: {integrity: sha512-e82gl3TCorath6YLf9xUwFehVvjvfqFhdOo4+0iVIVju+6XOi5XHkqB3P2AXnSwoeTX0HBoXq5gJFtvotJzFnQ==}
+ '@babel/plugin-transform-class-static-block@7.25.9':
+ resolution: {integrity: sha512-UIf+72C7YJ+PJ685/PpATbCz00XqiFEzHX5iysRwfvNT0Ko+FaXSvRgLytFSp8xUItrG9pFM/KoBBZDrY/cYyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.7':
- resolution: {integrity: sha512-9j9rnl+YCQY0IGoeipXvnk3niWicIB6kCsWRGLwX241qSXpbA4MKxtp/EdvFxsc4zI5vqfLxzOd0twIJ7I99zg==}
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.25.7':
- resolution: {integrity: sha512-QIv+imtM+EtNxg/XBKL3hiWjgdLjMOmZ+XzQwSgmBfKbfxUjBzGgVPklUuE55eq5/uVoh8gg3dqlrwR/jw3ZeA==}
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.25.7':
- resolution: {integrity: sha512-xKcfLTlJYUczdaM1+epcdh1UGewJqr9zATgrNHcLBcV2QmfvPPEixo/sK/syql9cEmbr7ulu5HMFG5vbbt/sEA==}
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.25.7':
- resolution: {integrity: sha512-kXzXMMRzAtJdDEgQBLF4oaiT6ZCU3oWHgpARnTKDAqPkDJ+bs3NrZb310YYevR5QlRo3Kn7dzzIdHbZm1VzJdQ==}
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.25.7':
- resolution: {integrity: sha512-by+v2CjoL3aMnWDOyCIg+yxU9KXSRa9tN6MbqggH5xvymmr9p4AMjYkNlQy4brMceBnUyHZ9G8RnpvT8wP7Cfg==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7':
- resolution: {integrity: sha512-HvS6JF66xSS5rNKXLqkk7L9c/jZ/cdIVIcoPVrnl8IsVpLggTjXs8OWekbLHs/VtYDDh5WXnQyeE3PPUGm22MA==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.25.8':
- resolution: {integrity: sha512-gznWY+mr4ZQL/EWPcbBQUP3BXS5FwZp8RUOw06BaRn8tQLzN4XLIxXejpHN9Qo8x8jjBmAAKp6FoS51AgkSA/A==}
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.25.7':
- resolution: {integrity: sha512-yjqtpstPfZ0h/y40fAXRv2snciYr0OAoMXY/0ClC7tm4C/nG5NJKmIItlaYlLbIVAWNfrYuy9dq1bE0SbX0PEg==}
+ '@babel/plugin-transform-exponentiation-operator@7.25.9':
+ resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1580,92 +1588,92 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.25.8':
- resolution: {integrity: sha512-sPtYrduWINTQTW7FtOy99VCTWp4H23UX7vYcut7S4CIMEXU+54zKX9uCoGkLsWXteyaMXzVHgzWbLfQ1w4GZgw==}
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.25.7':
- resolution: {integrity: sha512-q8Td2PPc6/6I73g96SreSUCKEcwMXCwcXSIAVTyTTN6CpJe0dMj8coxu1fg1T9vfBLi6Rsi6a4ECcFBbKabS5w==}
+ '@babel/plugin-transform-flow-strip-types@7.25.9':
+ resolution: {integrity: sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.25.7':
- resolution: {integrity: sha512-n/TaiBGJxYFWvpJDfsxSj9lEEE44BFM1EPGz4KEiTipTgkoFVVcCmzAL3qA7fdQU96dpo4gGf5HBx/KnDvqiHw==}
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.7':
- resolution: {integrity: sha512-5MCTNcjCMxQ63Tdu9rxyN6cAWurqfrDZ76qvVPrGYdBxIj+EawuuxTu/+dgJlhK5eRz3v1gLwp6XwS8XaX2NiQ==}
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.25.8':
- resolution: {integrity: sha512-4OMNv7eHTmJ2YXs3tvxAfa/I43di+VcF+M4Wt66c88EAED1RoGaf1D64cL5FkRpNL+Vx9Hds84lksWvd/wMIdA==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.7':
- resolution: {integrity: sha512-fwzkLrSu2fESR/cm4t6vqd7ebNIopz2QHGtjoU+dswQo/P6lwAG04Q98lliE3jkz/XqnbGFLnUcE0q0CVUf92w==}
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.25.8':
- resolution: {integrity: sha512-f5W0AhSbbI+yY6VakT04jmxdxz+WsID0neG7+kQZbCOjuyJNdL5Nn4WIBm4hRpKnUcO9lP0eipUhFN12JpoH8g==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.25.7':
- resolution: {integrity: sha512-Std3kXwpXfRV0QtQy5JJcRpkqP8/wG4XL7hSKZmGlxPlDqmpXtEPRmhF7ztnlTCtUN3eXRUJp+sBEZjaIBVYaw==}
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.25.7':
- resolution: {integrity: sha512-CgselSGCGzjQvKzghCvDTxKHP3iooenLpJDO842ehn5D2G5fJB222ptnDwQho0WjEvg7zyoxb9P+wiYxiJX5yA==}
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.25.7':
- resolution: {integrity: sha512-L9Gcahi0kKFYXvweO6n0wc3ZG1ChpSFdgG+eV1WYZ3/dGbJK7vvk91FgGgak8YwRgrCuihF8tE/Xg07EkL5COg==}
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.25.7':
- resolution: {integrity: sha512-t9jZIvBmOXJsiuyOwhrIGs8dVcD6jDyg2icw1VL4A/g+FnWyJKwUfSSU2nwJuMV2Zqui856El9u+ElB+j9fV1g==}
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.25.7':
- resolution: {integrity: sha512-p88Jg6QqsaPh+EB7I9GJrIqi1Zt4ZBHUQtjw3z1bzEXcLh6GfPqzZJ6G+G1HBGKUNukT58MnKG7EN7zXQBCODw==}
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7':
- resolution: {integrity: sha512-BtAT9LzCISKG3Dsdw5uso4oV1+v2NlVXIIomKJgQybotJY3OwCwJmkongjHgwGKoZXd0qG5UZ12JUlDQ07W6Ow==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.25.7':
- resolution: {integrity: sha512-CfCS2jDsbcZaVYxRFo2qtavW8SpdzmBXC2LOI4oO0rP+JSRDxxF3inF4GcPsLgfb5FjkhXG5/yR/lxuRs2pySA==}
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.8':
- resolution: {integrity: sha512-Z7WJJWdQc8yCWgAmjI3hyC+5PXIubH9yRKzkl9ZEG647O9szl9zvmKLzpbItlijBnVhTUf1cpyWBsZ3+2wjWPQ==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1676,8 +1684,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.25.8':
- resolution: {integrity: sha512-rm9a5iEFPS4iMIy+/A/PiS0QN0UyjPIeVvbU5EMZFKJZHt8vQnasbpo3T3EFcxzCeYO0BHfc4RqooCZc51J86Q==}
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1688,62 +1696,62 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.25.8':
- resolution: {integrity: sha512-LkUu0O2hnUKHKE7/zYOIjByMa4VRaV2CD/cdGz0AxU9we+VA3kDDggKEzI0Oz1IroG+6gUP6UmWEHBMWZU316g==}
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.25.7':
- resolution: {integrity: sha512-pWT6UXCEW3u1t2tcAGtE15ornCBvopHj9Bps9D2DsH15APgNVOTwwczGckX+WkAvBmuoYKRCFa4DK+jM8vh5AA==}
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.25.8':
- resolution: {integrity: sha512-EbQYweoMAHOn7iJ9GgZo14ghhb9tTjgOc88xFgYngifx7Z9u580cENCV159M4xDh3q/irbhSjZVpuhpC2gKBbg==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.25.8':
- resolution: {integrity: sha512-q05Bk7gXOxpTHoQ8RSzGSh/LHVB9JEIkKnk3myAWwZHnYiTGYtbdrYkIsS8Xyh4ltKf7GNUSgzs/6P2bJtBAQg==}
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.25.7':
- resolution: {integrity: sha512-FYiTvku63me9+1Nz7TOx4YMtW3tWXzfANZtrzHhUZrz4d47EEtMQhzFoZWESfXuAMMT5mwzD4+y1N8ONAX6lMQ==}
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.25.7':
- resolution: {integrity: sha512-KY0hh2FluNxMLwOCHbxVOKfdB5sjWG4M183885FmaqWWiGMhRZq4DQRKH6mHdEucbJnyDyYiZNwNG424RymJjA==}
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.25.8':
- resolution: {integrity: sha512-8Uh966svuB4V8RHHg0QJOB32QK287NBksJOByoKmHMp1TAobNniNalIkI2i5IPj5+S9NYCG4VIjbEuiSN8r+ow==}
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.25.7':
- resolution: {integrity: sha512-lQEeetGKfFi0wHbt8ClQrUSUMfEeI3MMm74Z73T9/kuz990yYVtfofjf3NuA42Jy3auFOpbjDyCSiIkTs1VIYw==}
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.25.7':
- resolution: {integrity: sha512-r0QY7NVU8OnrwE+w2IWiRom0wwsTbjx4+xH2RTd7AVdof3uurXOF+/mXHQDRk+2jIvWgSaCHKMgggfvM4dyUGA==}
+ '@babel/plugin-transform-react-display-name@7.25.9':
+ resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-development@7.25.7':
- resolution: {integrity: sha512-5yd3lH1PWxzW6IZj+p+Y4OLQzz0/LzlOG8vGqonHfVR3euf1vyzyMUJk9Ac+m97BH46mFc/98t9PmYLyvgL3qg==}
+ '@babel/plugin-transform-react-jsx-development@7.25.9':
+ resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1754,8 +1762,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.25.7':
- resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==}
+ '@babel/plugin-transform-react-jsx-self@7.25.9':
+ resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1766,32 +1774,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.25.7':
- resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==}
+ '@babel/plugin-transform-react-jsx-source@7.25.9':
+ resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.25.7':
- resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==}
+ '@babel/plugin-transform-react-jsx@7.25.9':
+ resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-pure-annotations@7.25.7':
- resolution: {integrity: sha512-6YTHJ7yjjgYqGc8S+CbEXhLICODk0Tn92j+vNJo07HFk9t3bjFgAKxPLFhHwF2NjmQVSI1zBRfBWUeVBa2osfA==}
+ '@babel/plugin-transform-react-pure-annotations@7.25.9':
+ resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.25.7':
- resolution: {integrity: sha512-mgDoQCRjrY3XK95UuV60tZlFCQGXEtMg8H+IsW72ldw1ih1jZhzYXbJvghmAEpg5UVhhnCeia1CkGttUvCkiMQ==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.25.7':
- resolution: {integrity: sha512-3OfyfRRqiGeOvIWSagcwUTVk2hXBsr/ww7bLn6TRTuXnexA+Udov2icFOxFX9abaj4l96ooYkcNN1qi2Zvqwng==}
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1802,80 +1810,80 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.25.7':
- resolution: {integrity: sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==}
+ '@babel/plugin-transform-runtime@7.25.9':
+ resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.25.7':
- resolution: {integrity: sha512-uBbxNwimHi5Bv3hUccmOFlUy3ATO6WagTApenHz9KzoIdn0XeACdB12ZJ4cjhuB2WSi80Ez2FWzJnarccriJeA==}
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.25.7':
- resolution: {integrity: sha512-Mm6aeymI0PBh44xNIv/qvo8nmbkpZze1KvR8MkEqbIREDxoiWTi18Zr2jryfRMwDfVZF9foKh060fWgni44luw==}
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.25.7':
- resolution: {integrity: sha512-ZFAeNkpGuLnAQ/NCsXJ6xik7Id+tHuS+NT+ue/2+rn/31zcdnupCdmunOizEaP0JsUmTFSTOPoQY7PkK2pttXw==}
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.25.7':
- resolution: {integrity: sha512-SI274k0nUsFFmyQupiO7+wKATAmMFf8iFgq2O+vVFXZ0SV9lNfT1NGzBEhjquFmD8I9sqHLguH+gZVN3vww2AA==}
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.25.7':
- resolution: {integrity: sha512-OmWmQtTHnO8RSUbL0NTdtpbZHeNTnm68Gj5pA4Y2blFNh+V4iZR68V1qL9cI37J21ZN7AaCnkfdHtLExQPf2uA==}
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.7':
- resolution: {integrity: sha512-VKlgy2vBzj8AmEzunocMun2fF06bsSWV+FvVXohtL6FGve/+L217qhHxRTVGHEDO/YR8IANcjzgJsd04J8ge5Q==}
+ '@babel/plugin-transform-typescript@7.25.9':
+ resolution: {integrity: sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.25.7':
- resolution: {integrity: sha512-BN87D7KpbdiABA+t3HbVqHzKWUDN3dymLaTnPFAMyc8lV+KN3+YzNhVRNdinaCPA4AUqx7ubXbQ9shRjYBl3SQ==}
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.25.7':
- resolution: {integrity: sha512-IWfR89zcEPQGB/iB408uGtSPlQd3Jpq11Im86vUgcmSTcoWAiQMCTOa2K2yNNqFJEBVICKhayctee65Ka8OB0w==}
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.25.7':
- resolution: {integrity: sha512-8JKfg/hiuA3qXnlLx8qtv5HWRbgyFx2hMMtpDDuU2rTckpKkGu4ycK5yYHwuEa16/quXfoxHBIApEsNyMWnt0g==}
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.25.7':
- resolution: {integrity: sha512-YRW8o9vzImwmh4Q3Rffd09bH5/hvY0pxg+1H1i0f7APoUeg12G7+HhLj9ZFNIrYkgBXhIijPJ+IXypN0hLTIbw==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.25.8':
- resolution: {integrity: sha512-58T2yulDHMN8YMUxiLq5YmWUnlDCyY1FsHM+v12VMx+1/FlrUj5tY50iDCpofFQEM8fMYOaY9YRvym2jcjn1Dg==}
+ '@babel/preset-env@7.25.9':
+ resolution: {integrity: sha512-XqDEt+hfsQukahSX9JOBDHhpUHDhj2zGSxoqWQFCMajOSBnbhBdgON/bU/5PkBA1yX5tqW6tTzuIPVsZTQ7h5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.25.7':
- resolution: {integrity: sha512-q2x3g0YHzo/Ohsr51KOYS/BtZMsvkzVd8qEyhZAyTatYdobfgXCuyppTqTuIhdq5kR/P3nyyVvZ6H5dMc4PnCQ==}
+ '@babel/preset-flow@7.25.9':
+ resolution: {integrity: sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1885,20 +1893,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.25.7':
- resolution: {integrity: sha512-GjV0/mUEEXpi1U5ZgDprMRRgajGMRW3G5FjMr5KLKD8nT2fTG8+h/klV3+6Dm5739QE+K5+2e91qFKAYI3pmRg==}
+ '@babel/preset-react@7.25.9':
+ resolution: {integrity: sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.25.7':
- resolution: {integrity: sha512-rkkpaXJZOFN45Fb+Gki0c+KMIglk4+zZXOoMJuyEK8y8Kkc8Jd3BDmP7qPsz0zQMJj+UD7EprF+AqAXcILnexw==}
+ '@babel/preset-typescript@7.25.9':
+ resolution: {integrity: sha512-XWxw1AcKk36kgxf4C//fl0ikjLeqGUWn062/Fd8GtpTfDJOX6Ud95FK+4JlDA36BX4bNGndXi3a6Vr4Jo5/61A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.25.7':
- resolution: {integrity: sha512-qHTd2Rhn/rKhSUwdY6+n98FmwXN+N+zxSVx3zWqRe9INyvTpv+aQ5gDV2+43ACd3VtMBzPPljbb0gZb8u5ma6Q==}
+ '@babel/register@7.25.9':
+ resolution: {integrity: sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1914,32 +1922,37 @@ packages:
resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.25.7':
- resolution: {integrity: sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==}
+ '@babel/runtime@7.25.9':
+ resolution: {integrity: sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.7':
- resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.24.7':
resolution: {integrity: sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.7':
- resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/traverse@7.26.5':
+ resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.24.7':
resolution: {integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.8':
- resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
+ '@babel/types@7.25.9':
+ resolution: {integrity: sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==}
engines: {node: '>=6.9.0'}
- '@base2/pretty-print-object@1.0.1':
- resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
+ '@babel/types@7.26.5':
+ resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
+ engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -1969,6 +1982,34 @@ packages:
'@corex/deepmerge@4.0.43':
resolution: {integrity: sha512-N8uEMrMPL0cu/bdboEWpQYb/0i2K5Qn8eCsxzOmxSggJbbQte7ljMRoXm917AbntqTGOzdTu+vP3KOOzoC70HQ==}
+ '@csstools/color-helpers@5.0.1':
+ resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
+ engines: {node: '>=18'}
+
+ '@csstools/css-calc@2.1.1':
+ resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.4
+ '@csstools/css-tokenizer': ^3.0.3
+
+ '@csstools/css-color-parser@3.0.7':
+ resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.4
+ '@csstools/css-tokenizer': ^3.0.3
+
+ '@csstools/css-parser-algorithms@3.0.4':
+ resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.3
+
+ '@csstools/css-tokenizer@3.0.3':
+ resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
+ engines: {node: '>=18'}
+
'@docsearch/css@3.6.2':
resolution: {integrity: sha512-vKNZepO2j7MrYBTZIGXvlUOIR+v9KRf70FApRgovWrj3GTs1EITz/Xb0AOlm1xsQBp16clVZj1SY/qaOJbQtZw==}
@@ -2017,8 +2058,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.23.1':
- resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ '@esbuild/aix-ppc64@0.24.2':
+ resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -2041,8 +2082,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.23.1':
- resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ '@esbuild/android-arm64@0.24.2':
+ resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -2065,8 +2106,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.23.1':
- resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ '@esbuild/android-arm@0.24.2':
+ resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -2089,8 +2130,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.23.1':
- resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ '@esbuild/android-x64@0.24.2':
+ resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -2113,8 +2154,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.23.1':
- resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ '@esbuild/darwin-arm64@0.24.2':
+ resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -2137,8 +2178,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.23.1':
- resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ '@esbuild/darwin-x64@0.24.2':
+ resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -2161,8 +2202,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.23.1':
- resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ '@esbuild/freebsd-arm64@0.24.2':
+ resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -2185,8 +2226,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.23.1':
- resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ '@esbuild/freebsd-x64@0.24.2':
+ resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -2209,8 +2250,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.23.1':
- resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ '@esbuild/linux-arm64@0.24.2':
+ resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -2233,8 +2274,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.23.1':
- resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ '@esbuild/linux-arm@0.24.2':
+ resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -2257,8 +2298,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.23.1':
- resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ '@esbuild/linux-ia32@0.24.2':
+ resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -2281,8 +2322,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.23.1':
- resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ '@esbuild/linux-loong64@0.24.2':
+ resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -2305,8 +2346,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.23.1':
- resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ '@esbuild/linux-mips64el@0.24.2':
+ resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -2329,8 +2370,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.23.1':
- resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ '@esbuild/linux-ppc64@0.24.2':
+ resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -2353,8 +2394,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.23.1':
- resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ '@esbuild/linux-riscv64@0.24.2':
+ resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -2377,8 +2418,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.23.1':
- resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ '@esbuild/linux-s390x@0.24.2':
+ resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -2401,12 +2442,18 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.23.1':
- resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ '@esbuild/linux-x64@0.24.2':
+ resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ '@esbuild/netbsd-arm64@0.24.2':
+ resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.17.6':
resolution: {integrity: sha512-EanJqcU/4uZIBreTrnbnre2DXgXSa+Gjap7ifRfllpmyAU7YMvaXmljdArptTHmjrkkKm9BK6GH5D5Yo+p6y5A==}
engines: {node: '>=12'}
@@ -2425,14 +2472,14 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.1':
- resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ '@esbuild/netbsd-x64@0.24.2':
+ resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.1':
- resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ '@esbuild/openbsd-arm64@0.24.2':
+ resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -2455,8 +2502,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.23.1':
- resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ '@esbuild/openbsd-x64@0.24.2':
+ resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -2479,8 +2526,8 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.23.1':
- resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ '@esbuild/sunos-x64@0.24.2':
+ resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -2503,8 +2550,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.23.1':
- resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ '@esbuild/win32-arm64@0.24.2':
+ resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -2527,8 +2574,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.23.1':
- resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ '@esbuild/win32-ia32@0.24.2':
+ resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -2551,8 +2598,8 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.23.1':
- resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ '@esbuild/win32-x64@0.24.2':
+ resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -2563,16 +2610,26 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
'@eslint-community/regexpp@4.11.1':
resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+
'@eslint/config-array@0.18.0':
resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.6.0':
- resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==}
+ '@eslint/core@0.7.0':
+ resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.1.0':
@@ -2583,6 +2640,10 @@ packages:
resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/js@9.13.0':
+ resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/object-schema@2.1.4':
resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2597,7 +2658,7 @@ packages:
'@expo/bunyan@4.0.1':
resolution: {integrity: sha512-+Lla7nYSiHZirgK+U/uYzsLv/X+HaJienbD5AKX1UQZHYfWaP+9uuQluRB4GrEVWF0GZ7vEVp/jzaOT9k/SQlg==}
- engines: {'0': node >=0.10.0}
+ engines: {node: '>=0.10.0'}
'@expo/cli@0.4.11':
resolution: {integrity: sha512-L9Ci9RBh0aPFEDF1AjDYPk54OgeUJIKzxF3lRgITm+lQpI3IEKjAc9LaYeQeO1mlZMUQmPkHArF8iyz1eOeVoQ==}
@@ -2726,8 +2787,8 @@ packages:
'@formatjs/icu-messageformat-parser@2.1.0':
resolution: {integrity: sha512-Qxv/lmCN6hKpBSss2uQ8IROVnta2r9jd3ymUEIjm2UyIkUCHVcbUVRGL/KS/wv7876edvsPe+hjHVJ4z8YuVaw==}
- '@formatjs/icu-messageformat-parser@2.7.10':
- resolution: {integrity: sha512-wlQfqCZ7PURkUNL2+8VTEFavPovtADU/isSKLFvDbdFmV7QPZIYqFMkhklaDYgMyLSBJa/h2MVQ2aFvoEJhxgg==}
+ '@formatjs/icu-messageformat-parser@2.8.0':
+ resolution: {integrity: sha512-r2un3fmF9oJv3mOkH+wwQZ037VpqmdfahbcCZ9Lh+p6Sx+sNsonI7Zcr6jNMm1s+Si7ejQORS4Ezlh05mMPAXA==}
'@formatjs/icu-skeleton-parser@1.3.6':
resolution: {integrity: sha512-I96mOxvml/YLrwU2Txnd4klA7V8fRhb6JG/4hm3VMNmeJo1F03IpV2L3wWt7EweqNLES59SZ4d6hVOPCSf80Bg==}
@@ -3024,6 +3085,10 @@ packages:
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
+ '@jridgewell/gen-mapping@0.3.8':
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
+ engines: {node: '>=6.0.0'}
+
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
@@ -3053,8 +3118,8 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/json-pack@1.1.0':
- resolution: {integrity: sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==}
+ '@jsonjoy.com/json-pack@1.1.1':
+ resolution: {integrity: sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -3116,10 +3181,13 @@ packages:
resolution: {integrity: sha512-1Tra2KvyAkJxFOAr8j69nZ7tCq4kswOPVu4C6ZbrcMf6GGQwuBaZH9M9nG5HP3tBShsdEA7+WVfSSgQGnRSclA==}
engines: {node: ^18.0.0 || >=20.0.0}
- '@mdx-js/loader@3.0.1':
- resolution: {integrity: sha512-YbYUt7YyEOdFxhyuCWmLKf5vKhID/hJAojEUnheJk4D8iYVLFQw+BAoBWru/dHGch1omtmZOPstsmKPyBF68Tw==}
+ '@mdx-js/loader@3.1.0':
+ resolution: {integrity: sha512-xU/lwKdOyfXtQGqn3VnJjlDrmKXEvMi1mgYxVmukEUtVycIz1nh7oQ40bKTd4cA7rLStqu0740pnhGYxGoqsCg==}
peerDependencies:
webpack: '>=5'
+ peerDependenciesMeta:
+ webpack:
+ optional: true
'@mdx-js/mdx@2.3.0':
resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
@@ -3127,8 +3195,11 @@ packages:
'@mdx-js/mdx@3.0.1':
resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
- '@mdx-js/react@3.0.1':
- resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
+
+ '@mdx-js/react@3.1.0':
+ resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
@@ -3230,8 +3301,8 @@ packages:
'@next/env@13.5.6':
resolution: {integrity: sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==}
- '@next/env@14.2.15':
- resolution: {integrity: sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==}
+ '@next/env@14.2.16':
+ resolution: {integrity: sha512-fLrX5TfJzHCbnZ9YUSnGW63tMV3L4nSfhgOQ0iCcX21Pt+VSTDuaLsSuL8J/2XAiVA5AnzvXDpf6pMs60QxOag==}
'@next/env@15.0.3':
resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==}
@@ -3265,8 +3336,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-arm64@14.2.15':
- resolution: {integrity: sha512-Rvh7KU9hOUBnZ9TJ28n2Oa7dD9cvDBKua9IKx7cfQQ0GoYUwg9ig31O2oMwH3wm+pE3IkAQ67ZobPfEgurPZIA==}
+ '@next/swc-darwin-arm64@14.2.16':
+ resolution: {integrity: sha512-uFT34QojYkf0+nn6MEZ4gIWQ5aqGF11uIZ1HSxG+cSbj+Mg3+tYm8qXYd3dKN5jqKUm5rBVvf1PBRO/MeQ6rxw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -3283,8 +3354,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.15':
- resolution: {integrity: sha512-5TGyjFcf8ampZP3e+FyCax5zFVHi+Oe7sZyaKOngsqyaNEpOgkKB3sqmymkZfowy3ufGA/tUgDPPxpQx931lHg==}
+ '@next/swc-darwin-x64@14.2.16':
+ resolution: {integrity: sha512-mCecsFkYezem0QiZlg2bau3Xul77VxUD38b/auAjohMA22G9KTJneUYMv78vWoCCFkleFAhY1NIvbyjj1ncG9g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -3313,8 +3384,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-gnu@14.2.15':
- resolution: {integrity: sha512-3Bwv4oc08ONiQ3FiOLKT72Q+ndEMyLNsc/D3qnLMbtUYTQAmkx9E/JRu0DBpHxNddBmNT5hxz1mYBphJ3mfrrw==}
+ '@next/swc-linux-arm64-gnu@14.2.16':
+ resolution: {integrity: sha512-yhkNA36+ECTC91KSyZcgWgKrYIyDnXZj8PqtJ+c2pMvj45xf7y/HrgI17hLdrcYamLfVt7pBaJUMxADtPaczHA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -3331,8 +3402,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.15':
- resolution: {integrity: sha512-k5xf/tg1FBv/M4CMd8S+JL3uV9BnnRmoe7F+GWC3DxkTCD9aewFRH1s5rJ1zkzDa+Do4zyN8qD0N8c84Hu96FQ==}
+ '@next/swc-linux-arm64-musl@14.2.16':
+ resolution: {integrity: sha512-X2YSyu5RMys8R2lA0yLMCOCtqFOoLxrq2YbazFvcPOE4i/isubYjkh+JCpRmqYfEuCVltvlo+oGfj/b5T2pKUA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -3349,8 +3420,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.15':
- resolution: {integrity: sha512-kE6q38hbrRbKEkkVn62reLXhThLRh6/TvgSP56GkFNhU22TbIrQDEMrO7j0IcQHcew2wfykq8lZyHFabz0oBrA==}
+ '@next/swc-linux-x64-gnu@14.2.16':
+ resolution: {integrity: sha512-9AGcX7VAkGbc5zTSa+bjQ757tkjr6C/pKS7OK8cX7QEiK6MHIIezBLcQ7gQqbDW2k5yaqba2aDtaBeyyZh1i6Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -3367,8 +3438,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.15':
- resolution: {integrity: sha512-PZ5YE9ouy/IdO7QVJeIcyLn/Rc4ml9M2G4y3kCM9MNf1YKvFY4heg3pVa/jQbMro+tP6yc4G2o9LjAz1zxD7tQ==}
+ '@next/swc-linux-x64-musl@14.2.16':
+ resolution: {integrity: sha512-Klgeagrdun4WWDaOizdbtIIm8khUDQJ/5cRzdpXHfkbY91LxBXeejL4kbZBrpR/nmgRrQvmz4l3OtttNVkz2Sg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -3385,8 +3456,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@next/swc-win32-arm64-msvc@14.2.15':
- resolution: {integrity: sha512-2raR16703kBvYEQD9HNLyb0/394yfqzmIeyp2nDzcPV4yPjqNUG3ohX6jX00WryXz6s1FXpVhsCo3i+g4RUX+g==}
+ '@next/swc-win32-arm64-msvc@14.2.16':
+ resolution: {integrity: sha512-PwW8A1UC1Y0xIm83G3yFGPiOBftJK4zukTmk7DI1CebyMOoaVpd8aSy7K6GhobzhkjYvqS/QmzcfsWG2Dwizdg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -3403,8 +3474,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.15':
- resolution: {integrity: sha512-fyTE8cklgkyR1p03kJa5zXEaZ9El+kDNM5A+66+8evQS5e/6v0Gk28LqA0Jet8gKSOyP+OTm/tJHzMlGdQerdQ==}
+ '@next/swc-win32-ia32-msvc@14.2.16':
+ resolution: {integrity: sha512-jhPl3nN0oKEshJBNDAo0etGMzv0j3q3VYorTSFqH1o3rwv1MQRdor27u1zhkgsHPNeY1jxcgyx1ZsCkDD1IHgg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
@@ -3415,8 +3486,8 @@ packages:
cpu: [x64]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.15':
- resolution: {integrity: sha512-SzqGbsLsP9OwKNUG9nekShTwhj6JSB9ZLMWQ8g1gG6hdE5gQLncbnbymrwy2yVmH9nikSLYRYxYMFu78Ggp7/g==}
+ '@next/swc-win32-x64-msvc@14.2.16':
+ resolution: {integrity: sha512-OA7NtfxgirCjfqt+02BqxC3MIgM/JaGjw9tOe4fyZgPsqfseNiMPnCRP44Pfs+Gpo9zPN+SXaFsgP6vk8d571A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -4093,10 +4164,6 @@ packages:
'@remix-run/web-stream@1.1.0':
resolution: {integrity: sha512-KRJtwrjRV5Bb+pM7zxcTJkhIqWWSy+MYsIxHK+0m5atcznsf15YwUBWHWulZerV2+vvHH1Lp1DD7pw6qKW8SgA==}
- '@resvg/resvg-wasm@2.4.0':
- resolution: {integrity: sha512-C7c51Nn4yTxXFKvgh2txJFNweaVcfUPQxwEUFw4aWsCmfiBDJsTSwviIF8EcwjQ6k8bPyMWCl1vw4BdxE569Cg==}
- engines: {node: '>= 10'}
-
'@rollup/plugin-babel@6.0.4':
resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==}
engines: {node: '>=14.0.0'}
@@ -4271,11 +4338,6 @@ packages:
'@shikijs/vscode-textmate@9.3.0':
resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
- '@shuding/opentype.js@1.4.0-beta.0':
- resolution: {integrity: sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==}
- engines: {node: '>= 8.0.0'}
- hasBin: true
-
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -4353,52 +4415,57 @@ packages:
peerDependencies:
size-limit: 11.1.6
- '@storybook/builder-webpack5@8.3.5':
- resolution: {integrity: sha512-rhmfdiSlDn3Arki7IMYk11PO29rYuYM4LZ8GlNqREU7VUl/8Vngo/jFIa4pKaIns3ql1RrwzO1wm9JvuL/4ydA==}
+ '@storybook/builder-webpack5@8.5.1':
+ resolution: {integrity: sha512-QkDK1Je0Kl/Lnh/rqb5mdBhsyixHK47i6Ar+TLcWp2bvd9fCaiM6lgXXawu+KF9LQ23WkeK/q0u9iAS0dmZNjQ==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.5.1
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@storybook/components@8.3.5':
- resolution: {integrity: sha512-Rq28YogakD3FO4F8KwAtGpo1g3t4V/gfCLqTQ8B6oQUFoxLqegkWk/DlwCzvoJndXuQJfdSyM6+r1JcA4Nql5A==}
+ '@storybook/components@8.5.1':
+ resolution: {integrity: sha512-dgZfIIRdI7yA9bYb1rhWzbvU4AnbndAeNhLouxHJkUR5r2Ycp9mJba5UNynN1slgDOxB+VMnq1fWKyfWQrBqnw==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@storybook/core-webpack@8.3.5':
- resolution: {integrity: sha512-mN8BHNc6lSGUf/nKgDr6XoTt1cX+Tap9RnKMUiROCDzfVlJPeJBrG4qrTOok7AwObzeDl9DNFyun6+pVgXJe7A==}
+ '@storybook/core-webpack@8.5.1':
+ resolution: {integrity: sha512-7U6H6wx9eKBkkjOXxFj9NYpiylNmxP4gZmoBYE78YBm8alorTeYRziRLsYBPO60XwOtfTyzi62JTR61AaxbrBw==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.5.1
- '@storybook/core@8.3.5':
- resolution: {integrity: sha512-GOGfTvdioNa/n+Huwg4u/dsyYyBcM+gEcdxi3B7i5x4yJ3I912KoVshumQAOF2myKSRdI8h8aGWdx7nnjd0+5Q==}
+ '@storybook/core@8.5.1':
+ resolution: {integrity: sha512-4zxjclENpZYuNY1fZJE4a7hd8Ho/SiOSN2B57fsIi1qCpKax3JU3J59ZcAWT0iidy5qgM2qMcWbrl0Bl/tWamA==}
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
- '@storybook/csf@0.1.11':
- resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==}
+ '@storybook/csf@0.1.12':
+ resolution: {integrity: sha512-9/exVhabisyIVL0VxTCxo01Tdm8wefIXKXfltAPTSr8cbLn5JAxGQ6QV3mjdecLGEOucfoVhAKtJfVHxEK1iqw==}
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/instrumenter@8.3.5':
- resolution: {integrity: sha512-NLDXai5y2t1ITgHVK9chyL0rMFZbICCOGcnTbyWhkLbiEWZKPJ8FuB8+g+Ba6zwtCve1A1Cnb4O2LOWy7TgWQw==}
+ '@storybook/instrumenter@8.5.1':
+ resolution: {integrity: sha512-wMAhsIzwOh/xXKANAP3IbtXxRWFAZtpRisB0sy8WVTPS3a1L1cA6X+U80Ex/omek6L0FZwKZSKmmfkDeZkYnCQ==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.5.1
- '@storybook/manager-api@8.3.5':
- resolution: {integrity: sha512-fEQoKKi7h7pzh2z9RfuzatJxubrsfL/CB99fNXQ0wshMSY/7O4ckd18pK4fzG9ErnCtLAO9qsim4N/4eQC+/8Q==}
+ '@storybook/manager-api@8.5.1':
+ resolution: {integrity: sha512-Oj9kPYbp/82LRQ+rsc0ZH0fkzeiT2U1kvubmNiRjtopQHCP3UTVnvWIXC9zSRFKmS+NaAdd0JYsIBvE8fjnoqQ==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@storybook/nextjs@8.3.5':
- resolution: {integrity: sha512-YMjDSVd7BHIvj6oLMEFMKRvfZ83INxZinxtrx4ZZXGe+5iP8j7rcV7D67lxKQKWNy36d9Foj4pjT85yYj5s+ZQ==}
+ '@storybook/nextjs@8.5.1':
+ resolution: {integrity: sha512-JJjP4IqSmQxhmMJbmv1n0JzL6AzW2OyOVCbCg8L9WqwU0tj1KCjfuYQJ0LyNQ/uxl5+zESJXmfdsN/0HryHD0g==}
engines: {node: '>=18.0.0'}
peerDependencies:
- next: ^13.5.0 || ^14.0.0
+ next: ^13.5.0 || ^14.0.0 || ^15.0.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.5
+ storybook: ^8.5.1
typescript: '*'
webpack: ^5.0.0
peerDependenciesMeta:
@@ -4407,22 +4474,22 @@ packages:
webpack:
optional: true
- '@storybook/preset-react-webpack@8.3.5':
- resolution: {integrity: sha512-laS9CiZrZ4CSnBTBfkBba3hmlDhzcjIfCvx8/rk3SZ+zh93NpqXixzRt6m0UH2po63dpdu21nXrsW5Cfs88Ypw==}
+ '@storybook/preset-react-webpack@8.5.1':
+ resolution: {integrity: sha512-bdQm28kb1HlC45gtcQe7RspJr7eTv+ES+4aDmerTuPZm43dl9pPps+GQyAiYQzStSWmUKBAxOsY9l7HzsCEvQw==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.5
+ storybook: ^8.5.1
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@storybook/preview-api@8.3.5':
- resolution: {integrity: sha512-VPqpudE8pmjTLvdNJoW/2//nqElDgUOmIn3QxbbCmdZTHDg5tFtxuqwdlNfArF0TxvTSBDIulXt/Q6K56TAfTg==}
+ '@storybook/preview-api@8.5.1':
+ resolution: {integrity: sha512-fLR7nvAbjHVLazDA6CLy9O/bpBzKDKqxyBp6SybTBPYa76IzsX8ITSMMt1YcP6rOGhVgcKNA9iBNxRddjLIV0Q==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
'@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0':
resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==}
@@ -4430,21 +4497,21 @@ packages:
typescript: '>= 4.x'
webpack: '>= 4'
- '@storybook/react-dom-shim@8.3.5':
- resolution: {integrity: sha512-Hf0UitJ/K0C7ajooooUK/PxOR4ihUWqsC7iCV1Gqth8U37dTeLMbaEO4PBwu0VQ+Ufg0N8BJLWfg7o6G4hrODw==}
+ '@storybook/react-dom-shim@8.5.1':
+ resolution: {integrity: sha512-peDiT6A1zyODKd7tVQIiFNU42Iolca67h3kkOQPb7nm/Czf2yIa/BHw+yiNDZx82eCIEvBy1Xf7lnjH8PD61xA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.5
+ storybook: ^8.5.1
- '@storybook/react@8.3.5':
- resolution: {integrity: sha512-kuBPe/wBin10SWr4EWPKxiTRGQ4RD2etGEVWVQLqVpOuJp/J2hVvXQHtCfZXU4TZT5x4PBbPRswbr58+XlF+kQ==}
+ '@storybook/react@8.5.1':
+ resolution: {integrity: sha512-wKhR9SZUbpYUxRDAYUHH4fZHVxiNG43PxT1uvLfX/i7TPMw+wW+G3Q2yrgms1oHmqqRCvlnGHwT5/t9FFxN31w==}
engines: {node: '>=18.0.0'}
peerDependencies:
- '@storybook/test': 8.3.5
+ '@storybook/test': 8.5.1
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.5
+ storybook: ^8.5.1
typescript: '>= 4.2.x'
peerDependenciesMeta:
'@storybook/test':
@@ -4452,15 +4519,15 @@ packages:
typescript:
optional: true
- '@storybook/test@8.3.5':
- resolution: {integrity: sha512-1BXWsUGWk9FiKKelZZ55FDJdeoL8uRBHbjTYBRM2xJLhdNSvGzI4Tb3bkmxPpGn72Ua6AyldhlTxr2BpUFKOHA==}
+ '@storybook/test@8.5.1':
+ resolution: {integrity: sha512-V0sEXqL5kS0YKugCqWgmCpNODdlCCiVlPqm3i+E2+G97DR980BwXf8J6VPscQDRS9ZG39BrM83Aau6Anxrt1Tg==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.5.1
- '@storybook/theming@8.3.5':
- resolution: {integrity: sha512-9HmDDyC691oqfg4RziIM9ElsS2HITaxmH7n/yeUPtuirkPdAQzqOzhvH/Sa0qOhifzs8VjR+Gd/a/ZQ+S38r7w==}
+ '@storybook/theming@8.5.1':
+ resolution: {integrity: sha512-sg61vY1gM8w42CIi28vo//6E1gHgHLNBNaRhkfvLFpu9PuhAcVWLwBDZq0BoKmDMxRxbSPV2gvIKeXdOtbSCJw==}
peerDependencies:
- storybook: ^8.3.5
+ storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
@@ -4580,23 +4647,23 @@ packages:
'@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
- '@types/escodegen@0.0.6':
- resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==}
+ '@types/eslint-scope@3.7.7':
+ resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
+
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
'@types/estree-jsx@1.0.5':
resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
- '@types/estree@0.0.51':
- resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
-
'@types/estree@1.0.6':
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express-serve-static-core@5.0.0':
- resolution: {integrity: sha512-AbXMTZGt40T+KON9/Fdxx0B2WK5hsgxcfXJLr5bFpZ7b4JCex2WyQPTEKdXqfHiY5nKKBScZ7yCoO6Pvgxfvnw==}
+ '@types/express-serve-static-core@5.0.5':
+ resolution: {integrity: sha512-GLZPrd9ckqEBFMcVM/qRFAP0Hg3qiVEojgEFsx/N/zKXsBzbGF6z5FBDpZ0+Xhp1xr+qRZYjfGr1cWHB9oFHSA==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -4634,8 +4701,8 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
- '@types/jest@29.5.13':
- resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==}
+ '@types/jest@29.5.14':
+ resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
'@types/jsdom@20.0.1':
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
@@ -4649,8 +4716,8 @@ packages:
'@types/katex@0.16.7':
resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==}
- '@types/lodash@4.17.10':
- resolution: {integrity: sha512-YpS0zzoduEhuOWjAotS6A5AVCva7X4lVlYLF0FYHAY9sdraBfnatttHItlWeZdGhuEkf+OzMNg2ZYAx8t+52uQ==}
+ '@types/lodash@4.17.12':
+ resolution: {integrity: sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==}
'@types/mdast@3.0.15':
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
@@ -4682,11 +4749,14 @@ packages:
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
- '@types/node@20.16.11':
- resolution: {integrity: sha512-y+cTCACu92FyA5fgQSAI8A1H429g7aSK2HsO7K4XYUWc4dY5IUz55JSDIYT6/VsOLfGy8vmvQYC2hfb0iF16Uw==}
+ '@types/node@20.17.0':
+ resolution: {integrity: sha512-a7zRo0f0eLo9K5X9Wp5cAqTUNGzuFLDG2R7C4HY2BhcMAsxgSPuRvAC1ZB6QkuUQXf0YZAgfOX2ZyrBa2n4nHQ==}
- '@types/node@22.7.5':
- resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==}
+ '@types/node@20.17.16':
+ resolution: {integrity: sha512-vOTpLduLkZXePLxHiHsBLp98mHGnl8RptV4YAO3HfKO5UHjDvySGbxKtpYfy8Sx5+WKcgc45qNreJJRVM3L6mw==}
+
+ '@types/node@22.10.9':
+ resolution: {integrity: sha512-Ir6hwgsKyNESl/gLOcEz3krR4CBGgliDqBQ2ma4wIhEx0w+xnoeTq3tdrNw15kU3SxogDjOgv9sqdtLW8mIHaw==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -4700,8 +4770,8 @@ packages:
'@types/q@1.5.8':
resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==}
- '@types/qs@6.9.16':
- resolution: {integrity: sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==}
+ '@types/qs@6.9.18':
+ resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
@@ -4709,8 +4779,8 @@ packages:
'@types/react-dom@18.3.1':
resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
- '@types/react@18.3.11':
- resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==}
+ '@types/react@18.3.12':
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -4760,14 +4830,14 @@ packages:
'@types/webpack-sources@3.2.3':
resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==}
- '@types/webpack@4.41.39':
- resolution: {integrity: sha512-otxUJvoi6FbBq/64gGH34eblpKLgdi+gf08GaAh8Bx6So0ZZic028Ev/SUxD22gbthMKCkeeiXEat1kHLDJfYg==}
+ '@types/webpack@4.41.40':
+ resolution: {integrity: sha512-u6kMFSBM9HcoTpUXnL6mt2HSzftqb3JgYV6oxIgL2dl6sX6aCa5k6SOkzv5DuZjBTPUE/dJltKtwwuqrkZHpfw==}
'@types/webpack@5.28.5':
resolution: {integrity: sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==}
- '@types/ws@8.5.12':
- resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==}
+ '@types/ws@8.5.13':
+ resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -4784,6 +4854,17 @@ packages:
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
+ '@typescript-eslint/eslint-plugin@8.11.0':
+ resolution: {integrity: sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/eslint-plugin@8.9.0':
resolution: {integrity: sha512-Y1n621OCy4m7/vTXNlCbMVp87zSd7NH0L9cXD8aIpOaNlzeWxIK4+Q19A68gSmTNRZn92UjocVUWDthGxtqHFg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4795,6 +4876,16 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/parser@8.11.0':
+ resolution: {integrity: sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/parser@8.9.0':
resolution: {integrity: sha512-U+BLn2rqTTHnc4FL3FJjxaXptTxmf9sNftJK62XLz4+GxG3hLHm/SUNaaXP5Y4uTiuYoL5YLy4JBCJe3+t8awQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4805,10 +4896,23 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/scope-manager@8.11.0':
+ resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/scope-manager@8.9.0':
resolution: {integrity: sha512-bZu9bUud9ym1cabmOYH9S6TnbWRzpklVmwqICeOulTCZ9ue2/pczWzQvt/cGj2r2o1RdKoZbuEMalJJSYw3pHQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/type-utils@8.11.0':
+ resolution: {integrity: sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/type-utils@8.9.0':
resolution: {integrity: sha512-JD+/pCqlKqAk5961vxCluK+clkppHY07IbV3vett97KOV+8C6l+CPEPwpUuiMwgbOz/qrN3Ke4zzjqbT+ls+1Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4818,10 +4922,23 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/types@8.11.0':
+ resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/types@8.9.0':
resolution: {integrity: sha512-SjgkvdYyt1FAPhU9c6FiYCXrldwYYlIQLkuc+LfAhCna6ggp96ACncdtlbn8FmnG72tUkXclrDExOpEYf1nfJQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/typescript-estree@8.11.0':
+ resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+
'@typescript-eslint/typescript-estree@8.9.0':
resolution: {integrity: sha512-9iJYTgKLDG6+iqegehc5+EqE6sqaee7kb8vWpmHZ86EqwDjmlqNNHeqDVqb9duh+BY6WCNHfIGvuVU3Tf9Db0g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4831,12 +4948,22 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/utils@8.11.0':
+ resolution: {integrity: sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+
'@typescript-eslint/utils@8.9.0':
resolution: {integrity: sha512-PKgMmaSo/Yg/F7kIZvrgrWa1+Vwn036CdNUvYFEkYbPwOH4i8xvkaRlu148W3vtheWK9ckKRIz7PBP5oUlkrvQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
+ '@typescript-eslint/visitor-keys@8.11.0':
+ resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/visitor-keys@8.9.0':
resolution: {integrity: sha512-Ht4y38ubk4L5/U8xKUBfKNYGmvKvA1CANoxiTRMM+tOLk3lbF3DvzZCxJCRSE+2GdCMSh6zq9VZJc3asc1XuAA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4882,17 +5009,13 @@ packages:
react:
optional: true
- '@vercel/og@0.6.3':
- resolution: {integrity: sha512-aoCrC9FqkeA+WEEb9CwSmjD0rGlFeNqbUsI41JPmKWR9Hx6FFn86tvH96O5HZMF6VAXTGHxa3nPH3BokROpdgA==}
- engines: {node: '>=16'}
-
- '@vercel/speed-insights@1.0.12':
- resolution: {integrity: sha512-ZGQ+a7bcfWJD2VYEp2R1LHvRAMyyaFBYytZXsfnbOMkeOvzGNVxUL7aVUvisIrTZjXTSsxG45DKX7yiw6nq2Jw==}
+ '@vercel/speed-insights@1.0.13':
+ resolution: {integrity: sha512-3iuOMB/M0WE3Zeuoo2mnlD7Eo7fGH7RBGi92Vq4qO7Kp+BwNbpwFqkjuPQDEeBxoGQLJFRICrsx5/IluHZVCZA==}
peerDependencies:
'@sveltejs/kit': ^1 || ^2
next: '>= 13'
react: ^18 || ^19
- svelte: ^4
+ svelte: '>= 4'
vue: ^3
vue-router: ^4
peerDependenciesMeta:
@@ -4909,8 +5032,8 @@ packages:
vue-router:
optional: true
- '@vitejs/plugin-react@4.3.2':
- resolution: {integrity: sha512-hieu+o05v4glEBucTcKMK3dlES0OeJlD9YVOAPraVMOInBCwzumaIFiUjr4bHK7NPgnAHgiskUoceKercrN8vg==}
+ '@vitejs/plugin-react@4.3.3':
+ resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
@@ -4952,6 +5075,9 @@ packages:
'@vitest/pretty-format@2.1.3':
resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
+ '@vitest/pretty-format@2.1.8':
+ resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==}
+
'@vitest/runner@2.1.3':
resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
@@ -4970,30 +5096,45 @@ packages:
'@vitest/utils@2.1.3':
resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
+ '@vitest/utils@2.1.8':
+ resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==}
+
'@web3-storage/multipart-parser@1.0.0':
resolution: {integrity: sha512-BEO6al7BYqcnfX15W2cnGR+Q566ACXAT9UQykORCWW80lmkpWsnEob6zJS1ZVBKsSJC8+7vJkHwlp+lXG1UCdw==}
'@webassemblyjs/ast@1.12.1':
resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
+ '@webassemblyjs/ast@1.14.1':
+ resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
+
'@webassemblyjs/ast@1.9.0':
resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==}
'@webassemblyjs/floating-point-hex-parser@1.11.6':
resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
+
'@webassemblyjs/floating-point-hex-parser@1.9.0':
resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==}
'@webassemblyjs/helper-api-error@1.11.6':
resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
+ '@webassemblyjs/helper-api-error@1.13.2':
+ resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
+
'@webassemblyjs/helper-api-error@1.9.0':
resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==}
'@webassemblyjs/helper-buffer@1.12.1':
resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
+ '@webassemblyjs/helper-buffer@1.14.1':
+ resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
+
'@webassemblyjs/helper-buffer@1.9.0':
resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==}
@@ -5009,57 +5150,87 @@ packages:
'@webassemblyjs/helper-numbers@1.11.6':
resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ '@webassemblyjs/helper-numbers@1.13.2':
+ resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
+
'@webassemblyjs/helper-wasm-bytecode@1.11.6':
resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
+
'@webassemblyjs/helper-wasm-bytecode@1.9.0':
resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==}
'@webassemblyjs/helper-wasm-section@1.12.1':
resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
+
'@webassemblyjs/helper-wasm-section@1.9.0':
resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==}
'@webassemblyjs/ieee754@1.11.6':
resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ '@webassemblyjs/ieee754@1.13.2':
+ resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
+
'@webassemblyjs/ieee754@1.9.0':
resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==}
'@webassemblyjs/leb128@1.11.6':
resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ '@webassemblyjs/leb128@1.13.2':
+ resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
+
'@webassemblyjs/leb128@1.9.0':
resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==}
'@webassemblyjs/utf8@1.11.6':
resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ '@webassemblyjs/utf8@1.13.2':
+ resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
+
'@webassemblyjs/utf8@1.9.0':
resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==}
'@webassemblyjs/wasm-edit@1.12.1':
resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ '@webassemblyjs/wasm-edit@1.14.1':
+ resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
+
'@webassemblyjs/wasm-edit@1.9.0':
resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==}
'@webassemblyjs/wasm-gen@1.12.1':
resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ '@webassemblyjs/wasm-gen@1.14.1':
+ resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
+
'@webassemblyjs/wasm-gen@1.9.0':
resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==}
'@webassemblyjs/wasm-opt@1.12.1':
resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ '@webassemblyjs/wasm-opt@1.14.1':
+ resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
+
'@webassemblyjs/wasm-opt@1.9.0':
resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==}
'@webassemblyjs/wasm-parser@1.12.1':
resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ '@webassemblyjs/wasm-parser@1.14.1':
+ resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
+
'@webassemblyjs/wasm-parser@1.9.0':
resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==}
@@ -5069,12 +5240,16 @@ packages:
'@webassemblyjs/wast-printer@1.12.1':
resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ '@webassemblyjs/wast-printer@1.14.1':
+ resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
+
'@webassemblyjs/wast-printer@1.9.0':
resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
'@xmldom/xmldom@0.7.13':
resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==}
engines: {node: '>=10.0.0'}
+ deprecated: this version is no longer supported, please update to at least 0.8.*
'@xmldom/xmldom@0.8.10':
resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
@@ -5128,10 +5303,6 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
-
acorn-walk@8.3.3:
resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==}
engines: {node: '>=0.4.0'}
@@ -5141,11 +5312,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
acorn@8.12.0:
resolution: {integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==}
engines: {node: '>=0.4.0'}
@@ -5156,6 +5322,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
add-stream@1.0.0:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
@@ -5175,6 +5346,10 @@ packages:
resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
+ agent-base@7.1.3:
+ resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
+ engines: {node: '>= 14'}
+
aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
@@ -5572,6 +5747,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ babel-preset-current-node-syntax@1.1.0:
+ resolution: {integrity: sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
babel-preset-expo@9.2.2:
resolution: {integrity: sha512-69cSPObZWFz0AaUT6IhCu2VzPVTICUtXzhX5ecoDttFe+9wb9yMV8m7rBNZptJQ3wtiKB5iEL7/wvtKygPz/mQ==}
@@ -5607,10 +5787,6 @@ packages:
bare-stream@2.3.0:
resolution: {integrity: sha512-pVRWciewGUeCyKEuRxwv06M079r+fRjAQjBEK2P6OYGrO43O+Z0LrPZZEjlc4mB6C2RpZ9AxJ1s7NLEtOHO6eA==}
- base64-js@0.0.8:
- resolution: {integrity: sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==}
- engines: {node: '>= 0.4'}
-
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -5682,8 +5858,8 @@ packages:
resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
- bonjour-service@1.2.1:
- resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==}
+ bonjour-service@1.3.0:
+ resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
bonjour@3.5.0:
resolution: {integrity: sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==}
@@ -5757,6 +5933,16 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
+ browserslist@4.24.4:
+ resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
bser@2.1.1:
resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -5847,6 +6033,10 @@ packages:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
+ call-bind-apply-helpers@1.0.1:
+ resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ engines: {node: '>= 0.4'}
+
call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
@@ -5854,6 +6044,14 @@ packages:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
+ call-bind@1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.3:
+ resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ engines: {node: '>= 0.4'}
+
caller-callsite@2.0.0:
resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
engines: {node: '>=4'}
@@ -5885,15 +6083,15 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- camelize@1.0.1:
- resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
-
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
caniuse-lite@1.0.30001669:
resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==}
+ caniuse-lite@1.0.30001695:
+ resolution: {integrity: sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==}
+
case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
engines: {node: '>=4'}
@@ -5905,6 +6103,10 @@ packages:
resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
engines: {node: '>=12'}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
+ engines: {node: '>=12'}
+
chalk@2.3.0:
resolution: {integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==}
engines: {node: '>=4'}
@@ -6235,6 +6437,10 @@ packages:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
+ compression@1.7.5:
+ resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==}
+ engines: {node: '>= 0.8.0'}
+
compute-scroll-into-view@3.1.0:
resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==}
@@ -6248,6 +6454,9 @@ packages:
confbox@0.1.7:
resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
+
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
@@ -6331,10 +6540,6 @@ packages:
resolution: {integrity: sha512-78KWk9T26NhzXtuL26cIJ8/qNHANyJ/ZYrmEXFzUmhZdjpBv+DlWlOANRTGBt48YcyslsLrj0bMLFTmXvLRCOw==}
engines: {node: '>=6.6.0'}
- cookie@0.5.0:
- resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
- engines: {node: '>= 0.6'}
-
cookie@0.6.0:
resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
engines: {node: '>= 0.6'}
@@ -6343,6 +6548,10 @@ packages:
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
+ engines: {node: '>= 0.6'}
+
copy-concurrently@1.0.5:
resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
deprecated: This package is no longer supported.
@@ -6434,16 +6643,6 @@ packages:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
- css-background-parser@0.1.0:
- resolution: {integrity: sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA==}
-
- css-box-shadow@1.0.0-3:
- resolution: {integrity: sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg==}
-
- css-color-keywords@1.0.0:
- resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
- engines: {node: '>=4'}
-
css-color-names@0.0.4:
resolution: {integrity: sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==}
@@ -6481,9 +6680,6 @@ packages:
css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
- css-to-react-native@3.2.0:
- resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
-
css-tree@1.0.0-alpha.37:
resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==}
engines: {node: '>=8.0.0'}
@@ -6550,8 +6746,8 @@ packages:
resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
engines: {node: '>=8'}
- cssstyle@4.1.0:
- resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==}
+ cssstyle@4.2.1:
+ resolution: {integrity: sha512-9+vem03dMXG7gDmZ62uqmRiMRNtinIZ9ZyuF6BdxzfOD+FdN5hretzynkn0ReS2DO2GSw76RWHs0UmJPI2zUjw==}
engines: {node: '>=18'}
csstype@3.1.3:
@@ -6807,6 +7003,15 @@ packages:
supports-color:
optional: true
+ debug@4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decamelize@1.2.0:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
@@ -7087,6 +7292,10 @@ packages:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
@@ -7102,6 +7311,12 @@ packages:
electron-to-chromium@1.5.39:
resolution: {integrity: sha512-4xkpSR6CjuiaNyvwiWDI85N9AxsvbPawB8xc7yzLPonYTuP19BVgYweKyUMFtHEZgIcHWMt1ks5Cqx2m+6/Grg==}
+ electron-to-chromium@1.5.45:
+ resolution: {integrity: sha512-vOzZS6uZwhhbkZbcRyiy99Wg+pYFV5hk+5YaECvx0+Z31NR3Tt5zS6dze2OepT6PCTzVzT0dIJItti+uAW5zmw==}
+
+ electron-to-chromium@1.5.86:
+ resolution: {integrity: sha512-/D7GAAaCRBQFBBcop6SfAAGH37djtpWkOuYhyAajw0l5vsfeSsUQYxaFPwr1c/mC/flARCDdKFo5gpFqNI+18w==}
+
elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -7157,6 +7372,10 @@ packages:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
+ enhanced-resolve@5.18.0:
+ resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
+ engines: {node: '>=10.13.0'}
+
entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
@@ -7212,6 +7431,10 @@ packages:
resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
+
es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
@@ -7229,10 +7452,17 @@ packages:
es-module-lexer@1.5.4:
resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ es-module-lexer@1.6.0:
+ resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
+ es-object-atoms@1.1.1:
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+ engines: {node: '>= 0.4'}
+
es-set-tostringtag@2.0.3:
resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
engines: {node: '>= 0.4'}
@@ -7244,6 +7474,12 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
+ esast-util-from-estree@2.0.0:
+ resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
+
+ esast-util-from-js@2.0.1:
+ resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==}
+
esbuild-plugins-node-modules-polyfill@1.6.4:
resolution: {integrity: sha512-x3MCOvZrKDGAfqAYS/pZUUSwiN+XH7x84A+Prup0CZBJKuGfuGkTAC4g01D6JPs/GCM9wzZVfd8bmiy+cP/iXA==}
engines: {node: '>=14.0.0'}
@@ -7270,8 +7506,8 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.23.1:
- resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
+ esbuild@0.24.2:
+ resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
engines: {node: '>=18'}
hasBin: true
@@ -7445,8 +7681,8 @@ packages:
resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.12.0:
- resolution: {integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==}
+ eslint@9.13.0:
+ resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -7514,6 +7750,9 @@ packages:
estree-util-is-identifier-name@3.0.0:
resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
+ estree-util-scope@1.0.0:
+ resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==}
+
estree-util-to-js@1.2.0:
resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
@@ -7595,8 +7834,8 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
- execa@9.4.0:
- resolution: {integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==}
+ execa@9.4.1:
+ resolution: {integrity: sha512-5eo/BRqZm3GYce+1jqX/tJ7duA2AnE39i88fuedNFUV8XxGxUpF3aWkBRfbUcjV49gCkvS/pzc0YrCPhaIewdg==}
engines: {node: ^18.19.0 || >=20.5.0}
exit-hook@2.2.1:
@@ -7675,6 +7914,10 @@ packages:
resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
engines: {node: '>= 0.10.0'}
+ express@4.21.2:
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+ engines: {node: '>= 0.10.0'}
+
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -7705,6 +7948,10 @@ packages:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ engines: {node: '>=8.6.0'}
+
fast-json-parse@1.0.3:
resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==}
@@ -7764,9 +8011,6 @@ packages:
fetch-retry@4.1.1:
resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==}
- fflate@0.7.4:
- resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==}
-
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -7869,6 +8113,9 @@ packages:
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flatted@3.3.2:
+ resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+
flexsearch@0.7.43:
resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==}
@@ -7876,8 +8123,8 @@ packages:
resolution: {integrity: sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==}
engines: {node: '>=0.4.0'}
- flow-parser@0.248.1:
- resolution: {integrity: sha512-fkCfVPelbTzSVp+jVwSvEyc+I4WG8MNhRG/EWSZZTlgHAMEdhXJaFEbfErXxMktboMhVGchvEFhWxkzNGM1m2A==}
+ flow-parser@0.250.0:
+ resolution: {integrity: sha512-8mkLh/CotlvqA9vCyQMbhJoPx2upEg9oKxARAayz8zQ58wCdABnTZy6U4xhMHvHvbTUFgZQk4uH2cglOCOel5A==}
engines: {node: '>=0.4.0'}
flush-write-stream@1.1.1:
@@ -7983,6 +8230,10 @@ packages:
resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
engines: {node: '>=14.14'}
+ fs-extra@11.3.0:
+ resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
+ engines: {node: '>=14.14'}
+
fs-extra@7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
@@ -8071,6 +8322,10 @@ packages:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
+ get-intrinsic@1.2.7:
+ resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ engines: {node: '>= 0.4'}
+
get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
@@ -8087,6 +8342,10 @@ packages:
resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
engines: {node: '>=8'}
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
+
get-stream@3.0.0:
resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
engines: {node: '>=4'}
@@ -8233,6 +8492,10 @@ packages:
gopd@1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -8305,6 +8568,10 @@ packages:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
+
has-tostringtag@1.0.0:
resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
engines: {node: '>= 0.4'}
@@ -8425,10 +8692,6 @@ packages:
hex-color-regex@1.1.0:
resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==}
- hex-rgb@4.3.0:
- resolution: {integrity: sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==}
- engines: {node: '>=6'}
-
highlight.js@10.7.3:
resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
@@ -8492,10 +8755,6 @@ packages:
engines: {node: '>=12'}
hasBin: true
- html-tags@3.3.1:
- resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
- engines: {node: '>=8'}
-
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
@@ -8505,8 +8764,8 @@ packages:
peerDependencies:
webpack: '>=4.0.0 < 6.0.0'
- html-webpack-plugin@5.6.0:
- resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
+ html-webpack-plugin@5.6.3:
+ resolution: {integrity: sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==}
engines: {node: '>=10.13.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -8579,6 +8838,10 @@ packages:
resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
engines: {node: '>= 14'}
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
+
human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
@@ -8734,8 +8997,8 @@ packages:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
- intl-messageformat@10.7.0:
- resolution: {integrity: sha512-2P06M9jFTqJnEQzE072VGPjbAx6ZG1YysgopAwc8ui0ajSjtwX1MeQ6bXFXIzKcNENJTizKkcJIcZ0zlpl1zSg==}
+ intl-messageformat@10.7.1:
+ resolution: {integrity: sha512-xQuJW2WcyzNJZWUu5xTVPOmNSA1Sowuu/NKFdUid5Fxx/Yl6/s4DefTU/y7zy+irZLDmFGmTLtnM8FqpN05wlA==}
intl-messageformat@9.13.0:
resolution: {integrity: sha512-7sGC7QnSQGa5LZP7bXLDhVDtQOeKGeBFGHF2Y8LVBwYZoQZCgWeKoPGTa5GMG8g/TzDgeXuYJQis7Ggiw2xTOw==}
@@ -8784,6 +9047,10 @@ packages:
resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
engines: {node: '>= 0.4'}
+ is-arguments@1.2.0:
+ resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
+ engines: {node: '>= 0.4'}
+
is-array-buffer@3.0.4:
resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
engines: {node: '>= 0.4'}
@@ -8848,6 +9115,10 @@ packages:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
+
is-data-descriptor@1.0.1:
resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
engines: {node: '>= 0.4'}
@@ -8919,8 +9190,8 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- is-generator-function@1.0.10:
- resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ is-generator-function@1.1.0:
+ resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
engines: {node: '>= 0.4'}
is-glob@2.0.1:
@@ -9020,10 +9291,6 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- is-plain-object@5.0.0:
- resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
- engines: {node: '>=0.10.0'}
-
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
@@ -9037,6 +9304,10 @@ packages:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
+ engines: {node: '>= 0.4'}
+
is-resolvable@1.1.0:
resolution: {integrity: sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==}
@@ -9086,6 +9357,10 @@ packages:
resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+ engines: {node: '>= 0.4'}
+
is-unicode-supported@0.1.0:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
@@ -9433,6 +9708,11 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -9586,9 +9866,6 @@ packages:
resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
engines: {node: '>=14'}
- linebreak@1.1.0:
- resolution: {integrity: sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==}
-
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
@@ -9624,6 +9901,10 @@ packages:
resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
engines: {node: '>= 12.13.0'}
+ loader-utils@3.3.1:
+ resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
+ engines: {node: '>= 12.13.0'}
+
local-pkg@0.5.0:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
@@ -9727,6 +10008,9 @@ packages:
magic-string@0.30.12:
resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
+ magic-string@0.30.17:
+ resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
@@ -9766,8 +10050,8 @@ packages:
resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==}
engines: {node: '>=16'}
- markdown-table@3.0.3:
- resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ markdown-table@3.0.4:
+ resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
marked-terminal@7.1.0:
resolution: {integrity: sha512-+pvwa14KZL74MVXjYdPR3nSInhGhNvPce/3mqLVZT2oUvt654sL1XImFuLZ1pkA866IYZ3ikDTOFUIC7XzpZZg==}
@@ -9785,6 +10069,10 @@ packages:
engines: {node: '>= 16'}
hasBin: true
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
mathjax-full@3.2.2:
resolution: {integrity: sha512-+LfG9Fik+OuI8SLwsiR02IVdjcnRCy5MufYLi0C3TdMT56L/pjB0alMVGgoWJF8pN9Rc7FESycZB9BMNWIid5w==}
@@ -9909,8 +10197,8 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
- memfs@4.14.0:
- resolution: {integrity: sha512-JUeY0F/fQZgIod31Ja1eJgiSxLn7BfQlCnqhwXFBzFHEw63OdLK7VJUJ7bnzNsWgCyoUP5tEp1VRY8rDaYzqOA==}
+ memfs@4.17.0:
+ resolution: {integrity: sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==}
engines: {node: '>= 4.0.0'}
memoize-one@5.2.1:
@@ -10374,6 +10662,9 @@ packages:
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+ mlly@1.7.2:
+ resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
+
morgan@1.10.0:
resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==}
engines: {node: '>= 0.8.0'}
@@ -10459,6 +10750,14 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@0.6.4:
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
+
+ negotiator@1.0.0:
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
@@ -10473,14 +10772,14 @@ packages:
resolution: {integrity: sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- next-auth@4.24.8:
- resolution: {integrity: sha512-SLt3+8UCtklsotnz2p+nB4aN3IHNmpsQFAZ24VLxGotWGzSxkBh192zxNhm/J5wgkcrDWVp0bwqvW0HksK/Lcw==}
+ next-auth@4.24.11:
+ resolution: {integrity: sha512-pCFXzIDQX7xmHFs4KVH4luCjaCbuPRtZ9oBUjUhOk84mZ9WVPf94n87TxYI4rSRf9HmfHEF8Yep3JrYDVOo3Cw==}
peerDependencies:
'@auth/core': 0.34.2
- next: ^12.2.5 || ^13 || ^14
+ next: ^12.2.5 || ^13 || ^14 || ^15
nodemailer: ^6.6.5
- react: ^17.0.2 || ^18
- react-dom: ^17.0.2 || ^18
+ react: ^17.0.2 || ^18 || ^19
+ react-dom: ^17.0.2 || ^18 || ^19
peerDependenciesMeta:
'@auth/core':
optional: true
@@ -10500,6 +10799,9 @@ packages:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
+ next-validate-link@1.3.0:
+ resolution: {integrity: sha512-wvP+wGZ2pCsvymh+KunaYEo7/OPcKn0qvx+IChtbQmkDu5e/MRfBZukPVf1Q9YR0fZA4Y03FGsmojKyBv0F2+w==}
+
next@12.3.4:
resolution: {integrity: sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ==}
engines: {node: '>=12.22.0'}
@@ -10518,8 +10820,8 @@ packages:
sass:
optional: true
- next@14.2.15:
- resolution: {integrity: sha512-h9ctmOokpoDphRvMGnwOJAedT6zKhwqyZML9mDtspgf4Rh3Pn7UTYKqePNoDvhsWBAO5GoPNYshnAUGIazVGmw==}
+ next@14.2.16:
+ resolution: {integrity: sha512-LcO7WnFu6lYSvCzZoo1dB+IO0xXz5uEv52HF1IUN0IqVTUIZGHuuR10I5efiLadGt+4oZqTcNZyVVEem/TM5nA==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -10557,16 +10859,16 @@ packages:
sass:
optional: true
- nextra-theme-docs@3.0.13:
- resolution: {integrity: sha512-1NEo4NJxXRsNPE2PXlYdVlW7N8ZWe5XssePFKUq0comQaxDNc6SaxfBNw0VoQlwB3T5ifTp9f5wb9xfIjPa6OA==}
+ nextra-theme-docs@3.1.0:
+ resolution: {integrity: sha512-2zAC+xnqLzl/kLYCaoVfdupyA6pD5OgF+4iR3zQiPOzfnwJikPQePnr3SCT+tPPgYVuoqSDA5GNc9DvvAHtefQ==}
peerDependencies:
next: '>=13'
- nextra: 3.0.13
+ nextra: 3.1.0
react: '>=18'
react-dom: '>=18'
- nextra@3.0.13:
- resolution: {integrity: sha512-aK5ZEnKGE2lWhJvFfpj7T35JeA4ytvo2zUiXJ5JApIpFrwkzy8IYTa+irGHB0l9sxGiRlss4p+nAM8Kunvmlug==}
+ nextra@3.1.0:
+ resolution: {integrity: sha512-IvG8Q/yLAqSju1zwRPUqC/6WpzAgfmNo6gDw6CIBZJ+3RKdJDsirM/v3BNeN6vx3tSjLFybytOt3spNXHFy/WQ==}
engines: {node: '>=18'}
peerDependencies:
next: '>=13'
@@ -10657,6 +10959,9 @@ packages:
node-releases@2.0.18:
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+
node-stream-zip@1.15.0:
resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
engines: {node: '>=0.12.0'}
@@ -10780,8 +11085,8 @@ packages:
nwsapi@2.2.10:
resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
- nwsapi@2.2.13:
- resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
+ nwsapi@2.2.16:
+ resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
oauth@0.9.15:
resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==}
@@ -11010,8 +11315,8 @@ packages:
resolution: {integrity: sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==}
engines: {node: '>=6'}
- p-retry@6.2.0:
- resolution: {integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==}
+ p-retry@6.2.1:
+ resolution: {integrity: sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==}
engines: {node: '>=16.17'}
p-timeout@6.1.2:
@@ -11064,9 +11369,6 @@ packages:
resolution: {integrity: sha512-01TvEktc68vwbJOtWZluyWeVGWjP+bZwXtPDMQVbBKzbJ/vZBif0L69KH1+cHv1SZ6e0FKLvjyHe8mqsIqYOmw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- parse-css-color@0.2.1:
- resolution: {integrity: sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==}
-
parse-entities@4.0.1:
resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
@@ -11128,6 +11430,9 @@ packages:
parse5@7.2.0:
resolution: {integrity: sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==}
+ parse5@7.2.1:
+ resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -11195,6 +11500,9 @@ packages:
path-to-regexp@0.1.10:
resolution: {integrity: sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==}
+ path-to-regexp@0.1.12:
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
+
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
@@ -11231,6 +11539,9 @@ packages:
picocolors@1.1.0:
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
@@ -11283,6 +11594,9 @@ packages:
pkg-types@1.1.1:
resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
+
pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
@@ -11744,8 +12058,8 @@ packages:
public-encrypt@4.0.3:
resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
- publint@0.2.11:
- resolution: {integrity: sha512-/kxbd+sD/uEG515N/ZYpC6gYs8h89cQ4UIsAq1y6VT4qlNh8xmiSwcP2xU2MbzXFl8J0l2IdONKFweLfYoqhcA==}
+ publint@0.2.12:
+ resolution: {integrity: sha512-YNeUtCVeM4j9nDiTT2OPczmlyzOkIXNtdDZnSuajAxS/nZ6j3t7Vs9SUB4euQNddiltIwu7Tdd3s+hr08fAsMw==}
engines: {node: '>=16'}
hasBin: true
@@ -11851,8 +12165,8 @@ packages:
peerDependencies:
typescript: '>= 4.3.x'
- react-docgen@7.0.3:
- resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==}
+ react-docgen@7.1.0:
+ resolution: {integrity: sha512-APPU8HB2uZnpl6Vt/+0AFoVYgSRtfiP6FLrZgPPTDmqSb2R4qZRbgd0A3VzIFxDt5e+Fozjx79WjLWnF69DK8g==}
engines: {node: '>=16.14.0'}
react-dom@17.0.2:
@@ -11870,12 +12184,6 @@ packages:
peerDependencies:
react: ^18.3.1
- react-element-to-jsx-string@15.0.0:
- resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
- peerDependencies:
- react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
- react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0
-
react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
@@ -11885,9 +12193,6 @@ packages:
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
- react-is@18.1.0:
- resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==}
-
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
@@ -12052,6 +12357,18 @@ packages:
resolution: {integrity: sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==}
engines: {node: '>= 4'}
+ recma-build-jsx@1.0.0:
+ resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
+
+ recma-jsx@1.0.0:
+ resolution: {integrity: sha512-5vwkv65qWwYxg+Atz95acp8DMu1JDSqdGkA2Of1j6rCreyFUE/gp15fC8MnGEuG1W68UKjM6x6+YTWIh7hZM/Q==}
+
+ recma-parse@1.0.0:
+ resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==}
+
+ recma-stringify@1.0.0:
+ resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
+
recursive-readdir@2.2.2:
resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==}
engines: {node: '>=0.10.0'}
@@ -12147,6 +12464,9 @@ packages:
rehype-raw@7.0.0:
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
+ rehype-recma@1.0.0:
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
+
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
@@ -12173,6 +12493,9 @@ packages:
remark-mdx@3.0.1:
resolution: {integrity: sha512-3Pz3yPQ5Rht2pM5R+0J2MrGoBSrzf+tJG94N+t/ilfdh8YLyyKYtidAYwTveB20BoHAcwIopOUqhcmh2F7hGYA==}
+ remark-mdx@3.1.0:
+ resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==}
+
remark-parse@10.0.2:
resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
@@ -12195,6 +12518,9 @@ packages:
remark-stringify@11.0.0:
resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
+ remark@15.0.1:
+ resolution: {integrity: sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==}
+
remove-trailing-separator@1.1.0:
resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
@@ -12274,6 +12600,11 @@ packages:
resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==}
engines: {node: '>=10'}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
resolve@1.22.2:
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
hasBin: true
@@ -12383,6 +12714,9 @@ packages:
rrweb-cssom@0.7.1:
resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==}
+ rrweb-cssom@0.8.0:
+ resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
+
run-applescript@7.0.0:
resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
engines: {node: '>=18'}
@@ -12417,23 +12751,27 @@ packages:
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
+ safe-regex-test@1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ engines: {node: '>= 0.4'}
+
safe-regex@1.1.0:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass-loader@13.3.3:
- resolution: {integrity: sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA==}
- engines: {node: '>= 14.15.0'}
+ sass-loader@14.2.1:
+ resolution: {integrity: sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==}
+ engines: {node: '>= 18.12.0'}
peerDependencies:
- fibers: '>= 3.1.0'
+ '@rspack/core': 0.x || 1.x
node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0
sass: ^1.3.0
sass-embedded: '*'
webpack: ^5.0.0
peerDependenciesMeta:
- fibers:
+ '@rspack/core':
optional: true
node-sass:
optional: true
@@ -12441,10 +12779,8 @@ packages:
optional: true
sass-embedded:
optional: true
-
- satori@0.10.9:
- resolution: {integrity: sha512-XU9EELUEZuioT4acLIpCXxHcFzrsC8muvg0MY28d+TlqwxbkTzBmWbw+3+hnCzXT7YZ0Qm8k3eXktDaEu+qmEw==}
- engines: {node: '>=16'}
+ webpack:
+ optional: true
sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
@@ -12481,6 +12817,10 @@ packages:
resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
engines: {node: '>= 12.13.0'}
+ schema-utils@4.3.0:
+ resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
+ engines: {node: '>= 10.13.0'}
+
scroll-into-view-if-needed@3.1.0:
resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
@@ -12626,6 +12966,10 @@ packages:
shell-quote@1.8.1:
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
+ shell-quote@1.8.2:
+ resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ engines: {node: '>= 0.4'}
+
shiki@1.22.0:
resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==}
@@ -12865,9 +13209,14 @@ packages:
peerDependencies:
next-intl: ^3
- storybook@8.3.5:
- resolution: {integrity: sha512-hYQVtP2l+3kO8oKDn4fjXXQYxgTRsj/LaV6lUMJH0zt+OhVmDXKJLxmdUP4ieTm0T8wEbSYosFavgPcQZlxRfw==}
+ storybook@8.5.1:
+ resolution: {integrity: sha512-HuaAFA97j2w4i/1EHKj6X4iDiVzPrXzQpmTEE1tLD1QXzqrQKKHse+Ggc8AGMuLTAzxA6xmrX9xibgMNWCgvRA==}
hasBin: true
+ peerDependencies:
+ prettier: ^2 || ^3
+ peerDependenciesMeta:
+ prettier:
+ optional: true
stream-browserify@2.0.2:
resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
@@ -12924,9 +13273,6 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
- string.prototype.codepointat@0.2.1:
- resolution: {integrity: sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg==}
-
string.prototype.includes@2.0.1:
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
engines: {node: '>= 0.4'}
@@ -13104,12 +13450,15 @@ packages:
sudo-prompt@8.2.5:
resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
sudo-prompt@9.1.1:
resolution: {integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
sudo-prompt@9.2.1:
resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
supports-color@4.5.0:
resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==}
@@ -13253,6 +13602,22 @@ packages:
uglify-js:
optional: true
+ terser-webpack-plugin@5.3.11:
+ resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ '@swc/core': '*'
+ esbuild: '*'
+ uglify-js: '*'
+ webpack: ^5.1.0
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ esbuild:
+ optional: true
+ uglify-js:
+ optional: true
+
terser@4.8.1:
resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
engines: {node: '>=6.0.0'}
@@ -13263,8 +13628,13 @@ packages:
engines: {node: '>=10'}
hasBin: true
- terser@5.35.0:
- resolution: {integrity: sha512-TmYbQnzVfrx3RQsPoItoPplymixIAtp2R2xlpyVBYmFmvI34IzLhCLj8SimRb/kZXlq4t1gA+vbcTqLQ3+5Q5g==}
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ terser@5.37.0:
+ resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
engines: {node: '>=10'}
hasBin: true
@@ -13314,9 +13684,6 @@ packages:
timsort@0.3.0:
resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
- tiny-inflate@1.0.3:
- resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
-
tiny-invariant@1.3.3:
resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
@@ -13350,11 +13717,11 @@ packages:
resolution: {integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==}
engines: {node: '>=0.10.0'}
- tldts-core@6.1.52:
- resolution: {integrity: sha512-j4OxQI5rc1Ve/4m/9o2WhWSC4jGc4uVbCINdOEJRAraCi0YqTqgMcxUx7DbmuP0G3PCixoof/RZB0Q5Kh9tagw==}
+ tldts-core@6.1.74:
+ resolution: {integrity: sha512-gTwtY6L2GfuxiL4CWpLknv9JDYYqBvKCk/BT5uAaAvCA0s6pzX7lr2IrkQZSUlnSjRHIjTl8ZwKCVXJ7XNRWYw==}
- tldts@6.1.52:
- resolution: {integrity: sha512-fgrDJXDjbAverY6XnIt0lNfv8A0cf7maTEaZxNykLGsLG7XP+5xhjBTrt/ieAsFjAlZ+G5nmXomLcZDkxXnDzw==}
+ tldts@6.1.74:
+ resolution: {integrity: sha512-O5vTZ1UmmEmrLl/59U9igitnSMlprALLaLgbv//dEvjobPT9vyURhHXKMCDLEhn3qxZFIkb9PwAfNYV0Ol7RPQ==}
hasBin: true
tmp@0.0.33:
@@ -13398,8 +13765,8 @@ packages:
resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
engines: {node: '>=6'}
- tough-cookie@5.0.0:
- resolution: {integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==}
+ tough-cookie@5.1.0:
+ resolution: {integrity: sha512-rvZUv+7MoBYTiDmFPBrhL7Ujx9Sk+q9wwm22x8c8T5IJaR+Wsyc7TNxbVxo84kZoRJZZMazowFLqpankBEQrGg==}
engines: {node: '>=16'}
tr46@0.0.3:
@@ -13442,6 +13809,12 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
+ ts-api-utils@1.4.3:
+ resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
+ engines: {node: '>=16'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+
ts-dedent@2.2.0:
resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==}
engines: {node: '>=6.10'}
@@ -13475,6 +13848,9 @@ packages:
tslib@2.8.0:
resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+
tty-browserify@0.0.0:
resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==}
@@ -13485,41 +13861,41 @@ packages:
resolution: {integrity: sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==}
engines: {node: ^16.14.0 || >=18.0.0}
- turbo-darwin-64@2.1.3:
- resolution: {integrity: sha512-ouJOm0g0YyoBuhmikEujVCBGo3Zr0lbSOWFIsQtWUTItC88F2w2byhjtsYGPXQwMlTbXwmoBU2lOCfWNkeEwHQ==}
+ turbo-darwin-64@2.2.3:
+ resolution: {integrity: sha512-Rcm10CuMKQGcdIBS3R/9PMeuYnv6beYIHqfZFeKWVYEWH69sauj4INs83zKMTUiZJ3/hWGZ4jet9AOwhsssLyg==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@2.1.3:
- resolution: {integrity: sha512-j2FOJsK4LAOtHQlb3Oom0yWB/Vi0nF1ljInr311mVzHoFAJRZtfW2fRvdZRb/lBUwjSp8be58qWHzANIcrA0OA==}
+ turbo-darwin-arm64@2.2.3:
+ resolution: {integrity: sha512-+EIMHkuLFqUdJYsA3roj66t9+9IciCajgj+DVek+QezEdOJKcRxlvDOS2BUaeN8kEzVSsNiAGnoysFWYw4K0HA==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@2.1.3:
- resolution: {integrity: sha512-ubRHkI1gSel7H7wsmxKK8C9UlLWqg/2dkCC88LFupaK6TKgvBKqDqA0Z1M9C/escK0Jsle2k0H8bybV9OYIl4Q==}
+ turbo-linux-64@2.2.3:
+ resolution: {integrity: sha512-UBhJCYnqtaeOBQLmLo8BAisWbc9v9daL9G8upLR+XGj6vuN/Nz6qUAhverN4Pyej1g4Nt1BhROnj6GLOPYyqxQ==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@2.1.3:
- resolution: {integrity: sha512-LffUL+e5wv7BtD6DgnM2kKOlDkMo2eRjhbAjVnrCD3wi2ug0tl6NDzajnHHjtaMyOnIf4AvzSKdLWsBxafGBQA==}
+ turbo-linux-arm64@2.2.3:
+ resolution: {integrity: sha512-hJYT9dN06XCQ3jBka/EWvvAETnHRs3xuO/rb5bESmDfG+d9yQjeTMlhRXKrr4eyIMt6cLDt1LBfyi+6CQ+VAwQ==}
cpu: [arm64]
os: [linux]
turbo-stream@2.4.0:
resolution: {integrity: sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==}
- turbo-windows-64@2.1.3:
- resolution: {integrity: sha512-S9SvcZZoaq5jKr6kA6eF7/xgQhVn8Vh7PVy5lono9zybvhyL4eY++y2PaLToIgL8G9IcbLmgOC73ExNjFBg9XQ==}
+ turbo-windows-64@2.2.3:
+ resolution: {integrity: sha512-NPrjacrZypMBF31b4HE4ROg4P3nhMBPHKS5WTpMwf7wydZ8uvdEHpESVNMOtqhlp857zbnKYgP+yJF30H3N2dQ==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@2.1.3:
- resolution: {integrity: sha512-twlEo8lRrGbrR6T/ZklUIquW3IlFCEtywklgVA81aIrSBm56+GEVpSrHhIlsx1hiYeSNrs+GpDwZGe+V7fvEVQ==}
+ turbo-windows-arm64@2.2.3:
+ resolution: {integrity: sha512-fnNrYBCqn6zgKPKLHu4sOkihBI/+0oYFr075duRxqUZ+1aLWTAGfHZLgjVeLh3zR37CVzuerGIPWAEkNhkWEIw==}
cpu: [arm64]
os: [win32]
- turbo@2.1.3:
- resolution: {integrity: sha512-lY0yj2GH2a2a3NExZ3rGe+rHUVeFE2aXuRAue57n+08E7Z7N7YCmynju0kPC1grAQzERmoLpKrmzmWd+PNiADw==}
+ turbo@2.2.3:
+ resolution: {integrity: sha512-5lDvSqIxCYJ/BAd6rQGK/AzFRhBkbu4JHVMLmGh/hCb7U3CqSnr5Tjwfy9vc+/5wG2DJ6wttgAaA7MoCgvBKZQ==}
hasBin: true
twoslash-protocol@0.2.12:
@@ -13578,6 +13954,10 @@ packages:
resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
engines: {node: '>=16'}
+ type-fest@4.33.0:
+ resolution: {integrity: sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==}
+ engines: {node: '>=16'}
+
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -13630,6 +14010,9 @@ packages:
ufo@1.5.3:
resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ ufo@1.5.4:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
+
uglify-es@3.3.9:
resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==}
engines: {node: '>=0.8.0'}
@@ -13650,6 +14033,9 @@ packages:
undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
+ undici-types@6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+
undici@6.19.2:
resolution: {integrity: sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==}
engines: {node: '>=18.17'}
@@ -13678,9 +14064,6 @@ packages:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
- unicode-trie@2.0.0:
- resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==}
-
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
@@ -13834,6 +14217,12 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.1.2:
+ resolution: {integrity: sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
update-check@1.5.3:
resolution: {integrity: sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==}
@@ -14061,8 +14450,8 @@ packages:
terser:
optional: true
- vite@5.4.9:
- resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==}
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -14284,6 +14673,16 @@ packages:
webpack-cli:
optional: true
+ webpack@5.97.1:
+ resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+
websocket-driver@0.6.5:
resolution: {integrity: sha512-oBx6ZM1Gs5q2jwZuSN/Qxyy/fbgomV8+vqsmipaPKB/74hjHlKuM07jNmRhn4qa2AdUwsgxrltq+gaPsHgcl0Q==}
engines: {node: '>=0.6.0'}
@@ -14319,8 +14718,8 @@ packages:
resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==}
engines: {node: '>=12'}
- whatwg-url@14.0.0:
- resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
+ whatwg-url@14.1.0:
+ resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
@@ -14343,6 +14742,10 @@ packages:
resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
engines: {node: '>= 0.4'}
+ which-typed-array@1.1.18:
+ resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
+ engines: {node: '>= 0.4'}
+
which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
hasBin: true
@@ -14546,6 +14949,11 @@ packages:
engines: {node: '>= 14'}
hasBin: true
+ yaml@2.6.0:
+ resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
+ engines: {node: '>= 14'}
+ hasBin: true
+
yargs-parser@13.1.2:
resolution: {integrity: sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==}
@@ -14595,11 +15003,8 @@ packages:
resolution: {integrity: sha512-Ct97huExsu7cWeEjmrXlofevF8CvzUglJ4iGUet5B8xn1oumtAZBpHU4GzYuoE6PVqcZ5hghtBrSlhwHuR1Jmw==}
engines: {node: '>=18'}
- yoga-wasm-web@0.3.3:
- resolution: {integrity: sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==}
-
- zod-validation-error@3.3.1:
- resolution: {integrity: sha512-uFzCZz7FQis256dqw4AhPQgD6f3pzNca/Zh62RNELavlumQB3nDIUFbF5JQfFLcMbO1s02Q7Xg/gpcOBlEnYZA==}
+ zod-validation-error@3.4.0:
+ resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
zod: ^3.18.0
@@ -14617,34 +15022,34 @@ snapshots:
'@aashutoshrathi/word-wrap@1.2.6': {}
- '@adobe/css-tools@4.4.0': {}
+ '@adobe/css-tools@4.4.1': {}
- '@algolia/autocomplete-core@1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)(search-insights@2.17.2)':
+ '@algolia/autocomplete-core@1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)(search-insights@2.17.2)
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)(search-insights@2.17.2)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)(search-insights@2.17.2)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)
search-insights: 2.17.2
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)':
+ '@algolia/autocomplete-preset-algolia@1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)
- '@algolia/client-search': 5.8.1
+ '@algolia/autocomplete-shared': 1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)
+ '@algolia/client-search': 5.10.2
algoliasearch: 4.23.3
- '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)':
+ '@algolia/autocomplete-shared@1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)':
dependencies:
- '@algolia/client-search': 5.8.1
+ '@algolia/client-search': 5.10.2
algoliasearch: 4.23.3
'@algolia/cache-browser-local-storage@4.23.3':
@@ -14675,7 +15080,7 @@ snapshots:
'@algolia/requester-common': 4.23.3
'@algolia/transporter': 4.23.3
- '@algolia/client-common@5.8.1': {}
+ '@algolia/client-common@5.10.2': {}
'@algolia/client-personalization@4.23.3':
dependencies:
@@ -14689,12 +15094,12 @@ snapshots:
'@algolia/requester-common': 4.23.3
'@algolia/transporter': 4.23.3
- '@algolia/client-search@5.8.1':
+ '@algolia/client-search@5.10.2':
dependencies:
- '@algolia/client-common': 5.8.1
- '@algolia/requester-browser-xhr': 5.8.1
- '@algolia/requester-fetch': 5.8.1
- '@algolia/requester-node-http': 5.8.1
+ '@algolia/client-common': 5.10.2
+ '@algolia/requester-browser-xhr': 5.10.2
+ '@algolia/requester-fetch': 5.10.2
+ '@algolia/requester-node-http': 5.10.2
'@algolia/logger-common@4.23.3': {}
@@ -14720,23 +15125,23 @@ snapshots:
dependencies:
'@algolia/requester-common': 4.23.3
- '@algolia/requester-browser-xhr@5.8.1':
+ '@algolia/requester-browser-xhr@5.10.2':
dependencies:
- '@algolia/client-common': 5.8.1
+ '@algolia/client-common': 5.10.2
'@algolia/requester-common@4.23.3': {}
- '@algolia/requester-fetch@5.8.1':
+ '@algolia/requester-fetch@5.10.2':
dependencies:
- '@algolia/client-common': 5.8.1
+ '@algolia/client-common': 5.10.2
'@algolia/requester-node-http@4.23.3':
dependencies:
'@algolia/requester-common': 4.23.3
- '@algolia/requester-node-http@5.8.1':
+ '@algolia/requester-node-http@5.10.2':
dependencies:
- '@algolia/client-common': 5.8.1
+ '@algolia/client-common': 5.10.2
'@algolia/transporter@4.23.3':
dependencies:
@@ -14779,29 +15184,44 @@ snapshots:
typescript: 5.3.3
validate-npm-package-name: 5.0.1
+ '@asamuzakjp/css-color@2.8.3':
+ dependencies:
+ '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
+ lru-cache: 10.4.3
+ optional: true
+
'@babel/code-frame@7.10.4':
dependencies:
- '@babel/highlight': 7.25.7
+ '@babel/highlight': 7.25.9
- '@babel/code-frame@7.25.7':
+ '@babel/code-frame@7.25.9':
dependencies:
- '@babel/highlight': 7.25.7
- picocolors: 1.1.0
+ '@babel/highlight': 7.25.9
+ picocolors: 1.1.1
+
+ '@babel/code-frame@7.26.2':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.25.8': {}
+ '@babel/compat-data@7.25.9': {}
- '@babel/core@7.25.8':
+ '@babel/core@7.25.9':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9)
+ '@babel/helpers': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
convert-source-map: 2.0.0
debug: 4.3.5
gensync: 1.0.0-beta.2
@@ -14812,14 +15232,14 @@ snapshots:
'@babel/core@7.9.0':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.9.0)
- '@babel/helpers': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/helper-module-transforms': 7.25.9(@babel/core@7.9.0)
+ '@babel/helpers': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
convert-source-map: 1.9.0
debug: 4.3.7(supports-color@6.1.0)
gensync: 1.0.0-beta.2
@@ -14838,83 +15258,76 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.25.7':
+ '@babel/generator@7.25.9':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
+ '@babel/generator@7.26.5':
+ dependencies:
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.26.5
+ '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/trace-mapping': 0.3.25
+ jsesc: 3.1.0
+
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
- '@babel/helper-annotate-as-pure@7.25.7':
+ '@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
- '@babel/helper-builder-binary-assignment-operator-visitor@7.25.7':
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-compilation-targets@7.25.7':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.25.8
- '@babel/helper-validator-option': 7.25.7
- browserslist: 4.24.0
+ '@babel/compat-data': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-function-name': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.7
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/helper-split-export-declaration': 7.24.7
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.25.8)':
+ '@babel/helper-create-regexp-features-plugin@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@babel/helper-annotate-as-pure': 7.24.7
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.8)':
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.1.1
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.8)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
debug: 4.3.7(supports-color@6.1.0)
lodash.debounce: 4.0.8
resolve: 1.22.8
@@ -14923,946 +15336,932 @@ snapshots:
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.9
'@babel/helper-function-name@7.24.7':
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.24.7
+ '@babel/template': 7.25.9
+ '@babel/types': 7.25.9
'@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.24.7
-
- '@babel/helper-member-expression-to-functions@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.25.9
- '@babel/helper-member-expression-to-functions@7.25.7':
+ '@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.22.5':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.25.7':
+ '@babel/helper-module-transforms@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-transforms@7.25.7(@babel/core@7.9.0)':
+ '@babel/helper-module-transforms@7.25.9(@babel/core@7.9.0)':
dependencies:
'@babel/core': 7.9.0
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-simple-access': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.24.7':
- dependencies:
- '@babel/types': 7.25.8
-
- '@babel/helper-optimise-call-expression@7.25.7':
+ '@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
- '@babel/helper-plugin-utils@7.25.7': {}
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.8)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-wrap-function': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-member-expression-to-functions': 7.25.7
- '@babel/helper-optimise-call-expression': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.25.7':
+ '@babel/helper-simple-access@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.7':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.24.7
+ '@babel/types': 7.25.9
'@babel/helper-string-parser@7.24.7': {}
- '@babel/helper-string-parser@7.25.7': {}
+ '@babel/helper-string-parser@7.25.9': {}
'@babel/helper-validator-identifier@7.24.7': {}
'@babel/helper-validator-identifier@7.25.7': {}
- '@babel/helper-validator-option@7.25.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
+
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-wrap-function@7.25.7':
+ '@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.25.7':
+ '@babel/helpers@7.25.9':
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/template': 7.25.9
+ '@babel/types': 7.25.9
- '@babel/highlight@7.25.7':
+ '@babel/highlight@7.25.9':
dependencies:
- '@babel/helper-validator-identifier': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.9
chalk: 2.4.2
js-tokens: 4.0.0
- picocolors: 1.1.0
-
- '@babel/parser@7.24.7':
- dependencies:
- '@babel/types': 7.24.7
-
- '@babel/parser@7.24.8':
- dependencies:
- '@babel/types': 7.25.8
+ picocolors: 1.1.1
- '@babel/parser@7.25.8':
+ '@babel/parser@7.21.9':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-decorators': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-export-default-from@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.9)
- '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.9)':
dependencies:
- '@babel/compat-data': 7.25.8
- '@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
+ '@babel/compat-data': 7.25.9
+ '@babel/core': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
- '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.9)
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.8)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-decorators@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-export-default-from@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-flow@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-import-assertions@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-import-attributes@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.8)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.24.7(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-async-generator-functions@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8)
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.9)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.24.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-properties@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-class-static-block@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.9)
+ '@babel/traverse': 7.25.9
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/template': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-exponentiation-operator@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.9)
- '@babel/plugin-transform-export-namespace-from@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-flow': 7.25.9(@babel/core@7.25.9)
- '@babel/plugin-transform-for-of@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-simple-access': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-module-transforms': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.9)
- '@babel/plugin-transform-numeric-separator@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
- '@babel/plugin-transform-object-rest-spread@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
- '@babel/plugin-transform-object-super@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-replace-supers': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.25.8)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-development@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/types': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/types': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.25.7
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.8)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.8)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.9)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.9)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-module-imports': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.8)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.8)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.9)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.9)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.8)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
-
- '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-template-literals@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-typeof-symbol@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-annotate-as-pure': 7.25.7
- '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.7
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-unicode-escapes@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-property-regex@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.7(@babel/core@7.25.8)':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.25.8)
- '@babel/helper-plugin-utils': 7.25.7
-
- '@babel/preset-env@7.25.8(@babel/core@7.25.8)':
- dependencies:
- '@babel/compat-data': 7.25.8
- '@babel/core': 7.25.8
- '@babel/helper-compilation-targets': 7.25.7
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.8)
- '@babel/plugin-syntax-import-assertions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-import-attributes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-async-generator-functions': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-class-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-class-static-block': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-dotall-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-duplicate-keys': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-dynamic-import': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-export-namespace-from': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-json-strings': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-amd': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-systemjs': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-umd': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-new-target': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-numeric-separator': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-object-rest-spread': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-optional-catch-binding': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-optional-chaining': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-regenerator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-reserved-words': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-typeof-symbol': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-unicode-escapes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-unicode-property-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.8)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.8)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.8)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.8)
+
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.25.9)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.25.9)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/preset-env@7.25.9(@babel/core@7.25.9)':
+ dependencies:
+ '@babel/compat-data': 7.25.9
+ '@babel/core': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.9)
+ '@babel/plugin-syntax-import-assertions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-import-attributes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-class-static-block': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.9)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.9)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.9)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.9)
core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.25.7(@babel/core@7.25.8)':
+ '@babel/preset-flow@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.25.9)
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.8)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.25.9
esutils: 2.0.3
- '@babel/preset-react@7.25.7(@babel/core@7.25.8)':
+ '@babel/preset-react@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx-development': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-pure-annotations': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.25.7(@babel/core@7.25.8)':
+ '@babel/preset-typescript@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.25.7
- '@babel/helper-validator-option': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.25.7(@babel/core@7.25.8)':
+ '@babel/register@7.25.9(@babel/core@7.25.9)':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -15879,56 +16278,70 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.25.7':
+ '@babel/runtime@7.25.9':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.25.7':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.25.9
'@babel/traverse@7.24.7':
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.25.9
'@babel/generator': 7.24.7
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.24.7
+ '@babel/parser': 7.21.9
'@babel/types': 7.24.7
debug: 4.3.7(supports-color@6.1.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.25.7':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.25.9
+ '@babel/types': 7.25.9
debug: 4.3.5
globals: 11.12.0
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.26.5':
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.5
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.5
+ debug: 4.4.0
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.24.7':
dependencies:
'@babel/helper-string-parser': 7.24.7
'@babel/helper-validator-identifier': 7.24.7
to-fast-properties: 2.0.0
- '@babel/types@7.25.8':
+ '@babel/types@7.25.9':
dependencies:
- '@babel/helper-string-parser': 7.25.7
- '@babel/helper-validator-identifier': 7.25.7
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@base2/pretty-print-object@1.0.1': {}
+ '@babel/types@7.26.5':
+ dependencies:
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
'@bcoe/v8-coverage@0.2.3': {}
@@ -15956,16 +16369,41 @@ snapshots:
'@corex/deepmerge@4.0.43': {}
+ '@csstools/color-helpers@5.0.1':
+ optional: true
+
+ '@csstools/css-calc@2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
+ optional: true
+
+ '@csstools/css-color-parser@3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ dependencies:
+ '@csstools/color-helpers': 5.0.1
+ '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
+ optional: true
+
+ '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.3
+ optional: true
+
+ '@csstools/css-tokenizer@3.0.3':
+ optional: true
+
'@docsearch/css@3.6.2': {}
- '@docsearch/react@3.6.2(@algolia/client-search@5.8.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)':
+ '@docsearch/react@3.6.2(@algolia/client-search@5.10.2)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)':
dependencies:
- '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)(search-insights@2.17.2)
- '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@5.8.1)(algoliasearch@4.23.3)
+ '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)(search-insights@2.17.2)
+ '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@5.10.2)(algoliasearch@4.23.3)
'@docsearch/css': 3.6.2
algoliasearch: 4.23.3
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
search-insights: 2.17.2
@@ -15996,7 +16434,7 @@ snapshots:
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/aix-ppc64@0.23.1':
+ '@esbuild/aix-ppc64@0.24.2':
optional: true
'@esbuild/android-arm64@0.17.6':
@@ -16008,7 +16446,7 @@ snapshots:
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.23.1':
+ '@esbuild/android-arm64@0.24.2':
optional: true
'@esbuild/android-arm@0.17.6':
@@ -16020,7 +16458,7 @@ snapshots:
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-arm@0.23.1':
+ '@esbuild/android-arm@0.24.2':
optional: true
'@esbuild/android-x64@0.17.6':
@@ -16032,7 +16470,7 @@ snapshots:
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/android-x64@0.23.1':
+ '@esbuild/android-x64@0.24.2':
optional: true
'@esbuild/darwin-arm64@0.17.6':
@@ -16044,7 +16482,7 @@ snapshots:
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.23.1':
+ '@esbuild/darwin-arm64@0.24.2':
optional: true
'@esbuild/darwin-x64@0.17.6':
@@ -16056,7 +16494,7 @@ snapshots:
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.23.1':
+ '@esbuild/darwin-x64@0.24.2':
optional: true
'@esbuild/freebsd-arm64@0.17.6':
@@ -16068,7 +16506,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.23.1':
+ '@esbuild/freebsd-arm64@0.24.2':
optional: true
'@esbuild/freebsd-x64@0.17.6':
@@ -16080,7 +16518,7 @@ snapshots:
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.23.1':
+ '@esbuild/freebsd-x64@0.24.2':
optional: true
'@esbuild/linux-arm64@0.17.6':
@@ -16092,7 +16530,7 @@ snapshots:
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.23.1':
+ '@esbuild/linux-arm64@0.24.2':
optional: true
'@esbuild/linux-arm@0.17.6':
@@ -16104,7 +16542,7 @@ snapshots:
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-arm@0.23.1':
+ '@esbuild/linux-arm@0.24.2':
optional: true
'@esbuild/linux-ia32@0.17.6':
@@ -16116,7 +16554,7 @@ snapshots:
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.23.1':
+ '@esbuild/linux-ia32@0.24.2':
optional: true
'@esbuild/linux-loong64@0.17.6':
@@ -16128,7 +16566,7 @@ snapshots:
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.23.1':
+ '@esbuild/linux-loong64@0.24.2':
optional: true
'@esbuild/linux-mips64el@0.17.6':
@@ -16140,7 +16578,7 @@ snapshots:
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.23.1':
+ '@esbuild/linux-mips64el@0.24.2':
optional: true
'@esbuild/linux-ppc64@0.17.6':
@@ -16152,7 +16590,7 @@ snapshots:
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.23.1':
+ '@esbuild/linux-ppc64@0.24.2':
optional: true
'@esbuild/linux-riscv64@0.17.6':
@@ -16164,7 +16602,7 @@ snapshots:
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.23.1':
+ '@esbuild/linux-riscv64@0.24.2':
optional: true
'@esbuild/linux-s390x@0.17.6':
@@ -16176,7 +16614,7 @@ snapshots:
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.23.1':
+ '@esbuild/linux-s390x@0.24.2':
optional: true
'@esbuild/linux-x64@0.17.6':
@@ -16188,7 +16626,10 @@ snapshots:
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/linux-x64@0.23.1':
+ '@esbuild/linux-x64@0.24.2':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.24.2':
optional: true
'@esbuild/netbsd-x64@0.17.6':
@@ -16200,10 +16641,10 @@ snapshots:
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.23.1':
+ '@esbuild/netbsd-x64@0.24.2':
optional: true
- '@esbuild/openbsd-arm64@0.23.1':
+ '@esbuild/openbsd-arm64@0.24.2':
optional: true
'@esbuild/openbsd-x64@0.17.6':
@@ -16215,7 +16656,7 @@ snapshots:
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.23.1':
+ '@esbuild/openbsd-x64@0.24.2':
optional: true
'@esbuild/sunos-x64@0.17.6':
@@ -16227,7 +16668,7 @@ snapshots:
'@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/sunos-x64@0.23.1':
+ '@esbuild/sunos-x64@0.24.2':
optional: true
'@esbuild/win32-arm64@0.17.6':
@@ -16239,7 +16680,7 @@ snapshots:
'@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.23.1':
+ '@esbuild/win32-arm64@0.24.2':
optional: true
'@esbuild/win32-ia32@0.17.6':
@@ -16251,7 +16692,7 @@ snapshots:
'@esbuild/win32-ia32@0.21.5':
optional: true
- '@esbuild/win32-ia32@0.23.1':
+ '@esbuild/win32-ia32@0.24.2':
optional: true
'@esbuild/win32-x64@0.17.6':
@@ -16263,16 +16704,25 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
- '@esbuild/win32-x64@0.23.1':
+ '@esbuild/win32-x64@0.24.2':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.12.0(jiti@2.3.3))':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.13.0(jiti@2.3.3))':
+ dependencies:
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.13.0(jiti@2.3.3))':
dependencies:
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
eslint-visitor-keys: 3.4.3
+ optional: true
'@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1':
+ optional: true
+
'@eslint/config-array@0.18.0':
dependencies:
'@eslint/object-schema': 2.1.4
@@ -16281,7 +16731,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/core@0.6.0': {}
+ '@eslint/core@0.7.0': {}
'@eslint/eslintrc@3.1.0':
dependencies:
@@ -16299,6 +16749,8 @@ snapshots:
'@eslint/js@9.12.0': {}
+ '@eslint/js@9.13.0': {}
+
'@eslint/object-schema@2.1.4': {}
'@eslint/plugin-kit@0.2.0':
@@ -16318,7 +16770,7 @@ snapshots:
'@expo/cli@0.4.11(encoding@0.1.13)(expo-modules-autolinking@1.0.2)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
'@expo/code-signing-certificates': 0.0.5
'@expo/config': 7.0.3
'@expo/config-plugins': 5.0.4
@@ -16594,7 +17046,7 @@ snapshots:
'@expo/vector-icons@13.0.0': {}
- '@expo/webpack-config@0.17.4(encoding@0.1.13)(eslint@9.12.0(jiti@2.3.3))(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))(typescript@5.6.3)':
+ '@expo/webpack-config@0.17.4(encoding@0.1.13)(eslint@9.13.0(jiti@2.3.3))(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))(typescript@5.6.3)':
dependencies:
'@babel/core': 7.9.0
babel-loader: 8.1.0(@babel/core@7.9.0)(webpack@4.43.0)
@@ -16602,7 +17054,7 @@ snapshots:
clean-webpack-plugin: 3.0.0(webpack@4.43.0)
copy-webpack-plugin: 6.0.4(webpack@4.43.0)
css-loader: 3.6.0(webpack@4.43.0)
- expo-pwa: 0.0.124(encoding@0.1.13)(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
+ expo-pwa: 0.0.124(encoding@0.1.13)(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
file-loader: 6.0.0(webpack@4.43.0)
find-yarn-workspace-root: 2.0.0
getenv: 1.0.0
@@ -16616,7 +17068,7 @@ snapshots:
optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.43.0)
pnp-webpack-plugin: 1.7.0(typescript@5.6.3)
postcss-safe-parser: 4.0.2
- react-dev-utils: 11.0.4(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0)
+ react-dev-utils: 11.0.4(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0)
schema-utils: 3.3.0
semver: 7.3.2
style-loader: 1.2.1(webpack@4.43.0)
@@ -16706,7 +17158,7 @@ snapshots:
'@formatjs/icu-skeleton-parser': 1.3.6
tslib: 2.8.0
- '@formatjs/icu-messageformat-parser@2.7.10':
+ '@formatjs/icu-messageformat-parser@2.8.0':
dependencies:
'@formatjs/ecma402-abstract': 2.2.0
'@formatjs/icu-skeleton-parser': 1.8.4
@@ -16779,10 +17231,10 @@ snapshots:
'@antfu/install-pkg': 0.4.1
'@antfu/utils': 0.7.10
'@iconify/types': 2.0.0
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
kolorist: 1.8.0
local-pkg: 0.5.0
- mlly: 1.7.1
+ mlly: 1.7.2
transitivePeerDependencies:
- supports-color
@@ -16861,10 +17313,10 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@inquirer/core@10.0.0(@types/node@22.7.5)':
+ '@inquirer/core@10.0.0(@types/node@22.10.9)':
dependencies:
'@inquirer/figures': 1.0.7
- '@inquirer/type': 3.0.0(@types/node@22.7.5)
+ '@inquirer/type': 3.0.0(@types/node@22.10.9)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -16875,36 +17327,36 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@inquirer/expand@4.0.0(@types/node@22.7.5)':
+ '@inquirer/expand@4.0.0(@types/node@22.10.9)':
dependencies:
- '@inquirer/core': 10.0.0(@types/node@22.7.5)
- '@inquirer/type': 3.0.0(@types/node@22.7.5)
+ '@inquirer/core': 10.0.0(@types/node@22.10.9)
+ '@inquirer/type': 3.0.0(@types/node@22.10.9)
yoctocolors-cjs: 2.1.2
transitivePeerDependencies:
- '@types/node'
'@inquirer/figures@1.0.7': {}
- '@inquirer/input@4.0.0(@types/node@22.7.5)':
+ '@inquirer/input@4.0.0(@types/node@22.10.9)':
dependencies:
- '@inquirer/core': 10.0.0(@types/node@22.7.5)
- '@inquirer/type': 3.0.0(@types/node@22.7.5)
+ '@inquirer/core': 10.0.0(@types/node@22.10.9)
+ '@inquirer/type': 3.0.0(@types/node@22.10.9)
transitivePeerDependencies:
- '@types/node'
- '@inquirer/select@4.0.0(@types/node@22.7.5)':
+ '@inquirer/select@4.0.0(@types/node@22.10.9)':
dependencies:
- '@inquirer/core': 10.0.0(@types/node@22.7.5)
+ '@inquirer/core': 10.0.0(@types/node@22.10.9)
'@inquirer/figures': 1.0.7
- '@inquirer/type': 3.0.0(@types/node@22.7.5)
+ '@inquirer/type': 3.0.0(@types/node@22.10.9)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
transitivePeerDependencies:
- '@types/node'
- '@inquirer/type@3.0.0(@types/node@22.7.5)':
+ '@inquirer/type@3.0.0(@types/node@22.10.9)':
dependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.10.9
'@isaacs/cliui@8.0.2':
dependencies:
@@ -16930,7 +17382,7 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -16943,14 +17395,14 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.9.0
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.16.11)
+ jest-config: 29.7.0(@types/node@20.17.0)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -16962,7 +17414,7 @@ snapshots:
jest-util: 29.7.0
jest-validate: 29.7.0
jest-watcher: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
strip-ansi: 6.0.1
@@ -16979,7 +17431,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -16997,7 +17449,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -17019,7 +17471,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -17066,7 +17518,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -17077,7 +17529,7 @@ snapshots:
jest-haste-map: 29.7.0
jest-regex-util: 29.6.3
jest-util: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
pirates: 4.0.6
slash: 3.0.0
write-file-atomic: 4.0.2
@@ -17088,7 +17540,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/yargs': 15.0.19
chalk: 4.1.2
@@ -17096,7 +17548,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/yargs': 16.0.9
chalk: 4.1.2
@@ -17105,7 +17557,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/yargs': 17.0.32
chalk: 4.1.2
@@ -17115,6 +17567,12 @@ snapshots:
'@jridgewell/sourcemap-codec': 1.4.15
'@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping@0.3.8':
+ dependencies:
+ '@jridgewell/set-array': 1.2.1
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.25
+
'@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/set-array@1.2.1': {}
@@ -17126,7 +17584,7 @@ snapshots:
'@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/sourcemap-codec@1.4.15': {}
@@ -17138,23 +17596,23 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.4.15
- '@jsonjoy.com/base64@1.1.2(tslib@2.8.0)':
+ '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)':
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
optional: true
- '@jsonjoy.com/json-pack@1.1.0(tslib@2.8.0)':
+ '@jsonjoy.com/json-pack@1.1.1(tslib@2.8.1)':
dependencies:
- '@jsonjoy.com/base64': 1.1.2(tslib@2.8.0)
- '@jsonjoy.com/util': 1.5.0(tslib@2.8.0)
+ '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
hyperdyperid: 1.2.0
- thingies: 1.21.0(tslib@2.8.0)
- tslib: 2.8.0
+ thingies: 1.21.0(tslib@2.8.1)
+ tslib: 2.8.1
optional: true
- '@jsonjoy.com/util@1.5.0(tslib@2.8.0)':
+ '@jsonjoy.com/util@1.5.0(tslib@2.8.1)':
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
optional: true
'@jspm/core@2.0.1': {}
@@ -17162,10 +17620,10 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5':
optional: true
- '@lerna-lite/cli@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)':
+ '@lerna-lite/cli@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/core': 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
- '@lerna-lite/init': 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
+ '@lerna-lite/core': 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
+ '@lerna-lite/init': 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
'@lerna-lite/npmlog': 3.10.0
dedent: 1.5.3
dotenv: 16.4.5
@@ -17173,8 +17631,8 @@ snapshots:
load-json-file: 7.0.1
yargs: 17.7.2
optionalDependencies:
- '@lerna-lite/publish': 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
- '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)
+ '@lerna-lite/publish': 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
+ '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -17182,11 +17640,11 @@ snapshots:
- supports-color
- typescript
- '@lerna-lite/core@3.10.0(@types/node@22.7.5)(typescript@5.6.3)':
+ '@lerna-lite/core@3.10.0(@types/node@22.10.9)(typescript@5.6.3)':
dependencies:
- '@inquirer/expand': 4.0.0(@types/node@22.7.5)
- '@inquirer/input': 4.0.0(@types/node@22.7.5)
- '@inquirer/select': 4.0.0(@types/node@22.7.5)
+ '@inquirer/expand': 4.0.0(@types/node@22.10.9)
+ '@inquirer/input': 4.0.0(@types/node@22.10.9)
+ '@inquirer/select': 4.0.0(@types/node@22.10.9)
'@lerna-lite/npmlog': 3.10.0
'@npmcli/run-script': 8.1.0
clone-deep: 4.0.1
@@ -17220,9 +17678,9 @@ snapshots:
- supports-color
- typescript
- '@lerna-lite/init@3.10.0(@types/node@22.7.5)(typescript@5.6.3)':
+ '@lerna-lite/init@3.10.0(@types/node@22.10.9)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/core': 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
+ '@lerna-lite/core': 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
fs-extra: 11.2.0
p-map: 7.0.2
write-json-file: 6.0.0
@@ -17245,12 +17703,12 @@ snapshots:
strip-ansi: 7.1.0
wide-align: 1.1.5
- '@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3)':
+ '@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)
- '@lerna-lite/core': 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
+ '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)
+ '@lerna-lite/core': 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
'@lerna-lite/npmlog': 3.10.0
- '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)
+ '@lerna-lite/version': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)
'@npmcli/arborist': 7.5.4
'@npmcli/package-json': 5.2.1
byte-size: 9.0.0
@@ -17283,10 +17741,10 @@ snapshots:
- supports-color
- typescript
- '@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)':
+ '@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)':
dependencies:
- '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3))(@types/node@22.7.5)(typescript@5.6.3)
- '@lerna-lite/core': 3.10.0(@types/node@22.7.5)(typescript@5.6.3)
+ '@lerna-lite/cli': 3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@lerna-lite/version@3.10.0(@lerna-lite/publish@3.10.0(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3))(@types/node@22.10.9)(typescript@5.6.3)
+ '@lerna-lite/core': 3.10.0(@types/node@22.10.9)(typescript@5.6.3)
'@lerna-lite/npmlog': 3.10.0
'@octokit/plugin-enterprise-rest': 6.0.1
'@octokit/rest': 21.0.2
@@ -17330,11 +17788,12 @@ snapshots:
- supports-color
- typescript
- '@mdx-js/loader@3.0.1(webpack@5.95.0(esbuild@0.23.1))':
+ '@mdx-js/loader@3.1.0(webpack@5.97.1(esbuild@0.24.2))':
dependencies:
'@mdx-js/mdx': 3.0.1
source-map: 0.7.4
- webpack: 5.95.0(esbuild@0.23.1)
+ optionalDependencies:
+ webpack: 5.97.1(esbuild@0.24.2)
transitivePeerDependencies:
- supports-color
@@ -17388,10 +17847,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/react@3.0.1(@types/react@18.3.11)(react@18.3.1)':
+ '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/estree-jsx': 1.0.5
+ '@types/hast': 3.0.4
+ '@types/mdx': 2.0.13
+ collapse-white-space: 2.1.0
+ devlop: 1.1.0
+ estree-util-is-identifier-name: 3.0.0
+ estree-util-scope: 1.0.0
+ estree-walker: 3.0.3
+ hast-util-to-jsx-runtime: 2.3.2
+ markdown-extensions: 2.0.0
+ recma-build-jsx: 1.0.0
+ recma-jsx: 1.0.0(acorn@8.14.0)
+ recma-stringify: 1.0.0
+ rehype-recma: 1.0.0
+ remark-mdx: 3.1.0
+ remark-parse: 11.0.0
+ remark-rehype: 11.1.1
+ source-map: 0.7.4
+ unified: 11.0.5
+ unist-util-position-from-estree: 2.0.0
+ unist-util-stringify-position: 4.0.0
+ unist-util-visit: 5.0.0
+ vfile: 6.0.3
+ transitivePeerDependencies:
+ - acorn
+ - supports-color
+
+ '@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react: 18.3.1
'@mermaid-js/parser@0.3.0':
@@ -17461,16 +17950,16 @@ snapshots:
'@next/env@13.5.6': {}
- '@next/env@14.2.15': {}
+ '@next/env@14.2.16': {}
'@next/env@15.0.3': {}
- '@next/mdx@15.0.0-rc.1(@mdx-js/loader@3.0.1(webpack@5.95.0(esbuild@0.23.1)))(@mdx-js/react@3.0.1(@types/react@18.3.11)(react@18.3.1))':
+ '@next/mdx@15.0.0-rc.1(@mdx-js/loader@3.1.0(webpack@5.97.1(esbuild@0.24.2)))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.3.1))':
dependencies:
source-map: 0.7.4
optionalDependencies:
- '@mdx-js/loader': 3.0.1(webpack@5.95.0(esbuild@0.23.1))
- '@mdx-js/react': 3.0.1(@types/react@18.3.11)(react@18.3.1)
+ '@mdx-js/loader': 3.1.0(webpack@5.97.1(esbuild@0.24.2))
+ '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.3.1)
'@next/swc-android-arm-eabi@12.3.4':
optional: true
@@ -17481,7 +17970,7 @@ snapshots:
'@next/swc-darwin-arm64@12.3.4':
optional: true
- '@next/swc-darwin-arm64@14.2.15':
+ '@next/swc-darwin-arm64@14.2.16':
optional: true
'@next/swc-darwin-arm64@15.0.3':
@@ -17490,7 +17979,7 @@ snapshots:
'@next/swc-darwin-x64@12.3.4':
optional: true
- '@next/swc-darwin-x64@14.2.15':
+ '@next/swc-darwin-x64@14.2.16':
optional: true
'@next/swc-darwin-x64@15.0.3':
@@ -17505,7 +17994,7 @@ snapshots:
'@next/swc-linux-arm64-gnu@12.3.4':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.15':
+ '@next/swc-linux-arm64-gnu@14.2.16':
optional: true
'@next/swc-linux-arm64-gnu@15.0.3':
@@ -17514,7 +18003,7 @@ snapshots:
'@next/swc-linux-arm64-musl@12.3.4':
optional: true
- '@next/swc-linux-arm64-musl@14.2.15':
+ '@next/swc-linux-arm64-musl@14.2.16':
optional: true
'@next/swc-linux-arm64-musl@15.0.3':
@@ -17523,7 +18012,7 @@ snapshots:
'@next/swc-linux-x64-gnu@12.3.4':
optional: true
- '@next/swc-linux-x64-gnu@14.2.15':
+ '@next/swc-linux-x64-gnu@14.2.16':
optional: true
'@next/swc-linux-x64-gnu@15.0.3':
@@ -17532,7 +18021,7 @@ snapshots:
'@next/swc-linux-x64-musl@12.3.4':
optional: true
- '@next/swc-linux-x64-musl@14.2.15':
+ '@next/swc-linux-x64-musl@14.2.16':
optional: true
'@next/swc-linux-x64-musl@15.0.3':
@@ -17541,7 +18030,7 @@ snapshots:
'@next/swc-win32-arm64-msvc@12.3.4':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.15':
+ '@next/swc-win32-arm64-msvc@14.2.16':
optional: true
'@next/swc-win32-arm64-msvc@15.0.3':
@@ -17550,13 +18039,13 @@ snapshots:
'@next/swc-win32-ia32-msvc@12.3.4':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.15':
+ '@next/swc-win32-ia32-msvc@14.2.16':
optional: true
'@next/swc-win32-x64-msvc@12.3.4':
optional: true
- '@next/swc-win32-x64-msvc@14.2.15':
+ '@next/swc-win32-x64-msvc@14.2.16':
optional: true
'@next/swc-win32-x64-msvc@15.0.3':
@@ -17817,7 +18306,7 @@ snapshots:
dependencies:
playwright: 1.48.1
- '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@5.28.5(esbuild@0.23.1))(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.26.1)(webpack-dev-server@5.1.0(webpack@5.95.0(esbuild@0.23.1)))(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15(@types/webpack@5.28.5(esbuild@0.24.2))(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.33.0)(webpack-dev-server@5.1.0(webpack@5.97.1(esbuild@0.24.2)))(webpack-hot-middleware@2.26.1)(webpack@5.97.1(esbuild@0.24.2))':
dependencies:
ansi-html: 0.0.9
core-js-pure: 3.38.0
@@ -17827,12 +18316,12 @@ snapshots:
react-refresh: 0.14.2
schema-utils: 4.2.0
source-map: 0.7.4
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
optionalDependencies:
- '@types/webpack': 5.28.5(esbuild@0.23.1)
+ '@types/webpack': 5.28.5(esbuild@0.24.2)
sockjs-client: 1.6.1
- type-fest: 4.26.1
- webpack-dev-server: 5.1.0(webpack@5.95.0(esbuild@0.23.1))
+ type-fest: 4.33.0
+ webpack-dev-server: 5.1.0(webpack@5.97.1(esbuild@0.24.2))
webpack-hot-middleware: 2.26.1
'@puppeteer/browsers@2.2.2':
@@ -17850,7 +18339,7 @@ snapshots:
'@puppeteer/browsers@2.4.0':
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
extract-zip: 2.0.1
progress: 2.0.3
proxy-agent: 6.4.0
@@ -17865,282 +18354,282 @@ snapshots:
'@radix-ui/primitive@1.1.0': {}
- '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-context@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-context@1.1.1(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-context@1.1.1(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-direction@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-direction@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-dropdown-menu@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dropdown-menu@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-menu': 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-menu': 2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-id@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-id@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-menu@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-menu@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.0(@types/react@18.3.11)(react@18.3.1)
+ react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(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)
- '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@18.3.1)
'@radix-ui/rect': 1.1.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-select@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-select@2.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/number': 1.1.0
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-context': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-direction': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.11)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
aria-hidden: 1.2.4
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.6.0(@types/react@18.3.11)(react@18.3.1)
+ react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
- '@radix-ui/react-slot@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-previous@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
'@radix-ui/rect': 1.1.0
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-use-size@1.1.0(@types/react@18.3.11)(react@18.3.1)':
+ '@radix-ui/react-use-size@1.1.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.11)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
'@radix-ui/rect@1.1.0': {}
@@ -18164,7 +18653,7 @@ snapshots:
'@react-aria/ssr@3.9.6(react@18.3.1)':
dependencies:
- '@swc/helpers': 0.5.5
+ '@swc/helpers': 0.5.13
react: 18.3.1
'@react-aria/utils@3.25.3(react@18.3.1)':
@@ -18172,7 +18661,7 @@ snapshots:
'@react-aria/ssr': 3.9.6(react@18.3.1)
'@react-stately/utils': 3.10.4(react@18.3.1)
'@react-types/shared': 3.25.0(react@18.3.1)
- '@swc/helpers': 0.5.5
+ '@swc/helpers': 0.5.13
clsx: 2.1.1
react: 18.3.1
@@ -18254,7 +18743,7 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-plugin-metro@9.3.3(@babel/core@7.25.8)(encoding@0.1.13)':
+ '@react-native-community/cli-plugin-metro@9.3.3(@babel/core@7.25.9)(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-server-api': 9.2.1(encoding@0.1.13)
'@react-native-community/cli-tools': 9.2.1(encoding@0.1.13)
@@ -18262,7 +18751,7 @@ snapshots:
metro: 0.72.4(encoding@0.1.13)
metro-config: 0.72.4(encoding@0.1.13)
metro-core: 0.72.4
- metro-react-native-babel-transformer: 0.72.4(@babel/core@7.25.8)
+ metro-react-native-babel-transformer: 0.72.4(@babel/core@7.25.9)
metro-resolver: 0.72.4
metro-runtime: 0.72.4
readline: 1.3.0
@@ -18308,14 +18797,14 @@ snapshots:
dependencies:
joi: 17.13.3
- '@react-native-community/cli@9.3.5(@babel/core@7.25.8)(encoding@0.1.13)':
+ '@react-native-community/cli@9.3.5(@babel/core@7.25.9)(encoding@0.1.13)':
dependencies:
'@react-native-community/cli-clean': 9.2.1(encoding@0.1.13)
'@react-native-community/cli-config': 9.2.1(encoding@0.1.13)
'@react-native-community/cli-debugger-ui': 9.0.0
'@react-native-community/cli-doctor': 9.3.0(encoding@0.1.13)
'@react-native-community/cli-hermes': 9.3.4(encoding@0.1.13)
- '@react-native-community/cli-plugin-metro': 9.3.3(@babel/core@7.25.8)(encoding@0.1.13)
+ '@react-native-community/cli-plugin-metro': 9.3.3(@babel/core@7.25.9)(encoding@0.1.13)
'@react-native-community/cli-server-api': 9.2.1(encoding@0.1.13)
'@react-native-community/cli-tools': 9.2.1(encoding@0.1.13)
'@react-native-community/cli-types': 9.1.0
@@ -18351,14 +18840,14 @@ snapshots:
dependencies:
react: 18.3.1
- '@remix-run/dev@2.13.1(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/serve@2.13.1(typescript@5.6.3))(@types/node@22.7.5)(terser@5.35.0)(typescript@5.6.3)(vite@5.4.9(@types/node@22.7.5)(terser@5.35.0))':
+ '@remix-run/dev@2.13.1(@remix-run/react@2.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@remix-run/serve@2.13.1(typescript@5.6.3))(@types/node@22.10.9)(terser@5.37.0)(typescript@5.6.3)(vite@5.4.10(@types/node@22.10.9)(terser@5.37.0))':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@babel/generator': 7.24.7
- '@babel/parser': 7.24.7
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8)
+ '@babel/parser': 7.21.9
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.9)
+ '@babel/preset-typescript': 7.25.9(@babel/core@7.25.9)
'@babel/traverse': 7.24.7
'@babel/types': 7.24.7
'@mdx-js/mdx': 2.3.0
@@ -18368,7 +18857,7 @@ snapshots:
'@remix-run/router': 1.20.0
'@remix-run/server-runtime': 2.13.1(typescript@5.6.3)
'@types/mdx': 2.0.13
- '@vanilla-extract/integration': 6.2.1(@types/node@22.7.5)(terser@5.35.0)
+ '@vanilla-extract/integration': 6.2.1(@types/node@22.10.9)(terser@5.37.0)
arg: 5.0.2
cacache: 17.1.4
chalk: 4.1.2
@@ -18410,7 +18899,7 @@ snapshots:
optionalDependencies:
'@remix-run/serve': 2.13.1(typescript@5.6.3)
typescript: 5.6.3
- vite: 5.4.9(@types/node@22.7.5)(terser@5.35.0)
+ vite: 5.4.10(@types/node@22.10.9)(terser@5.37.0)
transitivePeerDependencies:
- '@types/node'
- bluebird
@@ -18512,11 +19001,9 @@ snapshots:
dependencies:
web-streams-polyfill: 3.3.3
- '@resvg/resvg-wasm@2.4.0': {}
-
- '@rollup/plugin-babel@6.0.4(@babel/core@7.25.8)(@types/babel__core@7.20.5)(rollup@4.24.0)':
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.25.9)(@types/babel__core@7.20.5)(rollup@4.24.0)':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@babel/helper-module-imports': 7.22.5
'@rollup/pluginutils': 5.0.5(rollup@4.24.0)
optionalDependencies:
@@ -18668,11 +19155,6 @@ snapshots:
'@shikijs/vscode-textmate@9.3.0': {}
- '@shuding/opentype.js@1.4.0-beta.0':
- dependencies:
- fflate: 0.7.4
- string.prototype.codepointat: 0.2.1
-
'@sideway/address@4.1.5':
dependencies:
'@hapi/hoek': 9.3.0
@@ -18729,7 +19211,7 @@ snapshots:
'@sitespeed.io/tracium@0.3.3':
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -18772,34 +19254,31 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/builder-webpack5@8.3.5(esbuild@0.23.1)(storybook@8.3.5)(typescript@5.6.3)':
+ '@storybook/builder-webpack5@8.5.1(esbuild@0.24.2)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.5(storybook@8.3.5)
- '@types/node': 22.7.5
+ '@storybook/core-webpack': 8.5.1(storybook@8.5.1(prettier@3.3.3))
'@types/semver': 7.5.0
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
cjs-module-lexer: 1.4.1
constants-browserify: 1.0.0
- css-loader: 6.11.0(webpack@5.95.0(esbuild@0.23.1))
- es-module-lexer: 1.5.4
- express: 4.21.1(supports-color@6.1.0)
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1))
- fs-extra: 11.2.0
- html-webpack-plugin: 5.6.0(webpack@5.95.0(esbuild@0.23.1))
- magic-string: 0.30.12
+ css-loader: 6.11.0(webpack@5.97.1(esbuild@0.24.2))
+ es-module-lexer: 1.6.0
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.97.1(esbuild@0.24.2))
+ html-webpack-plugin: 5.6.3(webpack@5.97.1(esbuild@0.24.2))
+ magic-string: 0.30.17
path-browserify: 1.0.1
process: 0.11.10
semver: 7.6.2
- storybook: 8.3.5
- style-loader: 3.3.4(webpack@5.95.0(esbuild@0.23.1))
- terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1))
+ storybook: 8.5.1(prettier@3.3.3)
+ style-loader: 3.3.4(webpack@5.97.1(esbuild@0.24.2))
+ terser-webpack-plugin: 5.3.11(esbuild@0.24.2)(webpack@5.97.1(esbuild@0.24.2))
ts-dedent: 2.2.0
url: 0.11.4
util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.95.0(esbuild@0.23.1)
- webpack-dev-middleware: 6.1.3(webpack@5.95.0(esbuild@0.23.1))
+ webpack: 5.97.1(esbuild@0.24.2)
+ webpack-dev-middleware: 6.1.3(webpack@5.97.1(esbuild@0.24.2))
webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.6.2
optionalDependencies:
@@ -18808,113 +19287,107 @@ snapshots:
- '@rspack/core'
- '@swc/core'
- esbuild
- - supports-color
- uglify-js
- webpack-cli
- '@storybook/components@8.3.5(storybook@8.3.5)':
+ '@storybook/components@8.5.1(storybook@8.5.1(prettier@3.3.3))':
dependencies:
- storybook: 8.3.5
+ storybook: 8.5.1(prettier@3.3.3)
- '@storybook/core-webpack@8.3.5(storybook@8.3.5)':
+ '@storybook/core-webpack@8.5.1(storybook@8.5.1(prettier@3.3.3))':
dependencies:
- '@types/node': 22.7.5
- storybook: 8.3.5
+ storybook: 8.5.1(prettier@3.3.3)
ts-dedent: 2.2.0
- '@storybook/core@8.3.5':
+ '@storybook/core@8.5.1(prettier@3.3.3)':
dependencies:
- '@storybook/csf': 0.1.11
- '@types/express': 4.17.21
+ '@storybook/csf': 0.1.12
better-opn: 3.0.2
browser-assert: 1.2.1
- esbuild: 0.23.1
- esbuild-register: 3.6.0(esbuild@0.23.1)
- express: 4.21.1(supports-color@6.1.0)
+ esbuild: 0.24.2
+ esbuild-register: 3.6.0(esbuild@0.24.2)
jsdoc-type-pratt-parser: 4.1.0
process: 0.11.10
recast: 0.23.9
semver: 7.6.3
util: 0.12.5
ws: 8.18.0
+ optionalDependencies:
+ prettier: 3.3.3
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- '@storybook/csf@0.1.11':
+ '@storybook/csf@0.1.12':
dependencies:
type-fest: 2.19.0
'@storybook/global@5.0.0': {}
- '@storybook/instrumenter@8.3.5(storybook@8.3.5)':
+ '@storybook/instrumenter@8.5.1(storybook@8.5.1(prettier@3.3.3))':
dependencies:
'@storybook/global': 5.0.0
- '@vitest/utils': 2.1.3
- storybook: 8.3.5
- util: 0.12.5
-
- '@storybook/manager-api@8.3.5(storybook@8.3.5)':
- dependencies:
- storybook: 8.3.5
-
- '@storybook/nextjs@8.3.5(@types/webpack@5.28.5(esbuild@0.23.1))(esbuild@0.23.1)(next@15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sockjs-client@1.6.1)(storybook@8.3.5)(type-fest@4.26.1)(typescript@5.6.3)(webpack-dev-server@5.1.0(webpack@5.95.0(esbuild@0.23.1)))(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))':
- dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.25.8)
- '@babel/preset-env': 7.25.8(@babel/core@7.25.8)
- '@babel/preset-react': 7.25.7(@babel/core@7.25.8)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8)
+ '@vitest/utils': 2.1.8
+ storybook: 8.5.1(prettier@3.3.3)
+
+ '@storybook/manager-api@8.5.1(storybook@8.5.1(prettier@3.3.3))':
+ dependencies:
+ storybook: 8.5.1(prettier@3.3.3)
+
+ '@storybook/nextjs@8.5.1(@types/webpack@5.28.5(esbuild@0.24.2))(esbuild@0.24.2)(next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sockjs-client@1.6.1)(storybook@8.5.1(prettier@3.3.3))(type-fest@4.33.0)(typescript@5.6.3)(webpack-dev-server@5.1.0(webpack@5.97.1(esbuild@0.24.2)))(webpack-hot-middleware@2.26.1)(webpack@5.97.1(esbuild@0.24.2))':
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.25.9)
+ '@babel/preset-env': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-react': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-typescript': 7.25.9(@babel/core@7.25.9)
'@babel/runtime': 7.24.8
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@5.28.5(esbuild@0.23.1))(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.26.1)(webpack-dev-server@5.1.0(webpack@5.95.0(esbuild@0.23.1)))(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))
- '@storybook/builder-webpack5': 8.3.5(esbuild@0.23.1)(storybook@8.3.5)(typescript@5.6.3)
- '@storybook/preset-react-webpack': 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)
- '@storybook/react': 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)
- '@storybook/test': 8.3.5(storybook@8.3.5)
- '@types/node': 22.7.5
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(@types/webpack@5.28.5(esbuild@0.24.2))(react-refresh@0.14.2)(sockjs-client@1.6.1)(type-fest@4.33.0)(webpack-dev-server@5.1.0(webpack@5.97.1(esbuild@0.24.2)))(webpack-hot-middleware@2.26.1)(webpack@5.97.1(esbuild@0.24.2))
+ '@storybook/builder-webpack5': 8.5.1(esbuild@0.24.2)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)
+ '@storybook/preset-react-webpack': 8.5.1(@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3)))(esbuild@0.24.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)
+ '@storybook/react': 8.5.1(@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)
+ '@storybook/test': 8.5.1(storybook@8.5.1(prettier@3.3.3))
'@types/semver': 7.5.0
- babel-loader: 9.1.3(@babel/core@7.25.8)(webpack@5.95.0(esbuild@0.23.1))
- css-loader: 6.11.0(webpack@5.95.0(esbuild@0.23.1))
+ babel-loader: 9.1.3(@babel/core@7.25.9)(webpack@5.97.1(esbuild@0.24.2))
+ css-loader: 6.11.0(webpack@5.97.1(esbuild@0.24.2))
find-up: 5.0.0
- fs-extra: 11.2.0
image-size: 1.0.2
loader-utils: 3.2.1
- next: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- node-polyfill-webpack-plugin: 2.0.1(webpack@5.95.0(esbuild@0.23.1))
+ next: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ node-polyfill-webpack-plugin: 2.0.1(webpack@5.97.1(esbuild@0.24.2))
pnp-webpack-plugin: 1.7.0(typescript@5.6.3)
postcss: 8.4.47
- postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1))
+ postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.97.1(esbuild@0.24.2))
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-refresh: 0.14.2
resolve-url-loader: 5.0.0
- sass-loader: 13.3.3(webpack@5.95.0(esbuild@0.23.1))
+ sass-loader: 14.2.1(webpack@5.97.1(esbuild@0.24.2))
semver: 7.6.2
- storybook: 8.3.5
- style-loader: 3.3.4(webpack@5.95.0(esbuild@0.23.1))
- styled-jsx: 5.1.6(@babel/core@7.25.8)(react@18.3.1)
+ storybook: 8.5.1(prettier@3.3.3)
+ style-loader: 3.3.4(webpack@5.97.1(esbuild@0.24.2))
+ styled-jsx: 5.1.6(@babel/core@7.25.9)(react@18.3.1)
ts-dedent: 2.2.0
tsconfig-paths: 4.2.0
tsconfig-paths-webpack-plugin: 4.1.0
optionalDependencies:
sharp: 0.33.5
typescript: 5.6.3
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
- '@types/webpack'
- babel-plugin-macros
- esbuild
- - fibers
- node-sass
- sass
- sass-embedded
@@ -18927,24 +19400,22 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/preset-react-webpack@8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)':
+ '@storybook/preset-react-webpack@8.5.1(@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3)))(esbuild@0.24.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.5(storybook@8.3.5)
- '@storybook/react': 8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1))
- '@types/node': 22.7.5
+ '@storybook/core-webpack': 8.5.1(storybook@8.5.1(prettier@3.3.3))
+ '@storybook/react': 8.5.1(@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.97.1(esbuild@0.24.2))
'@types/semver': 7.5.0
find-up: 5.0.0
- fs-extra: 11.2.0
- magic-string: 0.30.12
+ magic-string: 0.30.17
react: 18.3.1
- react-docgen: 7.0.3
+ react-docgen: 7.1.0
react-dom: 18.3.1(react@18.3.1)
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 7.6.2
- storybook: 8.3.5
+ storybook: 8.5.1(prettier@3.3.3)
tsconfig-paths: 4.2.0
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -18955,75 +19426,60 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/preview-api@8.3.5(storybook@8.3.5)':
+ '@storybook/preview-api@8.5.1(storybook@8.5.1(prettier@3.3.3))':
dependencies:
- storybook: 8.3.5
+ storybook: 8.5.1(prettier@3.3.3)
- '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1))':
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.97.1(esbuild@0.24.2))':
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
endent: 2.1.0
find-cache-dir: 3.3.2
flat-cache: 3.2.0
micromatch: 4.0.8
react-docgen-typescript: 2.2.2(typescript@5.6.3)
- tslib: 2.8.0
+ tslib: 2.8.1
typescript: 5.6.3
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
transitivePeerDependencies:
- supports-color
- '@storybook/react-dom-shim@8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)':
+ '@storybook/react-dom-shim@8.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))':
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- storybook: 8.3.5
+ storybook: 8.5.1(prettier@3.3.3)
- '@storybook/react@8.3.5(@storybook/test@8.3.5(storybook@8.3.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)(typescript@5.6.3)':
+ '@storybook/react@8.5.1(@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))(typescript@5.6.3)':
dependencies:
- '@storybook/components': 8.3.5(storybook@8.3.5)
+ '@storybook/components': 8.5.1(storybook@8.5.1(prettier@3.3.3))
'@storybook/global': 5.0.0
- '@storybook/manager-api': 8.3.5(storybook@8.3.5)
- '@storybook/preview-api': 8.3.5(storybook@8.3.5)
- '@storybook/react-dom-shim': 8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5)
- '@storybook/theming': 8.3.5(storybook@8.3.5)
- '@types/escodegen': 0.0.6
- '@types/estree': 0.0.51
- '@types/node': 22.7.5
- acorn: 7.4.1
- acorn-jsx: 5.3.2(acorn@7.4.1)
- acorn-walk: 7.2.0
- escodegen: 2.1.0
- html-tags: 3.3.1
- prop-types: 15.8.1
+ '@storybook/manager-api': 8.5.1(storybook@8.5.1(prettier@3.3.3))
+ '@storybook/preview-api': 8.5.1(storybook@8.5.1(prettier@3.3.3))
+ '@storybook/react-dom-shim': 8.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.5.1(prettier@3.3.3))
+ '@storybook/theming': 8.5.1(storybook@8.5.1(prettier@3.3.3))
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- semver: 7.6.2
- storybook: 8.3.5
- ts-dedent: 2.2.0
- type-fest: 2.19.0
- util-deprecate: 1.0.2
+ storybook: 8.5.1(prettier@3.3.3)
optionalDependencies:
- '@storybook/test': 8.3.5(storybook@8.3.5)
+ '@storybook/test': 8.5.1(storybook@8.5.1(prettier@3.3.3))
typescript: 5.6.3
- '@storybook/test@8.3.5(storybook@8.3.5)':
+ '@storybook/test@8.5.1(storybook@8.5.1(prettier@3.3.3))':
dependencies:
- '@storybook/csf': 0.1.11
+ '@storybook/csf': 0.1.12
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.3.5(storybook@8.3.5)
+ '@storybook/instrumenter': 8.5.1(storybook@8.5.1(prettier@3.3.3))
'@testing-library/dom': 10.4.0
'@testing-library/jest-dom': 6.5.0
'@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0)
'@vitest/expect': 2.0.5
'@vitest/spy': 2.0.5
- storybook: 8.3.5
- util: 0.12.5
+ storybook: 8.5.1(prettier@3.3.3)
- '@storybook/theming@8.3.5(storybook@8.3.5)':
+ '@storybook/theming@8.5.1(storybook@8.5.1(prettier@3.3.3))':
dependencies:
- storybook: 8.3.5
+ storybook: 8.5.1(prettier@3.3.3)
'@swc/counter@0.1.3': {}
@@ -19050,7 +19506,7 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.2
'@babel/runtime': 7.24.8
'@types/aria-query': 5.0.4
aria-query: 5.3.0
@@ -19061,7 +19517,7 @@ snapshots:
'@testing-library/jest-dom@6.5.0':
dependencies:
- '@adobe/css-tools': 4.4.0
+ '@adobe/css-tools': 4.4.1
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
@@ -19069,14 +19525,14 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.11)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@babel/runtime': 7.24.7
'@testing-library/dom': 10.4.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
'@types/react-dom': 18.3.1
'@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
@@ -19117,44 +19573,46 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.25.9
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.25.9
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.8
+ '@babel/types': 7.25.9
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
+ optional: true
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
optional: true
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 5.0.0
- '@types/node': 20.16.11
+ '@types/express-serve-static-core': 5.0.5
+ '@types/node': 20.17.16
optional: true
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
+ optional: true
'@types/cookie@0.6.0': {}
@@ -19168,27 +19626,34 @@ snapshots:
'@types/doctrine@0.0.9': {}
- '@types/escodegen@0.0.6': {}
+ '@types/eslint-scope@3.7.7':
+ dependencies:
+ '@types/eslint': 9.6.1
+ '@types/estree': 1.0.6
- '@types/estree-jsx@1.0.5':
+ '@types/eslint@9.6.1':
dependencies:
'@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
- '@types/estree@0.0.51': {}
+ '@types/estree-jsx@1.0.5':
+ dependencies:
+ '@types/estree': 1.0.6
'@types/estree@1.0.6': {}
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 20.16.11
- '@types/qs': 6.9.16
+ '@types/node': 20.17.16
+ '@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
+ optional: true
- '@types/express-serve-static-core@5.0.0':
+ '@types/express-serve-static-core@5.0.5':
dependencies:
- '@types/node': 20.16.11
- '@types/qs': 6.9.16
+ '@types/node': 20.17.16
+ '@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
optional: true
@@ -19197,17 +19662,18 @@ snapshots:
dependencies:
'@types/body-parser': 1.19.5
'@types/express-serve-static-core': 4.19.6
- '@types/qs': 6.9.16
+ '@types/qs': 6.9.18
'@types/serve-static': 1.15.7
+ optional: true
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/hast@2.3.10':
dependencies:
@@ -19221,11 +19687,12 @@ snapshots:
'@types/html-minifier-terser@6.1.0': {}
- '@types/http-errors@2.0.4': {}
+ '@types/http-errors@2.0.4':
+ optional: true
'@types/http-proxy@1.17.15':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
optional: true
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -19238,14 +19705,14 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
- '@types/jest@29.5.13':
+ '@types/jest@29.5.14':
dependencies:
expect: 29.7.0
pretty-format: 29.7.0
'@types/jsdom@20.0.1':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/tough-cookie': 4.0.5
parse5: 7.1.2
@@ -19255,7 +19722,7 @@ snapshots:
'@types/katex@0.16.7': {}
- '@types/lodash@4.17.10': {}
+ '@types/lodash@4.17.12': {}
'@types/mdast@3.0.15':
dependencies:
@@ -19267,7 +19734,8 @@ snapshots:
'@types/mdx@2.0.13': {}
- '@types/mime@1.3.5': {}
+ '@types/mime@1.3.5':
+ optional: true
'@types/minimatch@5.1.2': {}
@@ -19283,18 +19751,23 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
optional: true
- '@types/node@20.16.11':
+ '@types/node@20.17.0':
dependencies:
undici-types: 6.19.8
- '@types/node@22.7.5':
+ '@types/node@20.17.16':
dependencies:
undici-types: 6.19.8
+ optional: true
- '@types/normalize-package-data@2.4.4': {}
+ '@types/node@22.10.9':
+ dependencies:
+ undici-types: 6.20.0
+
+ '@types/normalize-package-data@2.4.4': {}
'@types/parse-json@4.0.2': {}
@@ -19302,15 +19775,17 @@ snapshots:
'@types/q@1.5.8': {}
- '@types/qs@6.9.16': {}
+ '@types/qs@6.9.18':
+ optional: true
- '@types/range-parser@1.2.7': {}
+ '@types/range-parser@1.2.7':
+ optional: true
'@types/react-dom@18.3.1':
dependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- '@types/react@18.3.11':
+ '@types/react@18.3.12':
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
@@ -19327,7 +19802,8 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
+ optional: true
'@types/serve-index@1.9.4':
dependencies:
@@ -19337,12 +19813,13 @@ snapshots:
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
'@types/send': 0.17.4
+ optional: true
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
optional: true
'@types/source-list-map@0.1.6': {}
@@ -19363,24 +19840,24 @@ snapshots:
'@types/webpack-sources@3.2.3':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/source-list-map': 0.1.6
source-map: 0.7.4
- '@types/webpack@4.41.39':
+ '@types/webpack@4.41.40':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
'@types/tapable': 1.0.12
'@types/uglify-js': 3.17.5
'@types/webpack-sources': 3.2.3
anymatch: 3.1.3
source-map: 0.6.1
- '@types/webpack@5.28.5(esbuild@0.23.1)':
+ '@types/webpack@5.28.5(esbuild@0.24.2)':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
tapable: 2.2.1
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -19388,9 +19865,9 @@ snapshots:
- webpack-cli
optional: true
- '@types/ws@8.5.12':
+ '@types/ws@8.5.13':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.16
optional: true
'@types/yargs-parser@21.0.3': {}
@@ -19409,18 +19886,56 @@ snapshots:
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
+ optional: true
+
+ '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/type-utils': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.11.0
+ eslint: 9.13.0(jiti@2.3.3)
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.4.3(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
optional: true
- '@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/type-utils': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.11.0
+ eslint: 9.13.0(jiti@2.3.3)
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.4.3(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ '@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
'@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
'@typescript-eslint/scope-manager': 8.9.0
- '@typescript-eslint/type-utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 8.9.0
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -19430,28 +19945,61 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.11.0
+ debug: 4.4.0
+ eslint: 9.13.0(jiti@2.3.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ '@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.9.0
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 8.9.0
debug: 4.3.7(supports-color@6.1.0)
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/scope-manager@8.11.0':
+ dependencies:
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/visitor-keys': 8.11.0
+ optional: true
+
'@typescript-eslint/scope-manager@8.9.0':
dependencies:
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/visitor-keys': 8.9.0
- '@typescript-eslint/type-utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ debug: 4.4.0
+ ts-api-utils: 1.4.3(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - eslint
+ - supports-color
+ optional: true
+
+ '@typescript-eslint/type-utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.6.3)
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
debug: 4.3.7(supports-color@6.1.0)
ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
@@ -19460,8 +20008,27 @@ snapshots:
- eslint
- supports-color
+ '@typescript-eslint/types@8.11.0':
+ optional: true
+
'@typescript-eslint/types@8.9.0': {}
+ '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/visitor-keys': 8.11.0
+ debug: 4.4.0
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.4.3(typescript@5.6.3)
+ optionalDependencies:
+ typescript: 5.6.3
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/typescript-estree@8.9.0(typescript@5.6.3)':
dependencies:
'@typescript-eslint/types': 8.9.0
@@ -19477,17 +20044,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@2.3.3))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.13.0(jiti@2.3.3))
+ '@typescript-eslint/scope-manager': 8.11.0
+ '@typescript-eslint/types': 8.11.0
+ '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+ optional: true
+
+ '@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.3.3))
'@typescript-eslint/scope-manager': 8.9.0
'@typescript-eslint/types': 8.9.0
'@typescript-eslint/typescript-estree': 8.9.0(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
transitivePeerDependencies:
- supports-color
- typescript
+ '@typescript-eslint/visitor-keys@8.11.0':
+ dependencies:
+ '@typescript-eslint/types': 8.11.0
+ eslint-visitor-keys: 3.4.3
+ optional: true
+
'@typescript-eslint/visitor-keys@8.9.0':
dependencies:
'@typescript-eslint/types': 8.9.0
@@ -19495,7 +20080,7 @@ snapshots:
'@typescript/vfs@1.6.0(typescript@5.6.3)':
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
@@ -19516,7 +20101,7 @@ snapshots:
'@vanilla-extract/babel-plugin-debug-ids@1.0.2':
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -19534,10 +20119,10 @@ snapshots:
media-query-parser: 2.0.2
outdent: 0.8.0
- '@vanilla-extract/integration@6.2.1(@types/node@22.7.5)(terser@5.35.0)':
+ '@vanilla-extract/integration@6.2.1(@types/node@22.10.9)(terser@5.37.0)':
dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.9)
'@vanilla-extract/babel-plugin-debug-ids': 1.0.2
'@vanilla-extract/css': 1.11.0
esbuild: 0.17.6
@@ -19547,8 +20132,8 @@ snapshots:
lodash: 4.17.21
mlly: 1.7.1
outdent: 0.8.0
- vite: 4.5.5(@types/node@22.7.5)(terser@5.35.0)
- vite-node: 0.28.5(@types/node@22.7.5)(terser@5.35.0)
+ vite: 4.5.5(@types/node@22.10.9)(terser@5.37.0)
+ vite-node: 0.28.5(@types/node@22.10.9)(terser@5.37.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -19561,64 +20146,58 @@ snapshots:
'@vanilla-extract/private@1.0.3': {}
- '@vercel/analytics@1.3.1(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@vercel/analytics@1.3.1(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
server-only: 0.0.1
optionalDependencies:
- next: 14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- '@vercel/og@0.6.3':
- dependencies:
- '@resvg/resvg-wasm': 2.4.0
- satori: 0.10.9
- yoga-wasm-web: 0.3.3
-
- '@vercel/speed-insights@1.0.12(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@vercel/speed-insights@1.0.13(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
optionalDependencies:
- next: 14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- '@vitejs/plugin-react@4.3.2(vite@5.4.9(@types/node@22.7.5)(terser@5.35.0))':
+ '@vitejs/plugin-react@4.3.3(vite@5.4.10(@types/node@22.10.9)(terser@5.37.0))':
dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.9)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.9(@types/node@22.7.5)(terser@5.35.0)
+ vite: 5.4.10(@types/node@22.10.9)(terser@5.37.0)
transitivePeerDependencies:
- supports-color
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))':
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
- vitest: 2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0)
+ vitest: 2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))':
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
- vitest: 2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0)
+ vitest: 2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)
- '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0))':
+ '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0))':
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
typescript: 5.6.3
- vitest: 2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0)
+ vitest: 2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0)
'@vitest/expect@2.0.5':
dependencies:
'@vitest/spy': 2.0.5
'@vitest/utils': 2.0.5
- chai: 5.1.1
+ chai: 5.1.2
tinyrainbow: 1.2.0
'@vitest/expect@2.1.3':
@@ -19628,21 +20207,21 @@ snapshots:
chai: 5.1.1
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@20.16.11)(terser@5.35.0))':
+ '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@20.17.0)(terser@5.37.0))':
dependencies:
'@vitest/spy': 2.1.3
estree-walker: 3.0.3
magic-string: 0.30.12
optionalDependencies:
- vite: 5.3.3(@types/node@20.16.11)(terser@5.35.0)
+ vite: 5.3.3(@types/node@20.17.0)(terser@5.37.0)
- '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@22.7.5)(terser@5.35.0))':
+ '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@22.10.9)(terser@5.37.0))':
dependencies:
'@vitest/spy': 2.1.3
estree-walker: 3.0.3
magic-string: 0.30.12
optionalDependencies:
- vite: 5.3.3(@types/node@22.7.5)(terser@5.35.0)
+ vite: 5.3.3(@types/node@22.10.9)(terser@5.37.0)
optional: true
'@vitest/pretty-format@2.0.5':
@@ -19653,6 +20232,10 @@ snapshots:
dependencies:
tinyrainbow: 1.2.0
+ '@vitest/pretty-format@2.1.8':
+ dependencies:
+ tinyrainbow: 1.2.0
+
'@vitest/runner@2.1.3':
dependencies:
'@vitest/utils': 2.1.3
@@ -19685,6 +20268,12 @@ snapshots:
loupe: 3.1.2
tinyrainbow: 1.2.0
+ '@vitest/utils@2.1.8':
+ dependencies:
+ '@vitest/pretty-format': 2.1.8
+ loupe: 3.1.2
+ tinyrainbow: 1.2.0
+
'@web3-storage/multipart-parser@1.0.0': {}
'@webassemblyjs/ast@1.12.1':
@@ -19692,6 +20281,11 @@ snapshots:
'@webassemblyjs/helper-numbers': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ast@1.14.1':
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+
'@webassemblyjs/ast@1.9.0':
dependencies:
'@webassemblyjs/helper-module-context': 1.9.0
@@ -19700,14 +20294,20 @@ snapshots:
'@webassemblyjs/floating-point-hex-parser@1.11.6': {}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
+
'@webassemblyjs/floating-point-hex-parser@1.9.0': {}
'@webassemblyjs/helper-api-error@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.13.2': {}
+
'@webassemblyjs/helper-api-error@1.9.0': {}
'@webassemblyjs/helper-buffer@1.12.1': {}
+ '@webassemblyjs/helper-buffer@1.14.1': {}
+
'@webassemblyjs/helper-buffer@1.9.0': {}
'@webassemblyjs/helper-code-frame@1.9.0':
@@ -19726,8 +20326,16 @@ snapshots:
'@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
+ '@webassemblyjs/helper-numbers@1.13.2':
+ dependencies:
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
+
'@webassemblyjs/helper-wasm-bytecode@1.9.0': {}
'@webassemblyjs/helper-wasm-section@1.12.1':
@@ -19737,6 +20345,13 @@ snapshots:
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/wasm-gen': 1.14.1
+
'@webassemblyjs/helper-wasm-section@1.9.0':
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -19748,6 +20363,10 @@ snapshots:
dependencies:
'@xtuc/ieee754': 1.2.0
+ '@webassemblyjs/ieee754@1.13.2':
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+
'@webassemblyjs/ieee754@1.9.0':
dependencies:
'@xtuc/ieee754': 1.2.0
@@ -19756,12 +20375,18 @@ snapshots:
dependencies:
'@xtuc/long': 4.2.2
+ '@webassemblyjs/leb128@1.13.2':
+ dependencies:
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/leb128@1.9.0':
dependencies:
'@xtuc/long': 4.2.2
'@webassemblyjs/utf8@1.11.6': {}
+ '@webassemblyjs/utf8@1.13.2': {}
+
'@webassemblyjs/utf8@1.9.0': {}
'@webassemblyjs/wasm-edit@1.12.1':
@@ -19775,6 +20400,17 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
'@webassemblyjs/wast-printer': 1.12.1
+ '@webassemblyjs/wasm-edit@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-wasm-section': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-opt': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/wast-printer': 1.14.1
+
'@webassemblyjs/wasm-edit@1.9.0':
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -19794,6 +20430,14 @@ snapshots:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/wasm-gen@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
+
'@webassemblyjs/wasm-gen@1.9.0':
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -19809,6 +20453,13 @@ snapshots:
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wasm-opt@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+
'@webassemblyjs/wasm-opt@1.9.0':
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -19825,6 +20476,15 @@ snapshots:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/wasm-parser@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
+
'@webassemblyjs/wasm-parser@1.9.0':
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -19848,6 +20508,11 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
+ '@webassemblyjs/wast-printer@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/wast-printer@1.9.0':
dependencies:
'@webassemblyjs/ast': 1.9.0
@@ -19896,15 +20561,13 @@ snapshots:
dependencies:
acorn: 8.13.0
- acorn-jsx@5.3.2(acorn@7.4.1):
- dependencies:
- acorn: 7.4.1
-
acorn-jsx@5.3.2(acorn@8.13.0):
dependencies:
acorn: 8.13.0
- acorn-walk@7.2.0: {}
+ acorn-jsx@5.3.2(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
acorn-walk@8.3.3:
dependencies:
@@ -19912,12 +20575,12 @@ snapshots:
acorn@6.4.2: {}
- acorn@7.4.1: {}
-
acorn@8.12.0: {}
acorn@8.13.0: {}
+ acorn@8.14.0: {}
+
add-stream@1.0.0: {}
address@1.1.2: {}
@@ -19935,10 +20598,13 @@ snapshots:
agent-base@7.1.1:
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
+ agent-base@7.1.3:
+ optional: true
+
aggregate-error@3.1.0:
dependencies:
clean-stack: 2.2.0
@@ -20224,15 +20890,15 @@ snapshots:
ast-types@0.13.4:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
ast-types@0.15.2:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
ast-types@0.16.1:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
astral-regex@1.0.0: {}
@@ -20284,17 +20950,17 @@ snapshots:
b4a@1.6.7: {}
- babel-core@7.0.0-bridge.0(@babel/core@7.25.8):
+ babel-core@7.0.0-bridge.0(@babel/core@7.25.9):
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
- babel-jest@29.7.0(@babel/core@7.25.8):
+ babel-jest@29.7.0(@babel/core@7.25.9):
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.25.8)
+ babel-preset-jest: 29.6.3(@babel/core@7.25.9)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -20311,16 +20977,16 @@ snapshots:
schema-utils: 2.7.1
webpack: 4.43.0
- babel-loader@9.1.3(@babel/core@7.25.8)(webpack@5.95.0(esbuild@0.23.1)):
+ babel-loader@9.1.3(@babel/core@7.25.9)(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.9
'@istanbuljs/load-nyc-config': 1.1.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-instrument: 5.2.1
@@ -20330,8 +20996,8 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.5
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
@@ -20343,27 +21009,27 @@ snapshots:
reselect: 4.1.8
resolve: 1.22.8
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.8):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.9):
dependencies:
- '@babel/compat-data': 7.25.8
- '@babel/core': 7.25.8
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
+ '@babel/compat-data': 7.25.9
+ '@babel/core': 7.25.9
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.8):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.9):
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.9)
core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.8):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.9):
dependencies:
- '@babel/core': 7.25.8
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.9)
transitivePeerDependencies:
- supports-color
@@ -20371,73 +21037,92 @@ snapshots:
babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {}
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.8):
- dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.8)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.8)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.8)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.8)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.8)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.8)
-
- babel-preset-expo@9.2.2(@babel/core@7.25.8):
- dependencies:
- '@babel/plugin-proposal-decorators': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/preset-env': 7.25.8(@babel/core@7.25.8)
+ babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.9):
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.9)
+
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.9):
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.9)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.9)
+ '@babel/plugin-syntax-import-attributes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.9)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.9)
+
+ babel-preset-expo@9.2.2(@babel/core@7.25.9):
+ dependencies:
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-env': 7.25.9(@babel/core@7.25.9)
babel-plugin-module-resolver: 4.1.0
babel-plugin-react-native-web: 0.18.12
- metro-react-native-babel-preset: 0.72.3(@babel/core@7.25.8)
+ metro-react-native-babel-preset: 0.72.3(@babel/core@7.25.9)
transitivePeerDependencies:
- '@babel/core'
- supports-color
- babel-preset-fbjs@3.4.0(@babel/core@7.25.8):
- dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.8)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-block-scoped-functions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-for-of': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-member-expression-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-object-super': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-property-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.8)
+ babel-preset-fbjs@3.4.0(@babel/core@7.25.9):
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.9)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.9)
+ '@babel/plugin-syntax-flow': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.9)
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
- babel-preset-jest@29.6.3(@babel/core@7.25.8):
+ babel-preset-jest@29.6.3(@babel/core@7.25.9):
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.9)
bail@2.0.2: {}
@@ -20467,8 +21152,6 @@ snapshots:
streamx: 2.20.1
optional: true
- base64-js@0.0.8: {}
-
base64-js@1.5.1: {}
base@0.11.2:
@@ -20551,7 +21234,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- bonjour-service@1.2.1:
+ bonjour-service@1.3.0:
dependencies:
fast-deep-equal: 3.1.3
multicast-dns: 7.2.5
@@ -20666,7 +21349,7 @@ snapshots:
browserslist@4.14.2:
dependencies:
caniuse-lite: 1.0.30001669
- electron-to-chromium: 1.5.39
+ electron-to-chromium: 1.5.45
escalade: 3.2.0
node-releases: 1.1.77
@@ -20677,6 +21360,20 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.0)
+ browserslist@4.24.2:
+ dependencies:
+ caniuse-lite: 1.0.30001669
+ electron-to-chromium: 1.5.45
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
+
+ browserslist@4.24.4:
+ dependencies:
+ caniuse-lite: 1.0.30001695
+ electron-to-chromium: 1.5.86
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.2(browserslist@4.24.4)
+
bser@2.1.1:
dependencies:
node-int64: 0.4.0
@@ -20822,6 +21519,11 @@ snapshots:
union-value: 1.0.1
unset-value: 1.0.0
+ call-bind-apply-helpers@1.0.1:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
call-bind@1.0.2:
dependencies:
function-bind: 1.1.1
@@ -20835,6 +21537,18 @@ snapshots:
get-intrinsic: 1.2.4
set-function-length: 1.2.2
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ get-intrinsic: 1.2.7
+ set-function-length: 1.2.2
+
+ call-bound@1.0.3:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ get-intrinsic: 1.2.7
+
caller-callsite@2.0.0:
dependencies:
callsites: 2.0.0
@@ -20850,7 +21564,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.8.0
+ tslib: 2.8.1
camelcase-css@2.0.1: {}
@@ -20858,17 +21572,17 @@ snapshots:
camelcase@6.3.0: {}
- camelize@1.0.1: {}
-
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001669
+ browserslist: 4.24.4
+ caniuse-lite: 1.0.30001695
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
caniuse-lite@1.0.30001669: {}
+ caniuse-lite@1.0.30001695: {}
+
case-sensitive-paths-webpack-plugin@2.4.0: {}
ccount@2.0.1: {}
@@ -20881,6 +21595,14 @@ snapshots:
loupe: 3.1.1
pathval: 2.0.0
+ chai@5.1.2:
+ dependencies:
+ assertion-error: 2.0.1
+ check-error: 2.1.1
+ deep-eql: 5.0.2
+ loupe: 3.1.2
+ pathval: 2.0.0
+
chalk@2.3.0:
dependencies:
ansi-styles: 3.2.1
@@ -21035,7 +21757,7 @@ snapshots:
clean-webpack-plugin@3.0.0(webpack@4.43.0):
dependencies:
- '@types/webpack': 4.41.39
+ '@types/webpack': 4.41.40
del: 4.1.1
webpack: 4.43.0
@@ -21229,6 +21951,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ compression@1.7.5:
+ dependencies:
+ bytes: 3.1.2
+ compressible: 2.0.18
+ debug: 2.6.9(supports-color@6.1.0)
+ negotiator: 0.6.4
+ on-headers: 1.0.2
+ safe-buffer: 5.2.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
compute-scroll-into-view@3.1.0: {}
concat-map@0.0.1: {}
@@ -21242,6 +21977,8 @@ snapshots:
confbox@0.1.7: {}
+ confbox@0.1.8: {}
+
config-chain@1.1.13:
dependencies:
ini: 1.3.8
@@ -21333,12 +22070,12 @@ snapshots:
cookie-signature@1.2.1: {}
- cookie@0.5.0: {}
-
cookie@0.6.0: {}
cookie@0.7.1: {}
+ cookie@0.7.2: {}
+
copy-concurrently@1.0.5:
dependencies:
aproba: 1.2.0
@@ -21429,13 +22166,13 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
- create-jest@29.7.0(@types/node@20.16.11):
+ create-jest@29.7.0(@types/node@20.17.0):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.16.11)
+ jest-config: 29.7.0(@types/node@20.17.0)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -21444,13 +22181,13 @@ snapshots:
- supports-color
- ts-node
- create-jest@29.7.0(@types/node@22.7.5):
+ create-jest@29.7.0(@types/node@22.10.9):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.7.5)
+ jest-config: 29.7.0(@types/node@22.10.9)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -21511,12 +22248,6 @@ snapshots:
crypto-random-string@2.0.0: {}
- css-background-parser@0.1.0: {}
-
- css-box-shadow@1.0.0-3: {}
-
- css-color-keywords@1.0.0: {}
-
css-color-names@0.0.4: {}
css-declaration-sorter@4.0.1:
@@ -21545,7 +22276,7 @@ snapshots:
semver: 6.3.1
webpack: 4.43.0
- css-loader@6.11.0(webpack@5.95.0(esbuild@0.23.1)):
+ css-loader@6.11.0(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
postcss: 8.4.47
@@ -21556,7 +22287,7 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.6.3
optionalDependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
css-select-base-adapter@0.1.1: {}
@@ -21575,12 +22306,6 @@ snapshots:
domutils: 2.8.0
nth-check: 2.1.1
- css-to-react-native@3.2.0:
- dependencies:
- camelize: 1.0.1
- css-color-keywords: 1.0.0
- postcss-value-parser: 4.2.0
-
css-tree@1.0.0-alpha.37:
dependencies:
mdn-data: 2.0.4
@@ -21663,9 +22388,10 @@ snapshots:
dependencies:
cssom: 0.3.8
- cssstyle@4.1.0:
+ cssstyle@4.2.1:
dependencies:
- rrweb-cssom: 0.7.1
+ '@asamuzakjp/css-color': 2.8.3
+ rrweb-cssom: 0.8.0
optional: true
csstype@3.1.3: {}
@@ -21877,7 +22603,7 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.0.0
+ whatwg-url: 14.1.0
optional: true
data-view-buffer@1.0.1:
@@ -21928,6 +22654,10 @@ snapshots:
optionalDependencies:
supports-color: 6.1.0
+ debug@4.4.0:
+ dependencies:
+ ms: 2.1.3
+
decamelize@1.2.0: {}
decimal.js@10.4.3: {}
@@ -21946,7 +22676,7 @@ snapshots:
deep-equal@1.1.2:
dependencies:
- is-arguments: 1.1.1
+ is-arguments: 1.2.0
is-date-object: 1.0.5
is-regex: 1.1.4
object-is: 1.1.5
@@ -22207,7 +22937,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
dot-prop@5.3.0:
dependencies:
@@ -22215,6 +22945,12 @@ snapshots:
dotenv@16.4.5: {}
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
duplexer@0.1.2: {}
duplexify@3.7.1:
@@ -22230,6 +22966,10 @@ snapshots:
electron-to-chromium@1.5.39: {}
+ electron-to-chromium@1.5.45: {}
+
+ electron-to-chromium@1.5.86: {}
+
elliptic@6.5.4:
dependencies:
bn.js: 4.12.0
@@ -22289,6 +23029,11 @@ snapshots:
graceful-fs: 4.2.11
tapable: 2.2.1
+ enhanced-resolve@5.18.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+
entities@2.2.0: {}
entities@4.5.0: {}
@@ -22377,6 +23122,8 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
+ es-define-property@1.0.1: {}
+
es-errors@1.3.0: {}
es-get-iterator@1.1.3:
@@ -22412,10 +23159,16 @@ snapshots:
es-module-lexer@1.5.4: {}
+ es-module-lexer@1.6.0: {}
+
es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
+ es-object-atoms@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
+
es-set-tostringtag@2.0.3:
dependencies:
get-intrinsic: 1.2.4
@@ -22432,6 +23185,20 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
+ esast-util-from-estree@2.0.0:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ devlop: 1.1.0
+ estree-util-visit: 2.0.0
+ unist-util-position-from-estree: 2.0.0
+
+ esast-util-from-js@2.0.1:
+ dependencies:
+ '@types/estree-jsx': 1.0.5
+ acorn: 8.14.0
+ esast-util-from-estree: 2.0.0
+ vfile-message: 4.0.2
+
esbuild-plugins-node-modules-polyfill@1.6.4(esbuild@0.17.6):
dependencies:
'@jspm/core': 2.0.1
@@ -22439,10 +23206,10 @@ snapshots:
local-pkg: 0.5.0
resolve.exports: 2.0.2
- esbuild-register@3.6.0(esbuild@0.23.1):
+ esbuild-register@3.6.0(esbuild@0.24.2):
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
- esbuild: 0.23.1
+ debug: 4.4.0
+ esbuild: 0.24.2
transitivePeerDependencies:
- supports-color
@@ -22522,32 +23289,33 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
- esbuild@0.23.1:
+ esbuild@0.24.2:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.1
- '@esbuild/android-arm': 0.23.1
- '@esbuild/android-arm64': 0.23.1
- '@esbuild/android-x64': 0.23.1
- '@esbuild/darwin-arm64': 0.23.1
- '@esbuild/darwin-x64': 0.23.1
- '@esbuild/freebsd-arm64': 0.23.1
- '@esbuild/freebsd-x64': 0.23.1
- '@esbuild/linux-arm': 0.23.1
- '@esbuild/linux-arm64': 0.23.1
- '@esbuild/linux-ia32': 0.23.1
- '@esbuild/linux-loong64': 0.23.1
- '@esbuild/linux-mips64el': 0.23.1
- '@esbuild/linux-ppc64': 0.23.1
- '@esbuild/linux-riscv64': 0.23.1
- '@esbuild/linux-s390x': 0.23.1
- '@esbuild/linux-x64': 0.23.1
- '@esbuild/netbsd-x64': 0.23.1
- '@esbuild/openbsd-arm64': 0.23.1
- '@esbuild/openbsd-x64': 0.23.1
- '@esbuild/sunos-x64': 0.23.1
- '@esbuild/win32-arm64': 0.23.1
- '@esbuild/win32-ia32': 0.23.1
- '@esbuild/win32-x64': 0.23.1
+ '@esbuild/aix-ppc64': 0.24.2
+ '@esbuild/android-arm': 0.24.2
+ '@esbuild/android-arm64': 0.24.2
+ '@esbuild/android-x64': 0.24.2
+ '@esbuild/darwin-arm64': 0.24.2
+ '@esbuild/darwin-x64': 0.24.2
+ '@esbuild/freebsd-arm64': 0.24.2
+ '@esbuild/freebsd-x64': 0.24.2
+ '@esbuild/linux-arm': 0.24.2
+ '@esbuild/linux-arm64': 0.24.2
+ '@esbuild/linux-ia32': 0.24.2
+ '@esbuild/linux-loong64': 0.24.2
+ '@esbuild/linux-mips64el': 0.24.2
+ '@esbuild/linux-ppc64': 0.24.2
+ '@esbuild/linux-riscv64': 0.24.2
+ '@esbuild/linux-s390x': 0.24.2
+ '@esbuild/linux-x64': 0.24.2
+ '@esbuild/netbsd-arm64': 0.24.2
+ '@esbuild/netbsd-x64': 0.24.2
+ '@esbuild/openbsd-arm64': 0.24.2
+ '@esbuild/openbsd-x64': 0.24.2
+ '@esbuild/sunos-x64': 0.24.2
+ '@esbuild/win32-arm64': 0.24.2
+ '@esbuild/win32-ia32': 0.24.2
+ '@esbuild/win32-x64': 0.24.2
escalade@3.2.0: {}
@@ -22569,25 +23337,56 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0)):
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)):
+ dependencies:
+ '@eslint/js': 9.12.0
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
+ confusing-browser-globals: 1.0.11
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(typescript@5.6.3)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react: 7.37.1(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-tailwindcss: 3.13.0(tailwindcss@3.4.14)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))
+ typescript-eslint: 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ transitivePeerDependencies:
+ - '@typescript-eslint/eslint-plugin'
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
+ - eslint-plugin-import-x
+ - jest
+ - supports-color
+ - tailwindcss
+ - typescript
+ - vitest
+
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)):
dependencies:
'@eslint/js': 9.12.0
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
confusing-browser-globals: 1.0.11
- eslint: 9.12.0(jiti@2.3.3)
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-css-modules: 2.11.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(typescript@5.6.3)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-react: 7.37.1(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-react-hooks: 5.0.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.12.0(jiti@2.3.3))
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(typescript@5.6.3)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react: 7.37.1(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.13.0(jiti@2.3.3))
eslint-plugin-tailwindcss: 3.13.0(tailwindcss@3.4.14)
- eslint-plugin-unicorn: 56.0.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))
- typescript-eslint: 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))
+ typescript-eslint: 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
@@ -22600,25 +23399,25 @@ snapshots:
- typescript
- vitest
- eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0)):
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.10.9))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0)):
dependencies:
'@eslint/js': 9.12.0
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0))
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0))
confusing-browser-globals: 1.0.11
- eslint: 9.12.0(jiti@2.3.3)
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-css-modules: 2.11.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(typescript@5.6.3)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-react: 7.37.1(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-react-hooks: 5.0.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.12.0(jiti@2.3.3))
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.10.9))(typescript@5.6.3)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react: 7.37.1(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.13.0(jiti@2.3.3))
eslint-plugin-tailwindcss: 3.13.0(tailwindcss@3.4.14)
- eslint-plugin-unicorn: 56.0.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))
- typescript-eslint: 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))
+ typescript-eslint: 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
@@ -22631,25 +23430,25 @@ snapshots:
- typescript
- vitest
- eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.7.5))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0)):
+ eslint-config-molindo@8.0.0(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(tailwindcss@3.4.14)(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0)):
dependencies:
'@eslint/js': 9.12.0
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0))
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@vitest/eslint-plugin': 1.1.7(@typescript-eslint/utils@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0))
confusing-browser-globals: 1.0.11
- eslint: 9.12.0(jiti@2.3.3)
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-css-modules: 2.11.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.7.5))(typescript@5.6.3)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-react: 7.37.1(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-react-hooks: 5.0.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.12.0(jiti@2.3.3))
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-css-modules: 2.11.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(typescript@5.6.3)
+ eslint-plugin-jsx-a11y: 6.10.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react: 7.37.1(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-react-hooks: 5.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-sort-destructure-keys: 2.0.0(eslint@9.13.0(jiti@2.3.3))
eslint-plugin-tailwindcss: 3.13.0(tailwindcss@3.4.14)
- eslint-plugin-unicorn: 56.0.0(eslint@9.12.0(jiti@2.3.3))
- eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))
- typescript-eslint: 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint-plugin-unicorn: 56.0.0(eslint@9.13.0(jiti@2.3.3))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))
+ typescript-eslint: 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
transitivePeerDependencies:
- '@typescript-eslint/eslint-plugin'
- '@typescript-eslint/parser'
@@ -22670,43 +23469,73 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7(supports-color@6.1.0)
enhanced-resolve: 5.17.1
- eslint: 9.12.0(jiti@2.3.3)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3)))(eslint@9.12.0(jiti@2.3.3))
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)))(eslint@9.13.0(jiti@2.3.3))
fast-glob: 3.3.2
get-tsconfig: 4.7.5
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.3))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3))
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3)))(eslint@9.12.0(jiti@2.3.3)):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)):
+ dependencies:
+ '@nolyfill/is-core-module': 1.0.39
+ debug: 4.3.7(supports-color@6.1.0)
+ enhanced-resolve: 5.17.1
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)))(eslint@9.13.0(jiti@2.3.3))
+ fast-glob: 3.3.2
+ get-tsconfig: 4.7.5
+ is-bun-module: 1.2.1
+ is-glob: 4.0.3
+ optionalDependencies:
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3))
+ transitivePeerDependencies:
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)))(eslint@9.13.0(jiti@2.3.3)):
+ dependencies:
+ debug: 3.2.7(supports-color@6.1.0)
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-import-resolver-node: 0.3.9
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3))
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)))(eslint@9.13.0(jiti@2.3.3)):
dependencies:
debug: 3.2.7(supports-color@6.1.0)
optionalDependencies:
- '@typescript-eslint/parser': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3))
transitivePeerDependencies:
- supports-color
- eslint-plugin-css-modules@2.11.0(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-css-modules@2.11.0(eslint@9.13.0(jiti@2.3.3)):
dependencies:
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
gonzales-pe: 4.3.0
lodash: 4.17.21
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -22715,9 +23544,9 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7(supports-color@6.1.0)
doctrine: 2.1.0
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.12.0(jiti@2.3.3)))(eslint@9.12.0(jiti@2.3.3))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)))(eslint@9.13.0(jiti@2.3.3))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -22729,35 +23558,75 @@ snapshots:
string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.16.11))(typescript@5.6.3):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.13.0(jiti@2.3.3)):
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
+ debug: 3.2.7(supports-color@6.1.0)
+ doctrine: 2.1.0
+ eslint: 9.13.0(jiti@2.3.3)
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint-plugin-import@2.31.0)(eslint@9.13.0(jiti@2.3.3)))(eslint@9.13.0(jiti@2.3.3))
+ hasown: 2.0.2
+ is-core-module: 2.15.1
+ is-glob: 4.0.3
+ minimatch: 3.1.2
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.0
+ semver: 6.3.1
+ string.prototype.trimend: 1.0.8
+ tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- jest: 29.7.0(@types/node@20.16.11)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
+
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(typescript@5.6.3):
+ dependencies:
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ jest: 29.7.0(@types/node@20.17.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.7.5))(typescript@5.6.3):
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@22.10.9))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- eslint: 9.12.0(jiti@2.3.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- jest: 29.7.0(@types/node@22.7.5)
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ jest: 29.7.0(@types/node@22.10.9)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-jsx-a11y@6.10.0(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(jest@29.7.0(@types/node@20.17.0))(typescript@5.6.3):
+ dependencies:
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ eslint: 9.13.0(jiti@2.3.3)
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ jest: 29.7.0(@types/node@20.17.0)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ eslint-plugin-jsx-a11y@6.10.0(eslint@9.13.0(jiti@2.3.3)):
dependencies:
aria-query: 5.1.3
array-includes: 3.1.8
@@ -22768,7 +23637,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -22777,23 +23646,23 @@ snapshots:
safe-regex-test: 1.0.3
string.prototype.includes: 2.0.1
- eslint-plugin-react-compiler@0.0.0-experimental-8e3b87c-20240822(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-react-compiler@0.0.0-experimental-8e3b87c-20240822(eslint@9.13.0(jiti@2.3.3)):
dependencies:
- '@babel/core': 7.25.8
- '@babel/parser': 7.24.8
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.8)
- eslint: 9.12.0(jiti@2.3.3)
+ '@babel/core': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.9)
+ eslint: 9.13.0(jiti@2.3.3)
hermes-parser: 0.20.1
zod: 3.23.8
- zod-validation-error: 3.3.1(zod@3.23.8)
+ zod-validation-error: 3.4.0(zod@3.23.8)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-hooks@5.0.0(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-react-hooks@5.0.0(eslint@9.13.0(jiti@2.3.3)):
dependencies:
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
- eslint-plugin-react@7.37.1(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-react@7.37.1(eslint@9.13.0(jiti@2.3.3)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -22801,7 +23670,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -22815,9 +23684,9 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.13.0(jiti@2.3.3)):
dependencies:
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
natural-compare-lite: 1.4.0
eslint-plugin-tailwindcss@3.13.0(tailwindcss@3.4.14):
@@ -22826,14 +23695,14 @@ snapshots:
postcss: 8.4.47
tailwindcss: 3.4.14
- eslint-plugin-unicorn@56.0.0(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-unicorn@56.0.0(eslint@9.13.0(jiti@2.3.3)):
dependencies:
'@babel/helper-validator-identifier': 7.25.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@2.3.3))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.3.3))
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.38.1
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
esquery: 1.6.0
globals: 15.11.0
indent-string: 4.0.0
@@ -22846,11 +23715,17 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3)):
+ dependencies:
+ eslint: 9.13.0(jiti@2.3.3)
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.11.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3)):
dependencies:
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.11.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
eslint-scope@4.0.3:
dependencies:
@@ -22871,14 +23746,14 @@ snapshots:
eslint-visitor-keys@4.1.0: {}
- eslint@9.12.0(jiti@2.3.3):
+ eslint@9.13.0(jiti@2.3.3):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@2.3.3))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@2.3.3))
'@eslint-community/regexpp': 4.11.1
'@eslint/config-array': 0.18.0
- '@eslint/core': 0.6.0
+ '@eslint/core': 0.7.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.12.0
+ '@eslint/js': 9.13.0
'@eslint/plugin-kit': 0.2.0
'@humanfs/node': 0.16.5
'@humanwhocodes/module-importer': 1.0.1
@@ -22978,6 +23853,11 @@ snapshots:
estree-util-is-identifier-name@3.0.0: {}
+ estree-util-scope@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ devlop: 1.1.0
+
estree-util-to-js@1.2.0:
dependencies:
'@types/estree-jsx': 1.0.5
@@ -23086,7 +23966,7 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
- execa@9.4.0:
+ execa@9.4.1:
dependencies:
'@sindresorhus/merge-streams': 4.0.0
cross-spawn: 7.0.3
@@ -23125,15 +24005,15 @@ snapshots:
jest-message-util: 29.7.0
jest-util: 29.7.0
- expo-application@5.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-application@5.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
- expo-asset@8.7.0(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-asset@8.7.0(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
blueimp-md5: 2.19.0
- expo-constants: 14.0.2(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
- expo-file-system: 15.1.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
+ expo-constants: 14.0.2(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
+ expo-file-system: 15.1.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
invariant: 2.2.4
md5-file: 3.2.3
path-browserify: 1.0.1
@@ -23142,32 +24022,32 @@ snapshots:
- expo
- supports-color
- expo-constants@14.0.2(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-constants@14.0.2(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
'@expo/config': 7.0.3
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
uuid: 3.4.0
transitivePeerDependencies:
- supports-color
- expo-error-recovery@4.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-error-recovery@4.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
optional: true
- expo-file-system@15.1.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-file-system@15.1.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
uuid: 3.4.0
- expo-font@11.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-font@11.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
fontfaceobserver: 2.3.0
- expo-keep-awake@11.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-keep-awake@11.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
expo-modules-autolinking@1.0.2:
dependencies:
@@ -23182,33 +24062,33 @@ snapshots:
compare-versions: 3.6.0
invariant: 2.2.4
- expo-pwa@0.0.124(encoding@0.1.13)(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13)):
+ expo-pwa@0.0.124(encoding@0.1.13)(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13)):
dependencies:
'@expo/image-utils': 0.3.23(encoding@0.1.13)
chalk: 4.1.2
commander: 2.20.0
- expo: 47.0.14(@babel/core@7.25.8)(encoding@0.1.13)
+ expo: 47.0.14(@babel/core@7.25.9)(encoding@0.1.13)
update-check: 1.5.3
transitivePeerDependencies:
- encoding
expo-status-bar@1.4.4: {}
- expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13):
+ expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
'@expo/cli': 0.4.11(encoding@0.1.13)(expo-modules-autolinking@1.0.2)
'@expo/config': 7.0.3
'@expo/config-plugins': 5.0.4
'@expo/vector-icons': 13.0.0
- babel-preset-expo: 9.2.2(@babel/core@7.25.8)
+ babel-preset-expo: 9.2.2(@babel/core@7.25.9)
cross-spawn: 6.0.5
- expo-application: 5.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
- expo-asset: 8.7.0(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
- expo-constants: 14.0.2(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
- expo-file-system: 15.1.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
- expo-font: 11.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
- expo-keep-awake: 11.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
+ expo-application: 5.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
+ expo-asset: 8.7.0(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
+ expo-constants: 14.0.2(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
+ expo-file-system: 15.1.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
+ expo-font: 11.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
+ expo-keep-awake: 11.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
expo-modules-autolinking: 1.0.2
expo-modules-core: 1.1.1
fbemitter: 3.0.0(encoding@0.1.13)
@@ -23219,7 +24099,7 @@ snapshots:
pretty-format: 26.6.2
uuid: 3.4.0
optionalDependencies:
- expo-error-recovery: 4.0.1(expo@47.0.14(@babel/core@7.25.8)(encoding@0.1.13))
+ expo-error-recovery: 4.0.1(expo@47.0.14(@babel/core@7.25.9)(encoding@0.1.13))
transitivePeerDependencies:
- '@babel/core'
- bluebird
@@ -23264,6 +24144,43 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ express@4.21.2:
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.3(supports-color@6.1.0)
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.7.1
+ cookie-signature: 1.0.6
+ debug: 2.6.9(supports-color@6.1.0)
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.3.1(supports-color@6.1.0)
+ fresh: 0.5.2
+ http-errors: 2.0.0
+ merge-descriptors: 1.0.3
+ methods: 1.1.2
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ path-to-regexp: 0.1.12
+ proxy-addr: 2.0.7
+ qs: 6.13.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.19.0(supports-color@6.1.0)
+ serve-static: 1.16.2(supports-color@6.1.0)
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ type-is: 1.6.18
+ utils-merge: 1.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -23290,7 +24207,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -23308,7 +24225,16 @@ snapshots:
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
+
+ fast-glob@3.3.3:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.8
+ optional: true
fast-json-parse@1.0.3: {}
@@ -23375,8 +24301,6 @@ snapshots:
fetch-retry@4.1.1: {}
- fflate@0.7.4: {}
-
fflate@0.8.2: {}
figgy-pudding@3.5.2: {}
@@ -23494,7 +24418,7 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.2
keyv: 4.5.4
rimraf: 3.0.2
@@ -23505,11 +24429,13 @@ snapshots:
flatted@3.3.1: {}
+ flatted@3.3.2: {}
+
flexsearch@0.7.43: {}
flow-parser@0.121.0: {}
- flow-parser@0.248.1: {}
+ flow-parser@0.250.0: {}
flush-write-stream@1.1.1:
dependencies:
@@ -23533,9 +24459,9 @@ snapshots:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@4.1.6(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0):
+ fork-ts-checker-webpack-plugin@4.1.6(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0):
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.25.9
chalk: 2.4.2
micromatch: 3.1.10(supports-color@6.1.0)
minimatch: 3.1.2
@@ -23545,13 +24471,13 @@ snapshots:
webpack: 4.43.0
worker-rpc: 0.1.1
optionalDependencies:
- eslint: 9.12.0(jiti@2.3.3)
+ eslint: 9.13.0(jiti@2.3.3)
transitivePeerDependencies:
- supports-color
- fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1)):
+ fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.2
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -23561,10 +24487,10 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.6.3
+ semver: 7.6.2
tapable: 2.2.1
typescript: 5.6.3
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
form-data@3.0.2:
dependencies:
@@ -23628,6 +24554,12 @@ snapshots:
jsonfile: 6.1.0
universalify: 2.0.1
+ fs-extra@11.3.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ jsonfile: 6.1.0
+ universalify: 2.0.1
+
fs-extra@7.0.1:
dependencies:
graceful-fs: 4.2.11
@@ -23700,7 +24632,7 @@ snapshots:
generic-names@4.0.0:
dependencies:
- loader-utils: 3.2.1
+ loader-utils: 3.3.1
gensync@1.0.0-beta.2: {}
@@ -23725,6 +24657,19 @@ snapshots:
has-symbols: 1.0.3
hasown: 2.0.2
+ get-intrinsic@1.2.7:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
+
get-nonce@1.0.1: {}
get-package-type@0.1.0: {}
@@ -23733,6 +24678,11 @@ snapshots:
get-port@5.1.1: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
+
get-stream@3.0.0: {}
get-stream@4.1.0:
@@ -23765,9 +24715,9 @@ snapshots:
get-uri@6.0.3:
dependencies:
basic-ftp: 5.0.5
- data-uri-to-buffer: 6.0.2
- debug: 4.3.7(supports-color@6.1.0)
- fs-extra: 11.2.0
+ data-uri-to-buffer: 6.0.2
+ debug: 4.4.0
+ fs-extra: 11.3.0
transitivePeerDependencies:
- supports-color
@@ -23816,7 +24766,7 @@ snapshots:
dependencies:
foreground-child: 3.2.1
jackspeak: 3.4.0
- minimatch: 9.0.5
+ minimatch: 9.0.4
minipass: 7.1.2
package-json-from-dist: 1.0.0
path-scurry: 1.11.1
@@ -23920,6 +24870,8 @@ snapshots:
dependencies:
get-intrinsic: 1.2.1
+ gopd@1.2.0: {}
+
graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -23987,6 +24939,8 @@ snapshots:
has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
+
has-tostringtag@1.0.0:
dependencies:
has-symbols: 1.0.3
@@ -24226,8 +25180,6 @@ snapshots:
hex-color-regex@1.1.0: {}
- hex-rgb@4.3.0: {}
-
highlight.js@10.7.3: {}
hmac-drbg@1.0.1:
@@ -24303,9 +25255,7 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.35.0
-
- html-tags@3.3.1: {}
+ terser: 5.37.0
html-void-elements@3.0.0: {}
@@ -24313,7 +25263,7 @@ snapshots:
dependencies:
'@types/html-minifier-terser': 5.1.2
'@types/tapable': 1.0.12
- '@types/webpack': 4.41.39
+ '@types/webpack': 4.41.40
html-minifier-terser: 5.1.1
loader-utils: 1.4.2
lodash: 4.17.21
@@ -24322,7 +25272,7 @@ snapshots:
util.promisify: 1.0.0
webpack: 4.43.0
- html-webpack-plugin@5.6.0(webpack@5.95.0(esbuild@0.23.1)):
+ html-webpack-plugin@5.6.3(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -24330,7 +25280,7 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
htmlparser2@4.1.0:
dependencies:
@@ -24378,7 +25328,7 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -24427,9 +25377,17 @@ snapshots:
https-proxy-agent@7.0.5:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
+ transitivePeerDependencies:
+ - supports-color
+
+ https-proxy-agent@7.0.6:
+ dependencies:
+ agent-base: 7.1.3
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
+ optional: true
human-signals@2.1.0: {}
@@ -24560,11 +25518,11 @@ snapshots:
internmap@2.0.3: {}
- intl-messageformat@10.7.0:
+ intl-messageformat@10.7.1:
dependencies:
'@formatjs/ecma402-abstract': 2.2.0
'@formatjs/fast-memoize': 2.2.1
- '@formatjs/icu-messageformat-parser': 2.7.10
+ '@formatjs/icu-messageformat-parser': 2.8.0
tslib: 2.8.0
intl-messageformat@9.13.0:
@@ -24612,6 +25570,11 @@ snapshots:
call-bind: 1.0.2
has-tostringtag: 1.0.0
+ is-arguments@1.2.0:
+ dependencies:
+ call-bound: 1.0.3
+ has-tostringtag: 1.0.2
+
is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
@@ -24639,8 +25602,8 @@ snapshots:
is-boolean-object@1.1.2:
dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
+ call-bind: 1.0.7
+ has-tostringtag: 1.0.2
is-buffer@1.1.6: {}
@@ -24681,6 +25644,10 @@ snapshots:
dependencies:
hasown: 2.0.2
+ is-core-module@2.16.1:
+ dependencies:
+ hasown: 2.0.2
+
is-data-descriptor@1.0.1:
dependencies:
hasown: 2.0.2
@@ -24734,9 +25701,12 @@ snapshots:
is-generator-fn@2.1.0: {}
- is-generator-function@1.0.10:
+ is-generator-function@1.1.0:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.3
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
is-glob@2.0.1:
dependencies:
@@ -24783,7 +25753,7 @@ snapshots:
is-number-object@1.0.7:
dependencies:
- has-tostringtag: 1.0.0
+ has-tostringtag: 1.0.2
is-number@3.0.0:
dependencies:
@@ -24813,8 +25783,6 @@ snapshots:
dependencies:
isobject: 3.0.1
- is-plain-object@5.0.0: {}
-
is-potential-custom-element-name@1.0.1: {}
is-reference@1.2.1:
@@ -24830,6 +25798,13 @@ snapshots:
call-bind: 1.0.2
has-tostringtag: 1.0.0
+ is-regex@1.2.1:
+ dependencies:
+ call-bound: 1.0.3
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+
is-resolvable@1.1.0: {}
is-root@2.1.0: {}
@@ -24868,6 +25843,10 @@ snapshots:
dependencies:
which-typed-array: 1.1.15
+ is-typed-array@1.1.15:
+ dependencies:
+ which-typed-array: 1.1.18
+
is-unicode-supported@0.1.0: {}
is-unicode-supported@2.0.0: {}
@@ -24920,8 +25899,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.25.8
- '@babel/parser': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/parser': 7.21.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -24930,8 +25909,8 @@ snapshots:
istanbul-lib-instrument@6.0.2:
dependencies:
- '@babel/core': 7.25.8
- '@babel/parser': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/parser': 7.21.9
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -24991,7 +25970,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3
@@ -25011,16 +25990,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@20.16.11):
+ jest-cli@29.7.0(@types/node@20.17.0):
dependencies:
'@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.16.11)
+ create-jest: 29.7.0(@types/node@20.17.0)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.16.11)
+ jest-config: 29.7.0(@types/node@20.17.0)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -25030,16 +26009,16 @@ snapshots:
- supports-color
- ts-node
- jest-cli@29.7.0(@types/node@22.7.5):
+ jest-cli@29.7.0(@types/node@22.10.9):
dependencies:
'@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.7.5)
+ create-jest: 29.7.0(@types/node@22.10.9)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@22.7.5)
+ jest-config: 29.7.0(@types/node@22.10.9)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -25050,12 +26029,12 @@ snapshots:
- ts-node
optional: true
- jest-config@29.7.0(@types/node@20.16.11):
+ jest-config@29.7.0(@types/node@20.17.0):
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.8)
+ babel-jest: 29.7.0(@babel/core@7.25.9)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -25069,23 +26048,23 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- jest-config@29.7.0(@types/node@22.7.5):
+ jest-config@29.7.0(@types/node@22.10.9):
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.8)
+ babel-jest: 29.7.0(@babel/core@7.25.9)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -25099,13 +26078,13 @@ snapshots:
jest-runner: 29.7.0
jest-util: 29.7.0
jest-validate: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
parse-json: 5.2.0
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.10.9
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -25136,7 +26115,7 @@ snapshots:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -25150,7 +26129,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -25162,14 +26141,14 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
jest-regex-util: 29.6.3
jest-util: 29.7.0
jest-worker: 29.7.0
- micromatch: 4.0.7
+ micromatch: 4.0.8
walker: 1.0.8
optionalDependencies:
fsevents: 2.3.3
@@ -25188,12 +26167,12 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.25.9
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
- micromatch: 4.0.7
+ micromatch: 4.0.8
pretty-format: 29.7.0
slash: 3.0.0
stack-utils: 2.0.6
@@ -25201,7 +26180,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -25238,7 +26217,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -25266,7 +26245,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
chalk: 4.1.2
cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
@@ -25286,20 +26265,20 @@ snapshots:
jest-serializer@27.5.1:
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 22.10.9
graceful-fs: 4.2.11
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.25.8
- '@babel/generator': 7.25.7
- '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.25.8)
- '@babel/types': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.25.9)
+ '@babel/types': 7.25.9
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.9)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -25317,7 +26296,7 @@ snapshots:
jest-util@27.5.1:
dependencies:
'@jest/types': 27.5.1
- '@types/node': 20.16.11
+ '@types/node': 22.10.9
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -25326,7 +26305,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -25354,7 +26333,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -25363,41 +26342,41 @@ snapshots:
jest-worker@26.6.2:
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
merge-stream: 2.0.0
supports-color: 7.2.0
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@29.7.0:
dependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@20.16.11):
+ jest@29.7.0(@types/node@20.17.0):
dependencies:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@20.16.11)
+ jest-cli: 29.7.0(@types/node@20.17.0)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
- supports-color
- ts-node
- jest@29.7.0(@types/node@22.7.5):
+ jest@29.7.0(@types/node@22.10.9):
dependencies:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@22.7.5)
+ jest-cli: 29.7.0(@types/node@22.10.9)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -25440,21 +26419,21 @@ snapshots:
jsc-safe-url@0.2.4: {}
- jscodeshift@0.14.0(@babel/preset-env@7.25.8(@babel/core@7.25.8)):
- dependencies:
- '@babel/core': 7.25.8
- '@babel/parser': 7.25.8
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
- '@babel/preset-env': 7.25.8(@babel/core@7.25.8)
- '@babel/preset-flow': 7.25.7(@babel/core@7.25.8)
- '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8)
- '@babel/register': 7.25.7(@babel/core@7.25.8)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.8)
+ jscodeshift@0.14.0(@babel/preset-env@7.25.9(@babel/core@7.25.9)):
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-env': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-flow': 7.25.9(@babel/core@7.25.9)
+ '@babel/preset-typescript': 7.25.9(@babel/core@7.25.9)
+ '@babel/register': 7.25.9(@babel/core@7.25.9)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.25.9)
chalk: 4.1.2
- flow-parser: 0.248.1
+ flow-parser: 0.250.0
graceful-fs: 4.2.11
micromatch: 4.0.8
neo-async: 2.6.2
@@ -25502,25 +26481,25 @@ snapshots:
jsdom@25.0.1:
dependencies:
- cssstyle: 4.1.0
+ cssstyle: 4.2.1
data-urls: 5.0.0
decimal.js: 10.4.3
form-data: 4.0.1
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.13
- parse5: 7.2.0
+ nwsapi: 2.2.16
+ parse5: 7.2.1
rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 5.0.0
+ tough-cookie: 5.1.0
w3c-xmlserializer: 5.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.0.0
+ whatwg-url: 14.1.0
ws: 8.18.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
@@ -25535,6 +26514,8 @@ snapshots:
jsesc@3.0.2: {}
+ jsesc@3.1.0: {}
+
json-buffer@3.0.1: {}
json-parse-better-errors@1.0.2: {}
@@ -25652,8 +26633,8 @@ snapshots:
launch-editor@2.9.1:
dependencies:
- picocolors: 1.1.0
- shell-quote: 1.8.1
+ picocolors: 1.1.1
+ shell-quote: 1.8.2
optional: true
layout-base@1.0.2: {}
@@ -25691,11 +26672,6 @@ snapshots:
lilconfig@3.1.2: {}
- linebreak@1.1.0:
- dependencies:
- base64-js: 0.0.8
- unicode-trie: 2.0.0
-
lines-and-columns@1.2.4: {}
lines-and-columns@2.0.4: {}
@@ -25726,6 +26702,8 @@ snapshots:
loader-utils@3.2.1: {}
+ loader-utils@3.3.1: {}
+
local-pkg@0.5.0:
dependencies:
mlly: 1.7.1
@@ -25795,7 +26773,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
lru-cache@10.4.3: {}
@@ -25824,6 +26802,10 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magic-string@0.30.17:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
make-dir@2.1.0:
dependencies:
pify: 4.0.1
@@ -25849,7 +26831,7 @@ snapshots:
minipass-fetch: 3.0.5
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
- negotiator: 0.6.3
+ negotiator: 0.6.4
proc-log: 4.2.0
promise-retry: 2.0.1
ssri: 10.0.6
@@ -25870,7 +26852,7 @@ snapshots:
markdown-extensions@2.0.0: {}
- markdown-table@3.0.3: {}
+ markdown-table@3.0.4: {}
marked-terminal@7.1.0(marked@9.1.6):
dependencies:
@@ -25886,6 +26868,8 @@ snapshots:
marked@9.1.6: {}
+ math-intrinsics@1.1.0: {}
+
mathjax-full@3.2.2:
dependencies:
esm: 3.2.25
@@ -26011,7 +26995,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- markdown-table: 3.0.3
+ markdown-table: 3.0.4
mdast-util-from-markdown: 2.0.1
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
@@ -26215,7 +27199,7 @@ snapshots:
media-query-parser@2.0.2:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
media-typer@0.3.0: {}
@@ -26223,12 +27207,12 @@ snapshots:
dependencies:
fs-monkey: 1.0.6
- memfs@4.14.0:
+ memfs@4.17.0:
dependencies:
- '@jsonjoy.com/json-pack': 1.1.0(tslib@2.8.0)
- '@jsonjoy.com/util': 1.5.0(tslib@2.8.0)
- tree-dump: 1.0.2(tslib@2.8.0)
- tslib: 2.8.0
+ '@jsonjoy.com/json-pack': 1.1.1(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.5.0(tslib@2.8.1)
+ tree-dump: 1.0.2(tslib@2.8.1)
+ tslib: 2.8.1
optional: true
memoize-one@5.2.1: {}
@@ -26281,7 +27265,7 @@ snapshots:
metro-babel-transformer@0.72.4:
dependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
hermes-parser: 0.8.0
metro-source-map: 0.72.4
nullthrows: 1.1.1
@@ -26350,101 +27334,101 @@ snapshots:
dependencies:
uglify-es: 3.3.9
- metro-react-native-babel-preset@0.72.3(@babel/core@7.25.8):
- dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.8)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-export-default-from': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.8)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/template': 7.25.7
+ metro-react-native-babel-preset@0.72.3(@babel/core@7.25.9):
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.9)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.9)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-flow': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/template': 7.25.9
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
- metro-react-native-babel-preset@0.72.4(@babel/core@7.25.8):
- dependencies:
- '@babel/core': 7.25.8
- '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.8)
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-export-default-from': 7.25.8(@babel/core@7.25.8)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.8)
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.25.8)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
- '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-exponentiation-operator': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-template-literals': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8)
- '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.25.8)
- '@babel/template': 7.25.7
+ metro-react-native-babel-preset@0.72.4(@babel/core@7.25.9):
+ dependencies:
+ '@babel/core': 7.25.9
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.25.9)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-export-default-from': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.25.9)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.25.9)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.9)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-export-default-from': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-flow': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.9)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-flow-strip-types': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.25.9)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.25.9)
+ '@babel/template': 7.25.9
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
- metro-react-native-babel-transformer@0.72.4(@babel/core@7.25.8):
+ metro-react-native-babel-transformer@0.72.4(@babel/core@7.25.9):
dependencies:
- '@babel/core': 7.25.8
- babel-preset-fbjs: 3.4.0(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ babel-preset-fbjs: 3.4.0(@babel/core@7.25.9)
hermes-parser: 0.8.0
metro-babel-transformer: 0.72.4
- metro-react-native-babel-preset: 0.72.4(@babel/core@7.25.8)
+ metro-react-native-babel-preset: 0.72.4(@babel/core@7.25.9)
metro-source-map: 0.72.4
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -26456,13 +27440,13 @@ snapshots:
metro-runtime@0.72.4:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
react-refresh: 0.4.3
metro-source-map@0.72.4:
dependencies:
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
invariant: 2.2.4
metro-symbolicate: 0.72.4
nullthrows: 1.1.1
@@ -26485,21 +27469,21 @@ snapshots:
metro-transform-plugins@0.72.4:
dependencies:
- '@babel/core': 7.25.8
- '@babel/generator': 7.25.7
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
+ '@babel/core': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
metro-transform-worker@0.72.4(encoding@0.1.13):
dependencies:
- '@babel/core': 7.25.8
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/types': 7.25.8
- babel-preset-fbjs: 3.4.0(@babel/core@7.25.8)
+ '@babel/core': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/types': 7.25.9
+ babel-preset-fbjs: 3.4.0(@babel/core@7.25.9)
metro: 0.72.4(encoding@0.1.13)
metro-babel-transformer: 0.72.4
metro-cache: 0.72.4
@@ -26516,13 +27500,13 @@ snapshots:
metro@0.72.4(encoding@0.1.13):
dependencies:
- '@babel/code-frame': 7.25.7
- '@babel/core': 7.25.8
- '@babel/generator': 7.25.7
- '@babel/parser': 7.25.8
- '@babel/template': 7.25.7
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/code-frame': 7.25.9
+ '@babel/core': 7.25.9
+ '@babel/generator': 7.25.9
+ '@babel/parser': 7.21.9
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.25.9
absolute-path: 0.0.0
accepts: 1.3.8
async: 3.2.6
@@ -26549,7 +27533,7 @@ snapshots:
metro-hermes-compiler: 0.72.4
metro-inspector-proxy: 0.72.4
metro-minify-uglify: 0.72.4
- metro-react-native-babel-preset: 0.72.4(@babel/core@7.25.8)
+ metro-react-native-babel-preset: 0.72.4(@babel/core@7.25.9)
metro-resolver: 0.72.4
metro-runtime: 0.72.4
metro-source-map: 0.72.4
@@ -27032,7 +28016,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.8
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -27054,7 +28038,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -27239,6 +28223,13 @@ snapshots:
pkg-types: 1.1.1
ufo: 1.5.3
+ mlly@1.7.2:
+ dependencies:
+ acorn: 8.14.0
+ pathe: 1.1.2
+ pkg-types: 1.2.1
+ ufo: 1.5.4
+
morgan@1.10.0:
dependencies:
basic-auth: 2.0.1
@@ -27327,7 +28318,7 @@ snapshots:
nanospinner@1.1.0:
dependencies:
- picocolors: 1.1.0
+ picocolors: 1.1.1
natural-compare-lite@1.4.0: {}
@@ -27338,6 +28329,10 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@0.6.4: {}
+
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
nested-error-stacks@2.0.1: {}
@@ -27348,13 +28343,13 @@ snapshots:
dependencies:
type-fest: 2.19.0
- next-auth@4.24.8(next@15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-auth@4.24.11(next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@babel/runtime': 7.24.7
'@panva/hkdf': 1.2.0
- cookie: 0.5.0
+ cookie: 0.7.2
jose: 4.15.7
- next: 15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
oauth: 0.9.15
openid-client: 5.6.5
preact: 10.22.0
@@ -27363,20 +28358,31 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
uuid: 8.3.2
- next-sitemap@4.2.3(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
+ next-sitemap@4.2.3(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)):
dependencies:
'@corex/deepmerge': 4.0.43
'@next/env': 13.5.6
fast-glob: 3.3.2
minimist: 1.2.8
- next: 14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes@0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- next@12.3.4(@babel/core@7.25.8)(react-dom@17.0.2(react@17.0.2))(react@17.0.2):
+ next-validate-link@1.3.0:
+ dependencies:
+ fast-glob: 3.3.2
+ gray-matter: 4.0.3
+ picocolors: 1.1.1
+ remark: 15.0.1
+ remark-gfm: 4.0.0
+ unist-util-visit: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ next@12.3.4(@babel/core@7.25.9)(react-dom@17.0.2(react@17.0.2))(react@17.0.2):
dependencies:
'@next/env': 12.3.4
'@swc/helpers': 0.4.11
@@ -27384,7 +28390,7 @@ snapshots:
postcss: 8.4.14
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- styled-jsx: 5.0.7(@babel/core@7.25.8)(react@17.0.2)
+ styled-jsx: 5.0.7(@babel/core@7.25.9)(react@17.0.2)
use-sync-external-store: 1.2.0(react@17.0.2)
optionalDependencies:
'@next/swc-android-arm-eabi': 12.3.4
@@ -27404,9 +28410,9 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.15
+ '@next/env': 14.2.16
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001669
@@ -27414,23 +28420,23 @@ snapshots:
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.25.8)(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.25.9)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.15
- '@next/swc-darwin-x64': 14.2.15
- '@next/swc-linux-arm64-gnu': 14.2.15
- '@next/swc-linux-arm64-musl': 14.2.15
- '@next/swc-linux-x64-gnu': 14.2.15
- '@next/swc-linux-x64-musl': 14.2.15
- '@next/swc-win32-arm64-msvc': 14.2.15
- '@next/swc-win32-ia32-msvc': 14.2.15
- '@next/swc-win32-x64-msvc': 14.2.15
+ '@next/swc-darwin-arm64': 14.2.16
+ '@next/swc-darwin-x64': 14.2.16
+ '@next/swc-linux-arm64-gnu': 14.2.16
+ '@next/swc-linux-arm64-musl': 14.2.16
+ '@next/swc-linux-x64-gnu': 14.2.16
+ '@next/swc-linux-x64-musl': 14.2.16
+ '@next/swc-win32-arm64-msvc': 14.2.16
+ '@next/swc-win32-ia32-msvc': 14.2.16
+ '@next/swc-win32-x64-msvc': 14.2.16
'@playwright/test': 1.48.1
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- next@15.0.3(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@15.0.3(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 15.0.3
'@swc/counter': 0.1.3
@@ -27440,7 +28446,7 @@ snapshots:
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.6(@babel/core@7.25.8)(react@18.3.1)
+ styled-jsx: 5.1.6(@babel/core@7.25.9)(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 15.0.3
'@next/swc-darwin-x64': 15.0.3
@@ -27456,26 +28462,26 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- nextra-theme-docs@3.0.13(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.0.13(@types/react@18.3.11)(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ nextra-theme-docs@3.1.0(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@3.1.0(@types/react@18.3.12)(acorn@8.14.0)(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@headlessui/react': 2.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx: 2.1.1
escape-string-regexp: 5.0.0
flexsearch: 0.7.43
- next: 14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-themes: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- nextra: 3.0.13(@types/react@18.3.11)(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
+ nextra: 3.1.0(@types/react@18.3.12)(acorn@8.14.0)(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
scroll-into-view-if-needed: 3.1.0
zod: 3.23.8
- nextra@3.0.13(@types/react@18.3.11)(next@14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3):
+ nextra@3.1.0(@types/react@18.3.12)(acorn@8.14.0)(next@14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3):
dependencies:
'@formatjs/intl-localematcher': 0.5.5
'@headlessui/react': 2.1.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mdx-js/mdx': 3.0.1
- '@mdx-js/react': 3.0.1(@types/react@18.3.11)(react@18.3.1)
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
+ '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.3.1)
'@napi-rs/simple-git': 0.1.19
'@shikijs/twoslash': 1.22.0(typescript@5.6.3)
'@theguild/remark-mermaid': 0.1.3(react@18.3.1)
@@ -27489,8 +28495,8 @@ snapshots:
gray-matter: 4.0.3
hast-util-to-estree: 3.1.0
katex: 0.16.11
- negotiator: 0.6.3
- next: 14.2.15(@babel/core@7.25.8)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ negotiator: 1.0.0
+ next: 14.2.16(@babel/core@7.25.9)(@playwright/test@1.48.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
p-limit: 6.1.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -27507,11 +28513,12 @@ snapshots:
title: 3.5.3
unist-util-remove: 4.0.0
unist-util-visit: 5.0.0
- yaml: 2.4.5
+ yaml: 2.6.0
zod: 3.23.8
- zod-validation-error: 3.3.1(zod@3.23.8)
+ zod-validation-error: 3.4.0(zod@3.23.8)
transitivePeerDependencies:
- '@types/react'
+ - acorn
- supports-color
- typescript
@@ -27524,7 +28531,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.8.0
+ tslib: 2.8.1
nocache@3.0.4: {}
@@ -27612,7 +28619,7 @@ snapshots:
util: 0.11.1
vm-browserify: 1.1.2
- node-polyfill-webpack-plugin@2.0.1(webpack@5.95.0(esbuild@0.23.1)):
+ node-polyfill-webpack-plugin@2.0.1(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
assert: 2.1.0
browserify-zlib: 0.2.0
@@ -27639,12 +28646,14 @@ snapshots:
url: 0.11.0
util: 0.12.5
vm-browserify: 1.1.2
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
node-releases@1.1.77: {}
node-releases@2.0.18: {}
+ node-releases@2.0.19: {}
+
node-stream-zip@1.15.0: {}
nopt@7.2.1:
@@ -27656,7 +28665,7 @@ snapshots:
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -27703,7 +28712,7 @@ snapshots:
dependencies:
hosted-git-info: 6.1.1
proc-log: 3.0.0
- semver: 7.6.3
+ semver: 7.6.2
validate-npm-package-name: 5.0.1
npm-package-arg@11.0.3:
@@ -27736,7 +28745,7 @@ snapshots:
npm-install-checks: 6.3.0
npm-normalize-package-bin: 3.0.1
npm-package-arg: 10.1.0
- semver: 7.6.3
+ semver: 7.6.2
npm-pick-manifest@9.1.0:
dependencies:
@@ -27789,7 +28798,7 @@ snapshots:
nwsapi@2.2.10: {}
- nwsapi@2.2.13:
+ nwsapi@2.2.16:
optional: true
oauth@0.9.15: {}
@@ -28041,7 +29050,7 @@ snapshots:
dependencies:
retry: 0.12.0
- p-retry@6.2.0:
+ p-retry@6.2.1:
dependencies:
'@types/retry': 0.12.2
is-network-error: 1.1.0
@@ -28056,7 +29065,7 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
@@ -28110,7 +29119,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
parent-module@1.0.1:
dependencies:
@@ -28130,11 +29139,6 @@ snapshots:
just-diff: 6.0.2
just-diff-apply: 5.5.0
- parse-css-color@0.2.1:
- dependencies:
- color-name: 1.1.4
- hex-rgb: 4.3.0
-
parse-entities@4.0.1:
dependencies:
'@types/unist': 2.0.11
@@ -28153,14 +29157,14 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.25.9
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@7.1.1:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.4
@@ -28168,7 +29172,7 @@ snapshots:
parse-json@8.1.0:
dependencies:
- '@babel/code-frame': 7.25.7
+ '@babel/code-frame': 7.26.2
index-to-position: 0.1.2
type-fest: 4.26.1
@@ -28217,12 +29221,17 @@ snapshots:
dependencies:
entities: 4.5.0
+ parse5@7.2.1:
+ dependencies:
+ entities: 4.5.0
+ optional: true
+
parseurl@1.3.3: {}
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.8.0
+ tslib: 2.8.1
pascalcase@0.1.1: {}
@@ -28264,6 +29273,9 @@ snapshots:
path-to-regexp@0.1.10: {}
+ path-to-regexp@0.1.12:
+ optional: true
+
path-to-regexp@6.3.0: {}
path-type@4.0.0: {}
@@ -28300,6 +29312,8 @@ snapshots:
picocolors@1.1.0: {}
+ picocolors@1.1.1: {}
+
picomatch@2.3.1: {}
picomatch@4.0.2: {}
@@ -28338,6 +29352,12 @@ snapshots:
mlly: 1.7.1
pathe: 1.1.2
+ pkg-types@1.2.1:
+ dependencies:
+ confbox: 0.1.8
+ mlly: 1.7.2
+ pathe: 1.1.2
+
pkg-up@3.1.0:
dependencies:
find-up: 3.0.0
@@ -28393,7 +29413,7 @@ snapshots:
postcss-colormin@4.0.3:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.4
color: 3.2.1
has: 1.0.3
postcss: 7.0.39
@@ -28450,14 +29470,14 @@ snapshots:
optionalDependencies:
postcss: 8.4.39
- postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1)):
+ postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
cosmiconfig: 9.0.0(typescript@5.6.3)
jiti: 1.21.6
postcss: 8.4.47
- semver: 7.6.2
+ semver: 7.6.3
optionalDependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
transitivePeerDependencies:
- typescript
@@ -28470,7 +29490,7 @@ snapshots:
postcss-merge-rules@4.0.3:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.4
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.39
@@ -28492,7 +29512,7 @@ snapshots:
postcss-minify-params@4.0.2:
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.24.0
+ browserslist: 4.24.4
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -28623,7 +29643,7 @@ snapshots:
postcss-normalize-unicode@4.0.1:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.4
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -28647,7 +29667,7 @@ snapshots:
postcss-reduce-initial@4.0.3:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.4
caniuse-api: 3.0.0
has: 1.0.3
postcss: 7.0.39
@@ -28708,25 +29728,25 @@ snapshots:
postcss@8.4.14:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.4.31:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.4.38:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
postcss@8.4.39:
dependencies:
nanoid: 3.3.7
- picocolors: 1.0.1
+ picocolors: 1.1.1
source-map-js: 1.2.0
postcss@8.4.47:
@@ -28852,7 +29872,7 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
lru-cache: 7.18.3
@@ -28879,10 +29899,10 @@ snapshots:
randombytes: 2.1.0
safe-buffer: 5.2.1
- publint@0.2.11:
+ publint@0.2.12:
dependencies:
npm-packlist: 5.1.3
- picocolors: 1.1.0
+ picocolors: 1.1.1
sade: 1.8.1
pump@2.0.1:
@@ -28973,7 +29993,7 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-dev-utils@11.0.4(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0):
+ react-dev-utils@11.0.4(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0):
dependencies:
'@babel/code-frame': 7.10.4
address: 1.1.2
@@ -28984,7 +30004,7 @@ snapshots:
escape-string-regexp: 2.0.0
filesize: 6.1.0
find-up: 4.1.0
- fork-ts-checker-webpack-plugin: 4.1.6(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0)
+ fork-ts-checker-webpack-plugin: 4.1.6(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)(webpack@4.43.0)
global-modules: 2.0.0
globby: 11.0.1
gzip-size: 5.1.1
@@ -29019,17 +30039,17 @@ snapshots:
dependencies:
typescript: 5.6.3
- react-docgen@7.0.3:
+ react-docgen@7.1.0:
dependencies:
- '@babel/core': 7.25.8
- '@babel/traverse': 7.25.7
- '@babel/types': 7.25.8
+ '@babel/core': 7.25.9
+ '@babel/traverse': 7.26.5
+ '@babel/types': 7.26.5
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
- resolve: 1.22.8
+ resolve: 1.22.10
strip-indent: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -29053,29 +30073,19 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
- react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
- dependencies:
- '@base2/pretty-print-object': 1.0.1
- is-plain-object: 5.0.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-is: 18.1.0
-
react-error-overlay@6.0.11: {}
react-is@16.13.1: {}
react-is@17.0.2: {}
- react-is@18.1.0: {}
-
react-is@18.3.1: {}
- react-native-codegen@0.70.7(@babel/preset-env@7.25.8(@babel/core@7.25.8)):
+ react-native-codegen@0.70.7(@babel/preset-env@7.25.9(@babel/core@7.25.9)):
dependencies:
- '@babel/parser': 7.25.8
+ '@babel/parser': 7.21.9
flow-parser: 0.121.0
- jscodeshift: 0.14.0(@babel/preset-env@7.25.8(@babel/core@7.25.8))
+ jscodeshift: 0.14.0(@babel/preset-env@7.25.9(@babel/core@7.25.9))
nullthrows: 1.1.1
transitivePeerDependencies:
- '@babel/preset-env'
@@ -29085,7 +30095,7 @@ snapshots:
react-native-web@0.18.12(encoding@0.1.13)(react-dom@18.1.0(react@18.1.0))(react@18.1.0):
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
create-react-class: 15.7.0
fbjs: 3.0.4(encoding@0.1.13)
inline-style-prefixer: 6.0.4
@@ -29097,10 +30107,10 @@ snapshots:
transitivePeerDependencies:
- encoding
- react-native@0.70.15(@babel/core@7.25.8)(@babel/preset-env@7.25.8(@babel/core@7.25.8))(encoding@0.1.13)(react@18.1.0):
+ react-native@0.70.15(@babel/core@7.25.9)(@babel/preset-env@7.25.9(@babel/core@7.25.9))(encoding@0.1.13)(react@18.1.0):
dependencies:
'@jest/create-cache-key-function': 27.5.1
- '@react-native-community/cli': 9.3.5(@babel/core@7.25.8)(encoding@0.1.13)
+ '@react-native-community/cli': 9.3.5(@babel/core@7.25.9)(encoding@0.1.13)
'@react-native-community/cli-platform-android': 9.3.4(encoding@0.1.13)
'@react-native-community/cli-platform-ios': 9.3.0(encoding@0.1.13)
'@react-native/assets': 1.0.0
@@ -29113,7 +30123,7 @@ snapshots:
invariant: 2.2.4
jsc-android: 250230.2.1
memoize-one: 5.2.1
- metro-react-native-babel-transformer: 0.72.4(@babel/core@7.25.8)
+ metro-react-native-babel-transformer: 0.72.4(@babel/core@7.25.9)
metro-runtime: 0.72.4
metro-source-map: 0.72.4
mkdirp: 0.5.6
@@ -29122,7 +30132,7 @@ snapshots:
promise: 8.3.0
react: 18.1.0
react-devtools-core: 4.27.7
- react-native-codegen: 0.70.7(@babel/preset-env@7.25.8(@babel/core@7.25.8))
+ react-native-codegen: 0.70.7(@babel/preset-env@7.25.9(@babel/core@7.25.9))
react-native-gradle-plugin: 0.70.3
react-refresh: 0.4.3
react-shallow-renderer: 16.15.0(react@18.1.0)
@@ -29144,24 +30154,24 @@ snapshots:
react-refresh@0.4.3: {}
- react-remove-scroll-bar@2.3.6(@types/react@18.3.11)(react@18.3.1):
+ react-remove-scroll-bar@2.3.6(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.11)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1)
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
- react-remove-scroll@2.6.0(@types/react@18.3.11)(react@18.3.1):
+ react-remove-scroll@2.6.0(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.11)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.11)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1)
tslib: 2.8.0
- use-callback-ref: 1.3.2(@types/react@18.3.11)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.11)(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.3.12)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.12)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react-router-dom@6.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -29181,14 +30191,14 @@ snapshots:
react: 18.1.0
react-is: 18.3.1
- react-style-singleton@2.2.1(@types/react@18.3.11)(react@18.3.1):
+ react-style-singleton@2.2.1(@types/react@18.3.12)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
react-tweet@3.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -29226,7 +30236,7 @@ snapshots:
dependencies:
find-up: 6.3.0
read-pkg: 8.1.0
- type-fest: 4.26.1
+ type-fest: 4.33.0
read-pkg-up@7.0.1:
dependencies:
@@ -29246,7 +30256,7 @@ snapshots:
'@types/normalize-package-data': 2.4.4
normalize-package-data: 6.0.2
parse-json: 7.1.1
- type-fest: 4.26.1
+ type-fest: 4.33.0
read-pkg@9.0.1:
dependencies:
@@ -29303,7 +30313,7 @@ snapshots:
ast-types: 0.15.2
esprima: 4.0.1
source-map: 0.6.1
- tslib: 2.8.0
+ tslib: 2.8.1
recast@0.23.9:
dependencies:
@@ -29311,7 +30321,37 @@ snapshots:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.8.0
+ tslib: 2.8.1
+
+ recma-build-jsx@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-build-jsx: 3.0.1
+ vfile: 6.0.3
+
+ recma-jsx@1.0.0(acorn@8.14.0):
+ dependencies:
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ estree-util-to-js: 2.0.0
+ recma-parse: 1.0.0
+ recma-stringify: 1.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - acorn
+
+ recma-parse@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ esast-util-from-js: 2.0.1
+ unified: 11.0.5
+ vfile: 6.0.3
+
+ recma-stringify@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ estree-util-to-js: 2.0.0
+ unified: 11.0.5
+ vfile: 6.0.3
recursive-readdir@2.2.2:
dependencies:
@@ -29348,7 +30388,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.25.9
regex-not@1.0.2:
dependencies:
@@ -29441,6 +30481,14 @@ snapshots:
hast-util-raw: 9.0.4
vfile: 6.0.3
+ rehype-recma@1.0.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ '@types/hast': 3.0.4
+ hast-util-to-estree: 3.1.0
+ transitivePeerDependencies:
+ - supports-color
+
relateurl@0.2.7: {}
remark-frontmatter@4.0.1:
@@ -29500,6 +30548,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-mdx@3.1.0:
+ dependencies:
+ mdast-util-mdx: 3.0.0
+ micromark-extension-mdxjs: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+
remark-parse@10.0.2:
dependencies:
'@types/mdast': 3.0.15
@@ -29552,6 +30607,15 @@ snapshots:
mdast-util-to-markdown: 2.1.0
unified: 11.0.5
+ remark@15.0.1:
+ dependencies:
+ '@types/mdast': 4.0.4
+ remark-parse: 11.0.0
+ remark-stringify: 11.0.0
+ unified: 11.0.5
+ transitivePeerDependencies:
+ - supports-color
+
remove-trailing-separator@1.1.0: {}
remove-trailing-slash@0.1.1: {}
@@ -29622,6 +30686,12 @@ snapshots:
resolve.exports@2.0.2: {}
+ resolve@1.22.10:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
resolve@1.22.2:
dependencies:
is-core-module: 2.12.0
@@ -29760,6 +30830,9 @@ snapshots:
rrweb-cssom@0.7.1:
optional: true
+ rrweb-cssom@0.8.0:
+ optional: true
+
run-applescript@7.0.0:
optional: true
@@ -29797,29 +30870,23 @@ snapshots:
es-errors: 1.3.0
is-regex: 1.1.4
+ safe-regex-test@1.1.0:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ is-regex: 1.2.1
+
safe-regex@1.1.0:
dependencies:
ret: 0.1.15
safer-buffer@2.1.2: {}
- sass-loader@13.3.3(webpack@5.95.0(esbuild@0.23.1)):
+ sass-loader@14.2.1(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
neo-async: 2.6.2
- webpack: 5.95.0(esbuild@0.23.1)
-
- satori@0.10.9:
- dependencies:
- '@shuding/opentype.js': 1.4.0-beta.0
- css-background-parser: 0.1.0
- css-box-shadow: 1.0.0-3
- css-to-react-native: 3.2.0
- emoji-regex: 10.4.0
- escape-html: 1.0.3
- linebreak: 1.1.0
- parse-css-color: 0.2.1
- postcss-value-parser: 4.2.0
- yoga-wasm-web: 0.3.3
+ optionalDependencies:
+ webpack: 5.97.1(esbuild@0.24.2)
sax@1.2.4: {}
@@ -29867,6 +30934,13 @@ snapshots:
ajv-formats: 2.1.1(ajv@8.17.1)
ajv-keywords: 5.1.0(ajv@8.17.1)
+ schema-utils@4.3.0:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 8.17.1
+ ajv-formats: 2.1.1(ajv@8.17.1)
+ ajv-keywords: 5.1.0(ajv@8.17.1)
+
scroll-into-view-if-needed@3.1.0:
dependencies:
compute-scroll-into-view: 3.1.0
@@ -30065,6 +31139,9 @@ snapshots:
shell-quote@1.8.1: {}
+ shell-quote@1.8.2:
+ optional: true
+
shiki@1.22.0:
dependencies:
'@shikijs/core': 1.22.0
@@ -30201,7 +31278,7 @@ snapshots:
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -30356,9 +31433,11 @@ snapshots:
next-intl: link:packages/next-intl
storybook-i18n: 3.1.1
- storybook@8.3.5:
+ storybook@8.5.1(prettier@3.3.3):
dependencies:
- '@storybook/core': 8.3.5
+ '@storybook/core': 8.5.1(prettier@3.3.3)
+ optionalDependencies:
+ prettier: 3.3.3
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -30441,8 +31520,6 @@ snapshots:
get-east-asian-width: 1.3.0
strip-ansi: 7.1.0
- string.prototype.codepointat@0.2.1: {}
-
string.prototype.includes@2.0.1:
dependencies:
call-bind: 1.0.7
@@ -30561,9 +31638,9 @@ snapshots:
schema-utils: 2.7.1
webpack: 4.43.0
- style-loader@3.3.4(webpack@5.95.0(esbuild@0.23.1)):
+ style-loader@3.3.4(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
style-to-object@0.4.4:
dependencies:
@@ -30573,29 +31650,29 @@ snapshots:
dependencies:
inline-style-parser: 0.2.4
- styled-jsx@5.0.7(@babel/core@7.25.8)(react@17.0.2):
+ styled-jsx@5.0.7(@babel/core@7.25.9)(react@17.0.2):
dependencies:
react: 17.0.2
optionalDependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
- styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.25.9)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
- styled-jsx@5.1.6(@babel/core@7.25.8)(react@18.3.1):
+ styled-jsx@5.1.6(@babel/core@7.25.9)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.25.8
+ '@babel/core': 7.25.9
stylehacks@4.0.3:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.4
postcss: 7.0.39
postcss-selector-parser: 3.1.2
@@ -30816,25 +31893,25 @@ snapshots:
transitivePeerDependencies:
- bluebird
- terser-webpack-plugin@5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1)):
+ terser-webpack-plugin@5.3.10(webpack@5.95.0):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.35.0
- webpack: 5.95.0(esbuild@0.23.1)
- optionalDependencies:
- esbuild: 0.23.1
+ terser: 5.36.0
+ webpack: 5.95.0
- terser-webpack-plugin@5.3.10(webpack@5.95.0):
+ terser-webpack-plugin@5.3.11(esbuild@0.24.2)(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 4.3.0
serialize-javascript: 6.0.2
- terser: 5.35.0
- webpack: 5.95.0
+ terser: 5.37.0
+ webpack: 5.97.1(esbuild@0.24.2)
+ optionalDependencies:
+ esbuild: 0.24.2
terser@4.8.1:
dependencies:
@@ -30850,13 +31927,20 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
- terser@5.35.0:
+ terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
acorn: 8.13.0
commander: 2.20.3
source-map-support: 0.5.21
+ terser@5.37.0:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.14.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
test-exclude@6.0.0:
dependencies:
'@istanbuljs/schema': 0.1.3
@@ -30879,9 +31963,9 @@ snapshots:
dependencies:
any-promise: 1.3.0
- thingies@1.21.0(tslib@2.8.0):
+ thingies@1.21.0(tslib@2.8.1):
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
optional: true
throat@5.0.0: {}
@@ -30901,8 +31985,6 @@ snapshots:
timsort@0.3.0: {}
- tiny-inflate@1.0.3: {}
-
tiny-invariant@1.3.3: {}
tinybench@2.9.0: {}
@@ -30929,12 +32011,12 @@ snapshots:
titleize@1.0.0: {}
- tldts-core@6.1.52:
+ tldts-core@6.1.74:
optional: true
- tldts@6.1.52:
+ tldts@6.1.74:
dependencies:
- tldts-core: 6.1.52
+ tldts-core: 6.1.74
optional: true
tmp@0.0.33:
@@ -30978,9 +32060,9 @@ snapshots:
universalify: 0.2.0
url-parse: 1.5.10
- tough-cookie@5.0.0:
+ tough-cookie@5.1.0:
dependencies:
- tldts: 6.1.52
+ tldts: 6.1.74
optional: true
tr46@0.0.3: {}
@@ -30998,11 +32080,11 @@ snapshots:
dependencies:
gopd: 1.0.1
typedarray.prototype.slice: 1.0.3
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.18
- tree-dump@1.0.2(tslib@2.8.0):
+ tree-dump@1.0.2(tslib@2.8.1):
dependencies:
- tslib: 2.8.0
+ tslib: 2.8.1
optional: true
treeverse@3.0.0: {}
@@ -31017,6 +32099,11 @@ snapshots:
dependencies:
typescript: 5.6.3
+ ts-api-utils@1.4.3(typescript@5.6.3):
+ dependencies:
+ typescript: 5.6.3
+ optional: true
+
ts-dedent@2.2.0: {}
ts-expose-internals-conditionally@1.0.0-empty.0: {}
@@ -31048,6 +32135,8 @@ snapshots:
tslib@2.8.0: {}
+ tslib@2.8.1: {}
+
tty-browserify@0.0.0: {}
tty-browserify@0.0.1: {}
@@ -31055,39 +32144,39 @@ snapshots:
tuf-js@2.2.1:
dependencies:
'@tufjs/models': 2.0.1
- debug: 4.3.7(supports-color@6.1.0)
+ debug: 4.4.0
make-fetch-happen: 13.0.1
transitivePeerDependencies:
- supports-color
- turbo-darwin-64@2.1.3:
+ turbo-darwin-64@2.2.3:
optional: true
- turbo-darwin-arm64@2.1.3:
+ turbo-darwin-arm64@2.2.3:
optional: true
- turbo-linux-64@2.1.3:
+ turbo-linux-64@2.2.3:
optional: true
- turbo-linux-arm64@2.1.3:
+ turbo-linux-arm64@2.2.3:
optional: true
turbo-stream@2.4.0: {}
- turbo-windows-64@2.1.3:
+ turbo-windows-64@2.2.3:
optional: true
- turbo-windows-arm64@2.1.3:
+ turbo-windows-arm64@2.2.3:
optional: true
- turbo@2.1.3:
+ turbo@2.2.3:
optionalDependencies:
- turbo-darwin-64: 2.1.3
- turbo-darwin-arm64: 2.1.3
- turbo-linux-64: 2.1.3
- turbo-linux-arm64: 2.1.3
- turbo-windows-64: 2.1.3
- turbo-windows-arm64: 2.1.3
+ turbo-darwin-64: 2.2.3
+ turbo-darwin-arm64: 2.2.3
+ turbo-linux-64: 2.2.3
+ turbo-linux-arm64: 2.2.3
+ turbo-windows-64: 2.2.3
+ turbo-windows-arm64: 2.2.3
twoslash-protocol@0.2.12: {}
@@ -31125,6 +32214,8 @@ snapshots:
type-fest@4.26.1: {}
+ type-fest@4.33.0: {}
+
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
@@ -31164,7 +32255,7 @@ snapshots:
typedarray.prototype.slice@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
es-abstract: 1.23.3
es-errors: 1.3.0
@@ -31173,11 +32264,11 @@ snapshots:
typedarray@0.0.6: {}
- typescript-eslint@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3):
+ typescript-eslint@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/parser': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
- '@typescript-eslint/utils': 8.9.0(eslint@9.12.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3))(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.9.0(eslint@9.13.0(jiti@2.3.3))(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -31192,6 +32283,8 @@ snapshots:
ufo@1.5.3: {}
+ ufo@1.5.4: {}
+
uglify-es@3.3.9:
dependencies:
commander: 2.13.0
@@ -31214,6 +32307,8 @@ snapshots:
undici-types@6.19.8: {}
+ undici-types@6.20.0: {}
+
undici@6.19.2: {}
unicode-canonical-property-names-ecmascript@2.0.0: {}
@@ -31231,11 +32326,6 @@ snapshots:
unicode-property-aliases-ecmascript@2.1.0: {}
- unicode-trie@2.0.0:
- dependencies:
- pako: 0.2.9
- tiny-inflate: 1.0.3
-
unicorn-magic@0.1.0: {}
unicorn-magic@0.3.0: {}
@@ -31419,7 +32509,19 @@ snapshots:
dependencies:
browserslist: 4.24.0
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
+
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
+ dependencies:
+ browserslist: 4.24.2
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
+ update-browserslist-db@1.1.2(browserslist@4.24.4):
+ dependencies:
+ browserslist: 4.24.4
+ escalade: 3.2.0
+ picocolors: 1.1.1
update-check@1.5.3:
dependencies:
@@ -31460,12 +32562,12 @@ snapshots:
urlpattern-polyfill@10.0.0: {}
- use-callback-ref@1.3.2(@types/react@18.3.11)(react@18.3.1):
+ use-callback-ref@1.3.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
use-intl@2.22.3(react@18.1.0):
dependencies:
@@ -31473,13 +32575,13 @@ snapshots:
intl-messageformat: 9.13.0
react: 18.1.0
- use-sidecar@1.1.2(@types/react@18.3.11)(react@18.3.1):
+ use-sidecar@1.1.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
tslib: 2.8.0
optionalDependencies:
- '@types/react': 18.3.11
+ '@types/react': 18.3.12
use-sync-external-store@1.2.0(react@17.0.2):
dependencies:
@@ -31520,10 +32622,10 @@ snapshots:
util@0.12.5:
dependencies:
inherits: 2.0.4
- is-arguments: 1.1.1
- is-generator-function: 1.0.10
- is-typed-array: 1.1.13
- which-typed-array: 1.1.15
+ is-arguments: 1.2.0
+ is-generator-function: 1.1.0
+ is-typed-array: 1.1.15
+ which-typed-array: 1.1.18
utila@0.4.0: {}
@@ -31596,16 +32698,16 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vite-node@0.28.5(@types/node@22.7.5)(terser@5.35.0):
+ vite-node@0.28.5(@types/node@22.10.9)(terser@5.37.0):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@6.1.0)
mlly: 1.7.1
pathe: 1.1.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
source-map: 0.6.1
source-map-support: 0.5.21
- vite: 4.5.5(@types/node@22.7.5)(terser@5.35.0)
+ vite: 4.5.5(@types/node@22.10.9)(terser@5.37.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -31616,12 +32718,12 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.3(@types/node@20.16.11)(terser@5.35.0):
+ vite-node@2.1.3(@types/node@20.17.0)(terser@5.37.0):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@6.1.0)
pathe: 1.1.2
- vite: 5.3.3(@types/node@20.16.11)(terser@5.35.0)
+ vite: 5.3.3(@types/node@20.17.0)(terser@5.37.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -31632,12 +32734,12 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.3(@types/node@22.7.5)(terser@5.35.0):
+ vite-node@2.1.3(@types/node@22.10.9)(terser@5.37.0):
dependencies:
cac: 6.7.14
debug: 4.3.7(supports-color@6.1.0)
pathe: 1.1.2
- vite: 5.3.3(@types/node@22.7.5)(terser@5.35.0)
+ vite: 5.3.3(@types/node@22.10.9)(terser@5.37.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -31649,51 +32751,51 @@ snapshots:
- terser
optional: true
- vite@4.5.5(@types/node@22.7.5)(terser@5.35.0):
+ vite@4.5.5(@types/node@22.10.9)(terser@5.37.0):
dependencies:
esbuild: 0.18.20
postcss: 8.4.47
rollup: 3.29.5
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.10.9
fsevents: 2.3.3
- terser: 5.35.0
+ terser: 5.37.0
- vite@5.3.3(@types/node@20.16.11)(terser@5.35.0):
+ vite@5.3.3(@types/node@20.17.0)(terser@5.37.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
rollup: 4.24.0
optionalDependencies:
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
fsevents: 2.3.3
- terser: 5.35.0
+ terser: 5.37.0
- vite@5.3.3(@types/node@22.7.5)(terser@5.35.0):
+ vite@5.3.3(@types/node@22.10.9)(terser@5.37.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
rollup: 4.24.0
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.10.9
fsevents: 2.3.3
- terser: 5.35.0
+ terser: 5.37.0
optional: true
- vite@5.4.9(@types/node@22.7.5)(terser@5.35.0):
+ vite@5.4.10(@types/node@22.10.9)(terser@5.37.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.47
rollup: 4.24.0
optionalDependencies:
- '@types/node': 22.7.5
+ '@types/node': 22.10.9
fsevents: 2.3.3
- terser: 5.35.0
+ terser: 5.37.0
- vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0):
+ vitest@2.1.3(@edge-runtime/vm@3.2.0)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0):
dependencies:
'@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@20.16.11)(terser@5.35.0))
+ '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@20.17.0)(terser@5.37.0))
'@vitest/pretty-format': 2.1.3
'@vitest/runner': 2.1.3
'@vitest/snapshot': 2.1.3
@@ -31708,12 +32810,12 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.3.3(@types/node@20.16.11)(terser@5.35.0)
- vite-node: 2.1.3(@types/node@20.16.11)(terser@5.35.0)
+ vite: 5.3.3(@types/node@20.17.0)(terser@5.37.0)
+ vite-node: 2.1.3(@types/node@20.17.0)(terser@5.37.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@edge-runtime/vm': 3.2.0
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jsdom: 25.0.1
transitivePeerDependencies:
- less
@@ -31725,10 +32827,10 @@ snapshots:
- supports-color
- terser
- vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.16.11)(jsdom@25.0.1)(terser@5.35.0):
+ vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@20.17.0)(jsdom@25.0.1)(terser@5.37.0):
dependencies:
'@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@20.16.11)(terser@5.35.0))
+ '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@20.17.0)(terser@5.37.0))
'@vitest/pretty-format': 2.1.3
'@vitest/runner': 2.1.3
'@vitest/snapshot': 2.1.3
@@ -31743,12 +32845,12 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.3.3(@types/node@20.16.11)(terser@5.35.0)
- vite-node: 2.1.3(@types/node@20.16.11)(terser@5.35.0)
+ vite: 5.3.3(@types/node@20.17.0)(terser@5.37.0)
+ vite-node: 2.1.3(@types/node@20.17.0)(terser@5.37.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@edge-runtime/vm': 4.0.3
- '@types/node': 20.16.11
+ '@types/node': 20.17.0
jsdom: 25.0.1
transitivePeerDependencies:
- less
@@ -31760,10 +32862,10 @@ snapshots:
- supports-color
- terser
- vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.7.5)(jsdom@25.0.1)(terser@5.35.0):
+ vitest@2.1.3(@edge-runtime/vm@4.0.3)(@types/node@22.10.9)(jsdom@25.0.1)(terser@5.37.0):
dependencies:
'@vitest/expect': 2.1.3
- '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@22.7.5)(terser@5.35.0))
+ '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.3.3(@types/node@22.10.9)(terser@5.37.0))
'@vitest/pretty-format': 2.1.3
'@vitest/runner': 2.1.3
'@vitest/snapshot': 2.1.3
@@ -31778,12 +32880,12 @@ snapshots:
tinyexec: 0.3.1
tinypool: 1.0.0
tinyrainbow: 1.2.0
- vite: 5.3.3(@types/node@22.7.5)(terser@5.35.0)
- vite-node: 2.1.3(@types/node@22.7.5)(terser@5.35.0)
+ vite: 5.3.3(@types/node@22.10.9)(terser@5.37.0)
+ vite-node: 2.1.3(@types/node@22.10.9)(terser@5.37.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@edge-runtime/vm': 4.0.3
- '@types/node': 22.7.5
+ '@types/node': 22.10.9
jsdom: 25.0.1
transitivePeerDependencies:
- less
@@ -31885,26 +32987,26 @@ snapshots:
webpack: 4.43.0
webpack-log: 2.0.0
- webpack-dev-middleware@6.1.3(webpack@5.95.0(esbuild@0.23.1)):
+ webpack-dev-middleware@6.1.3(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.2.0
+ schema-utils: 4.3.0
optionalDependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
- webpack-dev-middleware@7.4.2(webpack@5.95.0(esbuild@0.23.1)):
+ webpack-dev-middleware@7.4.2(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
colorette: 2.0.20
- memfs: 4.14.0
+ memfs: 4.17.0
mime-types: 2.1.35
on-finished: 2.4.1
range-parser: 1.2.1
- schema-utils: 4.2.0
+ schema-utils: 4.3.0
optionalDependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
optional: true
webpack-dev-server@3.11.0(webpack@4.43.0):
@@ -31947,7 +33049,7 @@ snapshots:
- bufferutil
- utf-8-validate
- webpack-dev-server@5.1.0(webpack@5.95.0(esbuild@0.23.1)):
+ webpack-dev-server@5.1.0(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -31955,30 +33057,30 @@ snapshots:
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
- '@types/ws': 8.5.12
+ '@types/ws': 8.5.13
ansi-html-community: 0.0.8
- bonjour-service: 1.2.1
+ bonjour-service: 1.3.0
chokidar: 3.6.0
colorette: 2.0.20
- compression: 1.7.4(supports-color@6.1.0)
+ compression: 1.7.5
connect-history-api-fallback: 2.0.0
- express: 4.21.1(supports-color@6.1.0)
+ express: 4.21.2
graceful-fs: 4.2.11
html-entities: 2.5.2
http-proxy-middleware: 2.0.7(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.9.1
open: 10.1.0
- p-retry: 6.2.0
- schema-utils: 4.2.0
+ p-retry: 6.2.1
+ schema-utils: 4.3.0
selfsigned: 2.4.1
serve-index: 1.9.1(supports-color@6.1.0)
sockjs: 0.3.24
spdy: 4.0.2(supports-color@6.1.0)
- webpack-dev-middleware: 7.4.2(webpack@5.95.0(esbuild@0.23.1))
+ webpack-dev-middleware: 7.4.2(webpack@5.97.1(esbuild@0.24.2))
ws: 8.18.0
optionalDependencies:
- webpack: 5.95.0(esbuild@0.23.1)
+ webpack: 5.97.1(esbuild@0.24.2)
transitivePeerDependencies:
- bufferutil
- debug
@@ -32050,7 +33152,7 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.13.0
acorn-import-attributes: 1.9.5(acorn@8.13.0)
- browserslist: 4.24.0
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -32072,18 +33174,18 @@ snapshots:
- esbuild
- uglify-js
- webpack@5.95.0(esbuild@0.23.1):
+ webpack@5.97.1(esbuild@0.24.2):
dependencies:
+ '@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.13.0
- acorn-import-attributes: 1.9.5(acorn@8.13.0)
- browserslist: 4.24.0
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.14.0
+ browserslist: 4.24.4
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
+ enhanced-resolve: 5.18.0
+ es-module-lexer: 1.6.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -32094,7 +33196,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1))
+ terser-webpack-plugin: 5.3.11(esbuild@0.24.2)(webpack@5.97.1(esbuild@0.24.2))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -32135,7 +33237,7 @@ snapshots:
tr46: 3.0.0
webidl-conversions: 7.0.0
- whatwg-url@14.0.0:
+ whatwg-url@14.1.0:
dependencies:
tr46: 5.0.0
webidl-conversions: 7.0.0
@@ -32161,13 +33263,13 @@ snapshots:
is-async-function: 2.0.0
is-date-object: 1.0.5
is-finalizationregistry: 1.0.2
- is-generator-function: 1.0.10
+ is-generator-function: 1.1.0
is-regex: 1.1.4
is-weakref: 1.0.2
isarray: 2.0.5
which-boxed-primitive: 1.0.2
which-collection: 1.0.1
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.18
which-collection@1.0.1:
dependencies:
@@ -32186,6 +33288,15 @@ snapshots:
gopd: 1.0.1
has-tostringtag: 1.0.2
+ which-typed-array@1.1.18:
+ dependencies:
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ for-each: 0.3.3
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+
which@1.3.1:
dependencies:
isexe: 2.0.0
@@ -32335,6 +33446,8 @@ snapshots:
yaml@2.4.5: {}
+ yaml@2.6.0: {}
+
yargs-parser@13.1.2:
dependencies:
camelcase: 5.3.1
@@ -32409,9 +33522,7 @@ snapshots:
yoctocolors@2.0.2: {}
- yoga-wasm-web@0.3.3: {}
-
- zod-validation-error@3.3.1(zod@3.23.8):
+ zod-validation-error@3.4.0(zod@3.23.8):
dependencies:
zod: 3.23.8
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 4bfe0befb..dd8cb5185 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,4 +1,4 @@
packages:
- - "packages/*"
- - "examples/*"
- - "docs"
+ - 'packages/*'
+ - 'examples/*'
+ - 'docs'
diff --git a/turbo.json b/turbo.json
index 46ed57a92..49eabfe80 100644
--- a/turbo.json
+++ b/turbo.json
@@ -3,21 +3,16 @@
"tasks": {
"build": {
"dependsOn": ["^build"],
- "outputs": [
- "dist/**/*.ts",
- "dist/**/*.tsx",
- "dist/**/*.mjs",
- "dist/**/*.js",
- ".next/**",
- "!.next/cache/**"
- ]
+ "outputs": ["dist/**", ".next/**", "!.next/cache/**", "build/**"]
+ },
+ "lint": {
+ "dependsOn": ["^build"]
},
"test": {
"dependsOn": ["build"]
},
"size": {
"dependsOn": ["build"]
- },
- "lint": {}
+ }
}
}