diff --git a/apps/climatemappedafrica/src/components/HURUmap/Tutorial/TutorialStep/index.js b/apps/climatemappedafrica/src/components/HURUmap/Tutorial/TutorialStep/index.js
index 1fdbe01cd..2adba0949 100644
--- a/apps/climatemappedafrica/src/components/HURUmap/Tutorial/TutorialStep/index.js
+++ b/apps/climatemappedafrica/src/components/HURUmap/Tutorial/TutorialStep/index.js
@@ -1,4 +1,4 @@
-import RichTypography from "@commons-ui/core/RichTypography";
+import RichTypography from "@commons-ui/legacy/RichTypography";
import { Grid, Typography, IconButton, Avatar } from "@mui/material";
import { useTour } from "@reactour/tour";
import Image from "next/image";
diff --git a/apps/climatemappedafrica/src/components/HURUmap/Tutorial/index.stories.js b/apps/climatemappedafrica/src/components/HURUmap/Tutorial/index.stories.js
index f0ce66451..34f2ac890 100644
--- a/apps/climatemappedafrica/src/components/HURUmap/Tutorial/index.stories.js
+++ b/apps/climatemappedafrica/src/components/HURUmap/Tutorial/index.stories.js
@@ -1,4 +1,4 @@
-import { RichTypography } from "@commons-ui/core";
+import { RichTypography } from "@commons-ui/legacy";
import React from "react";
import Tutorial from "@/climatemappedafrica/components/HURUmap/Tutorial";
diff --git a/apps/climatemappedafrica/src/components/Header/Header.js b/apps/climatemappedafrica/src/components/Header/Header.js
index e33facdda..9d3c09c29 100644
--- a/apps/climatemappedafrica/src/components/Header/Header.js
+++ b/apps/climatemappedafrica/src/components/Header/Header.js
@@ -1,4 +1,4 @@
-import { RichTypography } from "@commons-ui/core";
+import { RichTypography } from "@commons-ui/legacy";
import { Box } from "@mui/material";
import PropTypes from "prop-types";
import React from "react";
diff --git a/apps/climatemappedafrica/src/components/Hero/Hero.js b/apps/climatemappedafrica/src/components/Hero/Hero.js
index 21de5f19f..8b761f8dc 100644
--- a/apps/climatemappedafrica/src/components/Hero/Hero.js
+++ b/apps/climatemappedafrica/src/components/Hero/Hero.js
@@ -1,4 +1,4 @@
-import { RichTypography } from "@commons-ui/core";
+import { RichTypography } from "@commons-ui/legacy";
import { Box, Grid, useMediaQuery } from "@mui/material";
import dynamic from "next/dynamic";
import PropTypes from "prop-types";
@@ -147,7 +147,7 @@ Hero.propTypes = {
comment: PropTypes.string,
subtitle: PropTypes.arrayOf(PropTypes.shape({})),
searchLabel: PropTypes.string,
- title: PropTypes.string,
+ title: PropTypes.arrayOf(PropTypes.shape({})),
featuredLocations: PropTypes.arrayOf(PropTypes.shape({})),
properties: PropTypes.shape({}),
level: PropTypes.string,
diff --git a/apps/climatemappedafrica/src/components/Hero/Hero.test.js b/apps/climatemappedafrica/src/components/Hero/Hero.test.js
index 566723acb..ec342ec4f 100644
--- a/apps/climatemappedafrica/src/components/Hero/Hero.test.js
+++ b/apps/climatemappedafrica/src/components/Hero/Hero.test.js
@@ -1,7 +1,7 @@
import { createRender } from "@commons-ui/testing-library";
import React from "react";
-import Hero from "./Hero";
+import Hero from ".";
import theme from "@/climatemappedafrica/theme";
diff --git a/apps/climatemappedafrica/src/components/HowItWorks/index.js b/apps/climatemappedafrica/src/components/HowItWorks/index.js
index 0133a6093..155c23933 100644
--- a/apps/climatemappedafrica/src/components/HowItWorks/index.js
+++ b/apps/climatemappedafrica/src/components/HowItWorks/index.js
@@ -187,7 +187,7 @@ function HowItWorks({
HowItWorks.propTypes = {
ctaText: PropTypes.string,
- description: PropTypes.string,
+ description: PropTypes.arrayOf(PropTypes.shape({})),
href: PropTypes.string,
title: PropTypes.string,
};
diff --git a/apps/climatemappedafrica/src/components/Link/index.js b/apps/climatemappedafrica/src/components/Link/index.js
index 59db32605..2d57586e2 100644
--- a/apps/climatemappedafrica/src/components/Link/index.js
+++ b/apps/climatemappedafrica/src/components/Link/index.js
@@ -1,5 +1,5 @@
/* eslint-disable jsx-a11y/anchor-has-content */
-import { A } from "@commons-ui/core";
+import { A } from "@commons-ui/legacy";
import { Link as MuiLink } from "@mui/material";
import clsx from "clsx";
import NextLink from "next/link";
diff --git a/apps/climatemappedafrica/src/components/RichHeader/RichHeader.js b/apps/climatemappedafrica/src/components/RichHeader/RichHeader.js
index ed5add220..f7dd0a911 100644
--- a/apps/climatemappedafrica/src/components/RichHeader/RichHeader.js
+++ b/apps/climatemappedafrica/src/components/RichHeader/RichHeader.js
@@ -1,4 +1,4 @@
-import { RichTypography } from "@commons-ui/core";
+import { RichTypography } from "@commons-ui/legacy";
import { RichText } from "@commons-ui/payload";
import { Box } from "@mui/material";
import PropTypes from "prop-types";
diff --git a/apps/climatemappedafrica/src/components/Section/index.js b/apps/climatemappedafrica/src/components/Section/index.js
index 9b980d468..c90aaa87d 100644
--- a/apps/climatemappedafrica/src/components/Section/index.js
+++ b/apps/climatemappedafrica/src/components/Section/index.js
@@ -1,4 +1,4 @@
-import { Section as CuiSection } from "@commons-ui/core";
+import { Section as CuiSection } from "@commons-ui/legacy";
import makeStyles from "@mui/styles/makeStyles";
import clsx from "clsx";
import PropTypes from "prop-types";
diff --git a/apps/climatemappedafrica/src/components/Section/index.stories.js b/apps/climatemappedafrica/src/components/Section/index.stories.js
index 32aa2ca5f..d353a78e4 100644
--- a/apps/climatemappedafrica/src/components/Section/index.stories.js
+++ b/apps/climatemappedafrica/src/components/Section/index.stories.js
@@ -1,4 +1,4 @@
-import { RichTypography } from "@commons-ui/core";
+import { RichTypography } from "@commons-ui/legacy";
import React from "react";
import Section from ".";
@@ -23,8 +23,8 @@ function Template(args) {
Lorem Ipsum
"Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."
"There is no one who loves pain itself, who seeks after it and wants to have it, simply because it is pain..."
-
-
+
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin in lectus ut lectus sagittis aliquet. Phasellus felis metus, suscipit eu ligula vitae, dapibus pretium sapien. Integer feugiat luctus metus, vitae aliquam magna euismod et. Quisque massa augue, hendrerit id pharetra ut, dictum vel elit. Morbi id velit pretium, vestibulum sapien eget, suscipit ex. Quisque varius consequat cursus. Duis vitae nunc vel lacus ullamcorper finibus. Sed lobortis a velit in ultricies. Phasellus eleifend est vel auctor cursus. Ut dapibus posuere aliquam. Mauris scelerisque libero sit amet felis faucibus, vel faucibus dolor suscipit. Maecenas venenatis turpis ut vulputate viverra.
diff --git a/docker-compose.yml b/docker-compose.yml
index 6c4d40382..4e216f46d 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -90,12 +90,12 @@ services:
- SENTRY_PROJECT
environment:
HURUMAP_API_URL: ${HURUMAP_API_URL}
- S3_UPLOAD_KEY: ${S3_UPLOAD_KEY}
- S3_UPLOAD_SECRET: ${S3_UPLOAD_SECRET}
- S3_UPLOAD_BUCKET: ${S3_UPLOAD_BUCKET}
- S3_UPLOAD_REGION: ${S3_UPLOAD_REGION}
MONGO_URL: mongodb://${MONGO_INITDB_ROOT_USERNAME:-root}:${MONGO_INITDB_ROOT_PASSWORD:-rootpassword}@host.docker.internal:${MONGODB_PORT:-27017}/climatemappedafrica?authSource=admin&directConnection=true
PAYLOAD_SECRET: ${PAYLOAD_SECRET}
+ S3_ACCESS_KEY_ID: ${S3_ACCESS_KEY_ID}
+ S3_SECRET_ACCESS_KEY: ${S3_SECRET_ACCESS_KEY}
+ S3_BUCKET: ${S3_BUCKET}
+ S3_REGION: ${S3_REGION}
SENTRY_ORG: ${SENTRY_ORG}
SENTRY_ENVIRONMENT: ${SENTRY_ENVIRONMENT}
SENTRY_PROJECT: ${SENTRY_PROJECT}
diff --git a/packages/commons-ui-next/package.json b/packages/commons-ui-next/package.json
index 51eed1925..77e1ff069 100644
--- a/packages/commons-ui-next/package.json
+++ b/packages/commons-ui-next/package.json
@@ -34,7 +34,10 @@
"@babel/preset-react": "catalog:",
"@commons-ui/core": "workspace:*",
"@commons-ui/testing-library": "workspace:*",
+ "@emotion/react": "catalog:",
+ "@emotion/styled": "catalog:",
"@mui/material": "catalog:",
+ "@types/react": "catalog:",
"babel-loader": "catalog:",
"eslint": "catalog:",
"eslint-config-commons-ui": "workspace:*",
@@ -51,13 +54,14 @@
"peerDependencies": {
"@babel/core": "catalog:",
"@commons-ui/core": "workspace:*",
+ "@emotion/react": "catalog:",
+ "@emotion/styled": "catalog:",
"@mui/material": "catalog:",
"clsx": "catalog:",
"next": "catalog:",
"prop-types": "catalog:",
"react": "catalog:",
- "react-dom": "catalog:",
- "slate": "catalog:"
+ "react-dom": "catalog:"
},
"dependencies": {
"clsx": "catalog:"
diff --git a/packages/commons-ui-payload/package.json b/packages/commons-ui-payload/package.json
index c93cb6d71..1edbd025b 100644
--- a/packages/commons-ui-payload/package.json
+++ b/packages/commons-ui-payload/package.json
@@ -4,7 +4,7 @@
"private": false,
"author": "Code for Africa ",
"description": "",
- "main": "src/index.js",
+ "main": "./src/index.js",
"keywords": [
"react",
"react-component",
@@ -15,7 +15,7 @@
"repository": {
"type": "git",
"url": "https://github.com/codeforafrica/ui.git",
- "directory": "packages/commons-ui-core"
+ "directory": "packages/commons-ui-payload"
},
"license": "MIT",
"bugs": {
@@ -30,11 +30,12 @@
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-react": "catalog:",
+ "@commons-ui/core": "workspace:*",
+ "@commons-ui/next": "workspace:*",
"@commons-ui/testing-library": "workspace:*",
"@emotion/react": "catalog:",
"@emotion/styled": "catalog:",
"@mui/material": "catalog:",
- "@mui/utils": "catalog:",
"@types/react": "catalog:",
"babel-loader": "catalog:",
"eslint": "catalog:",
@@ -42,11 +43,13 @@
"identity-obj-proxy": "catalog:",
"jest": "catalog:",
"jest-config-commons-ui": "workspace:*",
+ "next": "catalog:",
"prettier": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-test-renderer": "catalog:",
"require-from-string": "catalog:",
+ "slate": "catalog:",
"typescript": "catalog:",
"webpack": "catalog:"
},
@@ -54,6 +57,8 @@
"@babel/core": "catalog:",
"@commons-ui/core": "workspace:*",
"@commons-ui/next": "workspace:*",
+ "@emotion/react": "catalog:",
+ "@emotion/styled": "catalog:",
"@mui/material": "catalog:",
"clsx": "catalog:",
"next": "catalog:",
diff --git a/packages/hurumap-core/package.json b/packages/hurumap-core/package.json
index 58876b018..531eec11e 100644
--- a/packages/hurumap-core/package.json
+++ b/packages/hurumap-core/package.json
@@ -33,11 +33,12 @@
"devDependencies": {
"@babel/core": "catalog:",
"@babel/preset-react": "catalog:",
+ "@commons-ui/core": "workspace:*",
"@commons-ui/testing-library": "workspace:*",
"@emotion/react": "catalog:",
"@emotion/styled": "catalog:",
+ "@mui/icons-material": "catalog:",
"@mui/material": "catalog:",
- "@mui/utils": "catalog:",
"@types/react": "catalog:",
"babel-loader": "catalog:",
"deepmerge": "catalog:",
@@ -58,27 +59,20 @@
},
"peerDependencies": {
"@babel/core": "catalog:",
+ "@commons-ui/core": "workspace:*",
"@emotion/react": "catalog:",
"@emotion/styled": "catalog:",
+ "@mui/icons-material": "catalog:",
"@mui/material": "catalog:",
- "@mui/utils": "catalog:",
+ "clsx": "catalog:",
"deepmerge": "catalog:",
"papaparse": "catalog:",
"react": "catalog:",
"react-copy-to-clipboard": "catalog:",
"react-dom": "catalog:",
"react-share": "catalog:",
- "xlsx": "catalog:"
- },
- "dependencies": {
- "@commons-ui/core": "workspace:*",
- "@mui/icons-material": "catalog:",
- "clsx": "catalog:",
- "papaparse": "catalog:",
- "prop-types": "catalog:",
- "react-copy-to-clipboard": "catalog:",
- "react-share": "catalog:",
"vega": "catalog:",
"xlsx": "catalog:"
- }
+ },
+ "dependencies": {}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 84a01b93b..24c24451b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -14,37 +14,40 @@ catalogs:
version: 3.11.8
'@aws-sdk/client-s3':
specifier: ^3.645.0
- version: 3.658.1
+ version: 3.679.0
'@aws-sdk/lib-storage':
specifier: ^3.645.0
- version: 3.658.1
+ version: 3.679.0
'@babel/core':
specifier: ^7.25.2
- version: 7.25.2
+ version: 7.26.0
'@babel/eslint-parser':
specifier: ^7.25.1
- version: 7.25.1
+ version: 7.25.9
'@babel/preset-env':
specifier: ^7.25.4
- version: 7.25.4
+ version: 7.26.0
'@babel/preset-react':
specifier: ^7.24.7
- version: 7.24.7
+ version: 7.25.9
'@babel/register':
specifier: ^7.24.6
- version: 7.24.6
+ version: 7.25.9
'@babel/runtime':
specifier: ^7.25.0
- version: 7.25.6
+ version: 7.26.0
'@changesets/changelog-github':
specifier: ^0.5.0
version: 0.5.0
'@changesets/cli':
specifier: ^2.27.8
- version: 2.27.8
+ version: 2.27.9
'@commons-ui/core':
specifier: ^0.1.0
version: 0.1.0
+ '@commons-ui/legacy':
+ specifier: npm:@commons-ui/core@^0.1.0
+ version: 0.1.0
'@emotion/cache':
specifier: ^11.13.1
version: 11.13.1
@@ -65,10 +68,10 @@ catalogs:
version: 4.5.1
'@mdx-js/loader':
specifier: ^3.0.1
- version: 3.0.1
+ version: 3.1.0
'@mdx-js/mdx':
specifier: ^3.0.1
- version: 3.0.1
+ version: 3.1.0
'@mui/icons-material':
specifier: ^5.16.6
version: 5.16.7
@@ -83,22 +86,22 @@ catalogs:
version: 5.16.6
'@mui/x-date-pickers':
specifier: ^7.15.0
- version: 7.18.0
+ version: 7.22.0
'@mui/x-tree-view':
specifier: ^7.15.0
- version: 7.18.0
+ version: 7.22.0
'@next/env':
specifier: ^14.2.8
- version: 14.2.13
+ version: 14.2.16
'@next/eslint-plugin-next':
specifier: ^14.2.8
- version: 14.2.13
+ version: 14.2.16
'@next/mdx':
specifier: ^14.2.8
- version: 14.2.13
+ version: 14.2.16
'@next/third-parties':
specifier: ^14.2.8
- version: 14.2.13
+ version: 14.2.16
'@nivo/core':
specifier: ^0.84.0
version: 0.84.0
@@ -116,7 +119,7 @@ catalogs:
version: 1.0.7
'@payloadcms/db-mongodb':
specifier: ^1.7.2
- version: 1.7.2
+ version: 1.7.3
'@payloadcms/live-preview':
specifier: ^0.2.2
version: 0.2.2
@@ -125,7 +128,7 @@ catalogs:
version: 0.2.0
'@payloadcms/plugin-cloud-storage':
specifier: ^1.1.3
- version: 1.1.3
+ version: 1.2.0
'@payloadcms/plugin-nested-docs':
specifier: ^1.0.12
version: 1.0.12
@@ -140,52 +143,52 @@ catalogs:
version: 1.5.2
'@playwright/test':
specifier: ^1.47.2
- version: 1.47.2
+ version: 1.48.2
'@react-spring/web':
specifier: ^9.7.4
- version: 9.7.4
+ version: 9.7.5
'@reactour/tour':
specifier: ^3.7.0
version: 3.7.0
'@sendgrid/mail':
specifier: ^8.1.3
- version: 8.1.3
+ version: 8.1.4
'@sentry/nextjs':
specifier: ^8.28.0
- version: 8.32.0
+ version: 8.35.0
'@storybook/addon-essentials':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/addon-interactions':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/addon-links':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/blocks':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/cli':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/nextjs':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/react':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@storybook/test':
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
'@svgr/webpack':
specifier: ^8.1.0
version: 8.1.0
'@swc/core':
specifier: ^1.7.23
- version: 1.7.26
+ version: 1.7.40
'@testing-library/jest-dom':
specifier: ^6.5.0
- version: 6.5.0
+ version: 6.6.2
'@testing-library/react':
specifier: ^16.0.1
version: 16.0.1
@@ -197,25 +200,25 @@ catalogs:
version: 4.17.21
'@types/jest':
specifier: ^29.5.12
- version: 29.5.13
+ version: 29.5.14
'@types/mdx':
specifier: ^2.0.13
version: 2.0.13
'@types/node':
specifier: ^20.14.14
- version: 20.16.10
+ version: 20.17.2
'@types/nodemailer-sendgrid':
specifier: ^1.0.3
version: 1.0.3
'@types/react':
specifier: ^18.3.5
- version: 18.3.10
+ version: 18.3.12
'@types/react-dom':
specifier: ^18.3.0
- version: 18.3.0
+ version: 18.3.1
ace-builds:
specifier: ^1.36.2
- version: 1.36.2
+ version: 1.36.3
airtable:
specifier: ^0.12.2
version: 0.12.2
@@ -236,7 +239,7 @@ catalogs:
version: 2.0.0
better-sqlite3:
specifier: ^11.2.1
- version: 11.3.0
+ version: 11.5.0
camelcase-keys:
specifier: ^9.1.3
version: 9.1.3
@@ -245,7 +248,7 @@ catalogs:
version: 2.1.1
crawler-user-agents:
specifier: ^1.0.146
- version: 1.0.150
+ version: 1.0.154
css-loader:
specifier: ^7.1.2
version: 7.1.2
@@ -269,13 +272,13 @@ catalogs:
version: 19.0.4
eslint-config-next:
specifier: ^14.2.8
- version: 14.2.13
+ version: 14.2.16
eslint-config-prettier:
specifier: ^9.1.0
version: 9.1.0
eslint-config-turbo:
specifier: ^2.1.1
- version: 2.1.2
+ version: 2.2.3
eslint-import-resolver-babel-module:
specifier: ^5.3.2
version: 5.3.2
@@ -290,7 +293,7 @@ catalogs:
version: 0.13.9
eslint-plugin-import:
specifier: ^2.29.1
- version: 2.30.0
+ version: 2.31.0
eslint-plugin-jest:
specifier: ^28.8.3
version: 28.8.3
@@ -302,7 +305,7 @@ catalogs:
version: 3.1.0
eslint-plugin-jsx-a11y:
specifier: ^6.10.0
- version: 6.10.0
+ version: 6.10.2
eslint-plugin-markdown:
specifier: ^3.0.1
version: 3.0.1
@@ -314,28 +317,28 @@ catalogs:
version: 1.5.0
eslint-plugin-playwright:
specifier: ^1.6.2
- version: 1.6.2
+ version: 1.8.3
eslint-plugin-prettier:
specifier: ^5.2.1
version: 5.2.1
eslint-plugin-react:
specifier: ^7.35.2
- version: 7.37.0
+ version: 7.37.2
eslint-plugin-react-hooks:
specifier: ^4.6.2
version: 4.6.2
eslint-plugin-testing-library:
specifier: ^6.2.2
- version: 6.3.0
+ version: 6.4.0
express:
specifier: ^4.19.2
- version: 4.21.0
+ version: 4.21.1
fast-equals:
specifier: ^5.0.1
version: 5.0.1
form-data:
specifier: ^4.0.0
- version: 4.0.0
+ version: 4.0.1
formik:
specifier: ^2.4.6
version: 2.4.6
@@ -395,10 +398,10 @@ catalogs:
version: 0.51.0
next:
specifier: ^14.2.8
- version: 14.2.13
+ version: 14.2.16
next-auth:
specifier: ^4.24.7
- version: 4.24.8
+ version: 4.24.10
next-images:
specifier: ^1.8.5
version: 1.8.5
@@ -419,7 +422,7 @@ catalogs:
version: 1.3.0
payload:
specifier: ^2.28.0
- version: 2.30.0
+ version: 2.30.3
plaiceholder:
specifier: ^2.5.0
version: 2.5.0
@@ -494,7 +497,7 @@ catalogs:
version: 0.23.2
shiki:
specifier: ^1.18.0
- version: 1.21.0
+ version: 1.22.2
simplebar-react:
specifier: ^3.2.6
version: 3.2.6
@@ -509,7 +512,7 @@ catalogs:
version: 5.1.7
storybook:
specifier: ^8.2.9
- version: 8.3.4
+ version: 8.3.6
svg-url-loader:
specifier: ^8.0.0
version: 8.0.0
@@ -527,13 +530,13 @@ catalogs:
version: 4.2.0
tsx:
specifier: ^4.19.1
- version: 4.19.1
+ version: 4.19.2
turbo:
specifier: ^2.1.1
- version: 2.1.2
+ version: 2.2.3
typescript:
specifier: ^5.5.4
- version: 5.6.2
+ version: 5.6.3
vega:
specifier: ^5.30.0
version: 5.30.0
@@ -551,7 +554,7 @@ catalogs:
version: 36.9.2
video.js:
specifier: ^8.17.3
- version: 8.17.4
+ version: 8.19.1
videojs-youtube:
specifier: ^3.0.1
version: 3.0.1
@@ -593,10 +596,10 @@ importers:
version: 0.5.0(encoding@0.1.13)
'@changesets/cli':
specifier: 'catalog:'
- version: 2.27.8
+ version: 2.27.9
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -617,16 +620,16 @@ importers:
version: 3.3.3
turbo:
specifier: 'catalog:'
- version: 2.1.2
+ version: 2.2.3
apps/charterafrica:
dependencies:
'@aws-sdk/client-s3':
specifier: 'catalog:'
- version: 3.658.1
+ version: 3.679.0
'@aws-sdk/lib-storage':
specifier: 'catalog:'
- version: 3.658.1(@aws-sdk/client-s3@3.658.1)
+ version: 3.679.0(@aws-sdk/client-s3@3.679.0)
'@commons-ui/core':
specifier: workspace:*
version: link:../../packages/commons-ui-core
@@ -638,22 +641,22 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
'@nivo/core':
specifier: 'catalog:'
version: 0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -668,31 +671,31 @@ importers:
version: 0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@payloadcms/bundler-webpack':
specifier: 'catalog:'
- version: 1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(sass@1.69.4)
+ version: 1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(sass@1.69.4)
'@payloadcms/db-mongodb':
specifier: 'catalog:'
- version: 1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))
+ version: 1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))
'@payloadcms/plugin-cloud-storage':
specifier: 'catalog:'
- version: 1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))
+ version: 1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))
'@payloadcms/plugin-nested-docs':
specifier: 'catalog:'
- version: 1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))
+ version: 1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))
'@payloadcms/plugin-sentry':
specifier: 'catalog:'
- version: 0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)
+ version: 0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)
'@payloadcms/plugin-seo':
specifier: 'catalog:'
- version: 2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)
+ version: 2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)
'@payloadcms/richtext-slate':
specifier: 'catalog:'
- version: 1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@react-spring/web':
specifier: 'catalog:'
- version: 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 9.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/nextjs':
specifier: 'catalog:'
- version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
airtable:
specifier: 'catalog:'
version: 0.12.2(encoding@0.1.13)
@@ -701,28 +704,28 @@ importers:
version: 16.4.5
express:
specifier: 'catalog:'
- version: 4.21.0
+ version: 4.21.1
leaflet:
specifier: 'catalog:'
version: 1.9.4
migrate-mongo:
specifier: 'catalog:'
- version: 11.0.0(mongodb@4.17.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1)))
+ version: 11.0.0(mongodb@4.17.1(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0)))
monaco-editor:
specifier: 'catalog:'
version: 0.51.0
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nodemailer-sendgrid:
specifier: 'catalog:'
version: 1.0.3
payload:
specifier: 'catalog:'
- version: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ version: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
prop-types:
specifier: 'catalog:'
version: 15.8.1
@@ -758,47 +761,47 @@ importers:
version: 2.2.5(react@18.3.1)
video.js:
specifier: 'catalog:'
- version: 8.17.4
+ version: 8.19.1
videojs-youtube:
specifier: 'catalog:'
- version: 3.0.1(video.js@8.17.4)
+ version: 3.0.1(video.js@8.19.1)
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@babel/register':
specifier: 'catalog:'
- version: 7.24.6(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@babel/runtime':
specifier: 'catalog:'
- version: 7.25.6
+ version: 7.26.0
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@swc/core':
specifier: 'catalog:'
- version: 1.7.26(@swc/helpers@0.5.5)
+ version: 1.7.40(@swc/helpers@0.5.5)
'@types/express':
specifier: 'catalog:'
version: 4.17.21
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -807,16 +810,16 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
identity-obj-proxy:
specifier: 'catalog:'
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
@@ -831,22 +834,22 @@ importers:
version: 18.3.1(react@18.3.1)
tsx:
specifier: 'catalog:'
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ version: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
apps/civicsignalblog:
dependencies:
'@aws-sdk/client-s3':
specifier: 'catalog:'
- version: 3.658.1
+ version: 3.679.0
'@aws-sdk/lib-storage':
specifier: 'catalog:'
- version: 3.658.1(@aws-sdk/client-s3@3.658.1)
+ version: 3.679.0(@aws-sdk/client-s3@3.679.0)
'@commons-ui/core':
specifier: workspace:*
version: link:../../packages/commons-ui-core
@@ -861,34 +864,34 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@googlemaps/react-wrapper':
specifier: 'catalog:'
version: 1.1.42(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
'@next/third-parties':
specifier: 'catalog:'
- version: 14.2.13(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
+ version: 14.2.16(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
'@payloadcms/bundler-webpack':
specifier: 'catalog:'
- version: 1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(sass@1.69.4)
+ version: 1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(sass@1.69.4)
'@payloadcms/db-mongodb':
specifier: 'catalog:'
- version: 1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/live-preview':
specifier: 'catalog:'
version: 0.2.2
@@ -897,22 +900,22 @@ importers:
version: 0.2.0(react@18.3.1)
'@payloadcms/plugin-cloud-storage':
specifier: 'catalog:'
- version: 1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-nested-docs':
specifier: 'catalog:'
- version: 1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-sentry':
specifier: 'catalog:'
- version: 0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/plugin-seo':
specifier: 'catalog:'
- version: 2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/richtext-slate':
specifier: 'catalog:'
- version: 1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/nextjs':
specifier: 'catalog:'
- version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
camelcase-keys:
specifier: 'catalog:'
version: 9.1.3
@@ -921,7 +924,7 @@ importers:
version: 16.4.5
express:
specifier: 'catalog:'
- version: 4.21.0
+ version: 4.21.1
fast-equals:
specifier: 'catalog:'
version: 5.0.1
@@ -933,16 +936,16 @@ importers:
version: 24.1.3
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nodemailer-sendgrid:
specifier: 'catalog:'
version: 1.0.3
payload:
specifier: 'catalog:'
- version: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
prop-types:
specifier: 'catalog:'
version: 15.8.1
@@ -970,34 +973,34 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@swc/core':
specifier: 'catalog:'
- version: 1.7.26(@swc/helpers@0.5.5)
+ version: 1.7.40(@swc/helpers@0.5.5)
'@types/express':
specifier: 'catalog:'
version: 4.17.21
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -1006,19 +1009,19 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-typescript:
specifier: 'catalog:'
- version: 3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
+ version: 3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
identity-obj-proxy:
specifier: 'catalog:'
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
@@ -1033,22 +1036,25 @@ importers:
version: 18.3.1(react@18.3.1)
tsx:
specifier: 'catalog:'
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
apps/climatemappedafrica:
dependencies:
'@apollo/client':
specifier: 'catalog:'
- version: 3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@commons-ui/core':
+ specifier: workspace:*
+ version: link:../../packages/commons-ui-core
+ '@commons-ui/legacy':
specifier: 'catalog:'
- version: 0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.10)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))
+ version: '@commons-ui/core@0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))'
'@commons-ui/next':
specifier: workspace:*
version: link:../../packages/commons-ui-next
@@ -1057,10 +1063,10 @@ importers:
version: link:../../packages/commons-ui-payload
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@hurumap/core':
specifier: workspace:*
version: link:../../packages/hurumap-core
@@ -1069,40 +1075,40 @@ importers:
version: link:../../packages/hurumap-next
'@mui/material':
specifier: catalog:mui-styles
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/styles':
specifier: catalog:mui-styles
- version: 5.16.7(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@types/react@18.3.12)(react@18.3.1)
'@mui/utils':
specifier: catalog:mui-styles
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@mui/x-tree-view':
specifier: 'catalog:'
- version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 7.22.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
'@payloadcms/bundler-webpack':
specifier: 'catalog:'
- version: 1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(sass@1.69.4)
+ version: 1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(sass@1.69.4)
'@payloadcms/db-mongodb':
specifier: 'catalog:'
- version: 1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-cloud-storage':
specifier: 'catalog:'
- version: 1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-nested-docs':
specifier: 'catalog:'
- version: 1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-sentry':
specifier: 'catalog:'
- version: 0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/plugin-seo':
specifier: 'catalog:'
- version: 2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/richtext-slate':
specifier: 'catalog:'
- version: 1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@reactour/tour':
specifier: 'catalog:'
version: 3.7.0(react@18.3.1)
@@ -1120,7 +1126,7 @@ importers:
version: 4.3.1
express:
specifier: 'catalog:'
- version: 4.21.0
+ version: 4.21.1
leaflet:
specifier: 'catalog:'
version: 1.9.4
@@ -1129,13 +1135,13 @@ importers:
version: 4.17.21
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-images:
specifier: 'catalog:'
- version: 1.8.5(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 1.8.5(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nodemailer-sendgrid:
specifier: 'catalog:'
version: 1.0.3
@@ -1144,7 +1150,7 @@ importers:
version: 5.4.1
payload:
specifier: 'catalog:'
- version: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
plaiceholder:
specifier: 'catalog:'
version: 2.5.0(sharp@0.33.5)
@@ -1198,77 +1204,77 @@ importers:
version: 0.34.0
video.js:
specifier: 'catalog:'
- version: 8.17.4
+ version: 8.19.1
videojs-youtube:
specifier: 'catalog:'
- version: 3.0.1(video.js@8.17.4)
+ version: 3.0.1(video.js@8.19.1)
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
xlsx:
specifier: 'catalog:'
version: 0.18.5
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-env':
specifier: 'catalog:'
- version: 7.25.4(@babel/core@7.25.2)
+ version: 7.26.0(@babel/core@7.26.0)
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
'@material-ui/codemod':
specifier: 'catalog:'
- version: 4.5.1(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)))
+ version: 4.5.1(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)))
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
'@storybook/addon-essentials':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)
+ version: 8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)
'@storybook/addon-interactions':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)
+ version: 8.3.6(storybook@8.3.6)
'@storybook/addon-links':
specifier: 'catalog:'
- version: 8.3.4(react@18.3.1)(storybook@8.3.4)
+ version: 8.3.6(react@18.3.1)(storybook@8.3.6)
'@storybook/blocks':
specifier: 'catalog:'
- version: 8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)
+ version: 8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)
'@storybook/cli':
specifier: 'catalog:'
- version: 8.3.4(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ version: 8.3.6(@babel/preset-env@7.26.0(@babel/core@7.26.0))
'@storybook/nextjs':
specifier: 'catalog:'
- version: 8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(babel-plugin-macros@3.1.0)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.4)(type-fest@4.26.1)(typescript@5.6.2)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.3.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(babel-plugin-macros@3.1.0)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.6)(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
'@storybook/react':
specifier: 'catalog:'
- version: 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
+ version: 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
'@storybook/test':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)
+ version: 8.3.6(storybook@8.3.6)
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
apollo-link-rest:
specifier: 'catalog:'
- version: 0.9.0(@apollo/client@3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@15.9.0)(qs@6.13.0)
+ version: 0.9.0(@apollo/client@3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@15.9.0)(qs@6.13.0)
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -1277,10 +1283,10 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-babel-module:
specifier: 'catalog:'
- version: 5.3.2(@babel/core@7.25.2)(babel-plugin-module-resolver@5.0.2)
+ version: 5.3.2(@babel/core@7.26.0)(babel-plugin-module-resolver@5.0.2)
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
+ version: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
eslint-plugin-module-resolver:
specifier: 'catalog:'
version: 1.5.0
@@ -1298,16 +1304,16 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
jscodeshift:
specifier: 'catalog:'
- version: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ version: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
next-sitemap:
specifier: 'catalog:'
- version: 1.9.12(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))
+ version: 1.9.12(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))
playwright-config-commons-ui:
specifier: workspace:*
version: link:../../packages/playwright-config-commons-ui
@@ -1319,22 +1325,22 @@ importers:
version: 18.3.1(react@18.3.1)
svg-url-loader:
specifier: 'catalog:'
- version: 8.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.0.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
tsx:
specifier: 'catalog:'
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
apps/codeforafrica:
dependencies:
'@aws-sdk/client-s3':
specifier: 'catalog:'
- version: 3.658.1
+ version: 3.679.0
'@aws-sdk/lib-storage':
specifier: 'catalog:'
- version: 3.658.1(@aws-sdk/client-s3@3.658.1)
+ version: 3.679.0(@aws-sdk/client-s3@3.679.0)
'@commons-ui/core':
specifier: workspace:*
version: link:../../packages/commons-ui-core
@@ -1346,49 +1352,49 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@googlemaps/react-wrapper':
specifier: 'catalog:'
version: 1.1.42(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
'@payloadcms/bundler-webpack':
specifier: 'catalog:'
- version: 1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(sass@1.69.4)
+ version: 1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(sass@1.69.4)
'@payloadcms/db-mongodb':
specifier: 'catalog:'
- version: 1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-cloud-storage':
specifier: 'catalog:'
- version: 1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-nested-docs':
specifier: 'catalog:'
- version: 1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-sentry':
specifier: 'catalog:'
- version: 0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/plugin-seo':
specifier: 'catalog:'
- version: 2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/richtext-slate':
specifier: 'catalog:'
- version: 1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/nextjs':
specifier: 'catalog:'
- version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
camelcase-keys:
specifier: 'catalog:'
version: 9.1.3
@@ -1397,7 +1403,7 @@ importers:
version: 16.4.5
express:
specifier: 'catalog:'
- version: 4.21.0
+ version: 4.21.1
fast-equals:
specifier: 'catalog:'
version: 5.0.1
@@ -1409,16 +1415,16 @@ importers:
version: 24.1.3
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nodemailer-sendgrid:
specifier: 'catalog:'
version: 1.0.3
payload:
specifier: 'catalog:'
- version: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
prop-types:
specifier: 'catalog:'
version: 15.8.1
@@ -1446,34 +1452,34 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@swc/core':
specifier: 'catalog:'
- version: 1.7.26(@swc/helpers@0.5.5)
+ version: 1.7.40(@swc/helpers@0.5.5)
'@types/express':
specifier: 'catalog:'
version: 4.17.21
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -1482,16 +1488,16 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
identity-obj-proxy:
specifier: 'catalog:'
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
@@ -1506,31 +1512,31 @@ importers:
version: 18.3.1(react@18.3.1)
tsx:
specifier: 'catalog:'
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
apps/pesayetu:
dependencies:
'@apollo/client':
specifier: 'catalog:'
- version: 3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@commons-ui/core':
specifier: 'catalog:'
- version: 0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.10)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))
+ version: 0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))
'@commons-ui/next':
specifier: workspace:*
version: link:../../packages/commons-ui-next
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@hurumap/core':
specifier: workspace:*
version: link:../../packages/hurumap-core
@@ -1539,16 +1545,16 @@ importers:
version: link:../../packages/hurumap-next
'@mui/material':
specifier: catalog:mui-styles
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/styles':
specifier: catalog:mui-styles
- version: 5.16.7(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@types/react@18.3.12)(react@18.3.1)
'@mui/utils':
specifier: catalog:mui-styles
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@mui/x-tree-view':
specifier: 'catalog:'
- version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 7.22.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@reactour/tour':
specifier: 'catalog:'
version: 3.7.0(react@18.3.1)
@@ -1572,13 +1578,13 @@ importers:
version: 4.17.21
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-images:
specifier: 'catalog:'
- version: 1.8.5(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ version: 1.8.5(webpack@5.95.0(esbuild@0.23.1))
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
papaparse:
specifier: 'catalog:'
version: 5.4.1
@@ -1632,77 +1638,77 @@ importers:
version: 0.34.0
video.js:
specifier: 'catalog:'
- version: 8.17.4
+ version: 8.19.1
videojs-youtube:
specifier: 'catalog:'
- version: 3.0.1(video.js@8.17.4)
+ version: 3.0.1(video.js@8.19.1)
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ version: 5.95.0(esbuild@0.23.1)
xlsx:
specifier: 'catalog:'
version: 0.18.5
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-env':
specifier: 'catalog:'
- version: 7.25.4(@babel/core@7.25.2)
+ version: 7.26.0(@babel/core@7.26.0)
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
'@material-ui/codemod':
specifier: 'catalog:'
- version: 4.5.1(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)))
+ version: 4.5.1(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)))
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
'@storybook/addon-essentials':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)
+ version: 8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)
'@storybook/addon-interactions':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)
+ version: 8.3.6(storybook@8.3.6)
'@storybook/addon-links':
specifier: 'catalog:'
- version: 8.3.4(react@18.3.1)(storybook@8.3.4)
+ version: 8.3.6(react@18.3.1)(storybook@8.3.6)
'@storybook/blocks':
specifier: 'catalog:'
- version: 8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)
+ version: 8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)
'@storybook/cli':
specifier: 'catalog:'
- version: 8.3.4(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ version: 8.3.6(@babel/preset-env@7.26.0(@babel/core@7.26.0))
'@storybook/nextjs':
specifier: 'catalog:'
- version: 8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(babel-plugin-macros@3.1.0)(esbuild@0.23.1)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.4)(type-fest@4.26.1)(typescript@5.6.2)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ version: 8.3.6(babel-plugin-macros@3.1.0)(esbuild@0.23.1)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.6)(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))
'@storybook/react':
specifier: 'catalog:'
- version: 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
+ version: 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
'@storybook/test':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)
+ version: 8.3.6(storybook@8.3.6)
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
apollo-link-rest:
specifier: 'catalog:'
- version: 0.9.0(@apollo/client@3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@15.9.0)(qs@6.13.0)
+ version: 0.9.0(@apollo/client@3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@15.9.0)(qs@6.13.0)
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(esbuild@0.23.1))
babel-plugin-transform-imports:
specifier: 'catalog:'
version: 2.0.0
@@ -1714,13 +1720,13 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-babel-module:
specifier: 'catalog:'
- version: 5.3.2(@babel/core@7.25.2)(babel-plugin-module-resolver@5.0.2)
+ version: 5.3.2(@babel/core@7.26.0)(babel-plugin-module-resolver@5.0.2)
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(esbuild@0.23.1))
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
eslint-plugin-module-resolver:
specifier: 'catalog:'
version: 1.5.0
@@ -1738,16 +1744,16 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
jscodeshift:
specifier: 'catalog:'
- version: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ version: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
next-sitemap:
specifier: 'catalog:'
- version: 1.9.12(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))
+ version: 1.9.12(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))
playwright-config-commons-ui:
specifier: workspace:*
version: link:../../packages/playwright-config-commons-ui
@@ -1759,49 +1765,49 @@ importers:
version: 18.3.1(react@18.3.1)
storybook:
specifier: 'catalog:'
- version: 8.3.4
+ version: 8.3.6
svg-url-loader:
specifier: 'catalog:'
- version: 8.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ version: 8.0.0(webpack@5.95.0(esbuild@0.23.1))
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
apps/promisetracker:
dependencies:
'@commons-ui/core':
specifier: 'catalog:'
- version: 0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.10)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))
+ version: 0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))
'@commons-ui/next':
specifier: workspace:*
version: link:../../packages/commons-ui-next
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/icons-material':
specifier: catalog:mui-styles
- version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/lab':
specifier: catalog:mui-styles
- version: 5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/material':
specifier: catalog:mui-styles
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/styles':
specifier: catalog:mui-styles
- version: 5.16.7(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@types/react@18.3.12)(react@18.3.1)
'@mui/utils':
specifier: catalog:mui-styles
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@sentry/nextjs':
specifier: 'catalog:'
- version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0)
clsx:
specifier: 'catalog:'
version: 2.1.1
@@ -1810,16 +1816,16 @@ importers:
version: 4.1.0
form-data:
specifier: 'catalog:'
- version: 4.0.0
+ version: 4.0.1
formik:
specifier: 'catalog:'
version: 2.4.6(react@18.3.1)
formik-mui:
specifier: 'catalog:'
- version: 5.0.0-alpha.1(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(formik@2.4.6(react@18.3.1))(react@18.3.1)(tiny-warning@1.0.3)
+ version: 5.0.0-alpha.1(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(formik@2.4.6(react@18.3.1))(react@18.3.1)(tiny-warning@1.0.3)
formik-mui-lab:
specifier: 'catalog:'
- version: 1.0.0(6jpqjgqkp2omfti2hkzyhya244)
+ version: 1.0.0(ggufnrxx63oy5h7baag2v3l5wi)
jwt-decode:
specifier: 'catalog:'
version: 4.0.0
@@ -1828,13 +1834,13 @@ importers:
version: 4.17.21
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-auth:
specifier: 'catalog:'
- version: 4.24.8(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(nodemailer@6.9.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.24.10(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
papaparse:
specifier: 'catalog:'
version: 5.4.1
@@ -1868,31 +1874,31 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-env':
specifier: 'catalog:'
- version: 7.25.4(@babel/core@7.25.2)
+ version: 7.26.0(@babel/core@7.26.0)
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -1901,16 +1907,16 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0)
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
identity-obj-proxy:
specifier: 'catalog:'
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
@@ -1925,10 +1931,10 @@ importers:
version: 18.3.1(react@18.3.1)
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
apps/roboshield:
dependencies:
@@ -1943,67 +1949,67 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/icons-material':
specifier: 'catalog:'
- version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/material-nextjs':
specifier: 'catalog:'
- version: 5.16.6(@emotion/cache@11.13.1)(@emotion/server@11.11.0(@emotion/css@11.13.0))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
+ version: 5.16.6(@emotion/cache@11.13.1)(@emotion/server@11.11.0(@emotion/css@11.13.4))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@mui/x-date-pickers':
specifier: 'catalog:'
- version: 7.18.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(date-fns@4.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 7.22.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(date-fns@4.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
'@next/third-parties':
specifier: 'catalog:'
- version: 14.2.13(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
+ version: 14.2.16(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
'@payloadcms/bundler-webpack':
specifier: 'catalog:'
- version: 1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(sass@1.69.4)
+ version: 1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(sass@1.69.4)
'@payloadcms/db-mongodb':
specifier: 'catalog:'
- version: 1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/live-preview-react':
specifier: 'catalog:'
version: 0.2.0(react@18.3.1)
'@payloadcms/plugin-cloud-storage':
specifier: 'catalog:'
- version: 1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-nested-docs':
specifier: 'catalog:'
- version: 1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
'@payloadcms/plugin-sentry':
specifier: 'catalog:'
- version: 0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/plugin-seo':
specifier: 'catalog:'
- version: 2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)
+ version: 2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)
'@payloadcms/richtext-slate':
specifier: 'catalog:'
- version: 1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/nextjs':
specifier: 'catalog:'
- version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
ace-builds:
specifier: 'catalog:'
- version: 1.36.2
+ version: 1.36.3
crawler-user-agents:
specifier: 'catalog:'
- version: 1.0.150
+ version: 1.0.154
date-fns:
specifier: 'catalog:'
version: 4.1.0
@@ -2012,19 +2018,19 @@ importers:
version: 16.4.5
express:
specifier: 'catalog:'
- version: 4.21.0
+ version: 4.21.1
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-seo:
specifier: 'catalog:'
- version: 6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
nodemailer-sendgrid:
specifier: 'catalog:'
version: 1.0.3
payload:
specifier: 'catalog:'
- version: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
react:
specifier: 'catalog:'
version: 18.3.1
@@ -2061,43 +2067,43 @@ importers:
version: link:../../packages/commons-ui-testing-library
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@types/express':
specifier: 'catalog:'
version: 4.17.21
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/nodemailer-sendgrid':
specifier: 'catalog:'
version: 1.0.3
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
'@types/react-dom':
specifier: 'catalog:'
- version: 18.3.0
+ version: 18.3.1
babel-jest:
specifier: 'catalog:'
- version: 29.7.0(@babel/core@7.25.2)
+ version: 29.7.0(@babel/core@7.26.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
eslint-config-next:
specifier: 'catalog:'
- version: 14.2.13(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)(typescript@5.6.2)
+ version: 14.2.16(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)(typescript@5.6.3)
eslint-config-prettier:
specifier: 'catalog:'
version: 9.1.0(eslint@8.57.1)
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ version: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../../packages/jest-config-commons-ui
@@ -2106,10 +2112,10 @@ importers:
version: 3.3.3
tsx:
specifier: 'catalog:'
- version: 4.19.1
+ version: 4.19.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
apps/techlabblog:
dependencies:
@@ -2124,37 +2130,37 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mdx-js/loader':
specifier: 'catalog:'
- version: 3.0.1(webpack@5.95.0)
+ version: 3.1.0(acorn@8.14.0)(webpack@5.95.0)
'@mdx-js/mdx':
specifier: 'catalog:'
- version: 3.0.1
+ version: 3.1.0(acorn@8.14.0)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/material-nextjs':
specifier: 'catalog:'
- version: 5.16.6(@emotion/cache@11.13.1)(@emotion/server@11.11.0(@emotion/css@11.13.0))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
+ version: 5.16.6(@emotion/cache@11.13.1)(@emotion/server@11.11.0(@emotion/css@11.13.4))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@next/mdx':
specifier: 'catalog:'
- version: 14.2.13(@mdx-js/loader@3.0.1(webpack@5.95.0))(@mdx-js/react@3.0.1(@types/react@18.3.10)(react@18.3.1))
+ version: 14.2.16(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.95.0))(@mdx-js/react@3.1.0(@types/react@18.3.12)(react@18.3.1))
'@next/third-parties':
specifier: 'catalog:'
- version: 14.2.13(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
+ version: 14.2.16(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)
date-fns:
specifier: 'catalog:'
version: 4.1.0
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
parse-numeric-range:
specifier: 'catalog:'
version: 1.3.0
@@ -2169,7 +2175,7 @@ importers:
version: 7.1.0
rehype-pretty-code:
specifier: 'catalog:'
- version: 0.14.0(shiki@1.21.0)
+ version: 0.14.0(shiki@1.22.2)
rehype-slug:
specifier: 'catalog:'
version: 6.0.0
@@ -2181,38 +2187,38 @@ importers:
version: 5.0.0
shiki:
specifier: 'catalog:'
- version: 1.21.0
+ version: 1.22.2
devDependencies:
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@types/mdx':
specifier: 'catalog:'
version: 2.0.13
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
'@types/react-dom':
specifier: 'catalog:'
- version: 18.3.0
+ version: 18.3.1
eslint:
specifier: 'catalog:'
version: 8.57.1
eslint-config-next:
specifier: 'catalog:'
- version: 14.2.13(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)(typescript@5.6.2)
+ version: 14.2.16(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)(typescript@5.6.3)
eslint-config-prettier:
specifier: 'catalog:'
version: 9.1.0(eslint@8.57.1)
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0)
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0)
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
eslint-plugin-mdx:
specifier: 'catalog:'
version: 3.1.5(eslint@8.57.1)
@@ -2221,7 +2227,7 @@ importers:
version: 3.3.3
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
apps/uibook:
dependencies:
@@ -2236,13 +2242,13 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@hurumap/core':
specifier: workspace:*
version: link:../../packages/hurumap-core
@@ -2251,16 +2257,16 @@ importers:
version: link:../../packages/hurumap-next
'@mui/icons-material':
specifier: 'catalog:'
- version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
css-loader:
specifier: 'catalog:'
version: 7.1.2(webpack@5.95.0)
@@ -2269,7 +2275,7 @@ importers:
version: 1.9.4
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
prop-types:
specifier: 'catalog:'
version: 15.8.1
@@ -2285,40 +2291,40 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@storybook/addon-essentials':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)
+ version: 8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)
'@storybook/addon-interactions':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)
+ version: 8.3.6(storybook@8.3.6)
'@storybook/addon-links':
specifier: 'catalog:'
- version: 8.3.4(react@18.3.1)(storybook@8.3.4)
+ version: 8.3.6(react@18.3.1)(storybook@8.3.6)
'@storybook/blocks':
specifier: 'catalog:'
- version: 8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)
+ version: 8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)
'@storybook/cli':
specifier: 'catalog:'
- version: 8.3.4(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ version: 8.3.6(@babel/preset-env@7.26.0(@babel/core@7.26.0))
'@storybook/nextjs':
specifier: 'catalog:'
- version: 8.3.4(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.4)(type-fest@4.26.1)(typescript@5.6.2)(webpack-hot-middleware@2.26.1)(webpack@5.95.0)
+ version: 8.3.6(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.6)(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.95.0)
'@storybook/react':
specifier: 'catalog:'
- version: 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
+ version: 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
'@storybook/test':
specifier: 'catalog:'
- version: 8.3.4(storybook@8.3.4)
+ version: 8.3.6(storybook@8.3.6)
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2327,19 +2333,19 @@ importers:
version: link:../../packages/eslint-config-commons-ui
eslint-import-resolver-webpack:
specifier: 'catalog:'
- version: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0)
+ version: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0)
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ version: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
prettier:
specifier: 'catalog:'
version: 3.3.3
storybook:
specifier: 'catalog:'
- version: 8.3.4
+ version: 8.3.6
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
version: 5.95.0
@@ -2348,7 +2354,7 @@ importers:
dependencies:
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/core':
specifier: workspace:*
version: link:../../packages/commons-ui-core
@@ -2360,37 +2366,37 @@ importers:
version: 11.13.1
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/server':
specifier: 'catalog:'
- version: 11.11.0(@emotion/css@11.13.0)
+ version: 11.11.0(@emotion/css@11.13.4)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@next/env':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
'@sendgrid/mail':
specifier: 'catalog:'
- version: 8.1.3
+ version: 8.1.4
'@sentry/nextjs':
specifier: 'catalog:'
- version: 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0)
'@svgr/webpack':
specifier: 'catalog:'
- version: 8.1.0(typescript@5.6.2)
+ version: 8.1.0(typescript@5.6.3)
'@types/jest':
specifier: 'catalog:'
- version: 29.5.13
+ version: 29.5.14
better-sqlite3:
specifier: 'catalog:'
- version: 11.3.0
+ version: 11.5.0
date-fns:
specifier: 'catalog:'
version: 4.1.0
@@ -2399,13 +2405,13 @@ importers:
version: 133.0.0(encoding@0.1.13)
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-auth:
specifier: 'catalog:'
- version: 4.24.8(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(nodemailer@6.9.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.24.10(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: 'catalog:'
version: 18.3.1
@@ -2418,7 +2424,7 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../../packages/commons-ui-testing-library
@@ -2427,25 +2433,25 @@ importers:
version: 7.6.11
'@types/node':
specifier: 'catalog:'
- version: 20.16.10
+ version: 20.17.2
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
'@types/react-dom':
specifier: 'catalog:'
- version: 18.3.0
+ version: 18.3.1
eslint:
specifier: 'catalog:'
version: 8.57.1
eslint-config-next:
specifier: 'catalog:'
- version: 14.2.13(eslint@8.57.1)(typescript@5.6.2)
+ version: 14.2.16(eslint@8.57.1)(typescript@5.6.3)
eslint-config-prettier:
specifier: 'catalog:'
version: 9.1.0(eslint@8.57.1)
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
packages/commons-ui-core:
dependencies:
@@ -2455,31 +2461,31 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../commons-ui-testing-library
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@mui/utils':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2491,7 +2497,7 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../jest-config-commons-ui
@@ -2512,38 +2518,44 @@ importers:
version: 2.0.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
packages/commons-ui-next:
dependencies:
clsx:
specifier: 'catalog:'
version: 2.1.1
- slate:
- specifier: 'catalog:'
- version: 0.103.0
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/core':
specifier: workspace:*
version: link:../commons-ui-core
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../commons-ui-testing-library
+ '@emotion/react':
+ specifier: 'catalog:'
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled':
+ specifier: 'catalog:'
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/react':
+ specifier: 'catalog:'
+ version: 18.3.12
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2552,13 +2564,13 @@ importers:
version: link:../eslint-config-commons-ui
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../jest-config-commons-ui
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
prop-types:
specifier: 'catalog:'
version: 15.8.1
@@ -2573,59 +2585,50 @@ importers:
version: 2.0.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
packages/commons-ui-payload:
dependencies:
- '@commons-ui/core':
- specifier: workspace:*
- version: link:../commons-ui-core
- '@commons-ui/next':
- specifier: workspace:*
- version: link:../commons-ui-next
clsx:
specifier: 'catalog:'
version: 2.1.1
- next:
- specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
prop-types:
specifier: 'catalog:'
version: 15.8.1
- slate:
- specifier: 'catalog:'
- version: 0.103.0
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
+ '@commons-ui/core':
+ specifier: workspace:*
+ version: link:../commons-ui-core
+ '@commons-ui/next':
+ specifier: workspace:*
+ version: link:../commons-ui-next
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../commons-ui-testing-library
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/utils':
- specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2637,10 +2640,13 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../jest-config-commons-ui
+ next:
+ specifier: 'catalog:'
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
prettier:
specifier: 'catalog:'
version: 3.3.3
@@ -2656,46 +2662,49 @@ importers:
require-from-string:
specifier: 'catalog:'
version: 2.0.2
+ slate:
+ specifier: 'catalog:'
+ version: 0.103.0
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
packages/commons-ui-testing-library:
dependencies:
'@testing-library/jest-dom':
specifier: 'catalog:'
- version: 6.5.0
+ version: 6.6.2
'@testing-library/react':
specifier: 'catalog:'
- version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.10)(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)
prop-types:
specifier: 'catalog:'
version: 15.8.1
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2707,7 +2716,7 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../jest-config-commons-ui
@@ -2725,40 +2734,40 @@ importers:
version: 18.3.1(react@18.3.1)
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
packages/eslint-config-commons-ui:
dependencies:
'@babel/eslint-parser':
specifier: 'catalog:'
- version: 7.25.1(@babel/core@7.25.2)(eslint@8.57.1)
+ version: 7.25.9(@babel/core@7.26.0)(eslint@8.57.1)
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@next/eslint-plugin-next':
specifier: 'catalog:'
- version: 14.2.13
+ version: 14.2.16
eslint-config-airbnb:
specifier: 'catalog:'
- version: 19.0.4(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.0(eslint@8.57.1))(eslint@8.57.1)
+ version: 19.0.4(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.2(eslint@8.57.1))(eslint@8.57.1)
eslint-config-prettier:
specifier: 'catalog:'
version: 9.1.0(eslint@8.57.1)
eslint-config-turbo:
specifier: 'catalog:'
- version: 2.1.2(eslint@8.57.1)
+ version: 2.2.3(eslint@8.57.1)
eslint-import-resolver-jsconfig:
specifier: 'catalog:'
version: 1.1.0
eslint-plugin-import:
specifier: 'catalog:'
- version: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
+ version: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
eslint-plugin-jest:
specifier: 'catalog:'
- version: 28.8.3(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)))(typescript@5.6.2)
+ version: 28.8.3(@typescript-eslint/eslint-plugin@8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(babel-plugin-macros@3.1.0))(typescript@5.6.3)
eslint-plugin-jest-dom:
specifier: 'catalog:'
version: 5.4.0(@testing-library/dom@10.4.0)(eslint@8.57.1)
@@ -2767,29 +2776,29 @@ importers:
version: 3.1.0
eslint-plugin-jsx-a11y:
specifier: 'catalog:'
- version: 6.10.0(eslint@8.57.1)
+ version: 6.10.2(eslint@8.57.1)
eslint-plugin-markdown:
specifier: 'catalog:'
version: 3.0.1(eslint@8.57.1)
eslint-plugin-playwright:
specifier: 'catalog:'
- version: 1.6.2(eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)))(typescript@5.6.2))(eslint@8.57.1)
+ version: 1.8.3(eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(babel-plugin-macros@3.1.0))(typescript@5.6.3))(eslint@8.57.1)
eslint-plugin-prettier:
specifier: 'catalog:'
version: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3)
eslint-plugin-react:
specifier: 'catalog:'
- version: 7.37.0(eslint@8.57.1)
+ version: 7.37.2(eslint@8.57.1)
eslint-plugin-react-hooks:
specifier: 'catalog:'
version: 4.6.2(eslint@8.57.1)
eslint-plugin-testing-library:
specifier: 'catalog:'
- version: 6.3.0(eslint@8.57.1)(typescript@5.6.2)
+ version: 6.4.0(eslint@8.57.1)(typescript@5.6.3)
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2801,31 +2810,16 @@ importers:
version: 18.3.1
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
packages/hurumap-core:
dependencies:
- '@commons-ui/core':
- specifier: workspace:*
- version: link:../commons-ui-core
- '@mui/icons-material':
- specifier: 'catalog:'
- version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
clsx:
specifier: 'catalog:'
version: 2.1.1
papaparse:
specifier: 'catalog:'
version: 5.4.1
- prop-types:
- specifier: 'catalog:'
- version: 15.8.1
- react-copy-to-clipboard:
- specifier: 'catalog:'
- version: 5.1.0(react@18.3.1)
- react-share:
- specifier: 'catalog:'
- version: 5.1.0(react@18.3.1)
vega:
specifier: 'catalog:'
version: 5.30.0(encoding@0.1.13)
@@ -2835,31 +2829,34 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
+ '@commons-ui/core':
+ specifier: workspace:*
+ version: link:../commons-ui-core
'@commons-ui/testing-library':
specifier: workspace:*
version: link:../commons-ui-testing-library
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@mui/material':
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/icons-material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/utils':
+ version: 5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/material':
specifier: 'catalog:'
- version: 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/react':
specifier: 'catalog:'
- version: 18.3.10
+ version: 18.3.12
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
deepmerge:
specifier: 'catalog:'
version: 4.3.1
@@ -2874,7 +2871,7 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../jest-config-commons-ui
@@ -2884,9 +2881,15 @@ importers:
react:
specifier: 'catalog:'
version: 18.3.1
+ react-copy-to-clipboard:
+ specifier: 'catalog:'
+ version: 5.1.0(react@18.3.1)
react-dom:
specifier: 'catalog:'
version: 18.3.1(react@18.3.1)
+ react-share:
+ specifier: 'catalog:'
+ version: 5.1.0(react@18.3.1)
react-test-renderer:
specifier: 'catalog:'
version: 18.3.1(react@18.3.1)
@@ -2895,19 +2898,19 @@ importers:
version: 2.0.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
packages/hurumap-next:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@commons-ui/core':
specifier: workspace:*
version: link:../commons-ui-core
@@ -2919,19 +2922,19 @@ importers:
version: link:../commons-ui-testing-library
'@emotion/react':
specifier: 'catalog:'
- version: 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/styled':
specifier: 'catalog:'
- version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ version: 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
'@hurumap/core':
specifier: workspace:*
version: link:../hurumap-core
'@mui/material':
specifier: 'catalog:'
- version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
babel-loader:
specifier: 'catalog:'
- version: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ version: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2940,7 +2943,7 @@ importers:
version: link:../eslint-config-commons-ui
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-config-commons-ui:
specifier: workspace:*
version: link:../jest-config-commons-ui
@@ -2949,7 +2952,7 @@ importers:
version: 1.9.4
next:
specifier: 'catalog:'
- version: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ version: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
prop-types:
specifier: 'catalog:'
version: 15.8.1
@@ -2967,10 +2970,10 @@ importers:
version: 2.0.2
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
webpack:
specifier: 'catalog:'
- version: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ version: 5.95.0
packages/jest-config-commons-ui:
dependencies:
@@ -2980,13 +2983,13 @@ importers:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-env':
specifier: 'catalog:'
- version: 7.25.4(@babel/core@7.25.2)
+ version: 7.26.0(@babel/core@7.26.0)
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -2998,7 +3001,7 @@ importers:
version: 3.0.0
jest:
specifier: 'catalog:'
- version: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ version: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
prettier:
specifier: 'catalog:'
version: 3.3.3
@@ -3007,22 +3010,22 @@ importers:
version: 18.3.1
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
packages/playwright-config-commons-ui:
devDependencies:
'@babel/core':
specifier: 'catalog:'
- version: 7.25.2
+ version: 7.26.0
'@babel/preset-env':
specifier: 'catalog:'
- version: 7.25.4(@babel/core@7.25.2)
+ version: 7.26.0(@babel/core@7.26.0)
'@babel/preset-react':
specifier: 'catalog:'
- version: 7.24.7(@babel/core@7.25.2)
+ version: 7.25.9(@babel/core@7.26.0)
'@playwright/test':
specifier: 'catalog:'
- version: 1.47.2
+ version: 1.48.2
eslint:
specifier: 'catalog:'
version: 8.57.1
@@ -3037,7 +3040,7 @@ importers:
version: 18.3.1
typescript:
specifier: 'catalog:'
- version: 5.6.2
+ version: 5.6.3
packages:
@@ -3054,8 +3057,8 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@apidevtools/json-schema-ref-parser@11.7.0':
- resolution: {integrity: sha512-pRrmXMCwnmrkS3MLgAIW5dXRzeTv6GLjkjb4HmxNnvAKXN1Nfzp4KmGADBQvlVUcqi+a5D+hfGDLLnd5NnYxog==}
+ '@apidevtools/json-schema-ref-parser@11.7.2':
+ resolution: {integrity: sha512-4gY54eEGEstClvEkGnwVkTkrx0sqwemEFG5OSRRn3tD91XH0+Q8XIkYIfo7IwEWPpJZwILb9GUXeShtplRc/eA==}
engines: {node: '>= 16'}
'@apollo/client@3.11.8':
@@ -3099,153 +3102,153 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-cognito-identity@3.658.1':
- resolution: {integrity: sha512-MCYLKmNy0FlNT9TvXfOxj0jh+ZQq+G9qEy/VZqu3JsQSgiFvFRdzgzcbQ9gQx7fZrDC/TPdABOTh483zI4cu9g==}
+ '@aws-sdk/client-cognito-identity@3.679.0':
+ resolution: {integrity: sha512-vJzQ6QpaMu8itJMe3FH1/0rwMjL0ELh63iLTxiAmhiV/SvCwNNoSFLd2HdKxbV0Bg/x8lUiPVq3pl6+cxaIrEQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/client-s3@3.658.1':
- resolution: {integrity: sha512-rxYW7ONoh1y/SM292jt0TEH+LSiztoPCJxT3gst4S2o/85apFY3RxL8TrhOqzXoIeMu2LNzyN51Zygme6AbQAA==}
+ '@aws-sdk/client-s3@3.679.0':
+ resolution: {integrity: sha512-P93tUbJXiDtSPgBfFpnjaijLV38hyPlE3g0XybsPTmSYNV6A9Jt1TUIF6vX+o6LdFuq3FerCiagUjhfDANWkAw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/client-sso-oidc@3.658.1':
- resolution: {integrity: sha512-RGcZAI3qEA05JszPKwa0cAyp8rnS1nUvs0Sqw4hqLNQ1kD7b7V6CPjRXe7EFQqCOMvM4kGqx0+cEEVTOmBsFLw==}
+ '@aws-sdk/client-sso-oidc@3.679.0':
+ resolution: {integrity: sha512-/dBYWcCwbA/id4sFCIVZvf0UsvzHCC68SryxeNQk/PDkY9N4n5yRcMUkZDaEyQCjowc3kY4JOXp2AdUP037nhA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.658.1
+ '@aws-sdk/client-sts': ^3.679.0
- '@aws-sdk/client-sso@3.658.1':
- resolution: {integrity: sha512-lOuaBtqPTYGn6xpXlQF4LsNDsQ8Ij2kOdnk+i69Kp6yS76TYvtUuukyLL5kx8zE1c8WbYtxj9y8VNw9/6uKl7Q==}
+ '@aws-sdk/client-sso@3.679.0':
+ resolution: {integrity: sha512-/0cAvYnpOZTo/Y961F1kx2fhDDLUYZ0SQQ5/75gh3xVImLj7Zw+vp74ieqFbqWLYGMaq8z1Arr9A8zG95mbLdg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/client-sts@3.658.1':
- resolution: {integrity: sha512-yw9hc5blTnbT1V6mR7Cx9HGc9KQpcLQ1QXj8rntiJi6tIYu3aFNVEyy81JHL7NsuBSeQulJTvHO3y6r3O0sfRg==}
+ '@aws-sdk/client-sts@3.679.0':
+ resolution: {integrity: sha512-3CvrT8w1RjFu1g8vKA5Azfr5V83r2/b68Ock43WE003Bq/5Y38mwmYX7vk0fPHzC3qejt4YMAWk/C3fSKOy25g==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/core@3.658.1':
- resolution: {integrity: sha512-vJVMoMcSKXK2gBRSu9Ywwv6wQ7tXH8VL1fqB1uVxgCqBZ3IHfqNn4zvpMPWrwgO2/3wv7XFyikGQ5ypPTCw4jA==}
+ '@aws-sdk/core@3.679.0':
+ resolution: {integrity: sha512-CS6PWGX8l4v/xyvX8RtXnBisdCa5+URzKd0L6GvHChype9qKUVxO/Gg6N/y43Hvg7MNWJt9FBPNWIxUB+byJwg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-cognito-identity@3.658.1':
- resolution: {integrity: sha512-JY4rZ4e2emL7PNHCU7F/BQV8PpQGEBZLkEoPD55RO4CitaIhlVZRpUCGLih+0Hw4MOnTUqJdfQBM+qZk6G+Now==}
+ '@aws-sdk/credential-provider-cognito-identity@3.679.0':
+ resolution: {integrity: sha512-XvWd6RPk7TA7tmqITT+NXvJ6ltJP8BUtLO1NAvja4HKExPKR9HAyoOeeH7KM3lVRED4e4LUnLb3fzteH20IXaA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-env@3.654.0':
- resolution: {integrity: sha512-kogsx3Ql81JouHS7DkheCDU9MYAvK0AokxjcshDveGmf7BbgbWCA8Fnb9wjQyNDaOXNvkZu8Z8rgkX91z324/w==}
+ '@aws-sdk/credential-provider-env@3.679.0':
+ resolution: {integrity: sha512-EdlTYbzMm3G7VUNAMxr9S1nC1qUNqhKlAxFU8E7cKsAe8Bp29CD5HAs3POc56AVo9GC4yRIS+/mtlZSmrckzUA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-http@3.658.1':
- resolution: {integrity: sha512-4ubkJjEVCZflxkZnV1JDQv8P2pburxk1LrEp55telfJRzXrnowzBKwuV2ED0QMNC448g2B3VCaffS+Ct7c4IWQ==}
+ '@aws-sdk/credential-provider-http@3.679.0':
+ resolution: {integrity: sha512-ZoKLubW5DqqV1/2a3TSn+9sSKg0T8SsYMt1JeirnuLJF0mCoYFUaWMyvxxKuxPoqvUsaycxKru4GkpJ10ltNBw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-ini@3.658.1':
- resolution: {integrity: sha512-2uwOamQg5ppwfegwen1ddPu5HM3/IBSnaGlaKLFhltkdtZ0jiqTZWUtX2V+4Q+buLnT0hQvLS/frQ+7QUam+0Q==}
+ '@aws-sdk/credential-provider-ini@3.679.0':
+ resolution: {integrity: sha512-Rg7t8RwUzKcumpipG4neZqaeJ6DF+Bco1+FHn5BZB68jpvwvjBjcQUuWkxj18B6ctYHr1fkunnzeKEn/+vy7+w==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.658.1
+ '@aws-sdk/client-sts': ^3.679.0
- '@aws-sdk/credential-provider-node@3.658.1':
- resolution: {integrity: sha512-XwxW6N+uPXPYAuyq+GfOEdfL/MZGAlCSfB5gEWtLBFmFbikhmEuqfWtI6CD60OwudCUOh6argd21BsJf8o1SJA==}
+ '@aws-sdk/credential-provider-node@3.679.0':
+ resolution: {integrity: sha512-E3lBtaqCte8tWs6Rkssc8sLzvGoJ10TLGvpkijOlz43wPd6xCRh1YLwg6zolf9fVFtEyUs/GsgymiASOyxhFtw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-process@3.654.0':
- resolution: {integrity: sha512-PmQoo8sZ9Q2Ow8OMzK++Z9lI7MsRUG7sNq3E72DVA215dhtTICTDQwGlXH2AAmIp7n+G9LLRds+4wo2ehG4mkg==}
+ '@aws-sdk/credential-provider-process@3.679.0':
+ resolution: {integrity: sha512-u/p4TV8kQ0zJWDdZD4+vdQFTMhkDEJFws040Gm113VHa/Xo1SYOjbpvqeuFoz6VmM0bLvoOWjxB9MxnSQbwKpQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-sso@3.658.1':
- resolution: {integrity: sha512-YOagVEsZEk9DmgJEBg+4MBXrPcw/tYas0VQ5OVBqC5XHNbi2OBGJqgmjVPesuu393E7W0VQxtJFDS00O1ewQgA==}
+ '@aws-sdk/credential-provider-sso@3.679.0':
+ resolution: {integrity: sha512-SAtWonhi9asxn0ukEbcE81jkyanKgqpsrtskvYPpO9Z9KOednM4Cqt6h1bfcS9zaHjN2zu815Gv8O7WiV+F/DQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.654.0':
- resolution: {integrity: sha512-6a2g9gMtZToqSu+CusjNK5zvbLJahQ9di7buO3iXgbizXpLXU1rnawCpWxwslMpT5fLgMSKDnKDrr6wdEk7jSw==}
+ '@aws-sdk/credential-provider-web-identity@3.679.0':
+ resolution: {integrity: sha512-a74tLccVznXCaBefWPSysUcLXYJiSkeUmQGtalNgJ1vGkE36W5l/8czFiiowdWdKWz7+x6xf0w+Kjkjlj42Ung==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.654.0
+ '@aws-sdk/client-sts': ^3.679.0
- '@aws-sdk/credential-providers@3.658.1':
- resolution: {integrity: sha512-lfXA6kZS6GHyi/67EbfrKdLoqHR6j7G35eFwaqxyNkfMhNBpAF0eZK3SYiwnzdR9+Wb/enTFawYiFbG5R+dQzA==}
+ '@aws-sdk/credential-providers@3.679.0':
+ resolution: {integrity: sha512-ZjZZb6OERw/UKlSqcJ24AUJIf/ekDLPZrPpo0kPMV70EQ0GkBiklIZ8qULu9bEcI2I4UIapBKRiXTrK4gA6YHg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/lib-storage@3.658.1':
- resolution: {integrity: sha512-qk/CoTpsBj9A9KRT24MrB92TcoKxteCGKLuszU0fAb5KMx3tgJ5kNTkc7Ag/B+sZ1EWO+psqWUJKm2co5u1pDQ==}
+ '@aws-sdk/lib-storage@3.679.0':
+ resolution: {integrity: sha512-c/dWvBuvCE+DyKIsTbcjq9n8iYiIq0eVGwPShADr5haAIY+q514SLznDl1LGZjixZASea1xiPC0gPaXc6F/LXA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-s3': ^3.658.1
+ '@aws-sdk/client-s3': ^3.679.0
- '@aws-sdk/middleware-bucket-endpoint@3.654.0':
- resolution: {integrity: sha512-/lWkyeLESiK+rAB4+NCw1cVPle9RN7RW/v7B4b8ORiCn1FwZLUPmEiZSYzyh4in5oa3Mri+W/g+KafZDH6LCbA==}
+ '@aws-sdk/middleware-bucket-endpoint@3.679.0':
+ resolution: {integrity: sha512-5EpiPhhGgnF+uJR4DzWUk6Lx3pOn9oM6JGXxeHsiynfoBfq7vHMleq+uABHHSQS+y7XzbyZ7x8tXNQlliMwOsg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-expect-continue@3.654.0':
- resolution: {integrity: sha512-S7fSlo8vdjkQTy9DmdF54ZsPwc+aA4z5Y9JVqAlGL9QiZe/fPtRE3GZ8BBbMICjBfMEa12tWjzhDz9su2c6PIA==}
+ '@aws-sdk/middleware-expect-continue@3.679.0':
+ resolution: {integrity: sha512-nYsh9PdWrF4EahTRdXHGlNud82RPc508CNGdh1lAGfPU3tNveGfMBX3PcGBtPOse3p9ebNKRWVmUc9eXSjGvHA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-flexible-checksums@3.658.1':
- resolution: {integrity: sha512-aBhnDIy8PwhgZRJh5U4l1JfLIPLkBeHBCTwn3XjdvhvisXNCfeINWKYuDDHamM+XKgBNUlLoTxpXI2AvLk5cGw==}
+ '@aws-sdk/middleware-flexible-checksums@3.679.0':
+ resolution: {integrity: sha512-2Nf3rnrcog3GRRdXxc623wkQPH3WXhz8oZ+KHuXBeBKX01zbp7bz22QAZKqw3Oo2lv+LQNEDzIfQYn7leXLZGQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-host-header@3.654.0':
- resolution: {integrity: sha512-rxGgVHWKp8U2ubMv+t+vlIk7QYUaRCHaVpmUlJv0Wv6Q0KeO9a42T9FxHphjOTlCGQOLcjCreL9CF8Qhtb4mdQ==}
+ '@aws-sdk/middleware-host-header@3.679.0':
+ resolution: {integrity: sha512-y176HuQ8JRY3hGX8rQzHDSbCl9P5Ny9l16z4xmaiLo+Qfte7ee4Yr3yaAKd7GFoJ3/Mhud2XZ37fR015MfYl2w==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-location-constraint@3.654.0':
- resolution: {integrity: sha512-Duvv5c4DEQ7P6c0YlcvEUW3xCJi6X2uktafNGjILhVDMQwShSF/aFqNv/ikWU/luQcmWHZ9DtDjTR9UKLh6eTA==}
+ '@aws-sdk/middleware-location-constraint@3.679.0':
+ resolution: {integrity: sha512-SA1C1D3XgoKTGxyNsOqd016ONpk46xJLWDgJUd00Zb21Ox5wYCoY6aDRKiaMRW+1VfCJdezs1Do3XLyIU9KxyA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-logger@3.654.0':
- resolution: {integrity: sha512-OQYb+nWlmASyXfRb989pwkJ9EVUMP1CrKn2eyTk3usl20JZmKo2Vjis6I0tLUkMSxMhnBJJlQKyWkRpD/u1FVg==}
+ '@aws-sdk/middleware-logger@3.679.0':
+ resolution: {integrity: sha512-0vet8InEj7nvIvGKk+ch7bEF5SyZ7Us9U7YTEgXPrBNStKeRUsgwRm0ijPWWd0a3oz2okaEwXsFl7G/vI0XiEA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.654.0':
- resolution: {integrity: sha512-gKSomgltKVmsT8sC6W7CrADZ4GHwX9epk3GcH6QhebVO3LA9LRbkL3TwOPUXakxxOLLUTYdOZLIOtFf7iH00lg==}
+ '@aws-sdk/middleware-recursion-detection@3.679.0':
+ resolution: {integrity: sha512-sQoAZFsQiW/LL3DfKMYwBoGjYDEnMbA9WslWN8xneCmBAwKo6IcSksvYs23PP8XMIoBGe2I2J9BSr654XWygTQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-sdk-s3@3.658.1':
- resolution: {integrity: sha512-UdiwCY4Eg7e1ZbseKvBr83SARukcqS5R9R3bnx4sb3cEK0wFDXWrlhRMgK94jr8IJeskV1ySyxozdb1XOzOU3w==}
+ '@aws-sdk/middleware-sdk-s3@3.679.0':
+ resolution: {integrity: sha512-4zcT193F7RkEfqlS6ZdwyNQ0UUp9s66msNXgItugasTbjf7oqfWDas7N+BG8ADB/Ql3wvRUh9I+zdrVkxxw3BQ==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-ssec@3.654.0':
- resolution: {integrity: sha512-k7hkQDJh4hcRJC7YojQ11kc37SY4foryen26Eafj5qYjeG2OGMW0oZTJDl1TVFJ7AcCjqIuMIo0Ho2US/2JspQ==}
+ '@aws-sdk/middleware-ssec@3.679.0':
+ resolution: {integrity: sha512-4GNUxXbs1M71uFHRiCAZtN0/g23ogI9YjMe5isAuYMHXwDB3MhqF7usKf954mBP6tplvN44vYlbJ84faaLrTtg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-user-agent@3.654.0':
- resolution: {integrity: sha512-liCcqPAyRsr53cy2tYu4qeH4MMN0eh9g6k56XzI5xd4SghXH5YWh4qOYAlQ8T66ZV4nPMtD8GLtLXGzsH8moFg==}
+ '@aws-sdk/middleware-user-agent@3.679.0':
+ resolution: {integrity: sha512-4hdeXhPDURPqQLPd9jCpUEo9fQITXl3NM3W1MwcJpE0gdUM36uXkQOYsTPeeU/IRCLVjK8Htlh2oCaM9iJrLCA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/region-config-resolver@3.654.0':
- resolution: {integrity: sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==}
+ '@aws-sdk/region-config-resolver@3.679.0':
+ resolution: {integrity: sha512-Ybx54P8Tg6KKq5ck7uwdjiKif7n/8g1x+V0V9uTjBjRWqaIgiqzXwKWoPj6NCNkE7tJNtqI4JrNxp/3S3HvmRw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.658.1':
- resolution: {integrity: sha512-gad2cOtmwLuiR096PB1vJsv2+KYwI+eN5D+eLaRLCTD9MMGvVWB5xkIXXGmn99ks4gAgtSpzZp8RD6viBj0gIw==}
+ '@aws-sdk/signature-v4-multi-region@3.679.0':
+ resolution: {integrity: sha512-g1D57e7YBhgXihCWIRBcTUvKquS3FS27xuA24EynY9teiTIq7vHkASxxDnMMMcmKHnCKLI5pkznjk0PuDJ4uJw==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/token-providers@3.654.0':
- resolution: {integrity: sha512-D8GeJYmvbfWkQDtTB4owmIobSMexZel0fOoetwvgCQ/7L8VPph3Q2bn1TRRIXvH7wdt6DcDxA3tKMHPBkT3GlA==}
+ '@aws-sdk/token-providers@3.679.0':
+ resolution: {integrity: sha512-1/+Zso/x2jqgutKixYFQEGli0FELTgah6bm7aB+m2FAWH4Hz7+iMUsazg6nSWm714sG9G3h5u42Dmpvi9X6/hA==}
engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sso-oidc': ^3.654.0
+ '@aws-sdk/client-sso-oidc': ^3.679.0
- '@aws-sdk/types@3.654.0':
- resolution: {integrity: sha512-VWvbED3SV+10QJIcmU/PKjsKilsTV16d1I7/on4bvD/jo1qGeMXqLDBSen3ks/tuvXZF/mFc7ZW/W2DiLVtO7A==}
+ '@aws-sdk/types@3.679.0':
+ resolution: {integrity: sha512-NwVq8YvInxQdJ47+zz4fH3BRRLC6lL+WLkvr242PVBbUOLRyK/lkwHlfiKUoeVIMyK5NF+up6TRg71t/8Bny6Q==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-arn-parser@3.568.0':
- resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==}
+ '@aws-sdk/util-arn-parser@3.679.0':
+ resolution: {integrity: sha512-CwzEbU8R8rq9bqUFryO50RFBlkfufV9UfMArHPWlo+lmsC+NlSluHQALoj6Jkq3zf5ppn1CN0c1DDLrEqdQUXg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-endpoints@3.654.0':
- resolution: {integrity: sha512-i902fcBknHs0Irgdpi62+QMvzxE+bczvILXigYrlHL4+PiEnlMVpni5L5W1qCkNZXf8AaMrSBuR1NZAGp6UOUw==}
+ '@aws-sdk/util-endpoints@3.679.0':
+ resolution: {integrity: sha512-YL6s4Y/1zC45OvddvgE139fjeWSKKPgLlnfrvhVL7alNyY9n7beR4uhoDpNrt5mI6sn9qiBF17790o+xLAXjjg==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-locate-window@3.568.0':
- resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==}
+ '@aws-sdk/util-locate-window@3.679.0':
+ resolution: {integrity: sha512-zKTd48/ZWrCplkXpYDABI74rQlbR0DNHs8nH95htfSLj9/mWRSwaGptoxwcihaq/77vi/fl2X3y0a1Bo8bt7RA==}
engines: {node: '>=16.0.0'}
- '@aws-sdk/util-user-agent-browser@3.654.0':
- resolution: {integrity: sha512-ykYAJqvnxLt7wfrqya28wuH3/7NdrwzfiFd7NqEVQf7dXVxL5RPEpD7DxjcyQo3DsHvvdUvGZVaQhozycn1pzA==}
+ '@aws-sdk/util-user-agent-browser@3.679.0':
+ resolution: {integrity: sha512-CusSm2bTBG1kFypcsqU8COhnYc6zltobsqs3nRrvYqYaOqtMnuE46K4XTWpnzKgwDejgZGOE+WYyprtAxrPvmQ==}
- '@aws-sdk/util-user-agent-node@3.654.0':
- resolution: {integrity: sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==}
+ '@aws-sdk/util-user-agent-node@3.679.0':
+ resolution: {integrity: sha512-Bw4uXZ+NU5ed6TNfo4tBbhBSW+2eQxXYjYBGl5gLUNUpg2pDFToQAP6rXBFiwcG52V2ny5oLGiD82SoYuYkAVg==}
engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -3253,53 +3256,53 @@ packages:
aws-crt:
optional: true
- '@aws-sdk/xml-builder@3.654.0':
- resolution: {integrity: sha512-qA2diK3d/ztC8HUb7NwPKbJRV01NpzTzxFn+L5G3HzJBNeKbjLcprQ/9uG9gp2UEx2Go782FI1ddrMNa0qBICA==}
+ '@aws-sdk/xml-builder@3.679.0':
+ resolution: {integrity: sha512-nPmhVZb39ty5bcQ7mAwtjezBcsBqTYZ9A2D9v/lE92KCLdu5RhSkPH7O71ZqbZx1mUSg9fAOxHPiG79U5VlpLQ==}
engines: {node: '>=16.0.0'}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ '@babel/code-frame@7.26.0':
+ resolution: {integrity: sha512-INCKxTtbXtcNbUZ3YXutwMpEleqttcswhAdee7dhuoVrD2cnuc3PqtERBtxkX5nziX9vnBL8WXmSGwv8CuPV6g==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.4':
- resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
+ '@babel/compat-data@7.26.0':
+ resolution: {integrity: sha512-qETICbZSLe7uXv9VE8T/RWOdIE5qqyTucOt4zLYMafj2MRO271VGgLd4RACJMeBO37UPWhXiKMBk7YlJ0fOzQA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.25.2':
- resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/eslint-parser@7.25.1':
- resolution: {integrity: sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==}
+ '@babel/eslint-parser@7.25.9':
+ resolution: {integrity: sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
peerDependencies:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/generator@7.25.6':
- resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
+ '@babel/generator@7.26.0':
+ resolution: {integrity: sha512-/AIkAmInnWwgEAJGQr9vY0c66Mj6kjkE2ZPB1PurTRaRAh3U+J45sAQMjQDJdh4WbR3l0x5xkimXBKyBXXAu2w==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.24.7':
- resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
- resolution: {integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==}
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
+ resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.2':
- resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.25.4':
- resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==}
+ '@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
- '@babel/helper-create-regexp-features-plugin@7.25.2':
- resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
+ '@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
@@ -3309,103 +3312,99 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.24.8':
- resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
+ '@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.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.2':
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
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==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.8':
- resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
+ '@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.0':
- resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
+ '@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.0':
- resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
+ '@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.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ '@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.24.7':
- resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ '@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':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.8':
- resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.0':
- resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.6':
- resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.6':
- resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
+ '@babel/parser@7.26.1':
+ resolution: {integrity: sha512-reoQYNiAJreZNsJzyrDNzFQ+IQ5JFiIzAHJg9bn94S3l+4++J7RsIhNMoB+lgP/9tpmiAQqspv+xfdxTSzREOw==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
- resolution: {integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==}
+ '@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.0':
- resolution: {integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==}
+ '@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.0':
- resolution: {integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==}
+ '@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.24.7':
- resolution: {integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==}
+ '@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.0':
- resolution: {integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==}
+ '@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
@@ -3442,25 +3441,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-flow@7.24.7':
- resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
+ '@babel/plugin-syntax-flow@7.26.0':
+ resolution: {integrity: sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.25.6':
- resolution: {integrity: sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.25.6':
- resolution: {integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==}
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3475,8 +3469,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
+ '@babel/plugin-syntax-jsx@7.25.9':
+ resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3523,8 +3517,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.25.4':
- resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3535,356 +3529,362 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
+ '@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.4':
- resolution: {integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==}
+ '@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.24.7':
- resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
+ '@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.24.7':
- resolution: {integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==}
+ '@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.0':
- resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
+ '@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
- '@babel/plugin-transform-class-properties@7.25.4':
- resolution: {integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==}
+ '@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.24.7':
- resolution: {integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==}
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.4':
- resolution: {integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==}
+ '@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.24.7':
- resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
+ '@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.24.8':
- resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
+ '@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.24.7':
- resolution: {integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==}
+ '@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.24.7':
- resolution: {integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==}
+ '@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.0':
- resolution: {integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==}
+ '@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.24.7':
- resolution: {integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==}
+ '@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.24.7':
- resolution: {integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==}
+ '@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
- '@babel/plugin-transform-export-namespace-from@7.24.7':
- resolution: {integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==}
+ '@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.2':
- resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
+ '@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.24.7':
- resolution: {integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==}
+ '@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.1':
- resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
+ '@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.24.7':
- resolution: {integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==}
+ '@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.2':
- resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
+ '@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.24.7':
- resolution: {integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==}
+ '@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.24.7':
- resolution: {integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==}
+ '@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.24.7':
- resolution: {integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==}
+ '@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.24.8':
- resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
+ '@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.0':
- resolution: {integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==}
+ '@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.24.7':
- resolution: {integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==}
+ '@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.24.7':
- resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
+ '@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.24.7':
- resolution: {integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==}
+ '@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.24.7':
- resolution: {integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==}
+ '@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
- '@babel/plugin-transform-numeric-separator@7.24.7':
- resolution: {integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==}
+ '@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
- '@babel/plugin-transform-object-rest-spread@7.24.7':
- resolution: {integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==}
+ '@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.24.7':
- resolution: {integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==}
+ '@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.24.7':
- resolution: {integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==}
+ '@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.24.8':
- resolution: {integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==}
+ '@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.24.7':
- resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
+ '@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.4':
- resolution: {integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==}
+ '@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.24.7':
- resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
+ '@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.24.7':
- resolution: {integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==}
+ '@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-constant-elements@7.25.1':
- resolution: {integrity: sha512-SLV/giH/V4SmloZ6Dt40HjTGTAIkxn33TVIHxNGNvo8ezMhrxBkzisj4op1KZYPIOHFLqhv60OHvX+YRu4xbmQ==}
+ '@babel/plugin-transform-react-constant-elements@7.25.9':
+ resolution: {integrity: sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.7':
- resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
+ '@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.24.7':
- resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==}
+ '@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
- '@babel/plugin-transform-react-jsx@7.25.2':
- resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
+ '@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.24.7':
- resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==}
+ '@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.24.7':
- resolution: {integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==}
+ '@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.24.7':
- resolution: {integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
+ '@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
- '@babel/plugin-transform-runtime@7.25.4':
- resolution: {integrity: sha512-8hsyG+KUYGY0coX6KUCDancA0Vw225KJ2HJO0yCNr1vq5r+lJTleDaJf0K7iOhjw4SWhu03TMBzYTJ9krmzULQ==}
+ '@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.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
+ '@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.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
+ '@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.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
+ '@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.24.7':
- resolution: {integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==}
+ '@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.24.8':
- resolution: {integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==}
+ '@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.2':
- resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
+ '@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.24.7':
- resolution: {integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==}
+ '@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.24.7':
- resolution: {integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==}
+ '@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.24.7':
- resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
+ '@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.4':
- resolution: {integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==}
+ '@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.4':
- resolution: {integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.24.7':
- resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
+ '@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
@@ -3894,44 +3894,41 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/preset-react@7.24.7':
- resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==}
+ '@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.24.7':
- resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
+ '@babel/preset-typescript@7.26.0':
+ resolution: {integrity: sha512-NMk1IGZ5I/oHhoXEElcm+xUnL/szL6xflkFZmoEU9xj1qSJXpiS7rsspYo92B4DRCDvZn2erT5LdsCeXAKNCkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/register@7.24.6':
- resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
+ '@babel/register@7.25.9':
+ resolution: {integrity: sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/regjsgen@0.8.0':
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
-
'@babel/runtime@7.0.0':
resolution: {integrity: sha512-7hGhzlcmg01CvH1EHdSPVXYX1aJ8KCEyz6I9xYIi/asDtzBPMyMhVibhM/K6g/5qnKBwjZtp10bNZIEFTRW1MA==}
- '@babel/runtime@7.25.6':
- resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.0':
- resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.6':
- resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.6':
- resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@base2/pretty-print-object@1.0.1':
@@ -3952,8 +3949,8 @@ packages:
'@changesets/changelog-github@0.5.0':
resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
- '@changesets/cli@2.27.8':
- resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==}
+ '@changesets/cli@2.27.9':
+ resolution: {integrity: sha512-q42a/ZbDnxPpCb5Wkm6tMVIxgeI9C/bexntzTeCFBrQEdpisQqk8kCHllYZMDjYtEc1ZzumbMJAG8H0Z4rdvjg==}
hasBin: true
'@changesets/config@3.0.3':
@@ -4017,10 +4014,6 @@ packages:
'@corex/deepmerge@2.6.148':
resolution: {integrity: sha512-6QMz0/2h5C3ua51iAnXMPWFbb1QOU1UvSM4bKBw5mzdT+WtLgjbETBBIQZ+Sh9WvEcGwlAt/DEdRpIC3XlDBMA==}
- '@cspotcode/source-map-support@0.8.1':
- resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
- engines: {node: '>=12'}
-
'@csstools/cascade-layer-name-parser@1.0.13':
resolution: {integrity: sha512-MX0yLTwtZzr82sQ0zOjqimpZbzjMaK/h2pmlrLK7DCzlmiZLYFpoO94WmN1akRVo6ll/TdpHb53vihHLUMyvng==}
engines: {node: ^14 || ^16 || >=18}
@@ -4269,8 +4262,8 @@ packages:
peerDependencies:
react: '>=16.8.0'
- '@emnapi/runtime@1.2.0':
- resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==}
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
'@emotion/babel-plugin@11.12.0':
resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
@@ -4278,8 +4271,8 @@ packages:
'@emotion/cache@11.13.1':
resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==}
- '@emotion/css@11.13.0':
- resolution: {integrity: sha512-BUk99ylT+YHl+W/HN7nv1RCTkDYmKKqa1qbvM/qLSQEg61gipuBF5Hptk/2/ERmX2DCv0ccuFGhz9i0KSZOqPg==}
+ '@emotion/css@11.13.4':
+ resolution: {integrity: sha512-CthbOD5EBw+iN0rfM96Tuv5kaZN4nxPyYDvGUs0bc7wZBBiU/0mse+l+0O9RshW2d+v5HH1cme+BAbLJ/3Folw==}
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
@@ -4481,14 +4474,14 @@ packages:
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@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==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
@@ -4505,14 +4498,20 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+ '@faceless-ui/modal@2.0.2':
+ resolution: {integrity: sha512-CtwUn+hHEaoYUjREzQKGRbEp55VzUx7sC+hxIxmCPwg7Yd5KXkQzSfoUfRAHqT/1MFfE1B2QCHVVbhtSnFL9BA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
+
'@faceless-ui/scroll-info@1.3.0':
resolution: {integrity: sha512-X+doJMzQqyVGpwV/YgXUAalNWepP2W8ThgZspKZLFG43zTYLVTU17BYCjjY+ggKuA3b0W3JyXZ2M8f247AdmHw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@faceless-ui/window-info@2.1.1':
- resolution: {integrity: sha512-gMAgda7beR4CNpBIXjgRVn97ek0LG3PAj9lxmoYdg574IEzLFZAh3eAYtTaS2XLKgb4+IHhsuBzlGmHbeOo2Aw==}
+ '@faceless-ui/window-info@2.1.2':
+ resolution: {integrity: sha512-IvZM6mLWFRin904180115Y6BgsvAN9M5uCMJEHhiQgTgzDMiYVtUww7GlWRsvemubMRF6c9Q+j79qW7uPPuMBg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -4771,9 +4770,6 @@ packages:
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
- '@jridgewell/trace-mapping@0.3.9':
- resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
-
'@jsdevtools/ono@7.1.3':
resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==}
@@ -4790,16 +4786,19 @@ packages:
resolution: {integrity: sha512-JkZJ+28tNIg/1ecTNO5aul0UmXlsSjKN+WaY0L6eBXTpRpfHj1dnOg8C6QYI2IJoxDr0juZ74Kafwu1EcS/ICw==}
engines: {node: '>=8.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@3.0.1':
- resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==}
+ '@mdx-js/mdx@3.1.0':
+ resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==}
- '@mdx-js/react@3.0.1':
- resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==}
+ '@mdx-js/react@3.1.0':
+ resolution: {integrity: sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
@@ -4946,8 +4945,8 @@ packages:
'@types/react':
optional: true
- '@mui/types@7.2.17':
- resolution: {integrity: sha512-oyumoJgB6jDV8JFzRqjBo2daUuHpzDjoO/e3IrRhhHo/FxJlaVhET6mcNrKHUq2E+R+q3ql0qAtvQ4rfWHhAeQ==}
+ '@mui/types@7.2.18':
+ resolution: {integrity: sha512-uvK9dWeyCJl/3ocVnTOS6nlji/Knj8/tVqVX03UVTpdmTJYu/s4jtDd9Kvv0nRGE0CUSNW1UYAci7PYypjealg==}
peerDependencies:
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
@@ -4964,8 +4963,8 @@ packages:
'@types/react':
optional: true
- '@mui/x-date-pickers@7.18.0':
- resolution: {integrity: sha512-12tXIoMj9vpS8fS/bS3kWPCoVrH38vNGCxgplI0vOnUrN9rJuYJz3agLPJe1S0xciTw+9W8ZSe3soaW+owoz1Q==}
+ '@mui/x-date-pickers@7.22.0':
+ resolution: {integrity: sha512-hopYo3ORP7ddYKnyBsqAtO2txEe2Zf6cehdikS5b1cqMTGOSL+18b11jfGVod9oipjb9L2JcT/WWkjoifs9Iww==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@emotion/react': ^11.9.0
@@ -5001,14 +5000,14 @@ packages:
moment-jalaali:
optional: true
- '@mui/x-internals@7.18.0':
- resolution: {integrity: sha512-lzCHOWIR0cAIY1bGrWSprYerahbnH5C31ql/2OWCEjcngL2NAV1M6oKI2Vp4HheqzJ822c60UyWyapvyjSzY/A==}
+ '@mui/x-internals@7.21.0':
+ resolution: {integrity: sha512-94YNyZ0BhK5Z+Tkr90RKf47IVCW8R/1MvdUhh6MCQg6sZa74jsX+x+gEZ4kzuCqOsuyTyxikeQ8vVuCIQiP7UQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: ^17.0.0 || ^18.0.0
- '@mui/x-tree-view@7.18.0':
- resolution: {integrity: sha512-3UJAYtBquc0SzKxEEdM68XlKOuuCl70ktZPqqI3z4wTZ0HK445XXc32t/s0VPIL94kRxWQcGPpgWFauScDwhug==}
+ '@mui/x-tree-view@7.22.0':
+ resolution: {integrity: sha512-4ZhwniTMT7Sub4zG38mtYg+D/wtrFIaOYBHhsbrn5BR5vdjgWcFk3c/9KiVq+wva1b9iU47k36pgzB5cCfoGkQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@emotion/react': ^11.9.0
@@ -5023,14 +5022,14 @@ packages:
'@emotion/styled':
optional: true
- '@next/env@14.2.13':
- resolution: {integrity: sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==}
+ '@next/env@14.2.16':
+ resolution: {integrity: sha512-fLrX5TfJzHCbnZ9YUSnGW63tMV3L4nSfhgOQ0iCcX21Pt+VSTDuaLsSuL8J/2XAiVA5AnzvXDpf6pMs60QxOag==}
- '@next/eslint-plugin-next@14.2.13':
- resolution: {integrity: sha512-z8Mk0VljxhIzsSiZUSdt3wp+t2lKd+jk5a9Jsvh3zDGkItgDMfjv/ZbET6HsxEl/fSihVoHGsXV6VLyDH0lfTQ==}
+ '@next/eslint-plugin-next@14.2.16':
+ resolution: {integrity: sha512-noORwKUMkKc96MWjTOwrsUCjky0oFegHbeJ1yEnQBGbMHAaTEIgLZIIfsYF0x3a06PiS+2TXppfifR+O6VWslg==}
- '@next/mdx@14.2.13':
- resolution: {integrity: sha512-UrNXnCMcChqLJDb8kdoWjw3Hyt1E+xGh8n/4U3ro/kkQjiXJ/3k4+Es+L6oxY+zafg1n+6xpK5whROTNAsKAxA==}
+ '@next/mdx@14.2.16':
+ resolution: {integrity: sha512-IVd/Z3vYpIZ/nzqhmSHmTKfSrQ6eZrorkzs0uzMCXt3hL6lw4qf/jcEExZmXoenqnZ5vX0xkou+y4uWAKZhvfw==}
peerDependencies:
'@mdx-js/loader': '>=0.15.0'
'@mdx-js/react': '>=0.15.0'
@@ -5040,62 +5039,62 @@ packages:
'@mdx-js/react':
optional: true
- '@next/swc-darwin-arm64@14.2.13':
- resolution: {integrity: sha512-IkAmQEa2Htq+wHACBxOsslt+jMoV3msvxCn0WFSfJSkv/scy+i/EukBKNad36grRxywaXUYJc9mxEGkeIs8Bzg==}
+ '@next/swc-darwin-arm64@14.2.16':
+ resolution: {integrity: sha512-uFT34QojYkf0+nn6MEZ4gIWQ5aqGF11uIZ1HSxG+cSbj+Mg3+tYm8qXYd3dKN5jqKUm5rBVvf1PBRO/MeQ6rxw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.13':
- resolution: {integrity: sha512-Dv1RBGs2TTjkwEnFMVL5XIfJEavnLqqwYSD6LXgTPdEy/u6FlSrLBSSfe1pcfqhFEXRAgVL3Wpjibe5wXJzWog==}
+ '@next/swc-darwin-x64@14.2.16':
+ resolution: {integrity: sha512-mCecsFkYezem0QiZlg2bau3Xul77VxUD38b/auAjohMA22G9KTJneUYMv78vWoCCFkleFAhY1NIvbyjj1ncG9g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@14.2.13':
- resolution: {integrity: sha512-yB1tYEFFqo4ZNWkwrJultbsw7NPAAxlPXURXioRl9SdW6aIefOLS+0TEsKrWBtbJ9moTDgU3HRILL6QBQnMevg==}
+ '@next/swc-linux-arm64-gnu@14.2.16':
+ resolution: {integrity: sha512-yhkNA36+ECTC91KSyZcgWgKrYIyDnXZj8PqtJ+c2pMvj45xf7y/HrgI17hLdrcYamLfVt7pBaJUMxADtPaczHA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.13':
- resolution: {integrity: sha512-v5jZ/FV/eHGoWhMKYrsAweQ7CWb8xsWGM/8m1mwwZQ/sutJjoFaXchwK4pX8NqwImILEvQmZWyb8pPTcP7htWg==}
+ '@next/swc-linux-arm64-musl@14.2.16':
+ resolution: {integrity: sha512-X2YSyu5RMys8R2lA0yLMCOCtqFOoLxrq2YbazFvcPOE4i/isubYjkh+JCpRmqYfEuCVltvlo+oGfj/b5T2pKUA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.13':
- resolution: {integrity: sha512-aVc7m4YL7ViiRv7SOXK3RplXzOEe/qQzRA5R2vpXboHABs3w8vtFslGTz+5tKiQzWUmTmBNVW0UQdhkKRORmGA==}
+ '@next/swc-linux-x64-gnu@14.2.16':
+ resolution: {integrity: sha512-9AGcX7VAkGbc5zTSa+bjQ757tkjr6C/pKS7OK8cX7QEiK6MHIIezBLcQ7gQqbDW2k5yaqba2aDtaBeyyZh1i6Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.13':
- resolution: {integrity: sha512-4wWY7/OsSaJOOKvMsu1Teylku7vKyTuocvDLTZQq0TYv9OjiYYWt63PiE1nTuZnqQ4RPvME7Xai+9enoiN0Wrg==}
+ '@next/swc-linux-x64-musl@14.2.16':
+ resolution: {integrity: sha512-Klgeagrdun4WWDaOizdbtIIm8khUDQJ/5cRzdpXHfkbY91LxBXeejL4kbZBrpR/nmgRrQvmz4l3OtttNVkz2Sg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@14.2.13':
- resolution: {integrity: sha512-uP1XkqCqV2NVH9+g2sC7qIw+w2tRbcMiXFEbMihkQ8B1+V6m28sshBwAB0SDmOe0u44ne1vFU66+gx/28RsBVQ==}
+ '@next/swc-win32-arm64-msvc@14.2.16':
+ resolution: {integrity: sha512-PwW8A1UC1Y0xIm83G3yFGPiOBftJK4zukTmk7DI1CebyMOoaVpd8aSy7K6GhobzhkjYvqS/QmzcfsWG2Dwizdg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.13':
- resolution: {integrity: sha512-V26ezyjPqQpDBV4lcWIh8B/QICQ4v+M5Bo9ykLN+sqeKKBxJVDpEc6biDVyluTXTC40f5IqCU0ttth7Es2ZuMw==}
+ '@next/swc-win32-ia32-msvc@14.2.16':
+ resolution: {integrity: sha512-jhPl3nN0oKEshJBNDAo0etGMzv0j3q3VYorTSFqH1o3rwv1MQRdor27u1zhkgsHPNeY1jxcgyx1ZsCkDD1IHgg==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.13':
- resolution: {integrity: sha512-WwzOEAFBGhlDHE5Z73mNU8CO8mqMNLqaG+AO9ETmzdCQlJhVtWZnOl2+rqgVQS+YHunjOWptdFmNfbpwcUuEsw==}
+ '@next/swc-win32-x64-msvc@14.2.16':
+ resolution: {integrity: sha512-OA7NtfxgirCjfqt+02BqxC3MIgM/JaGjw9tOe4fyZgPsqfseNiMPnCRP44Pfs+Gpo9zPN+SXaFsgP6vk8d571A==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@next/third-parties@14.2.13':
- resolution: {integrity: sha512-OSqD2E9JO0/GE8HT5QAUsYVXwjWtPLScAX70kO2xopwDAdRzakrsQS55Cihd862X/4bUB37ApVZ9DlHcExzeOg==}
+ '@next/third-parties@14.2.16':
+ resolution: {integrity: sha512-owdCT5BbGyfdDXkmZ1kjPMRPJ8+WLLJFTJSjMRQOYwq5j5o0L3U47sHi07J0mhgJgX6RmRyLd0OFPHCVfAY3Kw==}
peerDependencies:
next: ^13.0.0 || ^14.0.0
react: ^18.2.0
@@ -5208,8 +5207,8 @@ packages:
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
- '@opentelemetry/context-async-hooks@1.26.0':
- resolution: {integrity: sha512-HedpXXYzzbaoutw6DFLWLDket2FwLkLpil4hGCZ1xYEIMTcivdfwEOISgdbLEWyG3HW52gTq2V9mOVJrONgiwg==}
+ '@opentelemetry/context-async-hooks@1.27.0':
+ resolution: {integrity: sha512-CdZ3qmHCwNhFAzjTgHqrDQ44Qxcpz43cVxZRhOs+Ns/79ug+Mr84Bkb626bkJLkA3+BLimA5YAEVRlJC6pFb7g==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
@@ -5220,6 +5219,12 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/core@1.27.0':
+ resolution: {integrity: sha512-yQPKnK5e+76XuiqUH/gKyS8wv/7qITd5ln56QkBTf3uggr0VkXOXfcaAuG330UfdYu83wsyoBwqwxigpIG+Jkg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
'@opentelemetry/instrumentation-amqplib@0.42.0':
resolution: {integrity: sha512-fiuU6OKsqHJiydHWgTRQ7MnIrJ2lEqsdgFtNIH4LbAUJl/5XmrIeoDzDnox+hfkgWK65jsleFuQDtYb5hW1koQ==}
engines: {node: '>=14'}
@@ -5238,14 +5243,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-express@0.42.0':
- resolution: {integrity: sha512-YNcy7ZfGnLsVEqGXQPT+S0G1AE46N21ORY7i7yUQyfhGAL4RBjnZUqefMI0NwqIl6nGbr1IpF0rZGoN8Q7x12Q==}
+ '@opentelemetry/instrumentation-express@0.43.0':
+ resolution: {integrity: sha512-bxTIlzn9qPXJgrhz8/Do5Q3jIlqfpoJrSUtVGqH+90eM1v2PkPHc+SdE+zSqe4q9Y1UQJosmZ4N4bm7Zj/++MA==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-fastify@0.39.0':
- resolution: {integrity: sha512-SS9uSlKcsWZabhBp2szErkeuuBDgxOUlllwkS92dVaWRnMmwysPhcEgHKB8rUe3BHg/GnZC1eo1hbTZv4YhfoA==}
+ '@opentelemetry/instrumentation-fastify@0.40.0':
+ resolution: {integrity: sha512-74qj4nG3zPtU7g2x4sm2T4R3/pBMyrYstTsqSZwdlhQk1SD4l8OSY9sPRX1qkhfxOuW3U4KZQAV/Cymb3fB6hg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -5298,6 +5303,12 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-lru-memoizer@0.40.0':
+ resolution: {integrity: sha512-21xRwZsEdMPnROu/QsaOIODmzw59IYpGFmuC4aFWvMj6stA8+Ei1tX67nkarJttlNjoM94um0N4X26AD7ff54A==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+
'@opentelemetry/instrumentation-mongodb@0.47.0':
resolution: {integrity: sha512-yqyXRx2SulEURjgOQyJzhCECSh5i1uM49NUaq9TqLd6fA7g26OahyJfsr9NE38HFqGRHpi4loyrnfYGdrsoVjQ==}
engines: {node: '>=14'}
@@ -5362,20 +5373,20 @@ packages:
resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==}
engines: {node: '>=14'}
- '@opentelemetry/resources@1.26.0':
- resolution: {integrity: sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==}
+ '@opentelemetry/resources@1.27.0':
+ resolution: {integrity: sha512-jOwt2VJ/lUD5BLc+PMNymDrUCpm5PKi1E9oSVYAvz01U/VdndGmrtV3DU1pG4AwlYhJRHbHfOUIlpBeXCPw6QQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/sdk-metrics@1.26.0':
- resolution: {integrity: sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==}
+ '@opentelemetry/sdk-metrics@1.27.0':
+ resolution: {integrity: sha512-JzWgzlutoXCydhHWIbLg+r76m+m3ncqvkCcsswXAQ4gqKS+LOHKhq+t6fx1zNytvLuaOUBur7EvWxECc4jPQKg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.10.0'
- '@opentelemetry/sdk-trace-base@1.26.0':
- resolution: {integrity: sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==}
+ '@opentelemetry/sdk-trace-base@1.27.0':
+ resolution: {integrity: sha512-btz6XTQzwsyJjombpeqCX6LhiMQYpzt2pIYNPnw0IPO/3AhT6yjnf8Mnv3ZC2A4eRYOjqrg+bfaXg9XHDRJDWQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
@@ -5399,8 +5410,8 @@ packages:
ajv: 8.14.0
payload: ^2.0.0
- '@payloadcms/db-mongodb@1.7.2':
- resolution: {integrity: sha512-C2qlhDE7EBgr+2dZvjj6aqdIBWDWdKb508O7+RQEXijNHYSUxC3VXxI21WBhRcFehBXU5WpYrFBxtU3CPJEmAw==}
+ '@payloadcms/db-mongodb@1.7.3':
+ resolution: {integrity: sha512-/okC3ap+jMytTzUG6I/hbB4R6AqfK+Tx+0xFH6P+BY8iIsuvNPAxL/h5oJu6rvorxCnXjTf+jWt2qCupHALpLQ==}
peerDependencies:
payload: ^2.0.0
@@ -5412,8 +5423,8 @@ packages:
'@payloadcms/live-preview@0.2.2':
resolution: {integrity: sha512-FOcg/HOIzzESjoT4vXgM7Pjd+bODodZTKR/pEJWsjLtyARd6NfF3MNWS+tdlfa3TOZrdT8WnHBAKsKyREyE3og==}
- '@payloadcms/plugin-cloud-storage@1.1.3':
- resolution: {integrity: sha512-5YbCqnDnux2DR0RQwqgJAjvOybZ0GXst4h8L4eygozofELcDJKStyuaAAEv7JIA8EByDFr1DIxLSwmmQf0ytuw==}
+ '@payloadcms/plugin-cloud-storage@1.2.0':
+ resolution: {integrity: sha512-lOXkxykc9Jnv45N3Aypviwm1Neq42q1iWsWuoTMj9yW5IylyoDlknHVytjA4qVLeht59EtRPYmoQVYhZYr7/MA==}
peerDependencies:
'@aws-sdk/client-s3': ^3.142.0
'@aws-sdk/lib-storage': ^3.267.0
@@ -5464,8 +5475,8 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@playwright/test@1.47.2':
- resolution: {integrity: sha512-jTXRsoSPONAs8Za9QEQdyjFn+0ZQFjCiIztAIF6bi1HqhBzG9Ma7g1WotyiGqFSBRZjIEqMdT8RUlbk1QVhzCQ==}
+ '@playwright/test@1.48.2':
+ resolution: {integrity: sha512-54w1xCWfXuax7dz4W2M9uw0gDyh+ti/0K/MxcCUxChFh37kkdxPdfZDw5QBbuPUJHr1CiHJ1hXgSs+GgeQc5Zw==}
engines: {node: '>=18'}
hasBin: true
@@ -5511,29 +5522,29 @@ packages:
react: ^18.0.0
react-dom: ^18.0.0
- '@react-spring/animated@9.7.4':
- resolution: {integrity: sha512-7As+8Pty2QlemJ9O5ecsuPKjmO0NKvmVkRR1n6mEotFgWar8FKuQt2xgxz3RTgxcccghpx1YdS1FCdElQNexmQ==}
+ '@react-spring/animated@9.7.5':
+ resolution: {integrity: sha512-Tqrwz7pIlsSDITzxoLS3n/v/YCUHQdOIKtOJf4yL6kYVSDTSmVK1LI1Q3M/uu2Sx4X3pIWF3xLUhlsA6SPNTNg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@react-spring/core@9.7.4':
- resolution: {integrity: sha512-GzjA44niEJBFUe9jN3zubRDDDP2E4tBlhNlSIkTChiNf9p4ZQlgXBg50qbXfSXHQPHak/ExYxwhipKVsQ/sUTw==}
+ '@react-spring/core@9.7.5':
+ resolution: {integrity: sha512-rmEqcxRcu7dWh7MnCcMXLvrf6/SDlSokLaLTxiPlAYi11nN3B5oiCUAblO72o+9z/87j2uzxa2Inm8UbLjXA+w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@react-spring/rafz@9.7.4':
- resolution: {integrity: sha512-mqDI6rW0Ca8IdryOMiXRhMtVGiEGLIO89vIOyFQXRIwwIMX30HLya24g9z4olDvFyeDW3+kibiKwtZnA4xhldA==}
+ '@react-spring/rafz@9.7.5':
+ resolution: {integrity: sha512-5ZenDQMC48wjUzPAm1EtwQ5Ot3bLIAwwqP2w2owG5KoNdNHpEJV263nGhCeKKmuA3vG2zLLOdu3or6kuDjA6Aw==}
- '@react-spring/shared@9.7.4':
- resolution: {integrity: sha512-bEPI7cQp94dOtCFSEYpxvLxj0+xQfB5r9Ru1h8OMycsIq7zFZon1G0sHrBLaLQIWeMCllc4tVDYRTLIRv70C8w==}
+ '@react-spring/shared@9.7.5':
+ resolution: {integrity: sha512-wdtoJrhUeeyD/PP/zo+np2s1Z820Ohr/BbuVYv+3dVLW7WctoiN7std8rISoYoHpUXtbkpesSKuPIw/6U1w1Pw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@react-spring/types@9.7.4':
- resolution: {integrity: sha512-iQVztO09ZVfsletMiY+DpT/JRiBntdsdJ4uqk3UJFhrhS8mIC9ZOZbmfGSRs/kdbNPQkVyzucceDicQ/3Mlj9g==}
+ '@react-spring/types@9.7.5':
+ resolution: {integrity: sha512-HVj7LrZ4ReHWBimBvu2SKND3cDVUPWKLqRTmWe/fNY6o1owGOX0cAHbdPDTMelgBlVbrTKrre6lFkhqGZErK/g==}
- '@react-spring/web@9.7.4':
- resolution: {integrity: sha512-UMvCZp7I5HCVIleSa4BwbNxynqvj+mJjG2m20VO2yPoi2pnCYANy58flvz9v/YcXTAvsmL655FV3pm5fbr6akA==}
+ '@react-spring/web@9.7.5':
+ resolution: {integrity: sha512-lmvqGwpe+CSttsWNZVr+Dg62adtKhauGwLyGE/RRyZ8AAMLgb9x3NDMA5RMElXo+IMyTkPp7nxTB8ZQlmhb6JQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -5567,8 +5578,8 @@ packages:
rollup:
optional: true
- '@rollup/pluginutils@5.1.2':
- resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -5591,8 +5602,8 @@ packages:
resolution: {integrity: sha512-Nbfgo94gbWSL8PIgJfuHoifyOJJepvV8NQkkglctAEfb1hyozKhrzE6v1kPG/z4j0RodaTtXD5LJj/t0q/VhLA==}
engines: {node: '>=6.0.0'}
- '@sendgrid/client@8.1.3':
- resolution: {integrity: sha512-mRwTticRZIdUTsnyzvlK6dMu3jni9ci9J+dW/6fMMFpGRAJdCJlivFVYQvqk8kRS3RnFzS7sf6BSmhLl1ldDhA==}
+ '@sendgrid/client@8.1.4':
+ resolution: {integrity: sha512-VxZoQ82MpxmjSXLR3ZAE2OWxvQIW2k2G24UeRPr/SYX8HqWLV/8UBN15T2WmjjnEb5XSmFImTJOKDzzSeKr9YQ==}
engines: {node: '>=12.*'}
'@sendgrid/helpers@6.5.5':
@@ -5607,120 +5618,120 @@ packages:
resolution: {integrity: sha512-DSu8oTPI0BJFH60jMOG9gM+oeNMoRALFmdAYg2PIXpL+Zbxd7L2GzQZtmf1jLy/8UBImkbB3D74TjiOBiLRK1w==}
engines: {node: '>=6.0.0'}
- '@sendgrid/mail@8.1.3':
- resolution: {integrity: sha512-Wg5iKSUOER83/cfY6rbPa+o3ChnYzWwv1OcsR8gCV8SKi+sUPIMroildimlnb72DBkQxcbylxng1W7f0RIX7MQ==}
+ '@sendgrid/mail@8.1.4':
+ resolution: {integrity: sha512-MUpIZykD9ARie8LElYCqbcBhGGMaA/E6I7fEcG7Hc2An26QJyLtwOaKQ3taGp8xO8BICPJrSKuYV4bDeAJKFGQ==}
engines: {node: '>=12.*'}
- '@sentry-internal/browser-utils@8.32.0':
- resolution: {integrity: sha512-DpUGhk5O1OVjT0fo9wsbEdO1R/S9gGBRDtn9+FFVeRtieJHwXpeZiLK+tZhTOvaILmtSoTPUEY3L5sK4j5Xq9g==}
+ '@sentry-internal/browser-utils@8.35.0':
+ resolution: {integrity: sha512-uj9nwERm7HIS13f/Q52hF/NUS5Al8Ma6jkgpfYGeppYvU0uSjPkwMogtqoJQNbOoZg973tV8qUScbcWY616wNA==}
engines: {node: '>=14.18'}
- '@sentry-internal/feedback@8.32.0':
- resolution: {integrity: sha512-XB7hiVJQW1tNzpoXIHbvm3rjipIt7PZiJJtFg2vxaqu/FzdgOcYqQiwIKivJVAKuRZ9rIeJtK1jdXQFOc/TRJA==}
+ '@sentry-internal/feedback@8.35.0':
+ resolution: {integrity: sha512-7bjSaUhL0bDArozre6EiIhhdWdT/1AWNWBC1Wc5w1IxEi5xF7nvF/FfvjQYrONQzZAI3HRxc45J2qhLUzHBmoQ==}
engines: {node: '>=14.18'}
- '@sentry-internal/replay-canvas@8.32.0':
- resolution: {integrity: sha512-oBbhtDBkD+5z/T0NVJ5VenBWAid/S9QdVrod/UqxVqU7F8N+E9/INFQI48zCWr4iVlUMcszJPDElvJEsMDvvBQ==}
+ '@sentry-internal/replay-canvas@8.35.0':
+ resolution: {integrity: sha512-TUrH6Piv19kvHIiRyIuapLdnuwxk/Un/l1WDCQfq7mK9p1Pac0FkQ7Uufjp6zY3lyhDDZQ8qvCS4ioCMibCwQg==}
engines: {node: '>=14.18'}
- '@sentry-internal/replay@8.32.0':
- resolution: {integrity: sha512-yiEUnn2yyo1AIQIFNeRX3tdK8fmyKIkxdFS1WiVQmeYI/hFwYBTZPly0FcO/g3xnRMSA2tvrS+hZEaaXfK4WhA==}
+ '@sentry-internal/replay@8.35.0':
+ resolution: {integrity: sha512-3wkW03vXYMyWtTLxl9yrtkV+qxbnKFgfASdoGWhXzfLjycgT6o4/04eb3Gn71q9aXqRwH17ISVQbVswnRqMcmA==}
engines: {node: '>=14.18'}
- '@sentry-internal/tracing@7.119.0':
- resolution: {integrity: sha512-oKdFJnn+56f0DHUADlL8o9l8jTib3VDLbWQBVkjD9EprxfaCwt2m8L5ACRBdQ8hmpxCEo4I8/6traZ7qAdBUqA==}
+ '@sentry-internal/tracing@7.119.2':
+ resolution: {integrity: sha512-V2W+STWrafyGJhQv3ulMFXYDwWHiU6wHQAQBShsHVACiFaDrJ2kPRet38FKv4dMLlLlP2xN+ss2e5zv3tYlTiQ==}
engines: {node: '>=8'}
'@sentry/babel-plugin-component-annotate@2.22.3':
resolution: {integrity: sha512-OlHA+i+vnQHRIdry4glpiS/xTOtgjmpXOt6IBOUqynx5Jd/iK1+fj+t8CckqOx9wRacO/hru2wfW/jFq0iViLg==}
engines: {node: '>= 14'}
- '@sentry/browser@8.32.0':
- resolution: {integrity: sha512-AEKFj64g4iYwEMRvVcxiY0FswmClRXCP1IEvCqujn8OBS8AjMOr1z/RwYieEs0D90yNNB3YEqF8adrKENblJmw==}
+ '@sentry/browser@8.35.0':
+ resolution: {integrity: sha512-WHfI+NoZzpCsmIvtr6ChOe7yWPLQyMchPnVhY3Z4UeC70bkYNdKcoj/4XZbX3m0D8+71JAsm0mJ9s9OC3Ue6MQ==}
engines: {node: '>=14.18'}
'@sentry/bundler-plugin-core@2.22.3':
resolution: {integrity: sha512-DeoUl0WffcqZZRl5Wy9aHvX4WfZbbWt0QbJ7NJrcEViq+dRAI2FQTYECFLwdZi5Gtb3oyqZICO+P7k8wDnzsjQ==}
engines: {node: '>= 14'}
- '@sentry/cli-darwin@2.36.3':
- resolution: {integrity: sha512-U0Uean/tW99G5Ma3CjNDXg5bjd4Tmf91Sd/9JKK6dGcEsrWiQpn7ao70kkHy/fwMbeOWE37L7O+NPf86CxHzGA==}
+ '@sentry/cli-darwin@2.38.0':
+ resolution: {integrity: sha512-OvOaV9Vg4+b9ObK2z1oFj3zbRoqOSpD/wSz9t/mtSWwMQi7wlUXj88XGGsL5ZwF7VGBYL+kX59X3Ygl+dHFPlg==}
engines: {node: '>=10'}
os: [darwin]
- '@sentry/cli-linux-arm64@2.36.3':
- resolution: {integrity: sha512-bNr9GUYsn+VcK09FjE+llvxUwtPFAva6FMIcYiAKi6iY3wdmtaOou0Mtkd9dQXkxONAZ0T113x/WQANKBjl4+A==}
+ '@sentry/cli-linux-arm64@2.38.0':
+ resolution: {integrity: sha512-oUiRTyek0Ixe30zoqNlEFsLY07B9hK3FRXKv5lw341rim9PiTteh5tk5ewpuD63K+QjbEAJqp4f3zM19DEASlg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux, freebsd]
- '@sentry/cli-linux-arm@2.36.3':
- resolution: {integrity: sha512-Kq8+TG/p/j0GLlJVxnLguAGcp3EqrU4msl4K+7g+6JYnOPLVbUzwZ6ah2WVGtWqlZ3QMFgeeXc7VgPY8KXViqw==}
+ '@sentry/cli-linux-arm@2.38.0':
+ resolution: {integrity: sha512-lXMSEX1Sv9F2wXnnAlsS+kwy09iLQTfK10n08xzeJLIvUCLua/OFInwH6WUxNT3tIBPfBVQZPR7iQMRycH4Ilw==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux, freebsd]
- '@sentry/cli-linux-i686@2.36.3':
- resolution: {integrity: sha512-5J5lOzZgvhcjbtuw/JD7jMq1liNbtYXvEuSd+qZa7D8i+Va5cFF8fQui3eev2RxqeYLLwkJWE/djLjeWjMZ7jQ==}
+ '@sentry/cli-linux-i686@2.38.0':
+ resolution: {integrity: sha512-+luFmbQymDON16O7R/A7bmnkUjtnq1nRSehnnRJjuFCtDABCKatZzBjWvan0KNgzHhCquMSvEqHKzfVSptHeHw==}
engines: {node: '>=10'}
cpu: [x86, ia32]
os: [linux, freebsd]
- '@sentry/cli-linux-x64@2.36.3':
- resolution: {integrity: sha512-48pyk93yRiQ7x7ABobYupVfGg1f/vUrBZG7CcaIsDiQL66/kIRjYoh7d7kH8Da/x/LKMiVf/i8/rh2Vr1pcSEw==}
+ '@sentry/cli-linux-x64@2.38.0':
+ resolution: {integrity: sha512-yY593xXbf2W+afyHKDvO4QJwoWQX97/K0NYUAqnpg3TVmIfLV9DNVid+M1w6vKIif6n8UQgAFWtR1Ys4P75mBg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux, freebsd]
- '@sentry/cli-win32-i686@2.36.3':
- resolution: {integrity: sha512-IEuTCeQjgffvBjDGVYV9d2uWBzmFGmwWIyWUTEMjy76tRnIz0MJaW59Lxd7JdTd1s9xO1F2K7Iz+zxd/kufMRg==}
+ '@sentry/cli-win32-i686@2.38.0':
+ resolution: {integrity: sha512-ipDnBvXaMqi0ZbkT/pqB11F4AaicVz5YRoidn5oxi1IJPDUd8qF0mnqabALLH3mAd5TOtKBliY5pllCFG/TvzA==}
engines: {node: '>=10'}
cpu: [x86, ia32]
os: [win32]
- '@sentry/cli-win32-x64@2.36.3':
- resolution: {integrity: sha512-ygJLd3nazoNcDMJu1sl8xoSWmmjeBJMMUH6MnDhtQdM9T2j+ndqfL0fZZNO0/kyMv0Bo7/n5kRmKiX2m9Dsi/g==}
+ '@sentry/cli-win32-x64@2.38.0':
+ resolution: {integrity: sha512-NqlKOqNF8i239mygARkNZK9BPzwWK91j+HPEfCKoHsZKHeBT1JauoipgPykO21qn04erq5pJkA0MsiuNRNQnMA==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@sentry/cli@2.36.3':
- resolution: {integrity: sha512-sbJpeUByP3b6Xif21lben+4EqGYI/rCTfkPKxBk2FsHX7ISMkVOBw+4/WwELIfIINV2S/XM29jkUG6Bd7axJlA==}
+ '@sentry/cli@2.38.0':
+ resolution: {integrity: sha512-ld9+1GdPkDaFr6T4SGocxoMcrBB/K6Z37TvBx8IMrDQC+eJDkBFiyqmHnzrj/8xoj5O220pqjPZCfvqzH268sQ==}
engines: {node: '>= 10'}
hasBin: true
- '@sentry/core@7.119.0':
- resolution: {integrity: sha512-CS2kUv9rAJJEjiRat6wle3JATHypB0SyD7pt4cpX5y0dN5dZ1JrF57oLHRMnga9fxRivydHz7tMTuBhSSwhzjw==}
+ '@sentry/core@7.119.2':
+ resolution: {integrity: sha512-hQr3d2yWq/2lMvoyBPOwXw1IHqTrCjOsU1vYKhAa6w9vGbJZFGhKGGE2KEi/92c3gqGn+gW/PC7cV6waCTDuVA==}
engines: {node: '>=8'}
- '@sentry/core@8.32.0':
- resolution: {integrity: sha512-+xidTr0lZ0c755tq4k75dXPEb8PA+qvIefW3U9+dQMORLokBrYoKYMf5zZTG2k/OfSJS6OSxatUj36NFuCs3aA==}
+ '@sentry/core@8.35.0':
+ resolution: {integrity: sha512-Ci0Nmtw5ETWLqQJGY4dyF+iWh7PWKy6k303fCEoEmqj2czDrKJCp7yHBNV0XYbo00prj2ZTbCr6I7albYiyONA==}
engines: {node: '>=14.18'}
- '@sentry/integrations@7.119.0':
- resolution: {integrity: sha512-OHShvtsRW0A+ZL/ZbMnMqDEtJddPasndjq+1aQXw40mN+zeP7At/V1yPZyFaURy86iX7Ucxw5BtmzuNy7hLyTA==}
+ '@sentry/integrations@7.119.2':
+ resolution: {integrity: sha512-dCuXKvbUE3gXVVa696SYMjlhSP6CxpMH/gl4Jk26naEB8Xjsn98z/hqEoXLg6Nab73rjR9c/9AdKqBbwVMHyrQ==}
engines: {node: '>=8'}
- '@sentry/nextjs@8.32.0':
- resolution: {integrity: sha512-rnnSsKFd4u9TXGr0XVQ7lEl/PkTfNyJ4kxwu9gW+OJjzmmjzIAC4RyY4YQTR1+p/q9QrruWrXLEsuCPqAHfqNw==}
+ '@sentry/nextjs@8.35.0':
+ resolution: {integrity: sha512-7V6Yd0llWvarebVhtK2UyIqkfw/BzKn/hQxJAob/FQ6V9wKFjF5W0EFtE2n/T0RCetL2JPF8iHu3/b4/TVREmg==}
engines: {node: '>=14.18'}
peerDependencies:
next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0
- webpack: 5.94.0
+ webpack: '>=5.0.0'
peerDependenciesMeta:
webpack:
optional: true
- '@sentry/node@7.119.0':
- resolution: {integrity: sha512-9PFzN8xS6U0oZCflpVxS2SSIsHkCaj7qYBlsvHj4CTGWfao9ImwrU6+smy4qoG6oxwPfoVb5pOOMb4WpWOvXcQ==}
+ '@sentry/node@7.119.2':
+ resolution: {integrity: sha512-TPNnqxh+Myooe4jTyRiXrzrM2SH08R4+nrmBls4T7lKp2E5R/3mDSe/YTn5rRcUt1k1hPx1NgO/taG0DoS5cXA==}
engines: {node: '>=8'}
- '@sentry/node@8.32.0':
- resolution: {integrity: sha512-a2PoFA9j/HmJVGF/zXJhLP6QhRHGye/2EznQdHOELsH1BkeMgBaXl7D52r2E/b7qki647lXrdbspB6jid8NycA==}
+ '@sentry/node@8.35.0':
+ resolution: {integrity: sha512-B0FLOcZEfYe3CJ2t0l1N0HJcHXcIrLlGENQ2kf5HqR2zcOcOzRxyITJTSV5brCnmzVNgkz9PG8VWo3w0HXZQpA==}
engines: {node: '>=14.18'}
- '@sentry/opentelemetry@8.32.0':
- resolution: {integrity: sha512-YCD8EnwJJ2ab3zWWtu5VrvHP/6Ss6GGQH0TYx2cfeGG3c0wTA/5zYx9JR4i3hUtOh1pifN34HlY0yyQHD4yctg==}
+ '@sentry/opentelemetry@8.35.0':
+ resolution: {integrity: sha512-2mWMpEiIFop/omia9BqTJa+0Khe+tSsiZSUrxbnSpxM0zgw8DFIzJMHbiqw/I7Qaluz9pnO2HZXqgUTwNPsU8A==}
engines: {node: '>=14.18'}
peerDependencies:
'@opentelemetry/api': ^1.9.0
@@ -5729,30 +5740,30 @@ packages:
'@opentelemetry/sdk-trace-base': ^1.26.0
'@opentelemetry/semantic-conventions': ^1.27.0
- '@sentry/react@8.32.0':
- resolution: {integrity: sha512-YljqK+k80XOvyXjK2p2neTncRcSuwlpL7qHtNgwR1MHx18FEi7HXlnm13J4g3kxao4ORMxlCXCEPNXlLT+vqQg==}
+ '@sentry/react@8.35.0':
+ resolution: {integrity: sha512-8Y+s4pE9hvT2TwSo5JS/Enw2cNFlwiLcJDNGCj/Hho+FePFYA59hbN06ouTHWARnO+swANHKZQj24Wp57p1/tg==}
engines: {node: '>=14.18'}
peerDependencies:
react: ^16.14.0 || 17.x || 18.x || 19.x
- '@sentry/types@7.119.0':
- resolution: {integrity: sha512-27qQbutDBPKGbuJHROxhIWc1i0HJaGLA90tjMu11wt0E4UNxXRX+UQl4Twu68v4EV3CPvQcEpQfgsViYcXmq+w==}
+ '@sentry/types@7.119.2':
+ resolution: {integrity: sha512-ydq1tWsdG7QW+yFaTp0gFaowMLNVikIqM70wxWNK+u98QzKnVY/3XTixxNLsUtnAB4Y+isAzFhrc6Vb5GFdFeg==}
engines: {node: '>=8'}
- '@sentry/types@8.32.0':
- resolution: {integrity: sha512-hxckvN2MzS5SgGDgVQ0/QpZXk13Vrq4BtZLwXhPhyeTmZtUiUfWvcL5TFQqLinfKdTKPe9q2MxeAJ0D4LalhMg==}
+ '@sentry/types@8.35.0':
+ resolution: {integrity: sha512-AVEZjb16MlYPifiDDvJ19dPQyDn0jlrtC1PHs6ZKO+Rzyz+2EX2BRdszvanqArldexPoU1p5Bn2w81XZNXThBA==}
engines: {node: '>=14.18'}
- '@sentry/utils@7.119.0':
- resolution: {integrity: sha512-ZwyXexWn2ZIe2bBoYnXJVPc2esCSbKpdc6+0WJa8eutXfHq3FRKg4ohkfCBpfxljQGEfP1+kfin945lA21Ka+A==}
+ '@sentry/utils@7.119.2':
+ resolution: {integrity: sha512-TLdUCvcNgzKP0r9YD7tgCL1PEUp42TObISridsPJ5rhpVGQJvpr+Six0zIkfDUxerLYWZoK8QMm9KgFlPLNQzA==}
engines: {node: '>=8'}
- '@sentry/utils@8.32.0':
- resolution: {integrity: sha512-t1WVERhgmYURxbBj9J4/H2P2X+VKqm7B3ce9iQyrZbdf5NekhcU4jHIecPUWCPHjQkFIqkVTorqeBmDTlg/UmQ==}
+ '@sentry/utils@8.35.0':
+ resolution: {integrity: sha512-MdMb6+uXjqND7qIPWhulubpSeHzia6HtxeJa8jYI09OCvIcmNGPydv/Gx/LZBwosfMHrLdTWcFH7Y7aCxrq7cg==}
engines: {node: '>=14.18'}
- '@sentry/vercel-edge@8.32.0':
- resolution: {integrity: sha512-HxvQWQMjNsLPkYU0vArzjqh+p/vyw9CXyIruu3D89VQU0krL1JFhhhHWZj1UIb7MVTzNO4oq4HeldbOkI0AepA==}
+ '@sentry/vercel-edge@8.35.0':
+ resolution: {integrity: sha512-Wp5HCkBb6hA1oE4gETzi4laMsPsc7UBqKCMY4H/UOkuD6HzgpyWuHZeS6nrs2A3MJWcoNoFZ2sJD1hdo4apzGQ==}
engines: {node: '>=14.18'}
'@sentry/webpack-plugin@2.22.3':
@@ -5761,20 +5772,20 @@ packages:
peerDependencies:
webpack: '>=4.40.0'
- '@shikijs/core@1.21.0':
- resolution: {integrity: sha512-zAPMJdiGuqXpZQ+pWNezQAk5xhzRXBNiECFPcJLtUdsFM3f//G95Z15EHTnHchYycU8kIIysqGgxp8OVSj1SPQ==}
+ '@shikijs/core@1.22.2':
+ resolution: {integrity: sha512-bvIQcd8BEeR1yFvOYv6HDiyta2FFVePbzeowf5pPS1avczrPK+cjmaxxh0nx5QzbON7+Sv0sQfQVciO7bN72sg==}
- '@shikijs/engine-javascript@1.21.0':
- resolution: {integrity: sha512-jxQHNtVP17edFW4/0vICqAVLDAxmyV31MQJL4U/Kg+heQALeKYVOWo0sMmEZ18FqBt+9UCdyqGKYE7bLRtk9mg==}
+ '@shikijs/engine-javascript@1.22.2':
+ resolution: {integrity: sha512-iOvql09ql6m+3d1vtvP8fLCVCK7BQD1pJFmHIECsujB0V32BJ0Ab6hxk1ewVSMFA58FI0pR2Had9BKZdyQrxTw==}
- '@shikijs/engine-oniguruma@1.21.0':
- resolution: {integrity: sha512-AIZ76XocENCrtYzVU7S4GY/HL+tgHGbVU+qhiDyNw1qgCA5OSi4B4+HY4BtAoJSMGuD/L5hfTzoRVbzEm2WTvg==}
+ '@shikijs/engine-oniguruma@1.22.2':
+ resolution: {integrity: sha512-GIZPAGzQOy56mGvWMoZRPggn0dTlBf1gutV5TdceLCZlFNqWmuc7u+CzD0Gd9vQUTgLbrt0KLzz6FNprqYAxlA==}
- '@shikijs/types@1.21.0':
- resolution: {integrity: sha512-tzndANDhi5DUndBtpojEq/42+dpUF2wS7wdCDQaFtIXm3Rd1QkrcVgSSRLOvEwexekihOXfbYJINW37g96tJRw==}
+ '@shikijs/types@1.22.2':
+ resolution: {integrity: sha512-NCWDa6LGZqTuzjsGfXOBWfjS/fDIbDdmVDug+7ykVe1IKT4c1gakrvlfFYp5NhAXH/lyqLM8wsAPo5wNy73Feg==}
- '@shikijs/vscode-textmate@9.2.2':
- resolution: {integrity: sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==}
+ '@shikijs/vscode-textmate@9.3.0':
+ resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==}
'@sideway/address@4.1.5':
resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==}
@@ -5798,63 +5809,66 @@ packages:
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@smithy/abort-controller@3.1.4':
- resolution: {integrity: sha512-VupaALAQlXViW3/enTf/f5l5JZYSAxoJL7f0nanhNNKnww6DGCg1oYIuNP78KDugnkwthBO6iEcym16HhWV8RQ==}
+ '@smithy/abort-controller@3.1.6':
+ resolution: {integrity: sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==}
engines: {node: '>=16.0.0'}
- '@smithy/chunked-blob-reader-native@3.0.0':
- resolution: {integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==}
+ '@smithy/chunked-blob-reader-native@3.0.1':
+ resolution: {integrity: sha512-VEYtPvh5rs/xlyqpm5NRnfYLZn+q0SRPELbvBV+C/G7IQ+ouTuo+NKKa3ShG5OaFR8NYVMXls9hPYLTvIKKDrQ==}
- '@smithy/chunked-blob-reader@3.0.0':
- resolution: {integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==}
+ '@smithy/chunked-blob-reader@4.0.0':
+ resolution: {integrity: sha512-jSqRnZvkT4egkq/7b6/QRCNXmmYVcHwnJldqJ3IhVpQE2atObVJ137xmGeuGFhjFUr8gCEVAOKwSY79OvpbDaQ==}
- '@smithy/config-resolver@3.0.8':
- resolution: {integrity: sha512-Tv1obAC18XOd2OnDAjSWmmthzx6Pdeh63FbLin8MlPiuJ2ATpKkq0NcNOJFr0dO+JmZXnwu8FQxKJ3TKJ3Hulw==}
+ '@smithy/config-resolver@3.0.10':
+ resolution: {integrity: sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==}
engines: {node: '>=16.0.0'}
- '@smithy/core@2.4.6':
- resolution: {integrity: sha512-6lQQp99hnyuNNIzeTYSzCUXJHwvvFLY7hfdFGSJM95tjRDJGfzWYFRBXPaM9766LiiTsQ561KErtbufzUFSYUg==}
+ '@smithy/core@2.5.1':
+ resolution: {integrity: sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==}
engines: {node: '>=16.0.0'}
- '@smithy/credential-provider-imds@3.2.3':
- resolution: {integrity: sha512-VoxMzSzdvkkjMJNE38yQgx4CfnmT+Z+5EUXkg4x7yag93eQkVQgZvN3XBSHC/ylfBbLbAtdu7flTCChX9I+mVg==}
+ '@smithy/credential-provider-imds@3.2.5':
+ resolution: {integrity: sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-codec@3.1.5':
- resolution: {integrity: sha512-6pu+PT2r+5ZnWEV3vLV1DzyrpJ0TmehQlniIDCSpZg6+Ji2SfOI38EqUyQ+O8lotVElCrfVc9chKtSMe9cmCZQ==}
+ '@smithy/eventstream-codec@3.1.7':
+ resolution: {integrity: sha512-kVSXScIiRN7q+s1x7BrQtZ1Aa9hvvP9FeCqCdBxv37GimIHgBCOnZ5Ip80HLt0DhnAKpiobFdGqTFgbaJNrazA==}
- '@smithy/eventstream-serde-browser@3.0.9':
- resolution: {integrity: sha512-PiQLo6OQmZAotJweIcObL1H44gkvuJACKMNqpBBe5Rf2Ax1DOcGi/28+feZI7yTe1ERHlQQaGnm8sSkyDUgsMg==}
+ '@smithy/eventstream-serde-browser@3.0.11':
+ resolution: {integrity: sha512-Pd1Wnq3CQ/v2SxRifDUihvpXzirJYbbtXfEnnLV/z0OGCTx/btVX74P86IgrZkjOydOASBGXdPpupYQI+iO/6A==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-config-resolver@3.0.6':
- resolution: {integrity: sha512-iew15It+c7WfnVowWkt2a7cdPp533LFJnpjDQgfZQcxv2QiOcyEcea31mnrk5PVbgo0nNH3VbYGq7myw2q/F6A==}
+ '@smithy/eventstream-serde-config-resolver@3.0.8':
+ resolution: {integrity: sha512-zkFIG2i1BLbfoGQnf1qEeMqX0h5qAznzaZmMVNnvPZz9J5AWBPkOMckZWPedGUPcVITacwIdQXoPcdIQq5FRcg==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-node@3.0.8':
- resolution: {integrity: sha512-6m+wI+fT0na+6oao6UqALVA38fsScCpoG5UO/A8ZSyGLnPM2i4MS1cFUhpuALgvLMxfYoTCh7qSeJa0aG4IWpQ==}
+ '@smithy/eventstream-serde-node@3.0.10':
+ resolution: {integrity: sha512-hjpU1tIsJ9qpcoZq9zGHBJPBOeBGYt+n8vfhDwnITPhEre6APrvqq/y3XMDEGUT2cWQ4ramNqBPRbx3qn55rhw==}
engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-universal@3.0.8':
- resolution: {integrity: sha512-09tqzIQ6e+7jLqGvRji1yJoDbL/zob0OFhq75edgStWErGLf16+yI5hRc/o9/YAybOhUZs/swpW2SPn892G5Gg==}
+ '@smithy/eventstream-serde-universal@3.0.10':
+ resolution: {integrity: sha512-ewG1GHbbqsFZ4asaq40KmxCmXO+AFSM1b+DcO2C03dyJj/ZH71CiTg853FSE/3SHK9q3jiYQIFjlGSwfxQ9kww==}
engines: {node: '>=16.0.0'}
- '@smithy/fetch-http-handler@3.2.8':
- resolution: {integrity: sha512-Lqe0B8F5RM7zkw//6avq1SJ8AfaRd3ubFUS1eVp5WszV7p6Ne5hQ4dSuMHDpNRPhgTvj4va9Kd/pcVigHEHRow==}
+ '@smithy/fetch-http-handler@3.2.9':
+ resolution: {integrity: sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==}
- '@smithy/hash-blob-browser@3.1.5':
- resolution: {integrity: sha512-Vi3eoNCmao4iKglS80ktYnBOIqZhjbDDwa1IIbF/VaJ8PsHnZTQ5wSicicPrU7nTI4JPFn92/txzWkh4GlK18Q==}
+ '@smithy/fetch-http-handler@4.0.0':
+ resolution: {integrity: sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==}
- '@smithy/hash-node@3.0.6':
- resolution: {integrity: sha512-c/FHEdKK/7DU2z6ZE91L36ahyXWayR3B+FzELjnYq7wH5YqIseM24V+pWCS9kFn1Ln8OFGTf+pyYPiHZuX0s/Q==}
+ '@smithy/hash-blob-browser@3.1.7':
+ resolution: {integrity: sha512-4yNlxVNJifPM5ThaA5HKnHkn7JhctFUHvcaz6YXxHlYOSIrzI6VKQPTN8Gs1iN5nqq9iFcwIR9THqchUCouIfg==}
+
+ '@smithy/hash-node@3.0.8':
+ resolution: {integrity: sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==}
engines: {node: '>=16.0.0'}
- '@smithy/hash-stream-node@3.1.5':
- resolution: {integrity: sha512-61CyFCzqN3VBfcnGX7mof/rkzLb8oHjm4Lr6ZwBIRpBssBb8d09ChrZAqinP2rUrA915BRNkq9NpJz18N7+3hQ==}
+ '@smithy/hash-stream-node@3.1.7':
+ resolution: {integrity: sha512-xMAsvJ3hLG63lsBVi1Hl6BBSfhd8/Qnp8fC06kjOpJvyyCEXdwHITa5Kvdsk6gaAXLhbZMhQMIGvgUbfnJDP6Q==}
engines: {node: '>=16.0.0'}
- '@smithy/invalid-dependency@3.0.6':
- resolution: {integrity: sha512-czM7Ioq3s8pIXht7oD+vmgy4Wfb4XavU/k/irO8NdXFFOx7YAlsCCcKOh/lJD1mJSYQqiR7NmpZ9JviryD/7AQ==}
+ '@smithy/invalid-dependency@3.0.8':
+ resolution: {integrity: sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
@@ -5864,75 +5878,75 @@ packages:
resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
engines: {node: '>=16.0.0'}
- '@smithy/md5-js@3.0.6':
- resolution: {integrity: sha512-Ze690T8O3M5SVbb70WormwrKzVf9QQRtIuxtJDgpUQDkmt+PtdYDetBbyCbF9ryupxLw6tgzWKgwffAShhVIXQ==}
+ '@smithy/md5-js@3.0.8':
+ resolution: {integrity: sha512-LwApfTK0OJ/tCyNUXqnWCKoE2b4rDSr4BJlDAVCkiWYeHESr+y+d5zlAanuLW6fnitVJRD/7d9/kN/ZM9Su4mA==}
- '@smithy/middleware-content-length@3.0.8':
- resolution: {integrity: sha512-VuyszlSO49WKh3H9/kIO2kf07VUwGV80QRiaDxUfP8P8UKlokz381ETJvwLhwuypBYhLymCYyNhB3fLAGBX2og==}
+ '@smithy/middleware-content-length@3.0.10':
+ resolution: {integrity: sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-endpoint@3.1.3':
- resolution: {integrity: sha512-KeM/OrK8MVFUsoJsmCN0MZMVPjKKLudn13xpgwIMpGTYpA8QZB2Xq5tJ+RE6iu3A6NhOI4VajDTwBsm8pwwrhg==}
+ '@smithy/middleware-endpoint@3.2.1':
+ resolution: {integrity: sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-retry@3.0.21':
- resolution: {integrity: sha512-/h0fElV95LekVVEJuSw+aI11S1Y3zIUwBc6h9ZbUv43Gl2weXsbQwjLoet6j/Qtb0phfrSxS6pNg6FqgJOWZkA==}
+ '@smithy/middleware-retry@3.0.25':
+ resolution: {integrity: sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-serde@3.0.6':
- resolution: {integrity: sha512-KKTUSl1MzOM0MAjGbudeaVNtIDo+PpekTBkCNwvfZlKndodrnvRo+00USatiyLOc0ujjO9UydMRu3O9dYML7ag==}
+ '@smithy/middleware-serde@3.0.8':
+ resolution: {integrity: sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==}
engines: {node: '>=16.0.0'}
- '@smithy/middleware-stack@3.0.6':
- resolution: {integrity: sha512-2c0eSYhTQ8xQqHMcRxLMpadFbTXg6Zla5l0mwNftFCZMQmuhI7EbAJMx6R5eqfuV3YbJ3QGyS3d5uSmrHV8Khg==}
+ '@smithy/middleware-stack@3.0.8':
+ resolution: {integrity: sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==}
engines: {node: '>=16.0.0'}
- '@smithy/node-config-provider@3.1.7':
- resolution: {integrity: sha512-g3mfnC3Oo8pOI0dYuPXLtdW1WGVb3bR2tkV21GNkm0ZvQjLTtamXAwCWt/FCb0HGvKt3gHHmF1XerG0ICfalOg==}
+ '@smithy/node-config-provider@3.1.9':
+ resolution: {integrity: sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==}
engines: {node: '>=16.0.0'}
- '@smithy/node-http-handler@3.2.3':
- resolution: {integrity: sha512-/gcm5DJ3k1b1zEInzBGAZC8ntJ+jwrz1NcSIu+9dSXd1FfG0G6QgkDI40tt8/WYUbHtLyo8fEqtm2v29koWo/w==}
+ '@smithy/node-http-handler@3.2.5':
+ resolution: {integrity: sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==}
engines: {node: '>=16.0.0'}
- '@smithy/property-provider@3.1.6':
- resolution: {integrity: sha512-NK3y/T7Q/Bw+Z8vsVs9MYIQ5v7gOX7clyrXcwhhIBQhbPgRl6JDrZbusO9qWDhcEus75Tg+VCxtIRfo3H76fpw==}
+ '@smithy/property-provider@3.1.8':
+ resolution: {integrity: sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==}
engines: {node: '>=16.0.0'}
- '@smithy/protocol-http@4.1.3':
- resolution: {integrity: sha512-GcbMmOYpH9iRqtC05RbRnc/0FssxSTHlmaNhYBTgSgNCYpdR3Kt88u5GAZTBmouzv+Zlj/VRv92J9ruuDeJuEw==}
+ '@smithy/protocol-http@4.1.5':
+ resolution: {integrity: sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==}
engines: {node: '>=16.0.0'}
- '@smithy/querystring-builder@3.0.6':
- resolution: {integrity: sha512-sQe08RunoObe+Usujn9+R2zrLuQERi3CWvRO3BvnoWSYUaIrLKuAIeY7cMeDax6xGyfIP3x/yFWbEKSXvOnvVg==}
+ '@smithy/querystring-builder@3.0.8':
+ resolution: {integrity: sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==}
engines: {node: '>=16.0.0'}
- '@smithy/querystring-parser@3.0.6':
- resolution: {integrity: sha512-UJKw4LlEkytzz2Wq+uIdHf6qOtFfee/o7ruH0jF5I6UAuU+19r9QV7nU3P/uI0l6+oElRHmG/5cBBcGJrD7Ozg==}
+ '@smithy/querystring-parser@3.0.8':
+ resolution: {integrity: sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==}
engines: {node: '>=16.0.0'}
- '@smithy/service-error-classification@3.0.6':
- resolution: {integrity: sha512-53SpchU3+DUZrN7J6sBx9tBiCVGzsib2e4sc512Q7K9fpC5zkJKs6Z9s+qbMxSYrkEkle6hnMtrts7XNkMJJMg==}
+ '@smithy/service-error-classification@3.0.8':
+ resolution: {integrity: sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==}
engines: {node: '>=16.0.0'}
- '@smithy/shared-ini-file-loader@3.1.7':
- resolution: {integrity: sha512-IA4K2qTJYXkF5OfVN4vsY1hfnUZjaslEE8Fsr/gGFza4TAC2A9NfnZuSY2srQIbt9bwtjHiAayrRVgKse4Q7fA==}
+ '@smithy/shared-ini-file-loader@3.1.9':
+ resolution: {integrity: sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==}
engines: {node: '>=16.0.0'}
- '@smithy/signature-v4@4.1.4':
- resolution: {integrity: sha512-72MiK7xYukNsnLJI9NqvUHqTu0ziEsfMsYNlWpiJfuGQnCTFKpckThlEatirvcA/LmT1h7rRO+pJD06PYsPu9Q==}
+ '@smithy/signature-v4@4.2.1':
+ resolution: {integrity: sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==}
engines: {node: '>=16.0.0'}
- '@smithy/smithy-client@3.3.5':
- resolution: {integrity: sha512-7IZi8J3Dr9n3tX+lcpmJ/5tCYIqoXdblFBaPuv0SEKZFRpCxE+TqIWL6I3t7jLlk9TWu3JSvEZAhtjB9yvB+zA==}
+ '@smithy/smithy-client@3.4.2':
+ resolution: {integrity: sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==}
engines: {node: '>=16.0.0'}
- '@smithy/types@3.4.2':
- resolution: {integrity: sha512-tHiFcfcVedVBHpmHUEUHOCCih8iZbIAYn9NvPsNzaPm/237I3imdDdZoOC8c87H5HBAVEa06tTgb+OcSWV9g5w==}
+ '@smithy/types@3.6.0':
+ resolution: {integrity: sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==}
engines: {node: '>=16.0.0'}
- '@smithy/url-parser@3.0.6':
- resolution: {integrity: sha512-47Op/NU8Opt49KyGpHtVdnmmJMsp2hEwBdyjuFB9M2V5QVOwA7pBhhxKN5z6ztKGrMw76gd8MlbPuzzvaAncuQ==}
+ '@smithy/url-parser@3.0.8':
+ resolution: {integrity: sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==}
'@smithy/util-base64@3.0.0':
resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
@@ -5957,32 +5971,32 @@ packages:
resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
engines: {node: '>=16.0.0'}
- '@smithy/util-defaults-mode-browser@3.0.21':
- resolution: {integrity: sha512-M/FhTBk4c/SsB91dD/M4gMGfJO7z/qJaM9+XQQIqBOf4qzZYMExnP7R4VdGwxxH8IKMGW+8F0I4rNtVRrcfPoA==}
+ '@smithy/util-defaults-mode-browser@3.0.25':
+ resolution: {integrity: sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-defaults-mode-node@3.0.21':
- resolution: {integrity: sha512-NiLinPvF86U3S2Pdx/ycqd4bnY5dmFSPNL5KYRwbNjqQFS09M5Wzqk8BNk61/47xCYz1X/6KeiSk9qgYPTtuDw==}
+ '@smithy/util-defaults-mode-node@3.0.25':
+ resolution: {integrity: sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==}
engines: {node: '>= 10.0.0'}
- '@smithy/util-endpoints@2.1.2':
- resolution: {integrity: sha512-FEISzffb4H8DLzGq1g4MuDpcv6CIG15fXoQzDH9SjpRJv6h7J++1STFWWinilG0tQh9H1v2UKWG19Jjr2B16zQ==}
+ '@smithy/util-endpoints@2.1.4':
+ resolution: {integrity: sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==}
engines: {node: '>=16.0.0'}
'@smithy/util-hex-encoding@3.0.0':
resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
engines: {node: '>=16.0.0'}
- '@smithy/util-middleware@3.0.6':
- resolution: {integrity: sha512-BxbX4aBhI1O9p87/xM+zWy0GzT3CEVcXFPBRDoHAM+pV0eSW156pR+PSYEz0DQHDMYDsYAflC2bQNz2uaDBUZQ==}
+ '@smithy/util-middleware@3.0.8':
+ resolution: {integrity: sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==}
engines: {node: '>=16.0.0'}
- '@smithy/util-retry@3.0.6':
- resolution: {integrity: sha512-BRZiuF7IwDntAbevqMco67an0Sr9oLQJqqRCsSPZZHYRnehS0LHDAkJk/pSmI7Z8c/1Vet294H7fY2fWUgB+Rg==}
+ '@smithy/util-retry@3.0.8':
+ resolution: {integrity: sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==}
engines: {node: '>=16.0.0'}
- '@smithy/util-stream@3.1.8':
- resolution: {integrity: sha512-hoKOqSmb8FD3WLObuB5hwbM7bNIWgcnvkThokTvVq7J5PKjlLUK5qQQcB9zWLHIoSaIlf3VIv2OxZY2wtQjcRQ==}
+ '@smithy/util-stream@3.2.1':
+ resolution: {integrity: sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==}
engines: {node: '>=16.0.0'}
'@smithy/util-uri-escape@3.0.0':
@@ -5997,119 +6011,119 @@ packages:
resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==}
engines: {node: '>=16.0.0'}
- '@smithy/util-waiter@3.1.5':
- resolution: {integrity: sha512-jYOSvM3H6sZe3CHjzD2VQNCjWBJs+4DbtwBMvUp9y5EnnwNa7NQxTeYeQw0CKCAdGGZ3QvVkyJmvbvs5M/B10A==}
+ '@smithy/util-waiter@3.1.7':
+ resolution: {integrity: sha512-d5yGlQtmN/z5eoTtIYgkvOw27US2Ous4VycnXatyoImIF9tzlcpnKqQ/V7qhvJmb2p6xZne1NopCLakdTnkBBQ==}
engines: {node: '>=16.0.0'}
- '@storybook/addon-actions@8.3.4':
- resolution: {integrity: sha512-1y0yD3upKcyzNwwA6loAGW2cRDqExwl4oAT7GJQA4tmabI+fNwmANSgU/ezLvvSUf4Qo0eJHg2Zcn8y+Apq2eA==}
+ '@storybook/addon-actions@8.3.6':
+ resolution: {integrity: sha512-nOqgl0WoZK2KwjaABaXMoIgrIHOQl9inOzJvqQau0HOtsvnXGXYfJXYnpjZenoZDoZXKbUDl0U2haDFx2a2fJw==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-backgrounds@8.3.4':
- resolution: {integrity: sha512-o3nl7cN3x8erJNxLEv8YptanEQAnbqnaseOAsvSC6/nnSAcRYBSs3BvekKvo4CcpS2mxn7F5NJTBFYnCXzy8EA==}
+ '@storybook/addon-backgrounds@8.3.6':
+ resolution: {integrity: sha512-yBn+a8i5OJzJaX6Bx5MAkfei7c2nvq+RRmvuyvxw11rtDGR6Nz4OBBe56reWxo868wVUggpRTPJCMVe5tDYgVg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-controls@8.3.4':
- resolution: {integrity: sha512-qQcaK6dczsb6wXkzGZKOjUYNA7FfKBewRv6NvoVKYY6LfhllGOkmUAtYpdtQG8adsZWTSoZaAOJS2vP2uM67lw==}
+ '@storybook/addon-controls@8.3.6':
+ resolution: {integrity: sha512-9IMLHgtWPuFoRCt3hDsIk1FbkK5SlCMDW1DDwtTBIeWYYZLvptS42+vGVTeQ8v5SejmVzZkzuUdzu3p4sb3IcA==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-docs@8.3.4':
- resolution: {integrity: sha512-TWauhqF/gJgfwPuWeM6KM3LwC+ErCOM+K2z16w3vgao9s67sij8lnrdAoQ0hjA+kw2/KAdCakFS6FyciG81qog==}
+ '@storybook/addon-docs@8.3.6':
+ resolution: {integrity: sha512-31Rk1TOhDIzGM2wNCUIB1xKuWtArW0D2Puua9warEXlQ3FtvwmxnPrwbIzw6ufYZDWPwl9phDYTcRh8WqZIoGg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-essentials@8.3.4':
- resolution: {integrity: sha512-C3+3hpmSn/8zdx5sXEP0eE6zMzxgRosHVZYfe9nBcMiEDp6UKVUyHVetWxEULOEgN46ysjcpllZ0bUkRYxi2IQ==}
+ '@storybook/addon-essentials@8.3.6':
+ resolution: {integrity: sha512-MQPFvThlGU7wlda1xhBPQCmDh90cSSZ31OsVs1uC5kJh0aLbY2gYXPurq1G54kzrYo8SMfBxsXrCplz8Ir6UTg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-highlight@8.3.4':
- resolution: {integrity: sha512-rxZTeuZyZ7RnU+xmRhS01COFLbGnVEmlUNxBw8ArsrTEZKW5PbKpIxNLTj9F0zdH8H0MfryJGP+Aadcm0oHWlw==}
+ '@storybook/addon-highlight@8.3.6':
+ resolution: {integrity: sha512-A7uU+1OPVXGpkklEUJjSl2VEEDLCSNvmffUJlvW1GjajsNFIHOW2CSD+KnfFlQyPxyVbnWAYLqUP4XJxoqrvDw==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-interactions@8.3.4':
- resolution: {integrity: sha512-ORxqe35wUmF7EDHo45mdDHiju3Ryk2pZ1vO9PyvW6ZItNlHt/IxAr7T/TysGejZ/eTBg6tMZR3ExGky3lTg/CQ==}
+ '@storybook/addon-interactions@8.3.6':
+ resolution: {integrity: sha512-Y0YUJj0oE1+6DFkaTPXM/8+dwTSoy0ltj2Sn2KOTJYzxKQYXBp8TlUv0QOQiGH7o/GKXIWek/VlTuvG/JEeiWw==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-links@8.3.4':
- resolution: {integrity: sha512-R1DjARmxRIKJDGIG6uxmQ1yFNyoQbb+QIPUFjgWCak8+AdLJbC7W+Esvo9F5hQfh6czyy0piiM3qj5hpQJVh3A==}
+ '@storybook/addon-links@8.3.6':
+ resolution: {integrity: sha512-EGEH/kEjndEldbqyiJ8XSASkxqwzL/lgA/+6mHpa6Ljxhk1s5IMGcdA1ymJYJ2BpNdkUxRj/uxAa38eGcQiJ/g==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^8.3.4
+ storybook: ^8.3.6
peerDependenciesMeta:
react:
optional: true
- '@storybook/addon-measure@8.3.4':
- resolution: {integrity: sha512-IJ6WKEbqmG+r7sukFjo+bVmPB2Zry04sylGx/OGyOh7zIhhqAqpwOwMHP0uQrc3tLNnUM6qB/o83UyYX79ql+A==}
+ '@storybook/addon-measure@8.3.6':
+ resolution: {integrity: sha512-VHWeGgYjhzhwb2WAqYW/qyEPqg5pwKR/XqFfd+3tEirUs/64olL1l3lzLwZ8Cm07cJ81T8Z4myywb9kObZfQlw==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-outline@8.3.4':
- resolution: {integrity: sha512-kRRJTTLKM8gMfeh/e83djN5XLlc0hFtr9zKWxuZxaXt9Hmr+9tH/PRFtVK/S4SgqnBDoXk49Wgv6raiwj5/e3A==}
+ '@storybook/addon-outline@8.3.6':
+ resolution: {integrity: sha512-+VXpM8SIHX2cn30qLlMvER9/6iioFRSn2sAfLniqy4RrcQmcMP+qgE7ZzbzExt7cneJh3VFsYqBS/HElu14Vgg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-toolbars@8.3.4':
- resolution: {integrity: sha512-Km1YciVIxqluDbd1xmHjANNFyMonEOtnA6e4MrnBnC9XkPXSigeFlj0JvxyI/zjBsLBoFRmQiwq55W6l3hQ9sA==}
+ '@storybook/addon-toolbars@8.3.6':
+ resolution: {integrity: sha512-FJH+lRoZXENfpMR/G09ZqB0TmL/k6bv07GN1ysoVs420tKRgjfz6uXaZz5COrhcdISr5mTNmG+mw9x7xXTfX3Q==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/addon-viewport@8.3.4':
- resolution: {integrity: sha512-fU4LdXSSqIOLbCEh2leq/tZUYlFliXZBWr/+igQHdUoU7HY8RIImXqVUaR9wlCaTb48WezAWT60vJtwNijyIiQ==}
+ '@storybook/addon-viewport@8.3.6':
+ resolution: {integrity: sha512-bL51v837W1cng/+0pypkoLsWKWmvux96zLOzqLCpcWAQ4OSMhW3foIWpCiFwMG/KY+GanoOocTx6i7j5hLtuTA==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/blocks@8.3.4':
- resolution: {integrity: sha512-1g4aCrd5CcN+pVhF2ATu9ZRVvAIgBMb2yF9KkCuTpdvqKDuDNK3sGb0CxjS7jp3LOvyjJr9laTOQsz8v8MQc5A==}
+ '@storybook/blocks@8.3.6':
+ resolution: {integrity: sha512-Oc5jU6EzfsENjrd91KcKyEKBh60RT+8uyLi1RIrymC2C/mzZMTEoNIrbnQt0eIqbjlHxn6y9JMJxHu4NJ4EmZg==}
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.4
+ storybook: ^8.3.6
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
- '@storybook/builder-webpack5@8.3.4':
- resolution: {integrity: sha512-EI6ULxRap5f4YSHf5xKUQqkoNGm4MVxJR/+GImx8K5fuZ+xYw2SdYdTu6dG8V+zTh1WZ4MDwmRb6aEbXvRcrFw==}
+ '@storybook/builder-webpack5@8.3.6':
+ resolution: {integrity: sha512-Eqn2k8aA9f0o6IMQNAxGAMfSDeTP3YYCQAtOL5Gt5lgrqLV5JMTbZOfmaRBZ82ej/BBSAopnQKIJjQBBFx6kAQ==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@storybook/cli@8.3.4':
- resolution: {integrity: sha512-VzyY/CFLlrYmtIZpvSU5+7BejHzSy6AidrmUML1ZzNj0+F3FUU4XA6nFs+/zLBwYON+mE3p3iOpJu3iQpQK9Qw==}
+ '@storybook/cli@8.3.6':
+ resolution: {integrity: sha512-yGwWCwuuJJqfZMWZgQo9Yqt9XvJNSCKmZSa6cbYoPg8VUTCAEOQJQRBehEQmw1bl4APh4lXL9pkPMaLfaNRlIg==}
hasBin: true
- '@storybook/codemod@8.3.4':
- resolution: {integrity: sha512-w3nYKsIooevVSnX7+uC7yTLbPtMBvwKIB0jF897baHCxvFr80JhP49oM/KWfZMnwcAni21ZGitO57O6dYIn1Rg==}
+ '@storybook/codemod@8.3.6':
+ resolution: {integrity: sha512-Jut3+z3CXyRlQ1hvQ3u9pVfEReV37OiANpcnreWpJAQ58HsFQmZf5eBpwT2kh5/Ex9CpmumecoEmuGikqNVWQw==}
- '@storybook/components@8.3.4':
- resolution: {integrity: sha512-iQzLJd87uGbFBbYNqlrN/ABrnx3dUrL0tjPCarzglzshZoPCNOsllJeJx5TJwB9kCxSZ8zB9TTOgr7NXl+oyVA==}
+ '@storybook/components@8.3.6':
+ resolution: {integrity: sha512-TXuoGZY7X3iixF45lXkYOFk8k2q9OHcqHyHyem1gATLLQXgyOvDgzm+VB7uKBNzssRQPEE+La70nfG8bq/viRw==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/core-webpack@8.3.4':
- resolution: {integrity: sha512-Ftsk/8RANt46roiHT0hTyqfMPUO2/jV7EvlOR5H2XKhSbssA9njK04O2ry+BbfgKItIDIx0LTiz/I575qBCCnQ==}
+ '@storybook/core-webpack@8.3.6':
+ resolution: {integrity: sha512-ks306CFKD7FePQzRYyTjddiLsSriceblzv4rI+IjVtftkJvcEbxub2yWkV27kPP/e9kSd4Li3M34bX5mkiwkZA==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/core@8.3.4':
- resolution: {integrity: sha512-4PZB91JJpuKfcjeOR2LXj3ABaPLLSd2P/SfYOKNCygrDstsQa/yay3/yN5Z9yi1cIG84KRr6/sUW+0x8HsGLPg==}
+ '@storybook/core@8.3.6':
+ resolution: {integrity: sha512-frwfgf0EJ7QL29DWZ5bla/g0eOOWqJGd14t+VUBlpP920zB6sdDfo7+p9JoCjD9u08lGeFDqbPNKayUk+0qDag==}
- '@storybook/csf-plugin@8.3.4':
- resolution: {integrity: sha512-ZMFWYxeTN4GxCn8dyIH4roECyLDy29yv/QKM+pHM3AC5Ny2HWI35SohWao4fGBAFxPQFbR5hPN8xa6ofHPSSTg==}
+ '@storybook/csf-plugin@8.3.6':
+ resolution: {integrity: sha512-TJyJPFejO6Gyr3+bXqE/+LomQbivvfHEbee/GwtlRj0XF4KQlqnvuEdEdcK25JbD0NXT8AbyncEUmjoxE7ojQw==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
'@storybook/csf@0.1.11':
resolution: {integrity: sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==}
@@ -6124,24 +6138,24 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@storybook/instrumenter@8.3.4':
- resolution: {integrity: sha512-jVhfNOPekOyJmta0BTkQl9Z6rgRbFHlc0eV4z1oSrzaawSlc9TFzAeDCtCP57vg3FuBX8ydDYAvyZ7s4xPpLyg==}
+ '@storybook/instrumenter@8.3.6':
+ resolution: {integrity: sha512-0RowbKwoB/s7rtymlnKNiyWN1Z3ZK5mwgzVjlRmzxDL8hrdi5KDjTNExuJTRR3ZaBP2RR0/I3m/n0p9JhHAZvg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/manager-api@8.3.4':
- resolution: {integrity: sha512-tBx7MBfPUrKSlD666zmVjtIvoNArwCciZiW/UJ8IWmomrTJRfFBnVvPVM2gp1lkDIzRHYmz5x9BHbYaEDNcZWQ==}
+ '@storybook/manager-api@8.3.6':
+ resolution: {integrity: sha512-Xt5VFZcL+G/9uzaHjzWFhxRNrP+4rPhSRKEvCZorAbC9+Hv+ZDs1JSZS5wMb4WKpXBZ0rwDVOLwngqbVtfRHuQ==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/nextjs@8.3.4':
- resolution: {integrity: sha512-jRgqswB61YJTRNcfAnPQgRwqwmBMC0qL16EVlQKp4IY1QjfVDJKES9FSk0SdUo+3twqaBG1kLWcoyk55u917Dg==}
+ '@storybook/nextjs@8.3.6':
+ resolution: {integrity: sha512-jNrEcS26OER645kJ3nMuSSgu8BWJhEY8MM9rDlE/133A/hojTBc2vZXwSfgZ22tAc7ckrbyw2gygEUPI2rHImA==}
engines: {node: '>=18.0.0'}
peerDependencies:
next: ^13.5.0 || ^14.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.4
+ storybook: ^8.3.6
typescript: '*'
webpack: ^5.0.0
peerDependenciesMeta:
@@ -6150,22 +6164,22 @@ packages:
webpack:
optional: true
- '@storybook/preset-react-webpack@8.3.4':
- resolution: {integrity: sha512-aNbozlcBhuX71anW5+2Ujj+vtXHPsYLf5RKOL82lMkCc1q2CzeMuhUB2BoSsU4R4GVnXVpgRPq+3+qLAQMwr6Q==}
+ '@storybook/preset-react-webpack@8.3.6':
+ resolution: {integrity: sha512-Ar0vhJITXa4xsXT3RdgYZ2mhXxE3jfUisQzsITey5a2RVgnSBIENggmRZ/6j1oVgEXFthbarNEsebGiA+2vDZg==}
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.4
+ storybook: ^8.3.6
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@storybook/preview-api@8.3.4':
- resolution: {integrity: sha512-/YKQ3QDVSHmtFXXCShf5w0XMlg8wkfTpdYxdGv1CKFV8DU24f3N7KWulAgeWWCWQwBzZClDa9kzxmroKlQqx3A==}
+ '@storybook/preview-api@8.3.6':
+ resolution: {integrity: sha512-/Wxvb7wbI2O2iH63arRQQyyojA630vibdshkFjuC/u1nYdptEV1jkxa0OYmbZbKCn4/ze6uH4hfsKOpDPV9SWg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
'@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0':
resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==}
@@ -6173,21 +6187,21 @@ packages:
typescript: '>= 4.x'
webpack: '>= 4'
- '@storybook/react-dom-shim@8.3.4':
- resolution: {integrity: sha512-L4llDvjaAzqPx6h4ddZMh36wPr75PrI2S8bXy+flLqAeVRYnRt4WNKGuxqH0t0U6MwId9+vlCZ13JBfFuY7eQQ==}
+ '@storybook/react-dom-shim@8.3.6':
+ resolution: {integrity: sha512-9BO6VXIdli4GHSfiP/Z0gwAf7oQig3D/yWK2U1+91UWDV8nIAgnNBAi76U4ORC6MiK5MdkDfIikIxnLLeLnahA==}
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.4
+ storybook: ^8.3.6
- '@storybook/react@8.3.4':
- resolution: {integrity: sha512-PA7iQL4/9X2/iLrv+AUPNtlhTHJWhDao9gQIT1Hef39FtFk+TU9lZGbv+g29R1H9V3cHP5162nG2aTu395kmbA==}
+ '@storybook/react@8.3.6':
+ resolution: {integrity: sha512-s3COryqIOYK7urgZaCPb77zlxGjPKr6dIsYmblQJcsFY2ZlG2x0Ysm8b5oRgD8Pv71hCJ0PKYA4RzDgBVYJS9A==}
engines: {node: '>=18.0.0'}
peerDependencies:
- '@storybook/test': 8.3.4
+ '@storybook/test': 8.3.6
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.4
+ storybook: ^8.3.6
typescript: '>= 4.2.x'
peerDependenciesMeta:
'@storybook/test':
@@ -6195,15 +6209,15 @@ packages:
typescript:
optional: true
- '@storybook/test@8.3.4':
- resolution: {integrity: sha512-HRiUenitln8QPHu6DEWUg9s9cEoiGN79lMykzXzw9shaUvdEIhWCsh82YKtmB3GJPj6qcc6dZL/Aio8srxyGAg==}
+ '@storybook/test@8.3.6':
+ resolution: {integrity: sha512-WIc8LzK9jaEw+e3OiweEM2j3cppPzsWod59swuf6gDBf176EQLIyjtVc+Kh3qO4NNkcL+lwmqaLPjOxlBLaDbg==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
- '@storybook/theming@8.3.4':
- resolution: {integrity: sha512-D4XVsQgTtpHEHLhwkx59aGy1GBwOedVr/mNns7hFrH8FjEpxrrWCuZQASq1ZpCl8LXlh7uvmT5sM2rOdQbGuGg==}
+ '@storybook/theming@8.3.6':
+ resolution: {integrity: sha512-LQjUk6GXRW9ELkoBKuqzQKFUW+ajfGPfVELcfs3/VQX61VhthJ4olov4bGPc04wsmmFMgN/qODxT485IwOHfPQ==}
peerDependencies:
- storybook: ^8.3.4
+ storybook: ^8.3.6
'@svgr/babel-plugin-add-jsx-attribute@8.0.0':
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
@@ -6289,8 +6303,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-arm64@1.7.26':
- resolution: {integrity: sha512-FF3CRYTg6a7ZVW4yT9mesxoVVZTrcSWtmZhxKCYJX9brH4CS/7PRPjAKNk6kzWgWuRoglP7hkjQcd6EpMcZEAw==}
+ '@swc/core-darwin-arm64@1.7.40':
+ resolution: {integrity: sha512-LRRrCiRJLb1kpQtxMNNsr5W82Inr0dy5Imho+4HQzVx/Ismi0qX4hQBgzJAnyOBNLK1+OBVb/912UVhKXppdfQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -6301,8 +6315,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@swc/core-darwin-x64@1.7.26':
- resolution: {integrity: sha512-az3cibZdsay2HNKmc4bjf62QVukuiMRh5sfM5kHR/JMTrLyS6vSw7Ihs3UTkZjUxkLTT8ro54LI6sV6sUQUbLQ==}
+ '@swc/core-darwin-x64@1.7.40':
+ resolution: {integrity: sha512-Lpl0XK/4fLzS5jsK48opUuGXrqJXwqJckYYPwyGbCfCXm4MsBe+7dX2hq/Kc4YMY25+NeTmzAXhla8TT4WYD/g==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -6313,8 +6327,8 @@ packages:
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm-gnueabihf@1.7.26':
- resolution: {integrity: sha512-VYPFVJDO5zT5U3RpCdHE5v1gz4mmR8BfHecUZTmD2v1JeFY6fv9KArJUpjrHEEsjK/ucXkQFmJ0jaiWXmpOV9Q==}
+ '@swc/core-linux-arm-gnueabihf@1.7.40':
+ resolution: {integrity: sha512-4bEvvjptpoc5BRPr/R419h6fXTEuub+frpxxlxBOEKxgXjAF/S3xdxyPijUAakmW/xXBF0u7OC4KYI+38yQp6g==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -6325,8 +6339,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.7.26':
- resolution: {integrity: sha512-YKevOV7abpjcAzXrhsl+W48Z9mZvgoVs2eP5nY+uoMAdP2b3GxC0Df1Co0I90o2lkzO4jYBpTMcZlmUXLdXn+Q==}
+ '@swc/core-linux-arm64-gnu@1.7.40':
+ resolution: {integrity: sha512-v2fBlHJ/6Ovz0L2xFAI9TRiKyl9DTdx139PuAHD9gyzp16Utl/W0MPd4t2cYdkI6hPXE9PsJCSzMOrduh+YoDg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -6337,8 +6351,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.7.26':
- resolution: {integrity: sha512-3w8iZICMkQQON0uIcvz7+Q1MPOW6hJ4O5ETjA0LSP/tuKqx30hIniCGOgPDnv3UTMruLUnQbtBwVCZTBKR3Rkg==}
+ '@swc/core-linux-arm64-musl@1.7.40':
+ resolution: {integrity: sha512-uMkduQuU4LFVkW6txv8AVArT8GjJVJ5IHoWloXaUBMT447iE8NALmpePdZWhMyj6KV7j0y23CM5rzV/I2eNGLg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -6349,8 +6363,8 @@ packages:
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.7.26':
- resolution: {integrity: sha512-c+pp9Zkk2lqb06bNGkR2Looxrs7FtGDMA4/aHjZcCqATgp348hOKH5WPvNLBl+yPrISuWjbKDVn3NgAvfvpH4w==}
+ '@swc/core-linux-x64-gnu@1.7.40':
+ resolution: {integrity: sha512-4LZdY1MBSnXyTpW5fpBU/+JGAhkuHT+VnFTDNegRboN5nSPh7y0Yvn4LmIioESV+sWzjKkEXujJPGjrp+oSp5w==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -6361,8 +6375,8 @@ packages:
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.7.26':
- resolution: {integrity: sha512-PgtyfHBF6xG87dUSSdTJHwZ3/8vWZfNIXQV2GlwEpslrOkGqy+WaiiyE7Of7z9AvDILfBBBcJvJ/r8u980wAfQ==}
+ '@swc/core-linux-x64-musl@1.7.40':
+ resolution: {integrity: sha512-FPjOwT3SgI6PAwH1O8bhOGBPzuvzOlzKeCtxLaCjruHJu9V8KKBrMTWOZT/FJyYC9mX5Ip1+l9j30UqUZdQxtA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -6373,8 +6387,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@swc/core-win32-arm64-msvc@1.7.26':
- resolution: {integrity: sha512-9TNXPIJqFynlAOrRD6tUQjMq7KApSklK3R/tXgIxc7Qx+lWu8hlDQ/kVPLpU7PWvMMwC/3hKBW+p5f+Tms1hmA==}
+ '@swc/core-win32-arm64-msvc@1.7.40':
+ resolution: {integrity: sha512-//ovXdD9GsTmhPmXJlXnIbRQkeuL6PSrYSr7uCMNcclrUdJG0YkO0GMM2afUKYbdJcunylDDWsSS8PFWn0QxmA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -6385,8 +6399,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.7.26':
- resolution: {integrity: sha512-9YngxNcG3177GYdsTum4V98Re+TlCeJEP4kEwEg9EagT5s3YejYdKwVAkAsJszzkXuyRDdnHUpYbTrPG6FiXrQ==}
+ '@swc/core-win32-ia32-msvc@1.7.40':
+ resolution: {integrity: sha512-iD/1auVhHGlhWAPrWmfRWL3w4AvXIWGVXZiSA109/xnRIPiHKb/HqqTp/qB94E/ZHMPRgLKkLTNwamlkueUs8g==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -6397,8 +6411,8 @@ packages:
cpu: [x64]
os: [win32]
- '@swc/core-win32-x64-msvc@1.7.26':
- resolution: {integrity: sha512-VR+hzg9XqucgLjXxA13MtV5O3C0bK0ywtLIBw/+a+O+Oc6mxFWHtdUeXDbIi5AiPbn0fjgVJMqYnyjGyyX8u0w==}
+ '@swc/core-win32-x64-msvc@1.7.40':
+ resolution: {integrity: sha512-ZlFAV1WFPhhWQ/8esiygmetkb905XIcMMtHRRG0FBGCllO+HVL5nikUaLDgTClz1onmEY9sMXUFQeoPtvliV+w==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -6412,8 +6426,8 @@ packages:
'@swc/helpers':
optional: true
- '@swc/core@1.7.26':
- resolution: {integrity: sha512-f5uYFf+TmMQyYIoxkn/evWhNGuUzC730dFwAKGwBVHHVoPyak1/GvJUm6i1SKl+2Hrj9oN0i3WSoWWZ4pgI8lw==}
+ '@swc/core@1.7.40':
+ resolution: {integrity: sha512-0HIzM5vigVT5IvNum+pPuST9p8xFhN6mhdIKju7qYYeNuZG78lwms/2d8WgjTJJlzp6JlPguXGrMMNzjQw0qNg==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '*'
@@ -6429,7 +6443,6 @@ packages:
'@swc/register@0.1.10':
resolution: {integrity: sha512-6STwH/q4dc3pitXLVkV7sP0Hiy+zBsU2wOF1aXpXR95pnH3RYHKIsDC+gvesfyB7jxNT9OOZgcqOp9RPxVTx9A==}
- deprecated: Use @swc-node/register instead
hasBin: true
peerDependencies:
'@swc/core': ^1.0.46
@@ -6437,6 +6450,9 @@ packages:
'@swc/types@0.1.12':
resolution: {integrity: sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==}
+ '@swc/types@0.1.13':
+ resolution: {integrity: sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==}
+
'@testing-library/dom@10.4.0':
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
@@ -6445,6 +6461,10 @@ packages:
resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+ '@testing-library/jest-dom@6.6.2':
+ resolution: {integrity: sha512-P6GJD4yqc9jZLbe98j/EkyQDTPgqftohZF5FBkHY5BUERZmcf4HeO2k0XaefEg329ux2p21i1A1DmyQ1kKw2Jw==}
+ engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
+
'@testing-library/react@16.0.1':
resolution: {integrity: sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==}
engines: {node: '>=18'}
@@ -6481,18 +6501,6 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- '@tsconfig/node10@1.0.11':
- resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
-
- '@tsconfig/node12@1.0.11':
- resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
-
- '@tsconfig/node14@1.0.3':
- resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
-
- '@tsconfig/node16@1.0.4':
- resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
-
'@types/acorn@4.0.6':
resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
@@ -6634,8 +6642,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==}
@@ -6649,8 +6657,8 @@ packages:
'@types/lodash-es@4.17.12':
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
- '@types/lodash@4.17.9':
- resolution: {integrity: sha512-w9iWudx1XWOHW5lQRS9iKpK/XuRhnN+0T7HvdCCd802FYkT1AMTnxndJHGrNJwRoRHkslGr4S29tjm1cT7x/7w==}
+ '@types/lodash@4.17.12':
+ resolution: {integrity: sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==}
'@types/mdast@3.0.15':
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
@@ -6676,11 +6684,11 @@ packages:
'@types/node@14.18.63':
resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
- '@types/node@20.16.10':
- resolution: {integrity: sha512-vQUKgWTjEIRFCvK6CyriPH3MZYiYlNy0fKiEYHWbcoWLEgs4opurGGKlebrTLqdSMIbXImH6XExNiIyNUv3WpA==}
+ '@types/node@20.17.2':
+ resolution: {integrity: sha512-OOHK4sjXqkL7yQ7VEEHcf6+0jSvKjWqwnaCtY7AKD/VLEvRHMsxxu7eI8ErnjxHS8VwmekD4PeVCpu4qZEZSxg==}
- '@types/node@22.7.4':
- resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==}
+ '@types/node@22.8.2':
+ resolution: {integrity: sha512-NzaRNFV+FZkvK/KLCsNdTvID0SThyrs5SHB6tsD/lajr22FGC73N2QeDPM2wHtVde8mgcXuSsHQkH5cX1pbPLw==}
'@types/nodemailer-sendgrid@1.0.3':
resolution: {integrity: sha512-UpLLUyrXjcs8PIwhfY0/CqXAoJ5CcDNUs6hia9QT9+kcotCFK6siVC5dHUGpTAsodwteX2JoiQ3Na7ZbDkijgw==}
@@ -6706,8 +6714,8 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.0':
- resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+ '@types/react-dom@18.3.1':
+ resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==}
'@types/react-lifecycles-compat@3.0.4':
resolution: {integrity: sha512-1CM48Y9ztL5S4wjt7DK2izrkgPp/Ql0zCJu/vHzhgl7J+BD4UbSGjHN1M2TlePms472JvOazUtAO1/G3oFZqIQ==}
@@ -6715,8 +6723,8 @@ packages:
'@types/react-transition-group@4.4.11':
resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
- '@types/react@18.3.10':
- resolution: {integrity: sha512-02sAAlBnP39JgXwkAq3PeU9DVaaGpZyF3MGcC0MKgQVkZor5IiiDAipVaxQHtDJAmO4GIy/rVBy/LzVj76Cyqg==}
+ '@types/react@18.3.12':
+ resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==}
'@types/request@2.48.12':
resolution: {integrity: sha512-G3sY+NpsA9jnwm0ixhAFQSJ3Q9JkpLZpJbI3GMv0mIAT0y3mRabYeINzal5WOChIiaTEGQYlHOKgkaM9EisWHw==}
@@ -6766,8 +6774,8 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.7.0':
- resolution: {integrity: sha512-RIHOoznhA3CCfSTFiB6kBGLQtB/sox+pJ6jeFu6FxJvqL8qRxq/FfGO/UhsGgQM9oGdXkV4xUgli+dt26biB6A==}
+ '@typescript-eslint/eslint-plugin@8.12.1':
+ resolution: {integrity: sha512-gNg/inLRcPoBsKKIe4Vv38SVSOhk4BKWNO0T56sVff33gRqtTpOsrhHtiOKD1lmIOmCtZMPaW2x/h2FlM+sCEg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
@@ -6777,8 +6785,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@8.7.0':
- resolution: {integrity: sha512-lN0btVpj2unxHlNYLI//BQ7nzbMJYBVQX5+pbNXvGYazdlgYonMn4AhhHifQ+J4fGRYA/m1DjaQjx+fDetqBOQ==}
+ '@typescript-eslint/parser@8.12.1':
+ resolution: {integrity: sha512-I/I9Bg7qFa8rOgBnUUHIWTgzbB5wVkSLX+04xGUzTcJUtdq/I2uHWR9mbW6qUYJG/UmkuDcTax5JHvoEWOAHOQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -6791,12 +6799,12 @@ packages:
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/scope-manager@8.7.0':
- resolution: {integrity: sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==}
+ '@typescript-eslint/scope-manager@8.12.1':
+ resolution: {integrity: sha512-bma6sD1iViTt+y9MAwDlBdPTMCqoH/BNdcQk4rKhIZWv3eM0xHmzeSrPJA663PAqFqfpOmtdugycpr0E1mZDVA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.7.0':
- resolution: {integrity: sha512-tl0N0Mj3hMSkEYhLkjREp54OSb/FI6qyCzfiiclvJvOqre6hsZTGSnHtmFLDU8TIM62G7ygEa1bI08lcuRwEnQ==}
+ '@typescript-eslint/type-utils@8.12.1':
+ resolution: {integrity: sha512-zJzrvbDVjIzVKV2TGHcjembEhws8RWXJhmqfO9hS2gRXBN0gDwGhRPEdJ6AZglzfJ+YA1q09EWpSLSXjBJpIMQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -6808,8 +6816,8 @@ packages:
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/types@8.7.0':
- resolution: {integrity: sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==}
+ '@typescript-eslint/types@8.12.1':
+ resolution: {integrity: sha512-anMS4es5lxBe4UVcDXOkcDb3csnm5BvaNIbOFfvy/pJEohorsggdVB8MFbl5EZiEuBnZZ0ei1z7W5b6FdFiV1Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@5.62.0':
@@ -6821,8 +6829,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.7.0':
- resolution: {integrity: sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==}
+ '@typescript-eslint/typescript-estree@8.12.1':
+ resolution: {integrity: sha512-k/o9khHOckPeDXilFTIPsP9iAYhhdMh3OsOL3i2072PNpFqhqzRHx472/0DeC8H/WZee3bZG0z2ddGRSPgeOKw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '*'
@@ -6836,8 +6844,8 @@ packages:
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
- '@typescript-eslint/utils@8.7.0':
- resolution: {integrity: sha512-ZbdUdwsl2X/s3CiyAu3gOlfQzpbuG3nTWKPoIvAu1pu5r8viiJvv2NPN2AqArL35NCYtw/lrPPfM4gxrMLNLPw==}
+ '@typescript-eslint/utils@8.12.1':
+ resolution: {integrity: sha512-sDv9yFHrhKe1WN8EYuzfhKCh/sFRupe9P+m/lZ5YgVvPoCUGHNN50IO4llSu7JAbftUM/QcCh+GeCortXPrBYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -6846,26 +6854,18 @@ packages:
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- '@typescript-eslint/visitor-keys@8.7.0':
- resolution: {integrity: sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==}
+ '@typescript-eslint/visitor-keys@8.12.1':
+ resolution: {integrity: sha512-2RwdwnNGuOQKdGjuhujQHUqBZhEuodg2sLVPvOfWktvA9sOXOVqARjOyHSyhN2LiJGKxV6c8oOcmOtRcAnEeFw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- '@videojs/http-streaming@3.13.3':
- resolution: {integrity: sha512-L7H+iTeqHeZ5PylzOx+pT3CVyzn4TALWYTJKkIc1pDaV/cTVfNGtG+9/vXPAydD+wR/xH1M9/t2JH8tn/DCT4w==}
+ '@videojs/http-streaming@3.15.0':
+ resolution: {integrity: sha512-6rjaqEa87gVFqDFsHaLKXGrDqL3NhNZRNi6wkMw+uyt1lrLD2OFY0SfRQRNl7Vmmx0pt5FRJoRJYlnKsowyElA==}
engines: {node: '>=8', npm: '>=5'}
peerDependencies:
- video.js: ^8.14.0
-
- '@videojs/vhs-utils@3.0.5':
- resolution: {integrity: sha512-PKVgdo8/GReqdx512F+ombhS+Bzogiofy1LgAj4tN8PfdBx3HSS7V5WfJotKTqtOWGwVfSWsrYN/t09/DSryrw==}
- engines: {node: '>=8', npm: '>=5'}
-
- '@videojs/vhs-utils@4.0.0':
- resolution: {integrity: sha512-xJp7Yd4jMLwje2vHCUmi8MOUU76nxiwII3z4Eg3Ucb+6rrkFVGosrXlMgGnaLjq724j3wzNElRZ71D/CKrTtxg==}
- engines: {node: '>=8', npm: '>=5'}
+ video.js: ^8.19.0
'@videojs/vhs-utils@4.1.1':
resolution: {integrity: sha512-5iLX6sR2ownbv4Mtejw6Ax+naosGvoT9kY+gcuHzANyUZZ+4NpeNdKMUhb6ag0acYej1Y7cmr/F2+4PrggMiVA==}
@@ -6880,8 +6880,8 @@ packages:
'@vitest/pretty-format@2.0.5':
resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
- '@vitest/pretty-format@2.1.1':
- resolution: {integrity: sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==}
+ '@vitest/pretty-format@2.1.4':
+ resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==}
'@vitest/spy@2.0.5':
resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
@@ -6889,8 +6889,8 @@ packages:
'@vitest/utils@2.0.5':
resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
- '@vitest/utils@2.1.1':
- resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==}
+ '@vitest/utils@2.1.4':
+ resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==}
'@webassemblyjs/ast@1.12.1':
resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
@@ -7012,8 +7012,8 @@ packages:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- ace-builds@1.36.2:
- resolution: {integrity: sha512-eqqfbGwx/GKjM/EnFu4QtQ+d2NNBu84MGgxoG8R5iyFpcVeQ4p9YlTL+ZzdEJqhdkASqoqOxCSNNGyB6lvMm+A==}
+ ace-builds@1.36.3:
+ resolution: {integrity: sha512-YcdwV2IIaJSfjkWAR1NEYN5IxBiXefTgwXsJ//UlaFrjXDX5hQpvPFvEePHz2ZBUfvO54RjHeRUQGX8MS5HaMQ==}
acorn-globals@7.0.1:
resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==}
@@ -7041,8 +7041,8 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -7054,9 +7054,6 @@ packages:
resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==}
engines: {node: '>=0.8'}
- aes-decrypter@4.0.1:
- resolution: {integrity: sha512-H1nh/P9VZXUf17AA5NQfJML88CFjVBDuGkp5zDHa7oEhYN9TTpNLJknRY1ie0iSKWlDf6JRnJKaZVDSQdPy6Cg==}
-
aes-decrypter@4.0.2:
resolution: {integrity: sha512-lc+/9s6iJvuaRe5qDlMTpCFjnwpkeOXp8qP3oiZ5jsj1MRg+SBVUmmICrhxHvc8OELSmc+fEyyxAuppY6hrWzw==}
@@ -7177,18 +7174,12 @@ packages:
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
- arg@4.1.3:
- resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
-
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-query@5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
-
aria-query@5.3.0:
resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
@@ -7295,8 +7286,8 @@ packages:
aws4@1.13.2:
resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
- axe-core@4.10.0:
- resolution: {integrity: sha512-Mr2ZakwQ7XUAjp7pAwQWRhhK8mQQ6JAaNWSjmjxil0R8BPioMtQsTLOolGYkji1rcL++3dCqZA3zWqpT+9Ew6g==}
+ axe-core@4.10.2:
+ resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
engines: {node: '>=4'}
axios@1.7.7:
@@ -7388,8 +7379,8 @@ packages:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
- better-sqlite3@11.3.0:
- resolution: {integrity: sha512-iHt9j8NPYF3oKCNOO5ZI4JwThjt3Z6J6XrcwG85VNMVzv1ByqrHWv5VILEbCMFWDsoHhXvQ7oC8vgRXFAKgl9w==}
+ better-sqlite3@11.5.0:
+ resolution: {integrity: sha512-e/6eggfOutzoK0JWiU36jsisdWoHOfN9iWiW/SieKvb7SAa6aGNmBM/UKyp+/wWSXpLlWNN8tCPwoDNPhzUvuQ==}
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
@@ -7416,10 +7407,6 @@ packages:
bn.js@5.2.1:
resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
-
body-parser@1.20.3:
resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
@@ -7472,8 +7459,8 @@ packages:
browserify-zlib@0.2.0:
resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
- browserslist@4.24.0:
- resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
+ 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
@@ -7557,8 +7544,8 @@ packages:
resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
engines: {node: '>=16'}
- caniuse-lite@1.0.30001664:
- resolution: {integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==}
+ caniuse-lite@1.0.30001673:
+ resolution: {integrity: sha512-WTrjUCSMp3LYX0nE12ECkV0a+e6LC85E0Auz75555/qr78Oc8YWhEPNfDd6SHdtlCMSzqtuXY0uyEMNRcsKpKw==}
case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
@@ -7574,8 +7561,8 @@ packages:
resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==}
engines: {node: '>=0.8'}
- chai@5.1.1:
- resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ chai@5.1.2:
+ resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==}
engines: {node: '>=12'}
chalk@2.4.2:
@@ -7818,8 +7805,8 @@ packages:
resolution: {integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==}
engines: {node: '>=12'}
- confbox@0.1.7:
- resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
@@ -7861,14 +7848,18 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- 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'}
+ cookie@0.7.1:
+ 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-to-clipboard@3.3.3:
resolution: {integrity: sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==}
@@ -7906,8 +7897,8 @@ packages:
typescript:
optional: true
- crawler-user-agents@1.0.150:
- resolution: {integrity: sha512-bDvOVO21Vs9gFKlAaW/kTYl5nZyT3HrzsYdhyvcQQqJewuT5wbi9eL7e6p9VcfwOE3WJ/7ZaYKlZ1LX2xM7U5g==}
+ crawler-user-agents@1.0.154:
+ resolution: {integrity: sha512-DmT4ENIPRPUri/1qG9DQ2gan9n5XiypNUgu7Hb2mCbFWZDhkxlo6CyH1fdortRG8SF7VbqbXA6HH4V72OZroAQ==}
crc-32@1.2.2:
resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
@@ -7928,11 +7919,8 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
- create-require@1.1.1:
- resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
-
- create-storybook@8.3.4:
- resolution: {integrity: sha512-jlvKWfa9FkU90XurpfGxO/TxYgdp3YIvBipVmkx4B9zlcCElQdcQ7i8VZ/OrzAd7VUU1S9tii6uzWPsPwwLVBw==}
+ create-storybook@8.3.6:
+ resolution: {integrity: sha512-i0TmAzd/io60R/JTVhAY9uv7FCDSSo+A8roKSZHMN7hUpy9UbLcJxrzRLZBvSYe9YiwhcctzTq2wNC5XRzFJcA==}
hasBin: true
cross-spawn@5.1.0:
@@ -7945,8 +7933,9 @@ packages:
crypt@0.0.2:
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
- crypto-browserify@3.12.0:
- resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
+ crypto-browserify@3.12.1:
+ resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==}
+ engines: {node: '>= 0.10'}
css-blank-pseudo@6.0.2:
resolution: {integrity: sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg==}
@@ -8283,9 +8272,6 @@ packages:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
- deep-equal@2.2.2:
- resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==}
-
deep-equal@2.2.3:
resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==}
engines: {node: '>= 0.4'}
@@ -8380,10 +8366,6 @@ packages:
resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- diff@4.0.2:
- resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
- engines: {node: '>=0.3.1'}
-
diff@5.2.0:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
@@ -8491,11 +8473,11 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.29:
- resolution: {integrity: sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==}
+ electron-to-chromium@1.5.49:
+ resolution: {integrity: sha512-ZXfs1Of8fDb6z7WEYZjXpgIRF6MEu8JdeGA0A40aZq6OQbS+eJpnnV49epZRna2DU/YsEjSQuGtQPPtvt6J65A==}
- elliptic@6.5.7:
- resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==}
+ elliptic@6.6.0:
+ resolution: {integrity: sha512-dpwoQcLc/2WLQvJvLRHKZ+f9FgOdjnq11rurqwekGQygGPsYSK29OMMD2WalatiqQ+XGFDglTNixpPfI+lpaAA==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -8587,8 +8569,8 @@ packages:
es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- es-iterator-helpers@1.0.19:
- resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
+ es-iterator-helpers@1.1.0:
+ resolution: {integrity: sha512-/SurEfycdyssORP/E+bj4sEu1CWw4EmLDsHynHwSXQ7utgbrMRWW195pTrCjFgFCddf/UkYm3oqKPRq5i8bJbw==}
engines: {node: '>= 0.4'}
es-module-lexer@1.5.4:
@@ -8623,6 +8605,12 @@ packages:
es6-weak-map@2.0.3:
resolution: {integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==}
+ 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-register@3.6.0:
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
peerDependencies:
@@ -8678,8 +8666,8 @@ packages:
eslint-plugin-react: ^7.28.0
eslint-plugin-react-hooks: ^4.3.0
- eslint-config-next@14.2.13:
- resolution: {integrity: sha512-aro1EKAoyYchnO/3Tlo91hnNBO7QO7qnv/79MAFC+4Jq8TdUVKQlht5d2F+YjrePjdpOvfL+mV9JPfyYNwkk1g==}
+ eslint-config-next@14.2.16:
+ resolution: {integrity: sha512-HOcnCJsyLXR7B8wmjaCgkTSpz+ijgOyAkP8OlvANvciP8PspBYFEBTmakNMxOf71fY0aKOm/blFIiKnrM4K03Q==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -8693,8 +8681,8 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
- eslint-config-turbo@2.1.2:
- resolution: {integrity: sha512-UCNwxBrTOx0K41h1OrwMg7vPdGvcGSAlj40ZzpuUi0S2Muac2UOs+6F2dMYQiKg7lX2HAtyHXlF0T2wlWNHjGg==}
+ eslint-config-turbo@2.2.3:
+ resolution: {integrity: sha512-/zwNU+G2w0HszXzWILdl6/Catt86ejUG7vsFSdpnFzFAAUbbT2TxgoCFvC1fKtm6+SkQsXwkRRe9tFz0aMftpg==}
peerDependencies:
eslint: '>6.6.0'
@@ -8758,12 +8746,12 @@ packages:
eslint-import-resolver-webpack:
optional: true
- eslint-plugin-import@2.30.0:
- resolution: {integrity: sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==}
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
@@ -8795,8 +8783,8 @@ packages:
resolution: {integrity: sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==}
engines: {node: '>=12.0'}
- eslint-plugin-jsx-a11y@6.10.0:
- resolution: {integrity: sha512-ySOHvXX8eSN6zz8Bywacm7CvGNhUtdjvqfQDVe6020TUK34Cywkw7m0KsCCk1Qtm9G1FayfTN1/7mMYnYO2Bhg==}
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
@@ -8816,8 +8804,8 @@ packages:
eslint-plugin-module-resolver@1.5.0:
resolution: {integrity: sha512-fz8oVazFk5jfZRCBgURDIM955QufKePsGNgpu+z/HWedy9HII6jir1PGts+p27rCWWwSw2LXoxS4xll2WH17fw==}
- eslint-plugin-playwright@1.6.2:
- resolution: {integrity: sha512-mraN4Em3b5jLt01q7qWPyLg0Q5v3KAWfJSlEWwldyUXoa7DSPrBR4k6B6LROLqipsG8ndkwWMdjl1Ffdh15tag==}
+ eslint-plugin-playwright@1.8.3:
+ resolution: {integrity: sha512-h87JPFHkz8a6oPhn8GRGGhSQoAJjx0AkOv1jME6NoMk2FpEsfvfJJNaQDxLSqSALkCr0IJXPGTnp6SIRVu5Nqg==}
engines: {node: '>=16.6.0'}
peerDependencies:
eslint: '>=8.40.0'
@@ -8846,20 +8834,26 @@ packages:
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- eslint-plugin-react@7.37.0:
- resolution: {integrity: sha512-IHBePmfWH5lKhJnJ7WB1V+v/GolbB0rjS8XYVCSQCZKaQCAUhMoVoOEn1Ef8Z8Wf0a7l8KTJvuZg5/e4qrZ6nA==}
+ eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705:
+ resolution: {integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- eslint-plugin-testing-library@6.3.0:
- resolution: {integrity: sha512-GYcEErTt6EGwE0bPDY+4aehfEBpB2gDBFKohir8jlATSUvzStEyzCx8QWB/14xeKc/AwyXkzScSzMHnFojkWrA==}
+ eslint-plugin-testing-library@6.4.0:
+ resolution: {integrity: sha512-yeWF+YgCgvNyPNI9UKnG0FjeE2sk93N/3lsKqcmR8dSfeXJwFT5irnWo7NjLf152HkRzfoFjh3LsBUrhvFz4eA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'}
peerDependencies:
- eslint: ^7.5.0 || ^8.0.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- eslint-plugin-turbo@2.1.2:
- resolution: {integrity: sha512-q2ikGubfVLZDPEKliiuubZc3sI5oqbKIZJ6fRi6Bldv8E3cMNH3Qt7g6hXZV4+GxwQbzEEteCYSBNbOn1DBqRg==}
+ eslint-plugin-turbo@2.2.3:
+ resolution: {integrity: sha512-LHt35VwxthdGVO6hQRfvmFb6ee8/exAzAYWCy4o87Bnp7urltP8qg7xMd4dPSLAhtfnI2xSo1WgeVaR3MeItxw==}
peerDependencies:
eslint: '>6.6.0'
@@ -8923,6 +8917,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@2.0.0:
resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==}
@@ -9002,6 +8999,10 @@ packages:
resolution: {integrity: sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==}
engines: {node: '>= 0.10.0'}
+ express@4.21.1:
+ resolution: {integrity: sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==}
+ engines: {node: '>= 0.10.0'}
+
ext@1.7.0:
resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
@@ -9055,8 +9056,8 @@ packages:
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
- fast-uri@3.0.2:
- resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==}
+ fast-uri@3.0.3:
+ resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
fast-xml-parser@4.4.1:
resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
@@ -9163,8 +9164,8 @@ packages:
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
- flow-parser@0.247.1:
- resolution: {integrity: sha512-DHwcm06fWbn2Z6uFD3NaBZ5lMOoABIQ4asrVA80IWvYjjT5WdbghkUOL1wIcbLcagnFTdCZYOlSNnKNp/xnRZQ==}
+ flow-parser@0.250.0:
+ resolution: {integrity: sha512-8mkLh/CotlvqA9vCyQMbhJoPx2upEg9oKxARAayz8zQ58wCdABnTZy6U4xhMHvHvbTUFgZQk4uH2cglOCOel5A==}
engines: {node: '>=0.4.0'}
fn-args@5.0.0:
@@ -9204,12 +9205,12 @@ packages:
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
engines: {node: '>= 0.12'}
- form-data@2.5.1:
- resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==}
+ form-data@2.5.2:
+ resolution: {integrity: sha512-GgwY0PS7DbXqajuGf4OYlsrIu3zgxD6Vvql43IBhm6MahqA5SK/7mwhtNj2AdH2z35YR34ujJ7BN+3fFC3jP5Q==}
engines: {node: '>= 0.12'}
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ form-data@4.0.1:
+ resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -9329,13 +9330,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.2.0:
- resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ get-east-asian-width@1.3.0:
+ resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
engines: {node: '>=18'}
- get-func-name@2.0.2:
- resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
-
get-intrinsic@1.2.4:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
@@ -9438,8 +9436,8 @@ packages:
resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
engines: {node: '>=18'}
- google-auth-library@9.14.1:
- resolution: {integrity: sha512-Rj+PMjoNFGFTmtItH7gHfbHpGVSb3vmnGK3nwNBqxQF9NoBpttSZI/rc0WiM63ma2uGDQtYEkMHkK9U6937NiA==}
+ google-auth-library@9.14.2:
+ resolution: {integrity: sha512-R+FRIfk1GBo3RdlRYWPdwk8nmtVUOn6+BkDomAC46KoU8kzXzE1HLmOasSCbWUByMMAGkknVF0G5kQ69Vj7dlA==}
engines: {node: '>=14'}
googleapis-common@7.2.0:
@@ -9561,10 +9559,6 @@ packages:
resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==}
engines: {node: '>=4'}
- hash-base@3.1.0:
- resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
- engines: {node: '>=4'}
-
hash.js@1.1.7:
resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
@@ -9593,8 +9587,8 @@ packages:
hast-util-to-html@9.0.3:
resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==}
- hast-util-to-jsx-runtime@2.3.0:
- resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==}
+ hast-util-to-jsx-runtime@2.3.2:
+ resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==}
hast-util-to-string@3.0.1:
resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==}
@@ -9668,8 +9662,8 @@ packages:
peerDependencies:
webpack: ^5.20.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
@@ -9806,8 +9800,8 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-in-the-middle@1.11.1:
- resolution: {integrity: sha512-lGdg70ECFGv/OHQXL/IPhcxkFPeQ7YA4zborlA54XHVr58oM50QNxItRiayHMqj1MspC5Y9zaHf+QHod/gq7Ug==}
+ import-in-the-middle@1.11.2:
+ resolution: {integrity: sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==}
import-local@3.2.0:
resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
@@ -10077,9 +10071,6 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
- is-reference@3.0.2:
- resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==}
-
is-regex@1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
@@ -10196,8 +10187,9 @@ packages:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
- iterator.prototype@1.1.2:
- resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
+ engines: {node: '>= 0.4'}
jackspeak@2.3.6:
resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
@@ -10424,13 +10416,9 @@ packages:
canvas:
optional: true
- jsesc@0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
- hasBin: true
-
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
json-bigint@1.0.0:
@@ -10493,8 +10481,8 @@ packages:
jsonp@0.2.1:
resolution: {integrity: sha512-pfog5gdDxPdV4eP7Kg87M8/bHgshlZ5pybl+yKxAnCZ5O7lCIn7Ixydj03wOlnDQesky2BPyA91SQ+5Y/mNwzw==}
- jsonwebtoken@9.0.1:
- resolution: {integrity: sha512-K8wx7eJ5TPvEjuiVSkv167EVboBDv9PZdDoF7BgeQnBLVvZWW9clr2PsQHVJDTKaEIH5JBIwHujGcHp7GgI2eg==}
+ jsonwebtoken@9.0.2:
+ resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==}
engines: {node: '>=12', npm: '>=6'}
jsprim@1.4.2:
@@ -10611,8 +10599,8 @@ packages:
engines: {node: '>=18.12.0'}
hasBin: true
- listr2@8.2.4:
- resolution: {integrity: sha512-opevsywziHd3zHCVQGAj8zu+Z3yHNkkoYhWIGnq54RrCVwLz0MozotJEDnKsIBLvkfLGN6BLOyAeRrYI0pKA4g==}
+ listr2@8.2.5:
+ resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
load-plugin@6.0.3:
@@ -10661,12 +10649,33 @@ packages:
lodash.get@4.4.2:
resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
+ lodash.includes@4.3.0:
+ resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==}
+
+ lodash.isboolean@3.0.3:
+ resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
+
lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+ lodash.isinteger@4.0.4:
+ resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==}
+
+ lodash.isnumber@3.0.3:
+ resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==}
+
+ lodash.isplainobject@4.0.6:
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
+
+ lodash.isstring@4.0.1:
+ resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==}
+
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+ lodash.once@4.1.1:
+ resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
+
lodash.startcase@4.4.0:
resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==}
@@ -10691,8 +10700,8 @@ packages:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
- loupe@3.1.1:
- resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==}
+ loupe@3.1.2:
+ resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -10720,8 +10729,8 @@ packages:
m3u8-parser@7.2.0:
resolution: {integrity: sha512-CRatFqpjVtMiMaKXxNvuI3I++vUumIXVVT/JpCpdU/FynV/ceVw1qpPyyBNindL+JlPMSesx+WX1QJaZEJSaMQ==}
- magic-string@0.30.11:
- resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
magic-string@0.30.8:
resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
@@ -10739,9 +10748,6 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
- make-error@1.3.6:
- resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
-
make-fetch-happen@9.1.0:
resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==}
engines: {node: '>= 10'}
@@ -10775,8 +10781,8 @@ packages:
mdast-util-from-markdown@0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
- mdast-util-from-markdown@2.0.1:
- resolution: {integrity: sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==}
+ mdast-util-from-markdown@2.0.2:
+ resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
mdast-util-frontmatter@2.0.1:
resolution: {integrity: sha512-LRqI9+wdgC25P0URIJY9vwocIzCcksduHQ9OF2joxQoyTNVduwLAFUzjoopuRJbJAReaKrNQKAZKL3uCMugWJA==}
@@ -11087,8 +11093,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.7.1:
- resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+ mlly@1.7.2:
+ resolution: {integrity: sha512-tN3dvVHYVz4DhSXinXIk7u9syPYaJvio118uomkovAtWBT+RdbP6Lfh/5Lvo519YMmwBafwlh20IPTXIStscpA==}
module-details-from-path@1.0.3:
resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==}
@@ -11122,8 +11128,8 @@ packages:
resolution: {integrity: sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==}
engines: {node: '>=4.0.0'}
- mpd-parser@1.3.0:
- resolution: {integrity: sha512-WgeIwxAqkmb9uTn4ClicXpEQYCEduDqRKfmUdp4X8vmghKfBNXZLYpREn9eqrDx/Tf5LhzRcJLSpi4ohfV742Q==}
+ mpd-parser@1.3.1:
+ resolution: {integrity: sha512-1FuyEWI5k2HcmhS1HkKnUAQV7yFPfXPht2DnRRGtoiiAAW+ESTbtEXIDpRkwdU+XyrQuwrIym7UkoPKsZ0SyFw==}
hasBin: true
mquery@4.0.3:
@@ -11152,6 +11158,11 @@ packages:
engines: {node: '>=8', npm: '>=5'}
hasBin: true
+ mux.js@7.1.0:
+ resolution: {integrity: sha512-NTxawK/BBELJrYsZThEulyUMDVlLizKdxyAsMuzoCD1eFj97BVaA8D/CvKsKu6FOLYkFojN5CbM9h++ZTZtknA==}
+ engines: {node: '>=8', npm: '>=5'}
+ hasBin: true
+
mylas@2.1.13:
resolution: {integrity: sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg==}
engines: {node: '>=12.0.0'}
@@ -11179,14 +11190,18 @@ 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'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- next-auth@4.24.8:
- resolution: {integrity: sha512-SLt3+8UCtklsotnz2p+nB4aN3IHNmpsQFAZ24VLxGotWGzSxkBh192zxNhm/J5wgkcrDWVp0bwqvW0HksK/Lcw==}
+ next-auth@4.24.10:
+ resolution: {integrity: sha512-8NGqiRO1GXBcVfV8tbbGcUgQkAGsX4GRzzXXea4lDikAsJtD5KiEY34bfhUOjHLvr6rT6afpcxw2H8EZqOV6aQ==}
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
@@ -11218,8 +11233,8 @@ packages:
next-tick@1.1.0:
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
- next@14.2.13:
- resolution: {integrity: sha512-BseY9YNw8QJSwLYD7hlZzl6QVDoSFHL/URN5K64kVEVpCsSOWeyjbIGK+dZUaRViHTaMQX8aqmnn0PHBbGZezg==}
+ next@14.2.16:
+ resolution: {integrity: sha512-LcO7WnFu6lYSvCzZoo1dB+IO0xXz5uEv52HF1IUN0IqVTUIZGHuuR10I5efiLadGt+4oZqTcNZyVVEem/TM5nA==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -11239,8 +11254,8 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-abi@3.68.0:
- resolution: {integrity: sha512-7vbj10trelExNjFSBm5kTvZXXa7pZyKWx9RCKIyqe6I9Ev3IzGpQoqBP3a+cOdxY+pWj6VkP28n/2wWysBHD/A==}
+ node-abi@3.71.0:
+ resolution: {integrity: sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==}
engines: {node: '>=10'}
node-abort-controller@3.1.1:
@@ -11306,8 +11321,8 @@ packages:
nodemailer-sendgrid@1.0.3:
resolution: {integrity: sha512-To/veO2M4evjtv1XrY7BUgE+LDypgs/FBx4wOHb2UNTpvZhiARtvMaBI0685Yxkho0lIPJc4jS0cUE7v+XGNgg==}
- nodemailer@6.9.8:
- resolution: {integrity: sha512-cfrYUk16e67Ks051i4CntM9kshRYei1/o/Gi8K1d+R34OIs21xdFnW7Pt7EucmVKA0LKtqUGNcjMZ7ehjl49mQ==}
+ nodemailer@6.9.15:
+ resolution: {integrity: sha512-AHf04ySLC6CIfuRtRiEYtGEXgRfa6INgWGluDhnxTZhHSKvrBu7lc1VVchQ0d8nPc4cFaZoPq8vkyNoZr0TpGQ==}
engines: {node: '>=6.0.0'}
nopt@5.0.0:
@@ -11547,8 +11562,8 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
- package-manager-detector@0.2.0:
- resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==}
+ package-manager-detector@0.2.2:
+ resolution: {integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==}
pako@1.0.11:
resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
@@ -11588,8 +11603,8 @@ packages:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
- parse5@7.1.2:
- resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
+ parse5@7.2.1:
+ resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -11678,8 +11693,8 @@ packages:
pause@0.0.1:
resolution: {integrity: sha512-KG8UEiEVkR3wGEb4m5yZkVCzigAD+cVEJck2CzYZO37ZGJfctvVptVO192MwrtPhzONn6go8ylnOdMhKqi4nfg==}
- payload@2.30.0:
- resolution: {integrity: sha512-uKYEKZZw7M4YyT2pVwDdbF1g9nJuKirB5N+l8aMp7PIOaTMK9enora4pTdmcb/+O+f696c43TxNQc2qZ24mgCA==}
+ payload@2.30.3:
+ resolution: {integrity: sha512-D0kO+pcDK7zgfY1mfXjgsIxCH9fzCsZzMbIsonTAo1CWuK11R9jIwr0mn5BhUIenOjwwhXeiDSnXZflCJWhykQ==}
engines: {node: '>=14'}
hasBin: true
@@ -11694,9 +11709,6 @@ packages:
performance-now@2.1.0:
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
- periscopic@3.1.0:
- resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
-
pg-int8@1.0.1:
resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==}
engines: {node: '>=4.0.0'}
@@ -11708,13 +11720,17 @@ packages:
resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==}
engines: {node: '>=4'}
- 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'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
@@ -11761,8 +11777,8 @@ packages:
resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
engines: {node: '>=14.16'}
- pkg-types@1.2.0:
- resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==}
+ pkg-types@1.2.1:
+ resolution: {integrity: sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==}
pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
@@ -11773,13 +11789,13 @@ packages:
peerDependencies:
sharp: ^0.33.5
- playwright-core@1.47.2:
- resolution: {integrity: sha512-3JvMfF+9LJfe16l7AbSmU555PaTl2tPyQsVInqm3id16pdDfvZ8TTZ/pyzmkbDrZTQefyzU7AIHlZqQnxpqHVQ==}
+ playwright-core@1.48.2:
+ resolution: {integrity: sha512-sjjw+qrLFlriJo64du+EK0kJgZzoQPsabGF4lBvsid+3CNIZIYLgnMj9V6JY5VhM2Peh20DJWIVpVljLLnlawA==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.47.2:
- resolution: {integrity: sha512-nx1cLMmQWqmA3UsnjaaokyoUpdVaaDhJhMoxX2qj3McpjnsqFHs516QAKYhqHAgOP+oCFTEOCOAaD1RgD/RQfA==}
+ playwright@1.48.2:
+ resolution: {integrity: sha512-NjYvYgp4BPmiwfe31j4gHLa3J7bD2WiBz8Lk2RoSsmX38SVIARZ18VYjxLjAcDsAhA+F4iSEXTSGgjua0rrlgQ==}
engines: {node: '>=18'}
hasBin: true
@@ -12041,8 +12057,8 @@ packages:
peerDependencies:
preact: '>=10'
- preact@10.24.1:
- resolution: {integrity: sha512-PnBAwFI3Yjxxcxw75n6VId/5TFxNW/81zexzWD9jn1+eSrOP84NdsS38H5IkF/UH3frqRPT+MvuCoVHjTDTnDw==}
+ preact@10.24.3:
+ resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
prebuild-install@7.1.2:
resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==}
@@ -12160,10 +12176,6 @@ packages:
resolution: {integrity: sha512-ymlixxD/0Bj3BMY9x1z8ENdQdhkmsIbDNyVvfM8soHn5p/CRFlLPrmtxmE5aG//q1PzHHSGuLi+6QlHezivseg==}
engines: {node: '>=0.10'}
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
- engines: {node: '>=0.6'}
-
qs@6.11.2:
resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==}
engines: {node: '>=0.6'}
@@ -12269,8 +12281,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@18.3.1:
@@ -12495,6 +12507,18 @@ packages:
resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==}
engines: {node: '>= 0.10'}
+ 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==}
+
redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
@@ -12522,19 +12546,22 @@ packages:
regex-parser@2.3.0:
resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==}
- regex@4.3.2:
- resolution: {integrity: sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==}
+ regex@4.3.3:
+ resolution: {integrity: sha512-r/AadFO7owAq1QJVeZ/nq9jNS1vyZt+6t1p/E59B56Rn2GCya+gr1KSyOzNL/er+r+B7phv5jG2xU2Nz1YkmJg==}
- regexp.prototype.flags@1.5.2:
- resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ regexp.prototype.flags@1.5.3:
+ resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
engines: {node: '>= 0.4'}
- regexpu-core@5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ regexpu-core@6.1.1:
+ resolution: {integrity: sha512-k67Nb9jvwJcJmVpw0jPttR1/zVfnKf8Km0IPatrU/zJ5XeG3+Slx0xLXs9HByJSzXzrlz5EDvN6yLNMDc2qdnw==}
engines: {node: '>=4'}
- regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
+
+ regjsparser@0.11.2:
+ resolution: {integrity: sha512-3OGZZ4HoLJkkAZx/48mTXJNlmqTGOzc0o9OWQPuWpkOlXXPbyN6OafCcoXUnBqE2D3f/T5L+pWc1kdEmnfnRsA==}
hasBin: true
rehackt@0.1.0:
@@ -12563,6 +12590,9 @@ packages:
peerDependencies:
shiki: ^1.3.0
+ rehype-recma@1.0.0:
+ resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==}
+
rehype-slug@6.0.0:
resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==}
@@ -12576,8 +12606,8 @@ packages:
remark-mdx-frontmatter@5.0.0:
resolution: {integrity: sha512-kI75pshe27TM71R+0iX7C3p4MbGMdygkvSbrk1WYSar88WAwR2JfQilofcDGgDNFAWUo5IwTPyq9XvGpifTwqQ==}
- 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@11.0.0:
resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
@@ -12796,9 +12826,6 @@ packages:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
- scheduler@0.23.0:
- resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
-
scheduler@0.23.2:
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
@@ -12891,8 +12918,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@1.21.0:
- resolution: {integrity: sha512-apCH5BoWTrmHDPGgg3RF8+HAAbEL/CdbYr8rMw7eIrdhCkZHdVGat5mMNlRtd1erNG01VPMIKHNQ0Pj2HMAiog==}
+ shiki@1.22.2:
+ resolution: {integrity: sha512-3IZau0NdGKXhH2bBlUk4w1IHNxPh6A5B2sUpyY+8utLu2j/h1QpFkAaUA1bAMxOWWGtTWcAh531vnS4NJKS/lA==}
shimmer@1.2.1:
resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==}
@@ -13095,8 +13122,8 @@ packages:
resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
engines: {node: '>= 0.4'}
- storybook@8.3.4:
- resolution: {integrity: sha512-nzvuK5TsEgJwcWGLGgafabBOxKn37lfJVv7ZoUVPgJIjk2mNRyJDFwYRJzUZaD37eiR/c/lQ6MoaeqlGwiXoxw==}
+ storybook@8.3.6:
+ resolution: {integrity: sha512-9GVbtej6ZzPRUM7KRQ7848506FfHrUiJGqPuIQdoSJd09EmuEoLjmLAgEOmrHBQKgGYMaM7Vh9GsTLim6vwZTQ==}
hasBin: true
stream-browserify@3.0.0:
@@ -13136,8 +13163,9 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
- string.prototype.includes@2.0.0:
- resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==}
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
string.prototype.matchall@4.0.11:
resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
@@ -13297,12 +13325,6 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
- swc-loader@0.2.3:
- resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==}
- peerDependencies:
- '@swc/core': ^1.2.147
- webpack: '>=2'
-
swc-loader@0.2.6:
resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==}
peerDependencies:
@@ -13327,8 +13349,8 @@ packages:
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
- synckit@0.9.1:
- resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
+ synckit@0.9.2:
+ resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
engines: {node: ^14.18.0 || >=16.0.0}
tabbable@5.3.3:
@@ -13380,24 +13402,8 @@ packages:
uglify-js:
optional: true
- terser-webpack-plugin@5.3.9:
- resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
- 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@5.34.1:
- resolution: {integrity: sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==}
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
engines: {node: '>=10'}
hasBin: true
@@ -13459,10 +13465,6 @@ packages:
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
@@ -13542,20 +13544,6 @@ packages:
ts-invariant@0.4.4:
resolution: {integrity: sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA==}
- ts-node@10.9.2:
- resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
- hasBin: true
- peerDependencies:
- '@swc/core': '>=1.2.50'
- '@swc/wasm': '>=1.2.50'
- '@types/node': '*'
- typescript: '>=2.7'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- '@swc/wasm':
- optional: true
-
ts-pnp@1.2.0:
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
@@ -13586,8 +13574,8 @@ packages:
tslib@2.6.3:
resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
- tslib@2.7.0:
- resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
+ tslib@2.8.0:
+ resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==}
tsutils@3.21.0:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
@@ -13595,8 +13583,8 @@ packages:
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
- tsx@4.19.1:
- resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
+ tsx@4.19.2:
+ resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -13606,38 +13594,38 @@ packages:
tunnel-agent@0.6.0:
resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==}
- turbo-darwin-64@2.1.2:
- resolution: {integrity: sha512-3TEBxHWh99h2yIzkuIigMEOXt/ItYQp0aPiJjPd1xN4oDcsKK5AxiFKPH9pdtfIBzYsY59kQhZiFj0ELnSP7Bw==}
+ turbo-darwin-64@2.2.3:
+ resolution: {integrity: sha512-Rcm10CuMKQGcdIBS3R/9PMeuYnv6beYIHqfZFeKWVYEWH69sauj4INs83zKMTUiZJ3/hWGZ4jet9AOwhsssLyg==}
cpu: [x64]
os: [darwin]
- turbo-darwin-arm64@2.1.2:
- resolution: {integrity: sha512-he0miWNq2WxJzsH82jS2Z4MXpnkzn9SH8a79iPXiJkq25QREImucscM4RPasXm8wARp91pyysJMq6aasD45CeA==}
+ turbo-darwin-arm64@2.2.3:
+ resolution: {integrity: sha512-+EIMHkuLFqUdJYsA3roj66t9+9IciCajgj+DVek+QezEdOJKcRxlvDOS2BUaeN8kEzVSsNiAGnoysFWYw4K0HA==}
cpu: [arm64]
os: [darwin]
- turbo-linux-64@2.1.2:
- resolution: {integrity: sha512-fKUBcc0rK8Vdqv5a/E3CSpMBLG1bzwv+Q0Q83F8fG2ZfNCNKGbcEYABdonNZkkx141Rj03cZQFCgxu3MVEGU+A==}
+ turbo-linux-64@2.2.3:
+ resolution: {integrity: sha512-UBhJCYnqtaeOBQLmLo8BAisWbc9v9daL9G8upLR+XGj6vuN/Nz6qUAhverN4Pyej1g4Nt1BhROnj6GLOPYyqxQ==}
cpu: [x64]
os: [linux]
- turbo-linux-arm64@2.1.2:
- resolution: {integrity: sha512-sV8Bpmm0WiuxgbhxymcC7wSsuxfBBieI98GegSwbr/bs1ANAgzCg93urIrdKdQ3/b31zZxQwcaP4FBF1wx1Qdg==}
+ turbo-linux-arm64@2.2.3:
+ resolution: {integrity: sha512-hJYT9dN06XCQ3jBka/EWvvAETnHRs3xuO/rb5bESmDfG+d9yQjeTMlhRXKrr4eyIMt6cLDt1LBfyi+6CQ+VAwQ==}
cpu: [arm64]
os: [linux]
- turbo-windows-64@2.1.2:
- resolution: {integrity: sha512-wcmIJZI9ORT9ykHGliFE6kWRQrlH930QGSjSgWC8uFChFFuOyUlvC7ttcxuSvU9VqC7NF4C+GVAcFJQ8lTjN7g==}
+ turbo-windows-64@2.2.3:
+ resolution: {integrity: sha512-NPrjacrZypMBF31b4HE4ROg4P3nhMBPHKS5WTpMwf7wydZ8uvdEHpESVNMOtqhlp857zbnKYgP+yJF30H3N2dQ==}
cpu: [x64]
os: [win32]
- turbo-windows-arm64@2.1.2:
- resolution: {integrity: sha512-zdnXjrhk7YO6CP+Q5wPueEvOCLH4lDa6C4rrwiakcWcPgcQGbVozJlo4uaQ6awo8HLWQEvOwu84RkWTdLAc/Hw==}
+ turbo-windows-arm64@2.2.3:
+ resolution: {integrity: sha512-fnNrYBCqn6zgKPKLHu4sOkihBI/+0oYFr075duRxqUZ+1aLWTAGfHZLgjVeLh3zR37CVzuerGIPWAEkNhkWEIw==}
cpu: [arm64]
os: [win32]
- turbo@2.1.2:
- resolution: {integrity: sha512-Jb0rbU4iHEVQ18An/YfakdIv9rKnd3zUfSE117EngrfWXFHo3RndVH96US3GsT8VHpwTncPePDBT2t06PaFLrw==}
+ turbo@2.2.3:
+ resolution: {integrity: sha512-5lDvSqIxCYJ/BAd6rQGK/AzFRhBkbu4JHVMLmGh/hCb7U3CqSnr5Tjwfy9vc+/5wG2DJ6wttgAaA7MoCgvBKZQ==}
hasBin: true
tweetnacl@0.14.5:
@@ -13701,8 +13689,8 @@ packages:
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- typescript@5.6.2:
- resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==}
+ typescript@5.6.3:
+ resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -13790,8 +13778,8 @@ packages:
unplugin@1.0.1:
resolution: {integrity: sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==}
- unplugin@1.14.1:
- resolution: {integrity: sha512-lBlHbfSFPToDYp9pjXlUEFVxYLaue9f9T1HC+4OHlmj+HnMDdz9oZY+erXfoCe/5V/7gKUSY2jpXPb9S7f0f/w==}
+ unplugin@1.15.0:
+ resolution: {integrity: sha512-jTPIs63W+DUEDW207ztbaoO7cQ4p5aVaB823LSlxpsFEU3Mykwxf3ZGC/wzxFJeZlASZYgVrWeo7LgOrqJZ8RA==}
engines: {node: '>=14.0.0'}
peerDependencies:
webpack-sources: ^3
@@ -13824,9 +13812,6 @@ packages:
url-template@2.0.8:
resolution: {integrity: sha512-XdVKMF4SJ0nP/O7XIPB0JwAEuT9lDIYnNsK8yGVe43y0AWoKeJNdv3ZNWh7ksJ6KqQFjOO6ox/VEitLnaVNufw==}
- url-toolkit@2.2.5:
- resolution: {integrity: sha512-mtN6xk+Nac+oyJ/PrI7tzfmomRVNFIWKUbG8jdYFt52hxbiReFAXIjYskvu64/dvuW71IcB7lV8l0HvZMac6Jg==}
-
url@0.10.3:
resolution: {integrity: sha512-hzSUW2q06EqL1gKM/a+obYHLIO6ct2hwPuviqTTOcfFVc61UbfJ2Q32+uGL/HCPxKqrdGB5QUwIe7UqlDgwsOQ==}
@@ -13903,9 +13888,6 @@ packages:
engines: {node: '>=8'}
hasBin: true
- v8-compile-cache-lib@3.0.1:
- resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
-
v8-to-istanbul@9.3.0:
resolution: {integrity: sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==}
engines: {node: '>=10.12.0'}
@@ -14207,8 +14189,8 @@ packages:
peerDependencies:
react: '>=16.6.0'
- video.js@8.17.4:
- resolution: {integrity: sha512-AECieAxKMKB/QgYK36ci50phfpWys6bFT6+pGMpSafeFYSoZaQ2Vpl83T9Qqcesv4TO7oNtiycnVeaBnrva2oA==}
+ video.js@8.19.1:
+ resolution: {integrity: sha512-MVuayhXpzTBv5Jk3nYEU2akawPhuBBlizEbpQGx2i+6FiBmqxGjkrkLdDLOzG54ut7xapjp26IfWQLGSpeLmcQ==}
videojs-contrib-quality-levels@4.1.0:
resolution: {integrity: sha512-TfrXJJg1Bv4t6TOCMEVMwF/CoS8iENYsWNKip8zfhB5kTcegiFYezEA0eHAJPU64ZC8NQbxQgOwAsYU8VXbOWA==}
@@ -14542,6 +14524,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@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
@@ -14550,10 +14537,6 @@ packages:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
- yn@3.1.1:
- resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
- engines: {node: '>=6'}
-
yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
@@ -14586,13 +14569,13 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@apidevtools/json-schema-ref-parser@11.7.0':
+ '@apidevtools/json-schema-ref-parser@11.7.2':
dependencies:
'@jsdevtools/ono': 7.1.3
'@types/json-schema': 7.0.15
js-yaml: 4.1.0
- '@apollo/client@3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@apollo/client@3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@15.9.0)
'@wry/caches': 1.0.1
@@ -14603,11 +14586,11 @@ snapshots:
hoist-non-react-statics: 3.3.2
optimism: 0.18.0
prop-types: 15.8.1
- rehackt: 0.1.0(@types/react@18.3.10)(react@18.3.1)
+ rehackt: 0.1.0(@types/react@18.3.12)(react@18.3.1)
response-iterator: 0.2.6
symbol-observable: 4.0.0
ts-invariant: 0.10.3
- tslib: 2.7.0
+ tslib: 2.8.0
zen-observable-ts: 1.2.5
optionalDependencies:
react: 18.3.1
@@ -14618,608 +14601,621 @@ snapshots:
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.654.0
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ tslib: 2.8.0
'@aws-crypto/crc32c@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.654.0
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ tslib: 2.8.0
'@aws-crypto/sha1-browser@5.2.0':
dependencies:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-locate-window': 3.568.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-locate-window': 3.679.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-crypto/sha256-browser@5.2.0':
dependencies:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-locate-window': 3.568.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-locate-window': 3.679.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.654.0
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ tslib: 2.8.0
'@aws-crypto/supports-web-crypto@5.2.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.654.0
+ '@aws-sdk/types': 3.679.0
'@smithy/util-utf8': 2.3.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/client-cognito-identity@3.658.1':
+ '@aws-sdk/client-cognito-identity@3.679.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.658.1(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/client-sts': 3.658.1
- '@aws-sdk/core': 3.658.1
- '@aws-sdk/credential-provider-node': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/middleware-host-header': 3.654.0
- '@aws-sdk/middleware-logger': 3.654.0
- '@aws-sdk/middleware-recursion-detection': 3.654.0
- '@aws-sdk/middleware-user-agent': 3.654.0
- '@aws-sdk/region-config-resolver': 3.654.0
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-endpoints': 3.654.0
- '@aws-sdk/util-user-agent-browser': 3.654.0
- '@aws-sdk/util-user-agent-node': 3.654.0
- '@smithy/config-resolver': 3.0.8
- '@smithy/core': 2.4.6
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/hash-node': 3.0.6
- '@smithy/invalid-dependency': 3.0.6
- '@smithy/middleware-content-length': 3.0.8
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-retry': 3.0.21
- '@smithy/middleware-serde': 3.0.6
- '@smithy/middleware-stack': 3.0.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/node-http-handler': 3.2.3
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
+ '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/client-sts': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/middleware-host-header': 3.679.0
+ '@aws-sdk/middleware-logger': 3.679.0
+ '@aws-sdk/middleware-recursion-detection': 3.679.0
+ '@aws-sdk/middleware-user-agent': 3.679.0
+ '@aws-sdk/region-config-resolver': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-endpoints': 3.679.0
+ '@aws-sdk/util-user-agent-browser': 3.679.0
+ '@aws-sdk/util-user-agent-node': 3.679.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
+ '@smithy/fetch-http-handler': 3.2.9
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.21
- '@smithy/util-defaults-mode-node': 3.0.21
- '@smithy/util-endpoints': 2.1.2
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-retry': 3.0.6
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
optional: true
- '@aws-sdk/client-s3@3.658.1':
+ '@aws-sdk/client-s3@3.679.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.658.1(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/client-sts': 3.658.1
- '@aws-sdk/core': 3.658.1
- '@aws-sdk/credential-provider-node': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/middleware-bucket-endpoint': 3.654.0
- '@aws-sdk/middleware-expect-continue': 3.654.0
- '@aws-sdk/middleware-flexible-checksums': 3.658.1
- '@aws-sdk/middleware-host-header': 3.654.0
- '@aws-sdk/middleware-location-constraint': 3.654.0
- '@aws-sdk/middleware-logger': 3.654.0
- '@aws-sdk/middleware-recursion-detection': 3.654.0
- '@aws-sdk/middleware-sdk-s3': 3.658.1
- '@aws-sdk/middleware-ssec': 3.654.0
- '@aws-sdk/middleware-user-agent': 3.654.0
- '@aws-sdk/region-config-resolver': 3.654.0
- '@aws-sdk/signature-v4-multi-region': 3.658.1
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-endpoints': 3.654.0
- '@aws-sdk/util-user-agent-browser': 3.654.0
- '@aws-sdk/util-user-agent-node': 3.654.0
- '@aws-sdk/xml-builder': 3.654.0
- '@smithy/config-resolver': 3.0.8
- '@smithy/core': 2.4.6
- '@smithy/eventstream-serde-browser': 3.0.9
- '@smithy/eventstream-serde-config-resolver': 3.0.6
- '@smithy/eventstream-serde-node': 3.0.8
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/hash-blob-browser': 3.1.5
- '@smithy/hash-node': 3.0.6
- '@smithy/hash-stream-node': 3.1.5
- '@smithy/invalid-dependency': 3.0.6
- '@smithy/md5-js': 3.0.6
- '@smithy/middleware-content-length': 3.0.8
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-retry': 3.0.21
- '@smithy/middleware-serde': 3.0.6
- '@smithy/middleware-stack': 3.0.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/node-http-handler': 3.2.3
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
+ '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/client-sts': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/middleware-bucket-endpoint': 3.679.0
+ '@aws-sdk/middleware-expect-continue': 3.679.0
+ '@aws-sdk/middleware-flexible-checksums': 3.679.0
+ '@aws-sdk/middleware-host-header': 3.679.0
+ '@aws-sdk/middleware-location-constraint': 3.679.0
+ '@aws-sdk/middleware-logger': 3.679.0
+ '@aws-sdk/middleware-recursion-detection': 3.679.0
+ '@aws-sdk/middleware-sdk-s3': 3.679.0
+ '@aws-sdk/middleware-ssec': 3.679.0
+ '@aws-sdk/middleware-user-agent': 3.679.0
+ '@aws-sdk/region-config-resolver': 3.679.0
+ '@aws-sdk/signature-v4-multi-region': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-endpoints': 3.679.0
+ '@aws-sdk/util-user-agent-browser': 3.679.0
+ '@aws-sdk/util-user-agent-node': 3.679.0
+ '@aws-sdk/xml-builder': 3.679.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
+ '@smithy/eventstream-serde-browser': 3.0.11
+ '@smithy/eventstream-serde-config-resolver': 3.0.8
+ '@smithy/eventstream-serde-node': 3.0.10
+ '@smithy/fetch-http-handler': 3.2.9
+ '@smithy/hash-blob-browser': 3.1.7
+ '@smithy/hash-node': 3.0.8
+ '@smithy/hash-stream-node': 3.1.7
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/md5-js': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.21
- '@smithy/util-defaults-mode-node': 3.0.21
- '@smithy/util-endpoints': 2.1.2
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-retry': 3.0.6
- '@smithy/util-stream': 3.1.8
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
+ '@smithy/util-stream': 3.2.1
'@smithy/util-utf8': 3.0.0
- '@smithy/util-waiter': 3.1.5
- tslib: 2.7.0
+ '@smithy/util-waiter': 3.1.7
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1)':
+ '@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0)':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sts': 3.658.1
- '@aws-sdk/core': 3.658.1
- '@aws-sdk/credential-provider-node': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/middleware-host-header': 3.654.0
- '@aws-sdk/middleware-logger': 3.654.0
- '@aws-sdk/middleware-recursion-detection': 3.654.0
- '@aws-sdk/middleware-user-agent': 3.654.0
- '@aws-sdk/region-config-resolver': 3.654.0
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-endpoints': 3.654.0
- '@aws-sdk/util-user-agent-browser': 3.654.0
- '@aws-sdk/util-user-agent-node': 3.654.0
- '@smithy/config-resolver': 3.0.8
- '@smithy/core': 2.4.6
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/hash-node': 3.0.6
- '@smithy/invalid-dependency': 3.0.6
- '@smithy/middleware-content-length': 3.0.8
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-retry': 3.0.21
- '@smithy/middleware-serde': 3.0.6
- '@smithy/middleware-stack': 3.0.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/node-http-handler': 3.2.3
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
+ '@aws-sdk/client-sts': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/middleware-host-header': 3.679.0
+ '@aws-sdk/middleware-logger': 3.679.0
+ '@aws-sdk/middleware-recursion-detection': 3.679.0
+ '@aws-sdk/middleware-user-agent': 3.679.0
+ '@aws-sdk/region-config-resolver': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-endpoints': 3.679.0
+ '@aws-sdk/util-user-agent-browser': 3.679.0
+ '@aws-sdk/util-user-agent-node': 3.679.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
+ '@smithy/fetch-http-handler': 3.2.9
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.21
- '@smithy/util-defaults-mode-node': 3.0.21
- '@smithy/util-endpoints': 2.1.2
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-retry': 3.0.6
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.658.1':
+ '@aws-sdk/client-sso@3.679.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.658.1
- '@aws-sdk/middleware-host-header': 3.654.0
- '@aws-sdk/middleware-logger': 3.654.0
- '@aws-sdk/middleware-recursion-detection': 3.654.0
- '@aws-sdk/middleware-user-agent': 3.654.0
- '@aws-sdk/region-config-resolver': 3.654.0
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-endpoints': 3.654.0
- '@aws-sdk/util-user-agent-browser': 3.654.0
- '@aws-sdk/util-user-agent-node': 3.654.0
- '@smithy/config-resolver': 3.0.8
- '@smithy/core': 2.4.6
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/hash-node': 3.0.6
- '@smithy/invalid-dependency': 3.0.6
- '@smithy/middleware-content-length': 3.0.8
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-retry': 3.0.21
- '@smithy/middleware-serde': 3.0.6
- '@smithy/middleware-stack': 3.0.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/node-http-handler': 3.2.3
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/middleware-host-header': 3.679.0
+ '@aws-sdk/middleware-logger': 3.679.0
+ '@aws-sdk/middleware-recursion-detection': 3.679.0
+ '@aws-sdk/middleware-user-agent': 3.679.0
+ '@aws-sdk/region-config-resolver': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-endpoints': 3.679.0
+ '@aws-sdk/util-user-agent-browser': 3.679.0
+ '@aws-sdk/util-user-agent-node': 3.679.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
+ '@smithy/fetch-http-handler': 3.2.9
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.21
- '@smithy/util-defaults-mode-node': 3.0.21
- '@smithy/util-endpoints': 2.1.2
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-retry': 3.0.6
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sts@3.658.1':
+ '@aws-sdk/client-sts@3.679.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.658.1(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/core': 3.658.1
- '@aws-sdk/credential-provider-node': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/middleware-host-header': 3.654.0
- '@aws-sdk/middleware-logger': 3.654.0
- '@aws-sdk/middleware-recursion-detection': 3.654.0
- '@aws-sdk/middleware-user-agent': 3.654.0
- '@aws-sdk/region-config-resolver': 3.654.0
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-endpoints': 3.654.0
- '@aws-sdk/util-user-agent-browser': 3.654.0
- '@aws-sdk/util-user-agent-node': 3.654.0
- '@smithy/config-resolver': 3.0.8
- '@smithy/core': 2.4.6
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/hash-node': 3.0.6
- '@smithy/invalid-dependency': 3.0.6
- '@smithy/middleware-content-length': 3.0.8
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-retry': 3.0.21
- '@smithy/middleware-serde': 3.0.6
- '@smithy/middleware-stack': 3.0.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/node-http-handler': 3.2.3
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
+ '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/middleware-host-header': 3.679.0
+ '@aws-sdk/middleware-logger': 3.679.0
+ '@aws-sdk/middleware-recursion-detection': 3.679.0
+ '@aws-sdk/middleware-user-agent': 3.679.0
+ '@aws-sdk/region-config-resolver': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-endpoints': 3.679.0
+ '@aws-sdk/util-user-agent-browser': 3.679.0
+ '@aws-sdk/util-user-agent-node': 3.679.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/core': 2.5.1
+ '@smithy/fetch-http-handler': 3.2.9
+ '@smithy/hash-node': 3.0.8
+ '@smithy/invalid-dependency': 3.0.8
+ '@smithy/middleware-content-length': 3.0.10
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-retry': 3.0.25
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
'@smithy/util-base64': 3.0.0
'@smithy/util-body-length-browser': 3.0.0
'@smithy/util-body-length-node': 3.0.0
- '@smithy/util-defaults-mode-browser': 3.0.21
- '@smithy/util-defaults-mode-node': 3.0.21
- '@smithy/util-endpoints': 2.1.2
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-retry': 3.0.6
+ '@smithy/util-defaults-mode-browser': 3.0.25
+ '@smithy/util-defaults-mode-node': 3.0.25
+ '@smithy/util-endpoints': 2.1.4
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/core@3.658.1':
- dependencies:
- '@smithy/core': 2.4.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/property-provider': 3.1.6
- '@smithy/protocol-http': 4.1.3
- '@smithy/signature-v4': 4.1.4
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/util-middleware': 3.0.6
+ '@aws-sdk/core@3.679.0':
+ dependencies:
+ '@aws-sdk/types': 3.679.0
+ '@smithy/core': 2.5.1
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/signature-v4': 4.2.1
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-middleware': 3.0.8
fast-xml-parser: 4.4.1
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/credential-provider-cognito-identity@3.658.1':
+ '@aws-sdk/credential-provider-cognito-identity@3.679.0':
dependencies:
- '@aws-sdk/client-cognito-identity': 3.658.1
- '@aws-sdk/types': 3.654.0
- '@smithy/property-provider': 3.1.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/client-cognito-identity': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- aws-crt
optional: true
- '@aws-sdk/credential-provider-env@3.654.0':
- dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/property-provider': 3.1.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
-
- '@aws-sdk/credential-provider-http@3.658.1':
- dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/node-http-handler': 3.2.3
- '@smithy/property-provider': 3.1.6
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/util-stream': 3.1.8
- tslib: 2.7.0
-
- '@aws-sdk/credential-provider-ini@3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)':
- dependencies:
- '@aws-sdk/client-sts': 3.658.1
- '@aws-sdk/credential-provider-env': 3.654.0
- '@aws-sdk/credential-provider-http': 3.658.1
- '@aws-sdk/credential-provider-process': 3.654.0
- '@aws-sdk/credential-provider-sso': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
- '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/types': 3.654.0
- '@smithy/credential-provider-imds': 3.2.3
- '@smithy/property-provider': 3.1.6
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/credential-provider-env@3.679.0':
+ dependencies:
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
+
+ '@aws-sdk/credential-provider-http@3.679.0':
+ dependencies:
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/fetch-http-handler': 3.2.9
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-stream': 3.2.1
+ tslib: 2.8.0
+
+ '@aws-sdk/credential-provider-ini@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/credential-provider-env': 3.679.0
+ '@aws-sdk/credential-provider-http': 3.679.0
+ '@aws-sdk/credential-provider-process': 3.679.0
+ '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
+ '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/types': 3.679.0
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-node@3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.654.0
- '@aws-sdk/credential-provider-http': 3.658.1
- '@aws-sdk/credential-provider-ini': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/credential-provider-process': 3.654.0
- '@aws-sdk/credential-provider-sso': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
- '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/types': 3.654.0
- '@smithy/credential-provider-imds': 3.2.3
- '@smithy/property-provider': 3.1.6
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/credential-provider-node@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.679.0
+ '@aws-sdk/credential-provider-http': 3.679.0
+ '@aws-sdk/credential-provider-ini': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/credential-provider-process': 3.679.0
+ '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
+ '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/types': 3.679.0
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- '@aws-sdk/client-sts'
- aws-crt
- '@aws-sdk/credential-provider-process@3.654.0':
+ '@aws-sdk/credential-provider-process@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/property-provider': 3.1.6
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/credential-provider-sso@3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))':
+ '@aws-sdk/credential-provider-sso@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))':
dependencies:
- '@aws-sdk/client-sso': 3.658.1
- '@aws-sdk/token-providers': 3.654.0(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
- '@aws-sdk/types': 3.654.0
- '@smithy/property-provider': 3.1.6
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/client-sso': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/token-providers': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.654.0(@aws-sdk/client-sts@3.658.1)':
- dependencies:
- '@aws-sdk/client-sts': 3.658.1
- '@aws-sdk/types': 3.654.0
- '@smithy/property-provider': 3.1.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
-
- '@aws-sdk/credential-providers@3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))':
- dependencies:
- '@aws-sdk/client-cognito-identity': 3.658.1
- '@aws-sdk/client-sso': 3.658.1
- '@aws-sdk/client-sts': 3.658.1
- '@aws-sdk/credential-provider-cognito-identity': 3.658.1
- '@aws-sdk/credential-provider-env': 3.654.0
- '@aws-sdk/credential-provider-http': 3.658.1
- '@aws-sdk/credential-provider-ini': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/credential-provider-node': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/credential-provider-process': 3.654.0
- '@aws-sdk/credential-provider-sso': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
- '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/types': 3.654.0
- '@smithy/credential-provider-imds': 3.2.3
- '@smithy/property-provider': 3.1.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/credential-provider-web-identity@3.679.0(@aws-sdk/client-sts@3.679.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
+
+ '@aws-sdk/credential-providers@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))':
+ dependencies:
+ '@aws-sdk/client-cognito-identity': 3.679.0
+ '@aws-sdk/client-sso': 3.679.0
+ '@aws-sdk/client-sts': 3.679.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/credential-provider-cognito-identity': 3.679.0
+ '@aws-sdk/credential-provider-env': 3.679.0
+ '@aws-sdk/credential-provider-http': 3.679.0
+ '@aws-sdk/credential-provider-ini': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/credential-provider-process': 3.679.0
+ '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
+ '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/types': 3.679.0
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
optional: true
- '@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1)':
+ '@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0)':
dependencies:
- '@aws-sdk/client-s3': 3.658.1
- '@smithy/abort-controller': 3.1.4
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/smithy-client': 3.3.5
+ '@aws-sdk/client-s3': 3.679.0
+ '@smithy/abort-controller': 3.1.6
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/smithy-client': 3.4.2
buffer: 5.6.0
events: 3.3.0
stream-browserify: 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-bucket-endpoint@3.654.0':
+ '@aws-sdk/middleware-bucket-endpoint@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-arn-parser': 3.568.0
- '@smithy/node-config-provider': 3.1.7
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-arn-parser': 3.679.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
'@smithy/util-config-provider': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-expect-continue@3.654.0':
+ '@aws-sdk/middleware-expect-continue@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-flexible-checksums@3.658.1':
+ '@aws-sdk/middleware-flexible-checksums@3.679.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
'@aws-crypto/crc32c': 5.2.0
- '@aws-sdk/types': 3.654.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
'@smithy/is-array-buffer': 3.0.0
- '@smithy/node-config-provider': 3.1.7
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- '@smithy/util-middleware': 3.0.6
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ '@smithy/util-middleware': 3.0.8
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-host-header@3.654.0':
+ '@aws-sdk/middleware-host-header@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-location-constraint@3.654.0':
+ '@aws-sdk/middleware-location-constraint@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-logger@3.654.0':
+ '@aws-sdk/middleware-logger@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-recursion-detection@3.654.0':
+ '@aws-sdk/middleware-recursion-detection@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-sdk-s3@3.658.1':
+ '@aws-sdk/middleware-sdk-s3@3.679.0':
dependencies:
- '@aws-sdk/core': 3.658.1
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-arn-parser': 3.568.0
- '@smithy/core': 2.4.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/protocol-http': 4.1.3
- '@smithy/signature-v4': 4.1.4
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-arn-parser': 3.679.0
+ '@smithy/core': 2.5.1
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/signature-v4': 4.2.1
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-stream': 3.1.8
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-stream': 3.2.1
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-ssec@3.654.0':
+ '@aws-sdk/middleware-ssec@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/middleware-user-agent@3.654.0':
+ '@aws-sdk/middleware-user-agent@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@aws-sdk/util-endpoints': 3.654.0
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/core': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@aws-sdk/util-endpoints': 3.679.0
+ '@smithy/core': 2.5.1
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/region-config-resolver@3.654.0':
+ '@aws-sdk/region-config-resolver@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/node-config-provider': 3.1.7
- '@smithy/types': 3.4.2
+ '@aws-sdk/types': 3.679.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.6
- tslib: 2.7.0
+ '@smithy/util-middleware': 3.0.8
+ tslib: 2.8.0
- '@aws-sdk/signature-v4-multi-region@3.658.1':
+ '@aws-sdk/signature-v4-multi-region@3.679.0':
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.658.1
- '@aws-sdk/types': 3.654.0
- '@smithy/protocol-http': 4.1.3
- '@smithy/signature-v4': 4.1.4
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/middleware-sdk-s3': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/signature-v4': 4.2.1
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/token-providers@3.654.0(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))':
+ '@aws-sdk/token-providers@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))':
dependencies:
- '@aws-sdk/client-sso-oidc': 3.658.1(@aws-sdk/client-sts@3.658.1)
- '@aws-sdk/types': 3.654.0
- '@smithy/property-provider': 3.1.6
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.679.0)
+ '@aws-sdk/types': 3.679.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/types@3.654.0':
+ '@aws-sdk/types@3.679.0':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/util-arn-parser@3.568.0':
+ '@aws-sdk/util-arn-parser@3.679.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/util-endpoints@3.654.0':
+ '@aws-sdk/util-endpoints@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/types': 3.4.2
- '@smithy/util-endpoints': 2.1.2
- tslib: 2.7.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/types': 3.6.0
+ '@smithy/util-endpoints': 2.1.4
+ tslib: 2.8.0
- '@aws-sdk/util-locate-window@3.568.0':
+ '@aws-sdk/util-locate-window@3.679.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/util-user-agent-browser@3.654.0':
+ '@aws-sdk/util-user-agent-browser@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/types': 3.4.2
+ '@aws-sdk/types': 3.679.0
+ '@smithy/types': 3.6.0
bowser: 2.11.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@aws-sdk/util-user-agent-node@3.654.0':
+ '@aws-sdk/util-user-agent-node@3.679.0':
dependencies:
- '@aws-sdk/types': 3.654.0
- '@smithy/node-config-provider': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@aws-sdk/middleware-user-agent': 3.679.0
+ '@aws-sdk/types': 3.679.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@aws-sdk/xml-builder@3.654.0':
+ '@aws-sdk/xml-builder@3.679.0':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@babel/code-frame@7.24.7':
+ '@babel/code-frame@7.26.0':
dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.1.0
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.25.4': {}
+ '@babel/compat-data@7.26.0': {}
- '@babel/core@7.25.2':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.6
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helpers': 7.25.6
- '@babel/parser': 7.25.6
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
debug: 4.3.7
gensync: 1.0.0-beta.2
@@ -15228,873 +15224,838 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.25.1(@babel/core@7.25.2)(eslint@8.57.1)':
+ '@babel/eslint-parser@7.25.9(@babel/core@7.26.0)(eslint@8.57.1)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
eslint: 8.57.1
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.25.6':
+ '@babel/generator@7.26.0':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.24.7':
+ '@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ '@babel/helper-builder-binary-assignment-operator-visitor@7.25.9':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-compilation-targets@7.25.2':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.24.0
+ '@babel/compat-data': 7.26.0
+ '@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.25.4(@babel/core@7.25.2)':
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.26.0)
+ '@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.25.2(@babel/core@7.25.2)':
+ '@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
+ '@babel/core': 7.26.0
+ '@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.2)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
debug: 4.3.7
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.24.8':
+ '@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 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':
+ '@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
- '@babel/helper-plugin-utils@7.24.8': {}
+ '@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.0(@babel/core@7.25.2)':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.24.7':
+ '@babel/helper-simple-access@7.25.9':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-string-parser@7.24.8': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-validator-option@7.24.8': {}
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-wrap-function@7.25.0':
+ '@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.25.6':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
-
- '@babel/highlight@7.24.7':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
- '@babel/parser@7.25.6':
+ '@babel/parser@7.26.1':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@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.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/traverse': 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.2)':
- dependencies:
- '@babel/core': 7.25.2
-
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-flow@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@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.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.26.0)
+ '@babel/traverse': 7.25.9
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@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.2)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-flow-strip-types@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-flow': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/core': 7.26.0
+ '@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.1(@babel/core@7.25.2)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@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.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-constant-elements@7.25.1(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-constant-elements@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/types': 7.25.6
+ '@babel/core': 7.26.0
+ '@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.26.0)
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-runtime@7.25.4(@babel/core@7.25.2)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.25.9
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/core': 7.26.0
+ '@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.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@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.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
-
- '@babel/preset-env@7.25.4(@babel/core@7.25.2)':
- dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-async-generator-functions': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-classes': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.0
+ '@babel/core': 7.26.0
+ '@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.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.26.0)
core-js-compat: 3.38.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.7(@babel/core@7.25.2)':
+ '@babel/preset-flow@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@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.26.0)
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/types': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/types': 7.26.0
esutils: 2.0.3
- '@babel/preset-react@7.24.7(@babel/core@7.25.2)':
+ '@babel/preset-react@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@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.26.0)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
+ '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.9(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- '@babel/register@7.24.6(@babel/core@7.25.2)':
+ '@babel/register@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
pirates: 4.0.6
source-map-support: 0.5.21
- '@babel/regjsgen@0.8.0': {}
-
'@babel/runtime@7.0.0':
dependencies:
regenerator-runtime: 0.12.1
- '@babel/runtime@7.25.6':
+ '@babel/runtime@7.26.0':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.25.0':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
- '@babel/traverse@7.25.6':
+ '@babel/traverse@7.25.9':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.6
- '@babel/parser': 7.25.6
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.25.6':
+ '@babel/types@7.26.0':
dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.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': {}
@@ -16137,7 +16098,7 @@ snapshots:
transitivePeerDependencies:
- encoding
- '@changesets/cli@2.27.8':
+ '@changesets/cli@2.27.9':
dependencies:
'@changesets/apply-release-plan': 7.0.5
'@changesets/assemble-release-plan': 6.0.4
@@ -16154,17 +16115,15 @@ snapshots:
'@changesets/types': 6.0.0
'@changesets/write': 0.3.2
'@manypkg/get-packages': 1.1.3
- '@types/semver': 7.5.8
ansi-colors: 4.1.3
ci-info: 3.9.0
enquirer: 2.4.1
external-editor: 3.1.0
fs-extra: 7.0.1
mri: 1.2.0
- outdent: 0.5.0
p-limit: 2.3.0
- package-manager-detector: 0.2.0
- picocolors: 1.1.0
+ package-manager-detector: 0.2.2
+ picocolors: 1.1.1
resolve-from: 5.0.0
semver: 7.6.3
spawndamnit: 2.0.0
@@ -16188,7 +16147,7 @@ snapshots:
dependencies:
'@changesets/types': 6.0.0
'@manypkg/get-packages': 1.1.3
- picocolors: 1.1.0
+ picocolors: 1.1.1
semver: 7.6.3
'@changesets/get-github-info@0.6.0(encoding@0.1.13)':
@@ -16219,7 +16178,7 @@ snapshots:
'@changesets/logger@0.1.1':
dependencies:
- picocolors: 1.1.0
+ picocolors: 1.1.1
'@changesets/parse@0.4.0':
dependencies:
@@ -16241,7 +16200,7 @@ snapshots:
'@changesets/types': 6.0.0
fs-extra: 7.0.1
p-filter: 2.1.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
'@changesets/should-skip-package@0.1.1':
dependencies:
@@ -16262,10 +16221,10 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commons-ui/core@0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.10)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))':
+ '@commons-ui/core@0.1.0(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/styles@5.16.7(@types/react@18.3.12)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(simplebar-react@3.2.6(react@18.3.1))':
dependencies:
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/styles': 5.16.7(@types/react@18.3.10)(react@18.3.1)
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/styles': 5.16.7(@types/react@18.3.12)(react@18.3.1)
clsx: 1.2.1
prop-types: 15.8.1
react: 18.3.1
@@ -16274,11 +16233,6 @@ snapshots:
'@corex/deepmerge@2.6.148': {}
- '@cspotcode/source-map-support@0.8.1':
- dependencies:
- '@jridgewell/trace-mapping': 0.3.9
- optional: true
-
'@csstools/cascade-layer-name-parser@1.0.13(@csstools/css-parser-algorithms@2.7.1(@csstools/css-tokenizer@2.4.1))(@csstools/css-tokenizer@2.4.1)':
dependencies:
'@csstools/css-parser-algorithms': 2.7.1(@csstools/css-tokenizer@2.4.1)
@@ -16498,7 +16452,7 @@ snapshots:
'@dnd-kit/accessibility@3.1.0(react@18.3.1)':
dependencies:
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.0
'@dnd-kit/core@6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -16506,29 +16460,29 @@ snapshots:
'@dnd-kit/utilities': 3.2.2(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- tslib: 2.7.0
+ tslib: 2.8.0
'@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@dnd-kit/core': 6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@dnd-kit/utilities': 3.2.2(react@18.3.1)
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.0
'@dnd-kit/utilities@3.2.2(react@18.3.1)':
dependencies:
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.0
- '@emnapi/runtime@1.2.0':
+ '@emnapi/runtime@1.3.1':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
optional: true
'@emotion/babel-plugin@11.12.0':
dependencies:
- '@babel/helper-module-imports': 7.24.7
- '@babel/runtime': 7.25.6
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/runtime': 7.26.0
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
'@emotion/serialize': 1.3.2
@@ -16549,7 +16503,7 @@ snapshots:
'@emotion/weak-memoize': 0.4.0
stylis: 4.2.0
- '@emotion/css@11.13.0':
+ '@emotion/css@11.13.4':
dependencies:
'@emotion/babel-plugin': 11.12.0
'@emotion/cache': 11.13.1
@@ -16567,9 +16521,9 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1)':
+ '@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@emotion/babel-plugin': 11.12.0
'@emotion/cache': 11.13.1
'@emotion/serialize': 1.3.2
@@ -16579,7 +16533,7 @@ snapshots:
hoist-non-react-statics: 3.3.2
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
transitivePeerDependencies:
- supports-color
@@ -16591,29 +16545,29 @@ snapshots:
'@emotion/utils': 1.4.1
csstype: 3.1.3
- '@emotion/server@11.11.0(@emotion/css@11.13.0)':
+ '@emotion/server@11.11.0(@emotion/css@11.13.4)':
dependencies:
'@emotion/utils': 1.4.1
html-tokenize: 2.0.1
multipipe: 1.0.2
through: 2.3.8
optionalDependencies:
- '@emotion/css': 11.13.0
+ '@emotion/css': 11.13.4
'@emotion/sheet@1.4.0': {}
- '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)':
+ '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@emotion/babel-plugin': 11.12.0
'@emotion/is-prop-valid': 1.3.1
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@emotion/serialize': 1.3.2
'@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.3.1)
'@emotion/utils': 1.4.1
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
transitivePeerDependencies:
- supports-color
@@ -16699,12 +16653,12 @@ snapshots:
'@esbuild/win32-x64@0.23.1':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)':
+ '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.11.1': {}
+ '@eslint-community/regexpp@4.12.1': {}
'@eslint/eslintrc@2.1.4':
dependencies:
@@ -16731,12 +16685,21 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@faceless-ui/modal@2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ body-scroll-lock: 3.1.5
+ focus-trap: 6.9.4
+ qs: 6.13.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+
'@faceless-ui/scroll-info@1.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)
- '@faceless-ui/window-info@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@faceless-ui/window-info@2.1.2(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)
@@ -16856,7 +16819,7 @@ snapshots:
'@img/sharp-wasm32@0.33.5':
dependencies:
- '@emnapi/runtime': 1.2.0
+ '@emnapi/runtime': 1.3.1
optional: true
'@img/sharp-win32-ia32@0.33.5':
@@ -16887,27 +16850,27 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))':
+ '@jest/core@29.7.0(babel-plugin-macros@3.1.0)':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
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.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
+ jest-config: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -16928,46 +16891,11 @@ snapshots:
- supports-color
- ts-node
- '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))':
+ '@jest/environment@29.7.0':
dependencies:
- '@jest/console': 29.7.0
- '@jest/reporters': 29.7.0
- '@jest/test-result': 29.7.0
- '@jest/transform': 29.7.0
+ '@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.16.10
- 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.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
- jest-haste-map: 29.7.0
- jest-message-util: 29.7.0
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-resolve-dependencies: 29.7.0
- jest-runner: 29.7.0
- jest-runtime: 29.7.0
- jest-snapshot: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- jest-watcher: 29.7.0
- micromatch: 4.0.8
- pretty-format: 29.7.0
- slash: 3.0.0
- strip-ansi: 6.0.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- - ts-node
-
- '@jest/environment@29.7.0':
- dependencies:
- '@jest/fake-timers': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 22.8.2
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -16985,7 +16913,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 22.7.4
+ '@types/node': 22.8.2
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -17007,7 +16935,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -17054,7 +16982,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.25
babel-plugin-istanbul: 6.1.1
@@ -17077,7 +17005,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/yargs': 17.0.33
chalk: 4.1.2
@@ -17103,50 +17031,46 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping@0.3.9':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
- optional: true
-
'@jsdevtools/ono@7.1.3': {}
'@juggle/resize-observer@3.4.0': {}
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
globby: 11.1.0
read-yaml-file: 1.1.0
- '@material-ui/codemod@4.5.1(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)))':
+ '@material-ui/codemod@4.5.1(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)))':
dependencies:
- '@babel/core': 7.25.2
- '@babel/traverse': 7.25.6
- jscodeshift-add-imports: 1.0.11(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)))
+ '@babel/core': 7.26.0
+ '@babel/traverse': 7.25.9
+ jscodeshift-add-imports: 1.0.11(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)))
transitivePeerDependencies:
- jscodeshift
- supports-color
- '@mdx-js/loader@3.0.1(webpack@5.95.0)':
+ '@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.95.0)':
dependencies:
- '@mdx-js/mdx': 3.0.1
+ '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
source-map: 0.7.4
+ optionalDependencies:
webpack: 5.95.0
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/mdx@3.0.1':
+ '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
dependencies:
'@types/estree': 1.0.6
'@types/estree-jsx': 1.0.5
@@ -17154,15 +17078,16 @@ snapshots:
'@types/mdx': 2.0.13
collapse-white-space: 2.1.0
devlop: 1.1.0
- estree-util-build-jsx: 3.0.1
estree-util-is-identifier-name: 3.0.0
- estree-util-to-js: 2.0.0
+ estree-util-scope: 1.0.0
estree-walker: 3.0.3
- hast-util-to-estree: 3.1.0
- hast-util-to-jsx-runtime: 2.3.0
+ hast-util-to-jsx-runtime: 2.3.2
markdown-extensions: 2.0.0
- periscopic: 3.1.0
- remark-mdx: 3.0.1
+ 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
@@ -17172,12 +17097,13 @@ snapshots:
unist-util-visit: 5.0.0
vfile: 6.0.3
transitivePeerDependencies:
+ - acorn
- supports-color
- '@mdx-js/react@3.0.1(@types/react@18.3.10)(react@18.3.1)':
+ '@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.10
+ '@types/react': 18.3.12
react: 18.3.1
'@monaco-editor/loader@1.4.0(monaco-editor@0.38.0)':
@@ -17197,65 +17123,65 @@ snapshots:
sparse-bitfield: 3.0.3
optional: true
- '@mui/base@5.0.0-beta.40(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mui/base@5.0.0-beta.40(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/types': 7.2.17(@types/react@18.3.10)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@mui/types': 7.2.18(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@popperjs/core': 2.11.8
clsx: 2.1.1
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
'@mui/core-downloads-tracker@5.16.7': {}
- '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)':
+ '@mui/icons-material@5.16.7(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@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
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
- '@mui/lab@5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mui/lab@5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@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.25.6
- '@mui/base': 5.0.0-beta.40(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@mui/types': 7.2.17(@types/react@18.3.10)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/base': 5.0.0-beta.40(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/types': 7.2.18(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
clsx: 2.1.1
prop-types: 15.8.1
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@types/react': 18.3.10
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@types/react': 18.3.12
- '@mui/material-nextjs@5.16.6(@emotion/cache@11.13.1)(@emotion/server@11.11.0(@emotion/css@11.13.0))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)':
+ '@mui/material-nextjs@5.16.6(@emotion/cache@11.13.1)(@emotion/server@11.11.0(@emotion/css@11.13.4))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ '@babel/runtime': 7.26.0
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
react: 18.3.1
optionalDependencies:
'@emotion/cache': 11.13.1
- '@emotion/server': 11.11.0(@emotion/css@11.13.0)
- '@types/react': 18.3.10
+ '@emotion/server': 11.11.0(@emotion/css@11.13.4)
+ '@types/react': 18.3.12
- '@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@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.25.6
+ '@babel/runtime': 7.26.0
'@mui/core-downloads-tracker': 5.16.7
- '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@mui/types': 7.2.17(@types/react@18.3.10)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/types': 7.2.18(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
'@popperjs/core': 2.11.8
'@types/react-transition-group': 4.4.11
clsx: 2.1.1
@@ -17266,37 +17192,37 @@ snapshots:
react-is: 18.3.1
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
optionalDependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@types/react': 18.3.10
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@types/react': 18.3.12
- '@mui/private-theming@5.16.6(@types/react@18.3.10)(react@18.3.1)':
+ '@mui/private-theming@5.16.6(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
- '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(react@18.3.1)':
+ '@mui/styled-engine@5.16.6(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@emotion/cache': 11.13.1
csstype: 3.1.3
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
- '@mui/styles@5.16.7(@types/react@18.3.10)(react@18.3.1)':
+ '@mui/styles@5.16.7(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@emotion/hash': 0.9.2
- '@mui/private-theming': 5.16.6(@types/react@18.3.10)(react@18.3.1)
- '@mui/types': 7.2.17(@types/react@18.3.10)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@mui/private-theming': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@mui/types': 7.2.18(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
clsx: 2.1.1
csstype: 3.1.3
hoist-non-react-statics: 3.3.2
@@ -17311,47 +17237,47 @@ snapshots:
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
- '@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)':
+ '@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/private-theming': 5.16.6(@types/react@18.3.10)(react@18.3.1)
- '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(react@18.3.1)
- '@mui/types': 7.2.17(@types/react@18.3.10)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/private-theming': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@mui/styled-engine': 5.16.6(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(react@18.3.1)
+ '@mui/types': 7.2.18(@types/react@18.3.12)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
clsx: 2.1.1
csstype: 3.1.3
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@types/react': 18.3.10
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@types/react': 18.3.12
- '@mui/types@7.2.17(@types/react@18.3.10)':
+ '@mui/types@7.2.18(@types/react@18.3.12)':
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
- '@mui/utils@5.16.6(@types/react@18.3.10)(react@18.3.1)':
+ '@mui/utils@5.16.6(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/types': 7.2.17(@types/react@18.3.10)
+ '@babel/runtime': 7.26.0
+ '@mui/types': 7.2.18(@types/react@18.3.12)
'@types/prop-types': 15.7.13
clsx: 2.1.1
prop-types: 15.8.1
react: 18.3.1
react-is: 18.3.1
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
- '@mui/x-date-pickers@7.18.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(date-fns@4.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mui/x-date-pickers@7.22.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(date-fns@4.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
- '@mui/x-internals': 7.18.0(@types/react@18.3.10)(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@mui/x-internals': 7.21.0(@types/react@18.3.12)(react@18.3.1)
'@types/react-transition-group': 4.4.11
clsx: 2.1.1
prop-types: 15.8.1
@@ -17359,27 +17285,27 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
optionalDependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
date-fns: 4.1.0
transitivePeerDependencies:
- '@types/react'
- '@mui/x-internals@7.18.0(@types/react@18.3.10)(react@18.3.1)':
+ '@mui/x-internals@7.21.0(@types/react@18.3.12)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
react: 18.3.1
transitivePeerDependencies:
- '@types/react'
- '@mui/x-tree-view@7.18.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@mui/x-tree-view@7.22.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mui/system@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@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.25.6
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@mui/utils': 5.16.6(@types/react@18.3.10)(react@18.3.1)
- '@mui/x-internals': 7.18.0(@types/react@18.3.10)(react@18.3.1)
+ '@babel/runtime': 7.26.0
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/system': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/utils': 5.16.6(@types/react@18.3.12)(react@18.3.1)
+ '@mui/x-internals': 7.21.0(@types/react@18.3.12)(react@18.3.1)
'@types/react-transition-group': 4.4.11
clsx: 2.1.1
prop-types: 15.8.1
@@ -17387,54 +17313,54 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
optionalDependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- '@next/env@14.2.13': {}
+ '@next/env@14.2.16': {}
- '@next/eslint-plugin-next@14.2.13':
+ '@next/eslint-plugin-next@14.2.16':
dependencies:
glob: 10.3.10
- '@next/mdx@14.2.13(@mdx-js/loader@3.0.1(webpack@5.95.0))(@mdx-js/react@3.0.1(@types/react@18.3.10)(react@18.3.1))':
+ '@next/mdx@14.2.16(@mdx-js/loader@3.1.0(acorn@8.14.0)(webpack@5.95.0))(@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)
- '@mdx-js/react': 3.0.1(@types/react@18.3.10)(react@18.3.1)
+ '@mdx-js/loader': 3.1.0(acorn@8.14.0)(webpack@5.95.0)
+ '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.3.1)
- '@next/swc-darwin-arm64@14.2.13':
+ '@next/swc-darwin-arm64@14.2.16':
optional: true
- '@next/swc-darwin-x64@14.2.13':
+ '@next/swc-darwin-x64@14.2.16':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.13':
+ '@next/swc-linux-arm64-gnu@14.2.16':
optional: true
- '@next/swc-linux-arm64-musl@14.2.13':
+ '@next/swc-linux-arm64-musl@14.2.16':
optional: true
- '@next/swc-linux-x64-gnu@14.2.13':
+ '@next/swc-linux-x64-gnu@14.2.16':
optional: true
- '@next/swc-linux-x64-musl@14.2.13':
+ '@next/swc-linux-x64-musl@14.2.16':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.13':
+ '@next/swc-win32-arm64-msvc@14.2.16':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.13':
+ '@next/swc-win32-ia32-msvc@14.2.16':
optional: true
- '@next/swc-win32-x64-msvc@14.2.13':
+ '@next/swc-win32-x64-msvc@14.2.16':
optional: true
- '@next/third-parties@14.2.13(next@14.2.13(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)':
+ '@next/third-parties@14.2.16(next@14.2.16(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)':
dependencies:
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
react: 18.3.1
third-party-capital: 1.0.20
@@ -17446,7 +17372,7 @@ snapshots:
dependencies:
'@nivo/colors': 0.84.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nivo/core': 0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-spring/web': 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-spring/web': 9.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/d3-shape': 2.1.7
d3-shape: 1.3.7
react: 18.3.1
@@ -17476,7 +17402,7 @@ snapshots:
dependencies:
'@nivo/recompose': 0.84.0(react@18.3.1)
'@nivo/tooltip': 0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-spring/web': 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-spring/web': 9.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/d3-shape': 2.1.7
d3-color: 3.1.0
d3-format: 1.4.5
@@ -17530,7 +17456,7 @@ snapshots:
'@nivo/tooltip@0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@nivo/core': 0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-spring/web': 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-spring/web': 9.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- prop-types
- react
@@ -17544,7 +17470,7 @@ snapshots:
'@nivo/grid': 0.84.0
'@nivo/legends': 0.84.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@nivo/tooltip': 0.84.0(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-spring/web': 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-spring/web': 9.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/d3-shape': 2.1.7
d3-shape: 1.3.7
react: 18.3.1
@@ -17640,7 +17566,7 @@ snapshots:
'@opentelemetry/api@1.9.0': {}
- '@opentelemetry/context-async-hooks@1.26.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/context-async-hooks@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -17649,10 +17575,15 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.27.0
+ '@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/semantic-conventions': 1.27.0
+
'@opentelemetry/instrumentation-amqplib@0.42.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
@@ -17661,7 +17592,7 @@ snapshots:
'@opentelemetry/instrumentation-connect@0.39.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
'@types/connect': 3.4.36
@@ -17675,19 +17606,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-express@0.42.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-express@0.43.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-fastify@0.39.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-fastify@0.40.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
@@ -17696,7 +17627,7 @@ snapshots:
'@opentelemetry/instrumentation-fs@0.15.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -17718,7 +17649,7 @@ snapshots:
'@opentelemetry/instrumentation-hapi@0.41.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
@@ -17754,17 +17685,24 @@ snapshots:
'@opentelemetry/instrumentation-koa@0.43.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-lru-memoizer@0.40.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@opentelemetry/instrumentation-mongodb@0.47.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
- supports-color
@@ -17772,7 +17710,7 @@ snapshots:
'@opentelemetry/instrumentation-mongoose@0.42.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
transitivePeerDependencies:
@@ -17827,7 +17765,7 @@ snapshots:
'@opentelemetry/instrumentation-undici@0.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -17837,7 +17775,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.52.1
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.11.1
+ import-in-the-middle: 1.11.2
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -17849,7 +17787,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.53.0
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.11.1
+ import-in-the-middle: 1.11.2
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -17858,23 +17796,23 @@ snapshots:
'@opentelemetry/redis-common@0.36.2': {}
- '@opentelemetry/resources@1.26.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/resources@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
- '@opentelemetry/sdk-metrics@1.26.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/sdk-metrics@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
'@opentelemetry/semantic-conventions@1.27.0': {}
@@ -17882,37 +17820,37 @@ snapshots:
'@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@panva/hkdf@1.2.1': {}
- '@payloadcms/bundler-webpack@1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(sass@1.69.4)':
+ '@payloadcms/bundler-webpack@1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(sass@1.69.4)':
dependencies:
ajv: 8.17.1
compression: 1.7.4
connect-history-api-fallback: 1.6.0
- css-loader: 5.2.7(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ css-loader: 5.2.7(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
find-node-modules: 2.1.3
- html-webpack-plugin: 5.6.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ html-webpack-plugin: 5.6.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
md5: 2.3.0
- mini-css-extract-plugin: 1.6.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ mini-css-extract-plugin: 1.6.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
path-browserify: 1.0.1
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
postcss: 8.4.31
- postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
postcss-preset-env: 9.0.0(postcss@8.4.31)
process: 0.11.10
- sass-loader: 12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- style-loader: 2.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- swc-loader: 0.2.6(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- swc-minify-webpack-plugin: 2.1.3(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ sass-loader: 12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ style-loader: 2.0.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ swc-loader: 0.2.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ swc-minify-webpack-plugin: 2.1.3(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
webpack-bundle-analyzer: 4.10.2
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- webpack-dev-middleware: 6.1.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ webpack-dev-middleware: 6.1.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
webpack-hot-middleware: 2.26.1
transitivePeerDependencies:
- '@rspack/core'
@@ -17930,33 +17868,33 @@ snapshots:
- utf-8-validate
- webpack-dev-server
- '@payloadcms/bundler-webpack@1.0.7(@swc/core@1.7.26(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(sass@1.69.4)':
+ '@payloadcms/bundler-webpack@1.0.7(@swc/core@1.7.40(@swc/helpers@0.5.5))(ajv@8.17.1)(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(sass@1.69.4)':
dependencies:
ajv: 8.17.1
compression: 1.7.4
connect-history-api-fallback: 1.6.0
- css-loader: 5.2.7(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ css-loader: 5.2.7(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
find-node-modules: 2.1.3
- html-webpack-plugin: 5.6.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ html-webpack-plugin: 5.6.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
md5: 2.3.0
- mini-css-extract-plugin: 1.6.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ mini-css-extract-plugin: 1.6.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
path-browserify: 1.0.1
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
postcss: 8.4.31
- postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ postcss-loader: 6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
postcss-preset-env: 9.0.0(postcss@8.4.31)
process: 0.11.10
- sass-loader: 12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- style-loader: 2.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- swc-loader: 0.2.6(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- swc-minify-webpack-plugin: 2.1.3(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ sass-loader: 12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ style-loader: 2.0.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ swc-loader: 0.2.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ swc-minify-webpack-plugin: 2.1.3(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
webpack-bundle-analyzer: 4.10.2
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- webpack-dev-middleware: 6.1.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ webpack-dev-middleware: 6.1.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
webpack-hot-middleware: 2.26.1
transitivePeerDependencies:
- '@rspack/core'
@@ -17974,16 +17912,16 @@ snapshots:
- utf-8-validate
- webpack-dev-server
- '@payloadcms/db-mongodb@1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))':
+ '@payloadcms/db-mongodb@1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))':
dependencies:
bson-objectid: 2.0.4
deepmerge: 4.3.1
get-port: 5.1.1
http-status: 1.6.2
- mongoose: 6.12.3(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
+ mongoose: 6.12.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
mongoose-aggregate-paginate-v2: 1.0.6
mongoose-paginate-v2: 1.7.22
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
prompts: 2.4.2
uuid: 9.0.0
transitivePeerDependencies:
@@ -17991,16 +17929,16 @@ snapshots:
- aws-crt
- supports-color
- '@payloadcms/db-mongodb@1.7.2(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))':
+ '@payloadcms/db-mongodb@1.7.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))':
dependencies:
bson-objectid: 2.0.4
deepmerge: 4.3.1
get-port: 5.1.1
http-status: 1.6.2
- mongoose: 6.12.3(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
+ mongoose: 6.12.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
mongoose-aggregate-paginate-v2: 1.0.6
mongoose-paginate-v2: 1.7.22
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
prompts: 2.4.2
uuid: 9.0.0
transitivePeerDependencies:
@@ -18015,68 +17953,68 @@ snapshots:
'@payloadcms/live-preview@0.2.2': {}
- '@payloadcms/plugin-cloud-storage@1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))':
+ '@payloadcms/plugin-cloud-storage@1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))':
dependencies:
find-node-modules: 2.1.3
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
range-parser: 1.2.1
optionalDependencies:
- '@aws-sdk/client-s3': 3.658.1
- '@aws-sdk/lib-storage': 3.658.1(@aws-sdk/client-s3@3.658.1)
+ '@aws-sdk/client-s3': 3.679.0
+ '@aws-sdk/lib-storage': 3.679.0(@aws-sdk/client-s3@3.679.0)
- '@payloadcms/plugin-cloud-storage@1.1.3(@aws-sdk/client-s3@3.658.1)(@aws-sdk/lib-storage@3.658.1(@aws-sdk/client-s3@3.658.1))(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))':
+ '@payloadcms/plugin-cloud-storage@1.2.0(@aws-sdk/client-s3@3.679.0)(@aws-sdk/lib-storage@3.679.0(@aws-sdk/client-s3@3.679.0))(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))':
dependencies:
find-node-modules: 2.1.3
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
range-parser: 1.2.1
optionalDependencies:
- '@aws-sdk/client-s3': 3.658.1
- '@aws-sdk/lib-storage': 3.658.1(@aws-sdk/client-s3@3.658.1)
+ '@aws-sdk/client-s3': 3.679.0
+ '@aws-sdk/lib-storage': 3.679.0(@aws-sdk/client-s3@3.679.0)
- '@payloadcms/plugin-nested-docs@1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))':
+ '@payloadcms/plugin-nested-docs@1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))':
dependencies:
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- '@payloadcms/plugin-nested-docs@1.0.12(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))':
+ '@payloadcms/plugin-nested-docs@1.0.12(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))':
dependencies:
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
- '@payloadcms/plugin-sentry@0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)':
+ '@payloadcms/plugin-sentry@0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)':
dependencies:
- '@sentry/node': 7.119.0
- '@sentry/types': 7.119.0
- express: 4.21.0
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ '@sentry/node': 7.119.2
+ '@sentry/types': 7.119.2
+ express: 4.21.1
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
react: 18.3.1
transitivePeerDependencies:
- supports-color
- '@payloadcms/plugin-sentry@0.0.6(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)':
+ '@payloadcms/plugin-sentry@0.0.6(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)':
dependencies:
- '@sentry/node': 7.119.0
- '@sentry/types': 7.119.0
- express: 4.21.0
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ '@sentry/node': 7.119.2
+ '@sentry/types': 7.119.2
+ express: 4.21.1
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
react: 18.3.1
transitivePeerDependencies:
- supports-color
- '@payloadcms/plugin-seo@2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)':
+ '@payloadcms/plugin-seo@2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react@18.3.1)':
dependencies:
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
react: 18.3.1
- '@payloadcms/plugin-seo@2.3.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react@18.3.1)':
+ '@payloadcms/plugin-seo@2.3.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react@18.3.1)':
dependencies:
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
react: 18.3.1
- '@payloadcms/richtext-slate@1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@payloadcms/richtext-slate@1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@faceless-ui/modal': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
i18next: 22.5.1
is-hotkey: 0.2.0
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
react: 18.3.1
react-i18next: 11.18.6(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
slate: 0.91.4
@@ -18087,12 +18025,12 @@ snapshots:
- react-dom
- react-native
- '@payloadcms/richtext-slate@1.5.2(payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@payloadcms/richtext-slate@1.5.2(payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@faceless-ui/modal': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
i18next: 22.5.1
is-hotkey: 0.2.0
- payload: 2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ payload: 2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
react: 18.3.1
react-i18next: 11.18.6(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
slate: 0.91.4
@@ -18108,11 +18046,11 @@ snapshots:
'@pkgr/core@0.1.1': {}
- '@playwright/test@1.47.2':
+ '@playwright/test@1.48.2':
dependencies:
- playwright: 1.47.2
+ playwright: 1.48.2
- '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))':
dependencies:
ansi-html: 0.0.9
core-js-pure: 3.38.1
@@ -18122,12 +18060,12 @@ snapshots:
react-refresh: 0.14.2
schema-utils: 4.2.0
source-map: 0.7.4
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
optionalDependencies:
type-fest: 4.26.1
webpack-hot-middleware: 2.26.1
- '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))':
dependencies:
ansi-html: 0.0.9
core-js-pure: 3.38.1
@@ -18137,7 +18075,7 @@ snapshots:
react-refresh: 0.14.2
schema-utils: 4.2.0
source-map: 0.7.4
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
optionalDependencies:
type-fest: 4.26.1
webpack-hot-middleware: 2.26.1
@@ -18165,7 +18103,7 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -18175,35 +18113,35 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-spring/animated@9.7.4(react@18.3.1)':
+ '@react-spring/animated@9.7.5(react@18.3.1)':
dependencies:
- '@react-spring/shared': 9.7.4(react@18.3.1)
- '@react-spring/types': 9.7.4
+ '@react-spring/shared': 9.7.5(react@18.3.1)
+ '@react-spring/types': 9.7.5
react: 18.3.1
- '@react-spring/core@9.7.4(react@18.3.1)':
+ '@react-spring/core@9.7.5(react@18.3.1)':
dependencies:
- '@react-spring/animated': 9.7.4(react@18.3.1)
- '@react-spring/shared': 9.7.4(react@18.3.1)
- '@react-spring/types': 9.7.4
+ '@react-spring/animated': 9.7.5(react@18.3.1)
+ '@react-spring/shared': 9.7.5(react@18.3.1)
+ '@react-spring/types': 9.7.5
react: 18.3.1
- '@react-spring/rafz@9.7.4': {}
+ '@react-spring/rafz@9.7.5': {}
- '@react-spring/shared@9.7.4(react@18.3.1)':
+ '@react-spring/shared@9.7.5(react@18.3.1)':
dependencies:
- '@react-spring/rafz': 9.7.4
- '@react-spring/types': 9.7.4
+ '@react-spring/rafz': 9.7.5
+ '@react-spring/types': 9.7.5
react: 18.3.1
- '@react-spring/types@9.7.4': {}
+ '@react-spring/types@9.7.5': {}
- '@react-spring/web@9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-spring/web@9.7.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@react-spring/animated': 9.7.4(react@18.3.1)
- '@react-spring/core': 9.7.4(react@18.3.1)
- '@react-spring/shared': 9.7.4(react@18.3.1)
- '@react-spring/types': 9.7.4
+ '@react-spring/animated': 9.7.5(react@18.3.1)
+ '@react-spring/core': 9.7.5(react@18.3.1)
+ '@react-spring/shared': 9.7.5(react@18.3.1)
+ '@react-spring/types': 9.7.5
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -18232,20 +18170,20 @@ snapshots:
'@rollup/plugin-commonjs@26.0.1(rollup@3.29.5)':
dependencies:
- '@rollup/pluginutils': 5.1.2(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.5)
commondir: 1.0.1
estree-walker: 2.0.2
glob: 10.4.5
is-reference: 1.2.1
- magic-string: 0.30.11
+ magic-string: 0.30.12
optionalDependencies:
rollup: 3.29.5
- '@rollup/pluginutils@5.1.2(rollup@3.29.5)':
+ '@rollup/pluginutils@5.1.3(rollup@3.29.5)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
rollup: 3.29.5
@@ -18263,7 +18201,7 @@ snapshots:
'@types/request': 2.48.12
request: 2.88.2
- '@sendgrid/client@8.1.3':
+ '@sendgrid/client@8.1.4':
dependencies:
'@sendgrid/helpers': 8.0.0
axios: 1.7.7
@@ -18284,62 +18222,62 @@ snapshots:
'@sendgrid/client': 6.5.5
'@sendgrid/helpers': 6.5.5
- '@sendgrid/mail@8.1.3':
+ '@sendgrid/mail@8.1.4':
dependencies:
- '@sendgrid/client': 8.1.3
+ '@sendgrid/client': 8.1.4
'@sendgrid/helpers': 8.0.0
transitivePeerDependencies:
- debug
- '@sentry-internal/browser-utils@8.32.0':
+ '@sentry-internal/browser-utils@8.35.0':
dependencies:
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry-internal/feedback@8.32.0':
+ '@sentry-internal/feedback@8.35.0':
dependencies:
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry-internal/replay-canvas@8.32.0':
+ '@sentry-internal/replay-canvas@8.35.0':
dependencies:
- '@sentry-internal/replay': 8.32.0
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry-internal/replay': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry-internal/replay@8.32.0':
+ '@sentry-internal/replay@8.35.0':
dependencies:
- '@sentry-internal/browser-utils': 8.32.0
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry-internal/browser-utils': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry-internal/tracing@7.119.0':
+ '@sentry-internal/tracing@7.119.2':
dependencies:
- '@sentry/core': 7.119.0
- '@sentry/types': 7.119.0
- '@sentry/utils': 7.119.0
+ '@sentry/core': 7.119.2
+ '@sentry/types': 7.119.2
+ '@sentry/utils': 7.119.2
'@sentry/babel-plugin-component-annotate@2.22.3': {}
- '@sentry/browser@8.32.0':
+ '@sentry/browser@8.35.0':
dependencies:
- '@sentry-internal/browser-utils': 8.32.0
- '@sentry-internal/feedback': 8.32.0
- '@sentry-internal/replay': 8.32.0
- '@sentry-internal/replay-canvas': 8.32.0
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry-internal/browser-utils': 8.35.0
+ '@sentry-internal/feedback': 8.35.0
+ '@sentry-internal/replay': 8.35.0
+ '@sentry-internal/replay-canvas': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
'@sentry/bundler-plugin-core@2.22.3(encoding@0.1.13)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@sentry/babel-plugin-component-annotate': 2.22.3
- '@sentry/cli': 2.36.3(encoding@0.1.13)
+ '@sentry/cli': 2.38.0(encoding@0.1.13)
dotenv: 16.4.5
find-up: 5.0.0
glob: 9.3.5
@@ -18349,28 +18287,28 @@ snapshots:
- encoding
- supports-color
- '@sentry/cli-darwin@2.36.3':
+ '@sentry/cli-darwin@2.38.0':
optional: true
- '@sentry/cli-linux-arm64@2.36.3':
+ '@sentry/cli-linux-arm64@2.38.0':
optional: true
- '@sentry/cli-linux-arm@2.36.3':
+ '@sentry/cli-linux-arm@2.38.0':
optional: true
- '@sentry/cli-linux-i686@2.36.3':
+ '@sentry/cli-linux-i686@2.38.0':
optional: true
- '@sentry/cli-linux-x64@2.36.3':
+ '@sentry/cli-linux-x64@2.38.0':
optional: true
- '@sentry/cli-win32-i686@2.36.3':
+ '@sentry/cli-win32-i686@2.38.0':
optional: true
- '@sentry/cli-win32-x64@2.36.3':
+ '@sentry/cli-win32-x64@2.38.0':
optional: true
- '@sentry/cli@2.36.3(encoding@0.1.13)':
+ '@sentry/cli@2.38.0(encoding@0.1.13)':
dependencies:
https-proxy-agent: 5.0.1
node-fetch: 2.7.0(encoding@0.1.13)
@@ -18378,55 +18316,55 @@ snapshots:
proxy-from-env: 1.1.0
which: 2.0.2
optionalDependencies:
- '@sentry/cli-darwin': 2.36.3
- '@sentry/cli-linux-arm': 2.36.3
- '@sentry/cli-linux-arm64': 2.36.3
- '@sentry/cli-linux-i686': 2.36.3
- '@sentry/cli-linux-x64': 2.36.3
- '@sentry/cli-win32-i686': 2.36.3
- '@sentry/cli-win32-x64': 2.36.3
+ '@sentry/cli-darwin': 2.38.0
+ '@sentry/cli-linux-arm': 2.38.0
+ '@sentry/cli-linux-arm64': 2.38.0
+ '@sentry/cli-linux-i686': 2.38.0
+ '@sentry/cli-linux-x64': 2.38.0
+ '@sentry/cli-win32-i686': 2.38.0
+ '@sentry/cli-win32-x64': 2.38.0
transitivePeerDependencies:
- encoding
- supports-color
- '@sentry/core@7.119.0':
+ '@sentry/core@7.119.2':
dependencies:
- '@sentry/types': 7.119.0
- '@sentry/utils': 7.119.0
+ '@sentry/types': 7.119.2
+ '@sentry/utils': 7.119.2
- '@sentry/core@8.32.0':
+ '@sentry/core@8.35.0':
dependencies:
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry/integrations@7.119.0':
+ '@sentry/integrations@7.119.2':
dependencies:
- '@sentry/core': 7.119.0
- '@sentry/types': 7.119.0
- '@sentry/utils': 7.119.0
+ '@sentry/core': 7.119.2
+ '@sentry/types': 7.119.2
+ '@sentry/utils': 7.119.2
localforage: 1.10.0
- '@sentry/nextjs@8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))':
+ '@sentry/nextjs@8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))':
dependencies:
'@opentelemetry/instrumentation-http': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
'@rollup/plugin-commonjs': 26.0.1(rollup@3.29.5)
- '@sentry-internal/browser-utils': 8.32.0
- '@sentry/core': 8.32.0
- '@sentry/node': 8.32.0
- '@sentry/opentelemetry': 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
- '@sentry/react': 8.32.0(react@18.3.1)
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
- '@sentry/vercel-edge': 8.32.0
- '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ '@sentry-internal/browser-utils': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/node': 8.35.0
+ '@sentry/opentelemetry': 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
+ '@sentry/react': 8.35.0(react@18.3.1)
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
+ '@sentry/vercel-edge': 8.35.0
+ '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
chalk: 3.0.0
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
resolve: 1.22.8
rollup: 3.29.5
stacktrace-parser: 0.1.10
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
transitivePeerDependencies:
- '@opentelemetry/api'
- '@opentelemetry/core'
@@ -18436,27 +18374,27 @@ snapshots:
- react
- supports-color
- '@sentry/nextjs@8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
+ '@sentry/nextjs@8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))':
dependencies:
'@opentelemetry/instrumentation-http': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
'@rollup/plugin-commonjs': 26.0.1(rollup@3.29.5)
- '@sentry-internal/browser-utils': 8.32.0
- '@sentry/core': 8.32.0
- '@sentry/node': 8.32.0
- '@sentry/opentelemetry': 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
- '@sentry/react': 8.32.0(react@18.3.1)
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
- '@sentry/vercel-edge': 8.32.0
- '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ '@sentry-internal/browser-utils': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/node': 8.35.0
+ '@sentry/opentelemetry': 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
+ '@sentry/react': 8.35.0(react@18.3.1)
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
+ '@sentry/vercel-edge': 8.35.0
+ '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
chalk: 3.0.0
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
resolve: 1.22.8
rollup: 3.29.5
stacktrace-parser: 0.1.10
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
transitivePeerDependencies:
- '@opentelemetry/api'
- '@opentelemetry/core'
@@ -18466,25 +18404,55 @@ snapshots:
- react
- supports-color
- '@sentry/node@7.119.0':
+ '@sentry/nextjs@8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react@18.3.1)(webpack@5.95.0)':
dependencies:
- '@sentry-internal/tracing': 7.119.0
- '@sentry/core': 7.119.0
- '@sentry/integrations': 7.119.0
- '@sentry/types': 7.119.0
- '@sentry/utils': 7.119.0
+ '@opentelemetry/instrumentation-http': 0.53.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.27.0
+ '@rollup/plugin-commonjs': 26.0.1(rollup@3.29.5)
+ '@sentry-internal/browser-utils': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/node': 8.35.0
+ '@sentry/opentelemetry': 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
+ '@sentry/react': 8.35.0(react@18.3.1)
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
+ '@sentry/vercel-edge': 8.35.0
+ '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0)
+ chalk: 3.0.0
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ resolve: 1.22.8
+ rollup: 3.29.5
+ stacktrace-parser: 0.1.10
+ optionalDependencies:
+ webpack: 5.95.0
+ transitivePeerDependencies:
+ - '@opentelemetry/api'
+ - '@opentelemetry/core'
+ - '@opentelemetry/instrumentation'
+ - '@opentelemetry/sdk-trace-base'
+ - encoding
+ - react
+ - supports-color
+
+ '@sentry/node@7.119.2':
+ dependencies:
+ '@sentry-internal/tracing': 7.119.2
+ '@sentry/core': 7.119.2
+ '@sentry/integrations': 7.119.2
+ '@sentry/types': 7.119.2
+ '@sentry/utils': 7.119.2
- '@sentry/node@8.32.0':
+ '@sentry/node@8.35.0':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 1.26.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/context-async-hooks': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-amqplib': 0.42.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-connect': 0.39.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-dataloader': 0.12.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-express': 0.42.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-fastify': 0.39.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-express': 0.43.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-fastify': 0.40.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-fs': 0.15.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-generic-pool': 0.39.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-graphql': 0.43.0(@opentelemetry/api@1.9.0)
@@ -18493,6 +18461,7 @@ snapshots:
'@opentelemetry/instrumentation-ioredis': 0.43.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-kafkajs': 0.3.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-koa': 0.43.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-lru-memoizer': 0.40.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-mongodb': 0.47.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-mongoose': 0.42.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-mysql': 0.41.0(@opentelemetry/api@1.9.0)
@@ -18501,102 +18470,112 @@ snapshots:
'@opentelemetry/instrumentation-pg': 0.44.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-redis-4': 0.42.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-undici': 0.6.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 1.26.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
'@prisma/instrumentation': 5.19.1
- '@sentry/core': 8.32.0
- '@sentry/opentelemetry': 8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
- import-in-the-middle: 1.11.1
+ '@sentry/core': 8.35.0
+ '@sentry/opentelemetry': 8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
+ import-in-the-middle: 1.11.2
transitivePeerDependencies:
- supports-color
- '@sentry/opentelemetry@8.32.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)':
+ '@sentry/opentelemetry@8.35.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.27.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.26.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry/react@8.32.0(react@18.3.1)':
+ '@sentry/react@8.35.0(react@18.3.1)':
dependencies:
- '@sentry/browser': 8.32.0
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry/browser': 8.35.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
hoist-non-react-statics: 3.3.2
react: 18.3.1
- '@sentry/types@7.119.0': {}
+ '@sentry/types@7.119.2': {}
- '@sentry/types@8.32.0': {}
+ '@sentry/types@8.35.0': {}
- '@sentry/utils@7.119.0':
+ '@sentry/utils@7.119.2':
dependencies:
- '@sentry/types': 7.119.0
+ '@sentry/types': 7.119.2
- '@sentry/utils@8.32.0':
+ '@sentry/utils@8.35.0':
dependencies:
- '@sentry/types': 8.32.0
+ '@sentry/types': 8.35.0
- '@sentry/vercel-edge@8.32.0':
+ '@sentry/vercel-edge@8.35.0':
dependencies:
- '@sentry/core': 8.32.0
- '@sentry/types': 8.32.0
- '@sentry/utils': 8.32.0
+ '@sentry/core': 8.35.0
+ '@sentry/types': 8.35.0
+ '@sentry/utils': 8.35.0
- '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))':
+ '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))':
dependencies:
'@sentry/bundler-plugin-core': 2.22.3(encoding@0.1.13)
unplugin: 1.0.1
uuid: 9.0.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
transitivePeerDependencies:
- encoding
- supports-color
- '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
+ '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))':
dependencies:
'@sentry/bundler-plugin-core': 2.22.3(encoding@0.1.13)
unplugin: 1.0.1
uuid: 9.0.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
transitivePeerDependencies:
- encoding
- supports-color
- '@shikijs/core@1.21.0':
+ '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0)':
dependencies:
- '@shikijs/engine-javascript': 1.21.0
- '@shikijs/engine-oniguruma': 1.21.0
- '@shikijs/types': 1.21.0
- '@shikijs/vscode-textmate': 9.2.2
+ '@sentry/bundler-plugin-core': 2.22.3(encoding@0.1.13)
+ unplugin: 1.0.1
+ uuid: 9.0.1
+ webpack: 5.95.0
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
+ '@shikijs/core@1.22.2':
+ dependencies:
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
hast-util-to-html: 9.0.3
- '@shikijs/engine-javascript@1.21.0':
+ '@shikijs/engine-javascript@1.22.2':
dependencies:
- '@shikijs/types': 1.21.0
- '@shikijs/vscode-textmate': 9.2.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
oniguruma-to-js: 0.4.3
- '@shikijs/engine-oniguruma@1.21.0':
+ '@shikijs/engine-oniguruma@1.22.2':
dependencies:
- '@shikijs/types': 1.21.0
- '@shikijs/vscode-textmate': 9.2.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
- '@shikijs/types@1.21.0':
+ '@shikijs/types@1.22.2':
dependencies:
- '@shikijs/vscode-textmate': 9.2.2
+ '@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
- '@shikijs/vscode-textmate@9.2.2': {}
+ '@shikijs/vscode-textmate@9.3.0': {}
'@sideway/address@4.1.5':
dependencies:
@@ -18618,445 +18597,453 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@smithy/abort-controller@3.1.4':
+ '@smithy/abort-controller@3.1.6':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/chunked-blob-reader-native@3.0.0':
+ '@smithy/chunked-blob-reader-native@3.0.1':
dependencies:
'@smithy/util-base64': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/chunked-blob-reader@3.0.0':
+ '@smithy/chunked-blob-reader@4.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/config-resolver@3.0.8':
+ '@smithy/config-resolver@3.0.10':
dependencies:
- '@smithy/node-config-provider': 3.1.7
- '@smithy/types': 3.4.2
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
'@smithy/util-config-provider': 3.0.0
- '@smithy/util-middleware': 3.0.6
- tslib: 2.7.0
+ '@smithy/util-middleware': 3.0.8
+ tslib: 2.8.0
- '@smithy/core@2.4.6':
+ '@smithy/core@2.5.1':
dependencies:
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-retry': 3.0.21
- '@smithy/middleware-serde': 3.0.6
- '@smithy/protocol-http': 4.1.3
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
'@smithy/util-body-length-browser': 3.0.0
- '@smithy/util-middleware': 3.0.6
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-stream': 3.2.1
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/credential-provider-imds@3.2.3':
+ '@smithy/credential-provider-imds@3.2.5':
dependencies:
- '@smithy/node-config-provider': 3.1.7
- '@smithy/property-provider': 3.1.6
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
- tslib: 2.7.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
+ tslib: 2.8.0
- '@smithy/eventstream-codec@3.1.5':
+ '@smithy/eventstream-codec@3.1.7':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 3.4.2
+ '@smithy/types': 3.6.0
'@smithy/util-hex-encoding': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
+
+ '@smithy/eventstream-serde-browser@3.0.11':
+ dependencies:
+ '@smithy/eventstream-serde-universal': 3.0.10
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/eventstream-serde-browser@3.0.9':
+ '@smithy/eventstream-serde-config-resolver@3.0.8':
dependencies:
- '@smithy/eventstream-serde-universal': 3.0.8
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/eventstream-serde-config-resolver@3.0.6':
+ '@smithy/eventstream-serde-node@3.0.10':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/eventstream-serde-universal': 3.0.10
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/eventstream-serde-node@3.0.8':
+ '@smithy/eventstream-serde-universal@3.0.10':
dependencies:
- '@smithy/eventstream-serde-universal': 3.0.8
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/eventstream-codec': 3.1.7
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/eventstream-serde-universal@3.0.8':
+ '@smithy/fetch-http-handler@3.2.9':
dependencies:
- '@smithy/eventstream-codec': 3.1.5
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/querystring-builder': 3.0.8
+ '@smithy/types': 3.6.0
+ '@smithy/util-base64': 3.0.0
+ tslib: 2.8.0
- '@smithy/fetch-http-handler@3.2.8':
+ '@smithy/fetch-http-handler@4.0.0':
dependencies:
- '@smithy/protocol-http': 4.1.3
- '@smithy/querystring-builder': 3.0.6
- '@smithy/types': 3.4.2
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/querystring-builder': 3.0.8
+ '@smithy/types': 3.6.0
'@smithy/util-base64': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/hash-blob-browser@3.1.5':
+ '@smithy/hash-blob-browser@3.1.7':
dependencies:
- '@smithy/chunked-blob-reader': 3.0.0
- '@smithy/chunked-blob-reader-native': 3.0.0
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/chunked-blob-reader': 4.0.0
+ '@smithy/chunked-blob-reader-native': 3.0.1
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/hash-node@3.0.6':
+ '@smithy/hash-node@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
+ '@smithy/types': 3.6.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/hash-stream-node@3.1.5':
+ '@smithy/hash-stream-node@3.1.7':
dependencies:
- '@smithy/types': 3.4.2
+ '@smithy/types': 3.6.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/invalid-dependency@3.0.6':
+ '@smithy/invalid-dependency@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@smithy/is-array-buffer@2.2.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/is-array-buffer@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/md5-js@3.0.6':
+ '@smithy/md5-js@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
+ '@smithy/types': 3.6.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
-
- '@smithy/middleware-content-length@3.0.8':
- dependencies:
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- tslib: 2.7.0
-
- '@smithy/middleware-endpoint@3.1.3':
- dependencies:
- '@smithy/middleware-serde': 3.0.6
- '@smithy/node-config-provider': 3.1.7
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- '@smithy/url-parser': 3.0.6
- '@smithy/util-middleware': 3.0.6
- tslib: 2.7.0
-
- '@smithy/middleware-retry@3.0.21':
- dependencies:
- '@smithy/node-config-provider': 3.1.7
- '@smithy/protocol-http': 4.1.3
- '@smithy/service-error-classification': 3.0.6
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- '@smithy/util-middleware': 3.0.6
- '@smithy/util-retry': 3.0.6
- tslib: 2.7.0
+ tslib: 2.8.0
+
+ '@smithy/middleware-content-length@3.0.10':
+ dependencies:
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
+
+ '@smithy/middleware-endpoint@3.2.1':
+ dependencies:
+ '@smithy/core': 2.5.1
+ '@smithy/middleware-serde': 3.0.8
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ '@smithy/url-parser': 3.0.8
+ '@smithy/util-middleware': 3.0.8
+ tslib: 2.8.0
+
+ '@smithy/middleware-retry@3.0.25':
+ dependencies:
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/service-error-classification': 3.0.8
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ '@smithy/util-middleware': 3.0.8
+ '@smithy/util-retry': 3.0.8
+ tslib: 2.8.0
uuid: 9.0.1
- '@smithy/middleware-serde@3.0.6':
+ '@smithy/middleware-serde@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/middleware-stack@3.0.6':
+ '@smithy/middleware-stack@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/node-config-provider@3.1.7':
+ '@smithy/node-config-provider@3.1.9':
dependencies:
- '@smithy/property-provider': 3.1.6
- '@smithy/shared-ini-file-loader': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/property-provider': 3.1.8
+ '@smithy/shared-ini-file-loader': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/node-http-handler@3.2.3':
+ '@smithy/node-http-handler@3.2.5':
dependencies:
- '@smithy/abort-controller': 3.1.4
- '@smithy/protocol-http': 4.1.3
- '@smithy/querystring-builder': 3.0.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/abort-controller': 3.1.6
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/querystring-builder': 3.0.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/property-provider@3.1.6':
+ '@smithy/property-provider@3.1.8':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/protocol-http@4.1.3':
+ '@smithy/protocol-http@4.1.5':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/querystring-builder@3.0.6':
+ '@smithy/querystring-builder@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
+ '@smithy/types': 3.6.0
'@smithy/util-uri-escape': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/querystring-parser@3.0.6':
+ '@smithy/querystring-parser@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/service-error-classification@3.0.6':
+ '@smithy/service-error-classification@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
+ '@smithy/types': 3.6.0
- '@smithy/shared-ini-file-loader@3.1.7':
+ '@smithy/shared-ini-file-loader@3.1.9':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/signature-v4@4.1.4':
+ '@smithy/signature-v4@4.2.1':
dependencies:
'@smithy/is-array-buffer': 3.0.0
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
'@smithy/util-hex-encoding': 3.0.0
- '@smithy/util-middleware': 3.0.6
+ '@smithy/util-middleware': 3.0.8
'@smithy/util-uri-escape': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/smithy-client@3.3.5':
+ '@smithy/smithy-client@3.4.2':
dependencies:
- '@smithy/middleware-endpoint': 3.1.3
- '@smithy/middleware-stack': 3.0.6
- '@smithy/protocol-http': 4.1.3
- '@smithy/types': 3.4.2
- '@smithy/util-stream': 3.1.8
- tslib: 2.7.0
+ '@smithy/core': 2.5.1
+ '@smithy/middleware-endpoint': 3.2.1
+ '@smithy/middleware-stack': 3.0.8
+ '@smithy/protocol-http': 4.1.5
+ '@smithy/types': 3.6.0
+ '@smithy/util-stream': 3.2.1
+ tslib: 2.8.0
- '@smithy/types@3.4.2':
+ '@smithy/types@3.6.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/url-parser@3.0.6':
+ '@smithy/url-parser@3.0.8':
dependencies:
- '@smithy/querystring-parser': 3.0.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/querystring-parser': 3.0.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@smithy/util-base64@3.0.0':
dependencies:
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-body-length-browser@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-body-length-node@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-buffer-from@2.2.0':
dependencies:
'@smithy/is-array-buffer': 2.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-buffer-from@3.0.0':
dependencies:
'@smithy/is-array-buffer': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-config-provider@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-defaults-mode-browser@3.0.21':
+ '@smithy/util-defaults-mode-browser@3.0.25':
dependencies:
- '@smithy/property-provider': 3.1.6
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
+ '@smithy/property-provider': 3.1.8
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
bowser: 2.11.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-defaults-mode-node@3.0.21':
+ '@smithy/util-defaults-mode-node@3.0.25':
dependencies:
- '@smithy/config-resolver': 3.0.8
- '@smithy/credential-provider-imds': 3.2.3
- '@smithy/node-config-provider': 3.1.7
- '@smithy/property-provider': 3.1.6
- '@smithy/smithy-client': 3.3.5
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/config-resolver': 3.0.10
+ '@smithy/credential-provider-imds': 3.2.5
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/property-provider': 3.1.8
+ '@smithy/smithy-client': 3.4.2
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/util-endpoints@2.1.2':
+ '@smithy/util-endpoints@2.1.4':
dependencies:
- '@smithy/node-config-provider': 3.1.7
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/node-config-provider': 3.1.9
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
'@smithy/util-hex-encoding@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-middleware@3.0.6':
+ '@smithy/util-middleware@3.0.8':
dependencies:
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/util-retry@3.0.6':
+ '@smithy/util-retry@3.0.8':
dependencies:
- '@smithy/service-error-classification': 3.0.6
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/service-error-classification': 3.0.8
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@smithy/util-stream@3.1.8':
+ '@smithy/util-stream@3.2.1':
dependencies:
- '@smithy/fetch-http-handler': 3.2.8
- '@smithy/node-http-handler': 3.2.3
- '@smithy/types': 3.4.2
+ '@smithy/fetch-http-handler': 4.0.0
+ '@smithy/node-http-handler': 3.2.5
+ '@smithy/types': 3.6.0
'@smithy/util-base64': 3.0.0
'@smithy/util-buffer-from': 3.0.0
'@smithy/util-hex-encoding': 3.0.0
'@smithy/util-utf8': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-uri-escape@3.0.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-utf8@2.3.0':
dependencies:
'@smithy/util-buffer-from': 2.2.0
- tslib: 2.7.0
+ tslib: 2.8.0
'@smithy/util-utf8@3.0.0':
dependencies:
'@smithy/util-buffer-from': 3.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
- '@smithy/util-waiter@3.1.5':
+ '@smithy/util-waiter@3.1.7':
dependencies:
- '@smithy/abort-controller': 3.1.4
- '@smithy/types': 3.4.2
- tslib: 2.7.0
+ '@smithy/abort-controller': 3.1.6
+ '@smithy/types': 3.6.0
+ tslib: 2.8.0
- '@storybook/addon-actions@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-actions@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.3.1
- storybook: 8.3.4
+ storybook: 8.3.6
uuid: 9.0.1
- '@storybook/addon-backgrounds@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-backgrounds@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
- '@storybook/addon-controls@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-controls@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
dequal: 2.0.3
lodash: 4.17.21
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
- '@storybook/addon-docs@8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)':
+ '@storybook/addon-docs@8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)':
dependencies:
- '@mdx-js/react': 3.0.1(@types/react@18.3.10)(react@18.3.1)
- '@storybook/blocks': 8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)
- '@storybook/csf-plugin': 8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)
+ '@mdx-js/react': 3.1.0(@types/react@18.3.12)(react@18.3.1)
+ '@storybook/blocks': 8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)
+ '@storybook/csf-plugin': 8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)
'@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)
- '@types/react': 18.3.10
+ '@storybook/react-dom-shim': 8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)
+ '@types/react': 18.3.12
fs-extra: 11.2.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
rehype-external-links: 3.0.0
rehype-slug: 6.0.0
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
transitivePeerDependencies:
- webpack-sources
- '@storybook/addon-essentials@8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)':
- dependencies:
- '@storybook/addon-actions': 8.3.4(storybook@8.3.4)
- '@storybook/addon-backgrounds': 8.3.4(storybook@8.3.4)
- '@storybook/addon-controls': 8.3.4(storybook@8.3.4)
- '@storybook/addon-docs': 8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)
- '@storybook/addon-highlight': 8.3.4(storybook@8.3.4)
- '@storybook/addon-measure': 8.3.4(storybook@8.3.4)
- '@storybook/addon-outline': 8.3.4(storybook@8.3.4)
- '@storybook/addon-toolbars': 8.3.4(storybook@8.3.4)
- '@storybook/addon-viewport': 8.3.4(storybook@8.3.4)
- storybook: 8.3.4
+ '@storybook/addon-essentials@8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)':
+ dependencies:
+ '@storybook/addon-actions': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-backgrounds': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-controls': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-docs': 8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)
+ '@storybook/addon-highlight': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-measure': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-outline': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-toolbars': 8.3.6(storybook@8.3.6)
+ '@storybook/addon-viewport': 8.3.6(storybook@8.3.6)
+ storybook: 8.3.6
ts-dedent: 2.2.0
transitivePeerDependencies:
- webpack-sources
- '@storybook/addon-highlight@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-highlight@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
- storybook: 8.3.4
+ storybook: 8.3.6
- '@storybook/addon-interactions@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-interactions@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.3.4(storybook@8.3.4)
- '@storybook/test': 8.3.4(storybook@8.3.4)
+ '@storybook/instrumenter': 8.3.6(storybook@8.3.6)
+ '@storybook/test': 8.3.6(storybook@8.3.6)
polished: 4.3.1
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
- '@storybook/addon-links@8.3.4(react@18.3.1)(storybook@8.3.4)':
+ '@storybook/addon-links@8.3.6(react@18.3.1)(storybook@8.3.6)':
dependencies:
'@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
optionalDependencies:
react: 18.3.1
- '@storybook/addon-measure@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-measure@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
- storybook: 8.3.4
+ storybook: 8.3.6
tiny-invariant: 1.3.3
- '@storybook/addon-outline@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-outline@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
- '@storybook/addon-toolbars@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-toolbars@8.3.6(storybook@8.3.6)':
dependencies:
- storybook: 8.3.4
+ storybook: 8.3.6
- '@storybook/addon-viewport@8.3.4(storybook@8.3.4)':
+ '@storybook/addon-viewport@8.3.6(storybook@8.3.6)':
dependencies:
memoizerific: 1.11.3
- storybook: 8.3.4
+ storybook: 8.3.6
- '@storybook/blocks@8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)':
+ '@storybook/blocks@8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)':
dependencies:
'@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
'@storybook/icons': 1.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@types/lodash': 4.17.9
+ '@types/lodash': 4.17.12
color-convert: 2.0.1
dequal: 2.0.3
lodash: 4.17.21
@@ -19064,7 +19051,7 @@ snapshots:
memoizerific: 1.11.3
polished: 4.3.1
react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- storybook: 8.3.4
+ storybook: 8.3.6
telejson: 7.2.0
ts-dedent: 2.2.0
util-deprecate: 1.0.2
@@ -19072,38 +19059,38 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@storybook/builder-webpack5@8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/builder-webpack5@8.3.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.4(storybook@8.3.4)
- '@types/node': 22.7.4
+ '@storybook/core-webpack': 8.3.6(storybook@8.3.6)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
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(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ css-loader: 6.11.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
es-module-lexer: 1.5.4
- express: 4.21.0
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ express: 4.21.1
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
fs-extra: 11.2.0
- html-webpack-plugin: 5.6.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- magic-string: 0.30.11
+ html-webpack-plugin: 5.6.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ magic-string: 0.30.12
path-browserify: 1.0.1
process: 0.11.10
semver: 7.6.3
- storybook: 8.3.4
- style-loader: 3.3.4(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ storybook: 8.3.6
+ style-loader: 3.3.4(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
ts-dedent: 2.2.0
url: 0.11.4
util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
- webpack-dev-middleware: 6.1.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
+ webpack-dev-middleware: 6.1.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.6.2
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -19112,38 +19099,38 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/builder-webpack5@8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/builder-webpack5@8.3.6(esbuild@0.23.1)(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.4(storybook@8.3.4)
- '@types/node': 22.7.4
+ '@storybook/core-webpack': 8.3.6(storybook@8.3.6)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
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(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ css-loader: 6.11.0(webpack@5.95.0(esbuild@0.23.1))
es-module-lexer: 1.5.4
- express: 4.21.0
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ express: 4.21.1
+ 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(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- magic-string: 0.30.11
+ html-webpack-plugin: 5.6.3(webpack@5.95.0(esbuild@0.23.1))
+ magic-string: 0.30.12
path-browserify: 1.0.1
process: 0.11.10
semver: 7.6.3
- storybook: 8.3.4
- style-loader: 3.3.4(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ storybook: 8.3.6
+ 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))
ts-dedent: 2.2.0
url: 0.11.4
util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
- webpack-dev-middleware: 6.1.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ webpack: 5.95.0(esbuild@0.23.1)
+ webpack-dev-middleware: 6.1.3(webpack@5.95.0(esbuild@0.23.1))
webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.6.2
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -19152,10 +19139,10 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/builder-webpack5@8.3.4(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/builder-webpack5@8.3.6(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.4(storybook@8.3.4)
- '@types/node': 22.7.4
+ '@storybook/core-webpack': 8.3.6(storybook@8.3.6)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
@@ -19163,15 +19150,15 @@ snapshots:
constants-browserify: 1.0.0
css-loader: 6.11.0(webpack@5.95.0)
es-module-lexer: 1.5.4
- express: 4.21.0
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.2)(webpack@5.95.0)
+ express: 4.21.1
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.95.0)
fs-extra: 11.2.0
- html-webpack-plugin: 5.6.0(webpack@5.95.0)
- magic-string: 0.30.11
+ html-webpack-plugin: 5.6.3(webpack@5.95.0)
+ magic-string: 0.30.12
path-browserify: 1.0.1
process: 0.11.10
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
style-loader: 3.3.4(webpack@5.95.0)
terser-webpack-plugin: 5.3.10(webpack@5.95.0)
ts-dedent: 2.2.0
@@ -19183,7 +19170,7 @@ snapshots:
webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.6.2
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -19192,15 +19179,15 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/cli@8.3.4(@babel/preset-env@7.25.4(@babel/core@7.25.2))':
+ '@storybook/cli@8.3.6(@babel/preset-env@7.26.0(@babel/core@7.26.0))':
dependencies:
- '@babel/core': 7.25.2
- '@babel/types': 7.25.6
- '@storybook/codemod': 8.3.4
+ '@babel/core': 7.26.0
+ '@babel/types': 7.26.0
+ '@storybook/codemod': 8.3.6
'@types/semver': 7.5.8
chalk: 4.1.2
commander: 12.1.0
- create-storybook: 8.3.4
+ create-storybook: 8.3.6
cross-spawn: 7.0.3
envinfo: 7.14.0
fd-package-json: 1.2.0
@@ -19209,11 +19196,11 @@ snapshots:
giget: 1.2.3
glob: 10.4.5
globby: 14.0.2
- jscodeshift: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ jscodeshift: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
leven: 3.1.0
prompts: 2.4.2
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -19222,17 +19209,17 @@ snapshots:
- supports-color
- utf-8-validate
- '@storybook/codemod@8.3.4':
+ '@storybook/codemod@8.3.6':
dependencies:
- '@babel/core': 7.25.2
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/types': 7.25.6
- '@storybook/core': 8.3.4
+ '@babel/core': 7.26.0
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
+ '@storybook/core': 8.3.6
'@storybook/csf': 0.1.11
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 14.0.2
- jscodeshift: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ jscodeshift: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
lodash: 4.17.21
prettier: 3.3.3
recast: 0.23.9
@@ -19242,17 +19229,17 @@ snapshots:
- supports-color
- utf-8-validate
- '@storybook/components@8.3.4(storybook@8.3.4)':
+ '@storybook/components@8.3.6(storybook@8.3.6)':
dependencies:
- storybook: 8.3.4
+ storybook: 8.3.6
- '@storybook/core-webpack@8.3.4(storybook@8.3.4)':
+ '@storybook/core-webpack@8.3.6(storybook@8.3.6)':
dependencies:
- '@types/node': 22.7.4
- storybook: 8.3.4
+ '@types/node': 22.8.2
+ storybook: 8.3.6
ts-dedent: 2.2.0
- '@storybook/core@8.3.4':
+ '@storybook/core@8.3.6':
dependencies:
'@storybook/csf': 0.1.11
'@types/express': 4.17.21
@@ -19260,7 +19247,7 @@ snapshots:
browser-assert: 1.2.1
esbuild: 0.23.1
esbuild-register: 3.6.0(esbuild@0.23.1)
- express: 4.21.0
+ express: 4.21.1
jsdoc-type-pratt-parser: 4.1.0
process: 0.11.10
recast: 0.23.9
@@ -19272,10 +19259,10 @@ snapshots:
- supports-color
- utf-8-validate
- '@storybook/csf-plugin@8.3.4(storybook@8.3.4)(webpack-sources@3.2.3)':
+ '@storybook/csf-plugin@8.3.6(storybook@8.3.6)(webpack-sources@3.2.3)':
dependencies:
- storybook: 8.3.4
- unplugin: 1.14.1(webpack-sources@3.2.3)
+ storybook: 8.3.6
+ unplugin: 1.15.0(webpack-sources@3.2.3)
transitivePeerDependencies:
- webpack-sources
@@ -19290,66 +19277,66 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@storybook/instrumenter@8.3.4(storybook@8.3.4)':
+ '@storybook/instrumenter@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/global': 5.0.0
- '@vitest/utils': 2.1.1
- storybook: 8.3.4
+ '@vitest/utils': 2.1.4
+ storybook: 8.3.6
util: 0.12.5
- '@storybook/manager-api@8.3.4(storybook@8.3.4)':
- dependencies:
- storybook: 8.3.4
-
- '@storybook/nextjs@8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(babel-plugin-macros@3.1.0)(esbuild@0.23.1)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.4)(type-fest@4.26.1)(typescript@5.6.2)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/runtime': 7.25.6
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- '@storybook/builder-webpack5': 8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/preset-react-webpack': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/react': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/test': 8.3.4(storybook@8.3.4)
- '@types/node': 22.7.4
+ '@storybook/manager-api@8.3.6(storybook@8.3.6)':
+ dependencies:
+ storybook: 8.3.6
+
+ '@storybook/nextjs@8.3.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(babel-plugin-macros@3.1.0)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.6)(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ '@storybook/builder-webpack5': 8.3.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/preset-react-webpack': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(@swc/core@1.7.40(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/test': 8.3.6(storybook@8.3.6)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
- babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- css-loader: 6.11.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ css-loader: 6.11.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
find-up: 5.0.0
fs-extra: 11.2.0
image-size: 1.1.1
loader-utils: 3.3.1
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
- node-polyfill-webpack-plugin: 2.0.1(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- pnp-webpack-plugin: 1.7.0(typescript@5.6.2)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ node-polyfill-webpack-plugin: 2.0.1(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ 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.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
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(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ sass-loader: 13.3.3(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
semver: 7.6.3
- storybook: 8.3.4
- style-loader: 3.3.4(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- styled-jsx: 5.1.6(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1)
+ storybook: 8.3.6
+ style-loader: 3.3.4(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ styled-jsx: 5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(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.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ typescript: 5.6.3
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -19369,55 +19356,55 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/nextjs@8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(babel-plugin-macros@3.1.0)(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.4)(type-fest@4.26.1)(typescript@5.6.2)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/runtime': 7.25.6
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- '@storybook/builder-webpack5': 8.3.4(@swc/core@1.7.26(@swc/helpers@0.5.5))(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/preset-react-webpack': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(@swc/core@1.7.26(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/react': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/test': 8.3.4(storybook@8.3.4)
- '@types/node': 22.7.4
+ '@storybook/nextjs@8.3.6(babel-plugin-macros@3.1.0)(esbuild@0.23.1)(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.6)(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0(esbuild@0.23.1))
+ '@storybook/builder-webpack5': 8.3.6(esbuild@0.23.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/preset-react-webpack': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/test': 8.3.6(storybook@8.3.6)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
- babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- css-loader: 6.11.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0(esbuild@0.23.1))
+ css-loader: 6.11.0(webpack@5.95.0(esbuild@0.23.1))
find-up: 5.0.0
fs-extra: 11.2.0
image-size: 1.1.1
loader-utils: 3.3.1
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
- node-polyfill-webpack-plugin: 2.0.1(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- pnp-webpack-plugin: 1.7.0(typescript@5.6.2)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ node-polyfill-webpack-plugin: 2.0.1(webpack@5.95.0(esbuild@0.23.1))
+ 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.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1))
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(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ sass-loader: 13.3.3(sass@1.69.4)(webpack@5.95.0(esbuild@0.23.1))
semver: 7.6.3
- storybook: 8.3.4
- style-loader: 3.3.4(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- styled-jsx: 5.1.6(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1)
+ storybook: 8.3.6
+ style-loader: 3.3.4(webpack@5.95.0(esbuild@0.23.1))
+ styled-jsx: 5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(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.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ typescript: 5.6.3
+ webpack: 5.95.0(esbuild@0.23.1)
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -19437,54 +19424,54 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/nextjs@8.3.4(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.4)(type-fest@4.26.1)(typescript@5.6.2)(webpack-hot-middleware@2.26.1)(webpack@5.95.0)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-runtime': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/runtime': 7.25.6
+ '@storybook/nextjs@8.3.6(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)(storybook@8.3.6)(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.95.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
'@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.95.0)
- '@storybook/builder-webpack5': 8.3.4(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/preset-react-webpack': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/react': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/test': 8.3.4(storybook@8.3.4)
- '@types/node': 22.7.4
+ '@storybook/builder-webpack5': 8.3.6(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/preset-react-webpack': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/test': 8.3.6(storybook@8.3.6)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
- babel-loader: 9.2.1(@babel/core@7.25.2)(webpack@5.95.0)
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.95.0)
css-loader: 6.11.0(webpack@5.95.0)
find-up: 5.0.0
fs-extra: 11.2.0
image-size: 1.1.1
loader-utils: 3.3.1
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
node-polyfill-webpack-plugin: 2.0.1(webpack@5.95.0)
- pnp-webpack-plugin: 1.7.0(typescript@5.6.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.2)(webpack@5.95.0)
+ postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0)
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(sass@1.69.4)(webpack@5.95.0)
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
style-loader: 3.3.4(webpack@5.95.0)
- styled-jsx: 5.1.6(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1)
+ styled-jsx: 5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(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.2
+ typescript: 5.6.3
webpack: 5.95.0
transitivePeerDependencies:
- '@rspack/core'
@@ -19505,26 +19492,26 @@ snapshots:
- webpack-hot-middleware
- webpack-plugin-serve
- '@storybook/preset-react-webpack@8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/preset-react-webpack@8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(@swc/core@1.7.40(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.4(storybook@8.3.4)
- '@storybook/react': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- '@types/node': 22.7.4
+ '@storybook/core-webpack': 8.3.6(storybook@8.3.6)
+ '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
find-up: 5.0.0
fs-extra: 11.2.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
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
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
tsconfig-paths: 4.2.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- '@storybook/test'
- '@swc/core'
@@ -19533,26 +19520,26 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/preset-react-webpack@8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(@swc/core@1.7.26(@swc/helpers@0.5.5))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/preset-react-webpack@8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(esbuild@0.23.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.4(storybook@8.3.4)
- '@storybook/react': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- '@types/node': 22.7.4
+ '@storybook/core-webpack': 8.3.6(storybook@8.3.6)
+ '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(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.8.2
'@types/semver': 7.5.8
find-up: 5.0.0
fs-extra: 11.2.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
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
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
tsconfig-paths: 4.2.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- '@storybook/test'
- '@swc/core'
@@ -19561,26 +19548,26 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/preset-react-webpack@8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/preset-react-webpack@8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/core-webpack': 8.3.4(storybook@8.3.4)
- '@storybook/react': 8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.2)(webpack@5.95.0)
- '@types/node': 22.7.4
+ '@storybook/core-webpack': 8.3.6(storybook@8.3.6)
+ '@storybook/react': 8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0)
+ '@types/node': 22.8.2
'@types/semver': 7.5.8
find-up: 5.0.0
fs-extra: 11.2.0
- magic-string: 0.30.11
+ magic-string: 0.30.12
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
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
tsconfig-paths: 4.2.0
webpack: 5.95.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- '@storybook/test'
- '@swc/core'
@@ -19589,69 +19576,69 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/preview-api@8.3.4(storybook@8.3.4)':
+ '@storybook/preview-api@8.3.6(storybook@8.3.6)':
dependencies:
- storybook: 8.3.4
+ storybook: 8.3.6
- '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))':
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))':
dependencies:
debug: 4.3.7
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.2)
- tslib: 2.7.0
- typescript: 5.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ react-docgen-typescript: 2.2.2(typescript@5.6.3)
+ tslib: 2.8.0
+ typescript: 5.6.3
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
transitivePeerDependencies:
- supports-color
- '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1))':
dependencies:
debug: 4.3.7
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.2)
- tslib: 2.7.0
- typescript: 5.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ react-docgen-typescript: 2.2.2(typescript@5.6.3)
+ tslib: 2.8.0
+ typescript: 5.6.3
+ webpack: 5.95.0(esbuild@0.23.1)
transitivePeerDependencies:
- supports-color
- '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.2)(webpack@5.95.0)':
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.95.0)':
dependencies:
debug: 4.3.7
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.2)
- tslib: 2.7.0
- typescript: 5.6.2
+ react-docgen-typescript: 2.2.2(typescript@5.6.3)
+ tslib: 2.8.0
+ typescript: 5.6.3
webpack: 5.95.0
transitivePeerDependencies:
- supports-color
- '@storybook/react-dom-shim@8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)':
+ '@storybook/react-dom-shim@8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)':
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- storybook: 8.3.4
+ storybook: 8.3.6
- '@storybook/react@8.3.4(@storybook/test@8.3.4(storybook@8.3.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)(typescript@5.6.2)':
+ '@storybook/react@8.3.6(@storybook/test@8.3.6(storybook@8.3.6))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)(typescript@5.6.3)':
dependencies:
- '@storybook/components': 8.3.4(storybook@8.3.4)
+ '@storybook/components': 8.3.6(storybook@8.3.6)
'@storybook/global': 5.0.0
- '@storybook/manager-api': 8.3.4(storybook@8.3.4)
- '@storybook/preview-api': 8.3.4(storybook@8.3.4)
- '@storybook/react-dom-shim': 8.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.4)
- '@storybook/theming': 8.3.4(storybook@8.3.4)
+ '@storybook/manager-api': 8.3.6(storybook@8.3.6)
+ '@storybook/preview-api': 8.3.6(storybook@8.3.6)
+ '@storybook/react-dom-shim': 8.3.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.6)
+ '@storybook/theming': 8.3.6(storybook@8.3.6)
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 22.7.4
+ '@types/node': 22.8.2
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -19662,81 +19649,81 @@ snapshots:
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.3
- storybook: 8.3.4
+ storybook: 8.3.6
ts-dedent: 2.2.0
type-fest: 2.19.0
util-deprecate: 1.0.2
optionalDependencies:
- '@storybook/test': 8.3.4(storybook@8.3.4)
- typescript: 5.6.2
+ '@storybook/test': 8.3.6(storybook@8.3.6)
+ typescript: 5.6.3
- '@storybook/test@8.3.4(storybook@8.3.4)':
+ '@storybook/test@8.3.6(storybook@8.3.6)':
dependencies:
'@storybook/csf': 0.1.11
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.3.4(storybook@8.3.4)
+ '@storybook/instrumenter': 8.3.6(storybook@8.3.6)
'@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.4
+ storybook: 8.3.6
util: 0.12.5
- '@storybook/theming@8.3.4(storybook@8.3.4)':
+ '@storybook/theming@8.3.6(storybook@8.3.6)':
dependencies:
- storybook: 8.3.4
+ storybook: 8.3.6
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.25.2)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- '@svgr/babel-preset@8.1.0(@babel/core@7.25.2)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.25.2)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.0)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.0)
- '@svgr/core@8.1.0(typescript@5.6.2)':
+ '@svgr/core@8.1.0(typescript@5.6.3)':
dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-preset': 8.1.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.6.2)
+ cosmiconfig: 8.3.6(typescript@5.6.3)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
@@ -19744,38 +19731,38 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.2))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))':
dependencies:
- '@babel/core': 7.25.2
- '@svgr/babel-preset': 8.1.0(@babel/core@7.25.2)
- '@svgr/core': 8.1.0(typescript@5.6.2)
+ '@babel/core': 7.26.0
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
+ '@svgr/core': 8.1.0(typescript@5.6.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.6.2))(typescript@5.6.2)':
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.6.2)
- cosmiconfig: 8.3.6(typescript@5.6.2)
+ '@svgr/core': 8.1.0(typescript@5.6.3)
+ cosmiconfig: 8.3.6(typescript@5.6.3)
deepmerge: 4.3.1
svgo: 3.3.2
transitivePeerDependencies:
- typescript
- '@svgr/webpack@8.1.0(typescript@5.6.2)':
+ '@svgr/webpack@8.1.0(typescript@5.6.3)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-transform-react-constant-elements': 7.25.1(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-react': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@svgr/core': 8.1.0(typescript@5.6.2)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.2))
- '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.6.2))(typescript@5.6.2)
+ '@babel/core': 7.26.0
+ '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-react': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@svgr/core': 8.1.0(typescript@5.6.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3))
+ '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3))(typescript@5.6.3)
transitivePeerDependencies:
- supports-color
- typescript
@@ -19783,61 +19770,61 @@ snapshots:
'@swc/core-darwin-arm64@1.6.1':
optional: true
- '@swc/core-darwin-arm64@1.7.26':
+ '@swc/core-darwin-arm64@1.7.40':
optional: true
'@swc/core-darwin-x64@1.6.1':
optional: true
- '@swc/core-darwin-x64@1.7.26':
+ '@swc/core-darwin-x64@1.7.40':
optional: true
'@swc/core-linux-arm-gnueabihf@1.6.1':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.7.26':
+ '@swc/core-linux-arm-gnueabihf@1.7.40':
optional: true
'@swc/core-linux-arm64-gnu@1.6.1':
optional: true
- '@swc/core-linux-arm64-gnu@1.7.26':
+ '@swc/core-linux-arm64-gnu@1.7.40':
optional: true
'@swc/core-linux-arm64-musl@1.6.1':
optional: true
- '@swc/core-linux-arm64-musl@1.7.26':
+ '@swc/core-linux-arm64-musl@1.7.40':
optional: true
'@swc/core-linux-x64-gnu@1.6.1':
optional: true
- '@swc/core-linux-x64-gnu@1.7.26':
+ '@swc/core-linux-x64-gnu@1.7.40':
optional: true
'@swc/core-linux-x64-musl@1.6.1':
optional: true
- '@swc/core-linux-x64-musl@1.7.26':
+ '@swc/core-linux-x64-musl@1.7.40':
optional: true
'@swc/core-win32-arm64-msvc@1.6.1':
optional: true
- '@swc/core-win32-arm64-msvc@1.7.26':
+ '@swc/core-win32-arm64-msvc@1.7.40':
optional: true
'@swc/core-win32-ia32-msvc@1.6.1':
optional: true
- '@swc/core-win32-ia32-msvc@1.7.26':
+ '@swc/core-win32-ia32-msvc@1.7.40':
optional: true
'@swc/core-win32-x64-msvc@1.6.1':
optional: true
- '@swc/core-win32-x64-msvc@1.7.26':
+ '@swc/core-win32-x64-msvc@1.7.40':
optional: true
'@swc/core@1.6.1(@swc/helpers@0.5.5)':
@@ -19857,21 +19844,21 @@ snapshots:
'@swc/core-win32-x64-msvc': 1.6.1
'@swc/helpers': 0.5.5
- '@swc/core@1.7.26(@swc/helpers@0.5.5)':
+ '@swc/core@1.7.40(@swc/helpers@0.5.5)':
dependencies:
'@swc/counter': 0.1.3
- '@swc/types': 0.1.12
+ '@swc/types': 0.1.13
optionalDependencies:
- '@swc/core-darwin-arm64': 1.7.26
- '@swc/core-darwin-x64': 1.7.26
- '@swc/core-linux-arm-gnueabihf': 1.7.26
- '@swc/core-linux-arm64-gnu': 1.7.26
- '@swc/core-linux-arm64-musl': 1.7.26
- '@swc/core-linux-x64-gnu': 1.7.26
- '@swc/core-linux-x64-musl': 1.7.26
- '@swc/core-win32-arm64-msvc': 1.7.26
- '@swc/core-win32-ia32-msvc': 1.7.26
- '@swc/core-win32-x64-msvc': 1.7.26
+ '@swc/core-darwin-arm64': 1.7.40
+ '@swc/core-darwin-x64': 1.7.40
+ '@swc/core-linux-arm-gnueabihf': 1.7.40
+ '@swc/core-linux-arm64-gnu': 1.7.40
+ '@swc/core-linux-arm64-musl': 1.7.40
+ '@swc/core-linux-x64-gnu': 1.7.40
+ '@swc/core-linux-x64-musl': 1.7.40
+ '@swc/core-win32-arm64-msvc': 1.7.40
+ '@swc/core-win32-ia32-msvc': 1.7.40
+ '@swc/core-win32-x64-msvc': 1.7.40
'@swc/helpers': 0.5.5
'@swc/counter@0.1.3': {}
@@ -19879,7 +19866,7 @@ snapshots:
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
- tslib: 2.7.0
+ tslib: 2.8.0
'@swc/register@0.1.10(@swc/core@1.6.1(@swc/helpers@0.5.5))':
dependencies:
@@ -19892,10 +19879,14 @@ snapshots:
dependencies:
'@swc/counter': 0.1.3
+ '@swc/types@0.1.13':
+ dependencies:
+ '@swc/counter': 0.1.3
+
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/runtime': 7.25.6
+ '@babel/code-frame': 7.26.0
+ '@babel/runtime': 7.26.0
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -19913,15 +19904,25 @@ 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.0)(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@testing-library/jest-dom@6.6.2':
dependencies:
- '@babel/runtime': 7.25.6
+ '@adobe/css-tools': 4.4.0
+ aria-query: 5.3.2
+ chalk: 3.0.0
+ css.escape: 1.5.1
+ dom-accessibility-api: 0.6.3
+ 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.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
'@testing-library/dom': 10.4.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.10
- '@types/react-dom': 18.3.0
+ '@types/react': 18.3.12
+ '@types/react-dom': 18.3.1
'@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
dependencies:
@@ -19936,18 +19937,6 @@ snapshots:
'@trysound/sax@0.2.0': {}
- '@tsconfig/node10@1.0.11':
- optional: true
-
- '@tsconfig/node12@1.0.11':
- optional: true
-
- '@tsconfig/node14@1.0.3':
- optional: true
-
- '@tsconfig/node16@1.0.4':
- optional: true
-
'@types/acorn@4.0.6':
dependencies:
'@types/estree': 1.0.6
@@ -19956,51 +19945,51 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
'@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.6
+ '@babel/types': 7.26.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/parser': 7.26.1
+ '@babel/types': 7.26.0
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
'@types/better-sqlite3@7.6.11':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/caseless@0.12.5': {}
'@types/concat-stream@2.0.3':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/connect@3.4.36':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/cross-spawn@6.0.6':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/d3-array@3.2.1': {}
@@ -20060,7 +20049,7 @@ snapshots:
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/qs': 6.9.16
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -20076,7 +20065,7 @@ snapshots:
'@types/graceful-fs@4.1.9':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/hast@3.0.4':
dependencies:
@@ -20084,7 +20073,7 @@ snapshots:
'@types/hoist-non-react-statics@3.3.5':
dependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
hoist-non-react-statics: 3.3.2
'@types/html-minifier-terser@6.1.0': {}
@@ -20105,16 +20094,16 @@ 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': 22.7.4
+ '@types/node': 22.8.2
'@types/tough-cookie': 4.0.5
- parse5: 7.1.2
+ parse5: 7.2.1
'@types/json-schema@7.0.15': {}
@@ -20122,9 +20111,9 @@ snapshots:
'@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.17.9
+ '@types/lodash': 4.17.12
- '@types/lodash@4.17.9': {}
+ '@types/lodash@4.17.12': {}
'@types/mdast@3.0.15':
dependencies:
@@ -20142,17 +20131,17 @@ snapshots:
'@types/mysql@2.15.26':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/node@12.20.55': {}
'@types/node@14.18.63': {}
- '@types/node@20.16.10':
+ '@types/node@20.17.2':
dependencies:
undici-types: 6.19.8
- '@types/node@22.7.4':
+ '@types/node@22.8.2':
dependencies:
undici-types: 6.19.8
@@ -20162,7 +20151,7 @@ snapshots:
'@types/nodemailer@6.4.16':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/parse-json@4.0.2': {}
@@ -20172,7 +20161,7 @@ snapshots:
'@types/pg@8.6.1':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
pg-protocol: 1.7.0
pg-types: 2.2.0
@@ -20182,19 +20171,19 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-dom@18.3.0':
+ '@types/react-dom@18.3.1':
dependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
'@types/react-lifecycles-compat@3.0.4':
dependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
'@types/react-transition-group@4.4.11':
dependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
- '@types/react@18.3.10':
+ '@types/react@18.3.12':
dependencies:
'@types/prop-types': 15.7.13
csstype: 3.1.3
@@ -20202,9 +20191,9 @@ snapshots:
'@types/request@2.48.12':
dependencies:
'@types/caseless': 0.12.5
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/tough-cookie': 4.0.5
- form-data: 2.5.1
+ form-data: 2.5.2
'@types/resolve@1.20.6': {}
@@ -20213,12 +20202,12 @@ snapshots:
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/send': 0.17.4
'@types/shimmer@1.2.0': {}
@@ -20239,7 +20228,7 @@ snapshots:
'@types/whatwg-url@8.2.2':
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
'@types/webidl-conversions': 7.0.3
'@types/yargs-parser@21.0.3': {}
@@ -20248,34 +20237,34 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/eslint-plugin@8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.11.1
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/type-utils': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/scope-manager': 8.12.1
+ '@typescript-eslint/type-utils': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.1
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2)
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@typescript-eslint/scope-manager': 8.12.1
+ '@typescript-eslint/types': 8.12.1
+ '@typescript-eslint/typescript-estree': 8.12.1(typescript@5.6.3)
+ '@typescript-eslint/visitor-keys': 8.12.1
debug: 4.3.7
eslint: 8.57.1
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
@@ -20284,28 +20273,28 @@ snapshots:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- '@typescript-eslint/scope-manager@8.7.0':
+ '@typescript-eslint/scope-manager@8.12.1':
dependencies:
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@typescript-eslint/types': 8.12.1
+ '@typescript-eslint/visitor-keys': 8.12.1
- '@typescript-eslint/type-utils@8.7.0(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/type-utils@8.12.1(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2)
- '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/typescript-estree': 8.12.1(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
debug: 4.3.7
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint
- supports-color
'@typescript-eslint/types@5.62.0': {}
- '@typescript-eslint/types@8.7.0': {}
+ '@typescript-eslint/types@8.12.1': {}
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.6.3)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
@@ -20313,35 +20302,35 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.3
- tsutils: 3.21.0(typescript@5.6.2)
+ tsutils: 3.21.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.7.0(typescript@5.6.2)':
+ '@typescript-eslint/typescript-estree@8.12.1(typescript@5.6.3)':
dependencies:
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/visitor-keys': 8.7.0
+ '@typescript-eslint/types': 8.12.1
+ '@typescript-eslint/visitor-keys': 8.12.1
debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.2)
+ ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
eslint: 8.57.1
eslint-scope: 5.1.1
semver: 7.6.3
@@ -20349,12 +20338,12 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@8.7.0(eslint@8.57.1)(typescript@5.6.2)':
+ '@typescript-eslint/utils@8.12.1(eslint@8.57.1)(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@typescript-eslint/scope-manager': 8.7.0
- '@typescript-eslint/types': 8.7.0
- '@typescript-eslint/typescript-estree': 8.7.0(typescript@5.6.2)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.12.1
+ '@typescript-eslint/types': 8.12.1
+ '@typescript-eslint/typescript-estree': 8.12.1(typescript@5.6.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
@@ -20365,44 +20354,32 @@ snapshots:
'@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.7.0':
+ '@typescript-eslint/visitor-keys@8.12.1':
dependencies:
- '@typescript-eslint/types': 8.7.0
+ '@typescript-eslint/types': 8.12.1
eslint-visitor-keys: 3.4.3
'@ungap/structured-clone@1.2.0': {}
- '@videojs/http-streaming@3.13.3(video.js@8.17.4)':
+ '@videojs/http-streaming@3.15.0(video.js@8.19.1)':
dependencies:
- '@babel/runtime': 7.25.6
- '@videojs/vhs-utils': 4.0.0
- aes-decrypter: 4.0.1
+ '@babel/runtime': 7.26.0
+ '@videojs/vhs-utils': 4.1.1
+ aes-decrypter: 4.0.2
global: 4.4.0
m3u8-parser: 7.2.0
- mpd-parser: 1.3.0
+ mpd-parser: 1.3.1
mux.js: 7.0.3
- video.js: 8.17.4
-
- '@videojs/vhs-utils@3.0.5':
- dependencies:
- '@babel/runtime': 7.25.6
- global: 4.4.0
- url-toolkit: 2.2.5
-
- '@videojs/vhs-utils@4.0.0':
- dependencies:
- '@babel/runtime': 7.25.6
- global: 4.4.0
- url-toolkit: 2.2.5
+ video.js: 8.19.1
'@videojs/vhs-utils@4.1.1':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
global: 4.4.0
'@videojs/xhr@2.7.0':
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
global: 4.4.0
is-function: 1.0.2
@@ -20410,14 +20387,14 @@ snapshots:
dependencies:
'@vitest/spy': 2.0.5
'@vitest/utils': 2.0.5
- chai: 5.1.1
+ chai: 5.1.2
tinyrainbow: 1.2.0
'@vitest/pretty-format@2.0.5':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/pretty-format@2.1.1':
+ '@vitest/pretty-format@2.1.4':
dependencies:
tinyrainbow: 1.2.0
@@ -20429,13 +20406,13 @@ snapshots:
dependencies:
'@vitest/pretty-format': 2.0.5
estree-walker: 3.0.3
- loupe: 3.1.1
+ loupe: 3.1.2
tinyrainbow: 1.2.0
- '@vitest/utils@2.1.1':
+ '@vitest/utils@2.1.4':
dependencies:
- '@vitest/pretty-format': 2.1.1
- loupe: 3.1.1
+ '@vitest/pretty-format': 2.1.4
+ loupe: 3.1.2
tinyrainbow: 1.2.0
'@webassemblyjs/ast@1.12.1':
@@ -20514,41 +20491,41 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
- '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))':
+ '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))':
dependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
- '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))':
+ '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))':
dependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))':
+ '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))':
dependencies:
envinfo: 7.14.0
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
'@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack@5.95.0))':
dependencies:
envinfo: 7.14.0
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))':
+ '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))':
dependencies:
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
'@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack@5.95.0))':
dependencies:
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
'@wry/caches@1.0.1':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@wry/context@0.7.4':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@wry/equality@0.1.11':
dependencies:
@@ -20556,15 +20533,15 @@ snapshots:
'@wry/equality@0.5.7':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@wry/trie@0.4.3':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@wry/trie@0.5.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
'@xmldom/xmldom@0.8.10': {}
@@ -20590,34 +20567,34 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- ace-builds@1.36.2: {}
+ ace-builds@1.36.3: {}
acorn-globals@7.0.1:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk: 8.3.4
- acorn-import-attributes@1.9.5(acorn@8.12.1):
+ acorn-import-attributes@1.9.5(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-jsx@5.3.2(acorn@7.4.1):
dependencies:
acorn: 7.4.1
- acorn-jsx@5.3.2(acorn@8.12.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk@7.2.0: {}
acorn-walk@8.3.4:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
acorn@7.4.1: {}
- acorn@8.12.1: {}
+ acorn@8.14.0: {}
adjust-sourcemap-loader@4.0.0:
dependencies:
@@ -20626,16 +20603,9 @@ snapshots:
adler-32@1.3.1: {}
- aes-decrypter@4.0.1:
- dependencies:
- '@babel/runtime': 7.25.6
- '@videojs/vhs-utils': 3.0.5
- global: 4.4.0
- pkcs7: 1.0.4
-
aes-decrypter@4.0.2:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@videojs/vhs-utils': 4.1.1
global: 4.4.0
pkcs7: 1.0.4
@@ -20696,7 +20666,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.2
+ fast-uri: 3.0.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -20737,9 +20707,9 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.1
- apollo-link-rest@0.9.0(@apollo/client@3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@15.9.0)(qs@6.13.0):
+ apollo-link-rest@0.9.0(@apollo/client@3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(graphql@15.9.0)(qs@6.13.0):
dependencies:
- '@apollo/client': 3.11.8(@types/react@18.3.10)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@apollo/client': 3.11.8(@types/react@18.3.12)(graphql@15.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
graphql: 15.9.0
qs: 6.13.0
@@ -20760,19 +20730,12 @@ snapshots:
readable-stream: 3.6.2
optional: true
- arg@4.1.3:
- optional: true
-
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
argparse@2.0.1: {}
- aria-query@5.1.3:
- dependencies:
- deep-equal: 2.2.3
-
aria-query@5.3.0:
dependencies:
dequal: 2.0.3
@@ -20874,7 +20837,7 @@ snapshots:
ast-types@0.16.1:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
astring@1.9.0: {}
@@ -20886,11 +20849,11 @@ snapshots:
autoprefixer@10.4.20(postcss@8.4.31):
dependencies:
- browserslist: 4.24.0
- caniuse-lite: 1.0.30001664
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001673
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.1.0
+ picocolors: 1.1.1
postcss: 8.4.31
postcss-value-parser: 4.2.0
@@ -20915,59 +20878,59 @@ snapshots:
aws4@1.13.2: {}
- axe-core@4.10.0: {}
+ axe-core@4.10.2: {}
axios@1.7.7:
dependencies:
follow-redirects: 1.15.9
- form-data: 4.0.0
+ form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
axobject-query@4.1.0: {}
- babel-core@7.0.0-bridge.0(@babel/core@7.25.2):
+ babel-core@7.0.0-bridge.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
- babel-jest@29.7.0(@babel/core@7.25.2):
+ babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@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.2)
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-loader@9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- babel-loader@9.2.1(@babel/core@7.25.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
- babel-loader@9.2.1(@babel/core@7.25.2)(webpack@5.95.0):
+ babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.95.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
webpack: 5.95.0
babel-plugin-istanbul@6.1.1:
dependencies:
- '@babel/helper-plugin-utils': 7.24.8
+ '@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
@@ -20977,14 +20940,14 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
cosmiconfig: 7.1.0
resolve: 1.22.8
@@ -20996,59 +20959,59 @@ snapshots:
reselect: 4.1.8
resolve: 1.22.8
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ '@babel/compat-data': 7.26.0
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
core-js-compat: 3.38.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
babel-plugin-transform-imports@2.0.0:
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.0
is-valid-path: 0.1.1
- babel-preset-current-node-syntax@1.1.0(@babel/core@7.25.2):
- dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.25.6(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
-
- babel-preset-jest@29.6.3(@babel/core@7.25.2):
- dependencies:
- '@babel/core': 7.25.2
+ babel-preset-current-node-syntax@1.1.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
+
+ babel-preset-jest@29.6.3(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
bail@2.0.2: {}
@@ -21068,7 +21031,7 @@ snapshots:
dependencies:
is-windows: 1.0.2
- better-sqlite3@11.3.0:
+ better-sqlite3@11.5.0:
dependencies:
bindings: 1.5.0
prebuild-install: 7.1.2
@@ -21095,23 +21058,6 @@ snapshots:
bn.js@5.2.1: {}
- body-parser@1.20.2:
- dependencies:
- bytes: 3.1.2
- content-type: 1.0.5
- debug: 2.6.9
- depd: 2.0.0
- destroy: 1.2.0
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- on-finished: 2.4.1
- qs: 6.11.0
- raw-body: 2.5.2
- type-is: 1.6.18
- unpipe: 1.0.0
- transitivePeerDependencies:
- - supports-color
-
body-parser@1.20.3:
dependencies:
bytes: 3.1.2
@@ -21188,7 +21134,7 @@ snapshots:
browserify-rsa: 4.1.1
create-hash: 1.2.0
create-hmac: 1.1.7
- elliptic: 6.5.7
+ elliptic: 6.6.0
hash-base: 3.0.4
inherits: 2.0.4
parse-asn1: 5.1.7
@@ -21199,12 +21145,12 @@ snapshots:
dependencies:
pako: 1.0.11
- browserslist@4.24.0:
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001664
- electron-to-chromium: 1.5.29
+ caniuse-lite: 1.0.30001673
+ electron-to-chromium: 1.5.49
node-releases: 2.0.18
- update-browserslist-db: 1.1.1(browserslist@4.24.0)
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
bser@2.1.1:
dependencies:
@@ -21227,7 +21173,7 @@ snapshots:
buffer@4.9.2:
dependencies:
base64-js: 1.5.1
- ieee754: 1.2.1
+ ieee754: 1.1.13
isarray: 1.0.0
buffer@5.6.0:
@@ -21292,7 +21238,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.7.0
+ tslib: 2.8.0
camelcase-keys@9.1.3:
dependencies:
@@ -21307,7 +21253,7 @@ snapshots:
camelcase@8.0.0: {}
- caniuse-lite@1.0.30001664: {}
+ caniuse-lite@1.0.30001673: {}
case-sensitive-paths-webpack-plugin@2.4.0: {}
@@ -21320,12 +21266,12 @@ snapshots:
adler-32: 1.3.1
crc-32: 1.2.2
- chai@5.1.1:
+ chai@5.1.2:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.1
+ loupe: 3.1.2
pathval: 2.0.0
chalk@2.4.2:
@@ -21556,7 +21502,7 @@ snapshots:
pkg-up: 3.1.0
semver: 7.6.3
- confbox@0.1.7: {}
+ confbox@0.1.8: {}
confusing-browser-globals@1.0.11: {}
@@ -21587,17 +21533,19 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie@0.5.0: {}
-
cookie@0.6.0: {}
+ cookie@0.7.1: {}
+
+ cookie@0.7.2: {}
+
copy-to-clipboard@3.3.3:
dependencies:
toggle-selection: 1.0.6
core-js-compat@3.38.1:
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
core-js-pure@3.38.1: {}
@@ -21613,32 +21561,32 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@8.3.6(typescript@5.6.2):
+ cosmiconfig@8.3.6(typescript@5.6.3):
dependencies:
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
- cosmiconfig@9.0.0(typescript@5.6.2):
+ cosmiconfig@9.0.0(typescript@5.6.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
- crawler-user-agents@1.0.150: {}
+ crawler-user-agents@1.0.154: {}
crc-32@1.2.2: {}
create-ecdh@4.0.4:
dependencies:
bn.js: 4.12.0
- elliptic: 6.5.7
+ elliptic: 6.6.0
create-hash@1.2.0:
dependencies:
@@ -21657,28 +21605,13 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
- create-jest@29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2)):
- 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.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
- jest-util: 29.7.0
- prompts: 2.4.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
-
- create-jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)):
+ create-jest@29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.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@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ jest-config: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -21687,10 +21620,7 @@ snapshots:
- supports-color
- ts-node
- create-require@1.1.1:
- optional: true
-
- create-storybook@8.3.4:
+ create-storybook@8.3.6:
dependencies:
'@types/semver': 7.5.8
chalk: 4.1.2
@@ -21703,7 +21633,7 @@ snapshots:
prettier: 3.3.3
prompts: 2.4.2
semver: 7.6.3
- storybook: 8.3.4
+ storybook: 8.3.6
tiny-invariant: 1.3.3
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -21725,7 +21655,7 @@ snapshots:
crypt@0.0.2: {}
- crypto-browserify@3.12.0:
+ crypto-browserify@3.12.1:
dependencies:
browserify-cipher: 1.0.1
browserify-sign: 4.2.3
@@ -21733,6 +21663,7 @@ snapshots:
create-hash: 1.2.0
create-hmac: 1.1.7
diffie-hellman: 5.0.3
+ hash-base: 3.0.4
inherits: 2.0.4
pbkdf2: 3.1.2
public-encrypt: 4.0.3
@@ -21751,7 +21682,7 @@ snapshots:
postcss-selector-parser: 6.1.2
postcss-value-parser: 4.2.0
- css-loader@5.2.7(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ css-loader@5.2.7(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.31)
loader-utils: 2.0.4
@@ -21763,9 +21694,9 @@ snapshots:
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
semver: 7.6.3
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- css-loader@5.2.7(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ css-loader@5.2.7(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
icss-utils: 5.1.0(postcss@8.4.31)
loader-utils: 2.0.4
@@ -21777,9 +21708,9 @@ snapshots:
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
semver: 7.6.3
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- css-loader@6.11.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ css-loader@6.11.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
postcss: 8.4.47
@@ -21790,9 +21721,9 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.6.3
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- css-loader@6.11.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ css-loader@6.11.0(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.47)
postcss: 8.4.47
@@ -21803,7 +21734,7 @@ snapshots:
postcss-value-parser: 4.2.0
semver: 7.6.3
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
css-loader@6.11.0(webpack@5.95.0):
dependencies:
@@ -21863,7 +21794,7 @@ snapshots:
css-vendor@2.0.8:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
is-in-browser: 1.1.3
css-what@6.1.0: {}
@@ -22058,7 +21989,7 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
date-fns@4.1.0: {}
@@ -22104,27 +22035,6 @@ snapshots:
deep-eql@5.0.2: {}
- deep-equal@2.2.2:
- dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- isarray: 2.0.5
- object-is: 1.1.6
- object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- side-channel: 1.0.6
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.2
- which-typed-array: 1.1.15
-
deep-equal@2.2.3:
dependencies:
array-buffer-byte-length: 1.0.1
@@ -22140,7 +22050,7 @@ snapshots:
object-is: 1.1.6
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
side-channel: 1.0.6
which-boxed-primitive: 1.0.2
which-collection: 1.0.2
@@ -22216,9 +22126,6 @@ snapshots:
diff-sequences@29.6.3: {}
- diff@4.0.2:
- optional: true
-
diff@5.2.0: {}
diffie-hellman@5.0.3:
@@ -22251,7 +22158,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
csstype: 3.1.3
dom-serializer@1.4.1:
@@ -22299,7 +22206,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
dot-prop@6.0.1:
dependencies:
@@ -22330,9 +22237,9 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.29: {}
+ electron-to-chromium@1.5.49: {}
- elliptic@6.5.7:
+ elliptic@6.6.0:
dependencies:
bn.js: 4.12.0
brorand: 1.1.0
@@ -22442,7 +22349,7 @@ snapshots:
object-inspect: 1.13.2
object-keys: 1.1.1
object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
safe-array-concat: 1.1.2
safe-regex-test: 1.0.3
string.prototype.trim: 1.2.9
@@ -22473,7 +22380,7 @@ snapshots:
isarray: 2.0.5
stop-iteration-iterator: 1.0.0
- es-iterator-helpers@1.0.19:
+ es-iterator-helpers@1.1.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
@@ -22487,7 +22394,7 @@ snapshots:
has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.7
- iterator.prototype: 1.1.2
+ iterator.prototype: 1.1.3
safe-array-concat: 1.1.2
es-module-lexer@1.5.4: {}
@@ -22537,6 +22444,20 @@ snapshots:
es6-iterator: 2.0.3
es6-symbol: 3.1.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-register@3.6.0(esbuild@0.23.1):
dependencies:
debug: 4.3.7
@@ -22591,81 +22512,81 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1):
+ eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1):
dependencies:
confusing-browser-globals: 1.0.11
eslint: 8.57.1
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
object.assign: 4.1.5
object.entries: 1.1.8
semver: 6.3.1
- eslint-config-airbnb@19.0.4(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.0(eslint@8.57.1))(eslint@8.57.1):
+ eslint-config-airbnb@19.0.4(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.1))(eslint-plugin-react@7.37.2(eslint@8.57.1))(eslint@8.57.1):
dependencies:
eslint: 8.57.1
- eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint@8.57.1)
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
- eslint-plugin-react: 7.37.0(eslint@8.57.1)
+ eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
object.assign: 4.1.5
object.entries: 1.1.8
- eslint-config-next@14.2.13(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)(typescript@5.6.2):
+ eslint-config-next@14.2.16(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- '@next/eslint-plugin-next': 14.2.13
+ '@next/eslint-plugin-next': 14.2.16
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
- eslint-plugin-react: 7.37.0(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
- supports-color
- eslint-config-next@14.2.13(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)(typescript@5.6.2):
+ eslint-config-next@14.2.16(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- '@next/eslint-plugin-next': 14.2.13
+ '@next/eslint-plugin-next': 14.2.16
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
- eslint-plugin-react: 7.37.0(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
- supports-color
- eslint-config-next@14.2.13(eslint@8.57.1)(typescript@5.6.2):
+ eslint-config-next@14.2.16(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- '@next/eslint-plugin-next': 14.2.13
+ '@next/eslint-plugin-next': 14.2.16
'@rushstack/eslint-patch': 1.10.4
- '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/eslint-plugin': 8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.0(eslint@8.57.1)
- eslint-plugin-react: 7.37.0(eslint@8.57.1)
- eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
+ eslint-plugin-react: 7.37.2(eslint@8.57.1)
+ eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1)
optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
transitivePeerDependencies:
- eslint-import-resolver-webpack
- eslint-plugin-import-x
@@ -22675,14 +22596,14 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-config-turbo@2.1.2(eslint@8.57.1):
+ eslint-config-turbo@2.2.3(eslint@8.57.1):
dependencies:
eslint: 8.57.1
- eslint-plugin-turbo: 2.1.2(eslint@8.57.1)
+ eslint-plugin-turbo: 2.2.3(eslint@8.57.1)
- eslint-import-resolver-babel-module@5.3.2(@babel/core@7.25.2)(babel-plugin-module-resolver@5.0.2):
+ eslint-import-resolver-babel-module@5.3.2(@babel/core@7.26.0)(babel-plugin-module-resolver@5.0.2):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
babel-plugin-module-resolver: 5.0.2
pkg-up: 3.1.0
resolve: 1.22.8
@@ -22701,87 +22622,87 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.3.7
enhanced-resolve: 5.17.1
eslint: 8.57.1
- eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
fast-glob: 3.3.2
get-tsconfig: 4.8.1
is-bun-module: 1.2.1
is-glob: 4.0.3
optionalDependencies:
- eslint-plugin-import: 2.30.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color
- eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
debug: 3.2.7
enhanced-resolve: 0.9.1
- eslint-plugin-import: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
find-root: 1.1.0
hasown: 2.0.2
interpret: 1.4.0
@@ -22790,15 +22711,15 @@ snapshots:
lodash: 4.17.21
resolve: 2.0.0-next.5
semver: 5.7.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
debug: 3.2.7
enhanced-resolve: 0.9.1
- eslint-plugin-import: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
find-root: 1.1.0
hasown: 2.0.2
interpret: 1.4.0
@@ -22807,15 +22728,15 @@ snapshots:
lodash: 4.17.21
resolve: 2.0.0-next.5
semver: 5.7.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
debug: 3.2.7
enhanced-resolve: 0.9.1
- eslint-plugin-import: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
find-root: 1.1.0
hasown: 2.0.2
interpret: 1.4.0
@@ -22824,15 +22745,15 @@ snapshots:
lodash: 4.17.21
resolve: 2.0.0-next.5
semver: 5.7.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0):
+ eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0):
dependencies:
debug: 3.2.7
enhanced-resolve: 0.9.1
- eslint-plugin-import: 2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1)
find-root: 1.1.0
hasown: 2.0.2
interpret: 1.4.0
@@ -22847,16 +22768,16 @@ snapshots:
eslint-mdx@3.1.5(eslint@8.57.1):
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint: 8.57.1
espree: 9.6.1
estree-util-visit: 2.0.0
- remark-mdx: 3.0.1
+ remark-mdx: 3.1.0
remark-parse: 11.0.0
remark-stringify: 11.0.0
- synckit: 0.9.1
- tslib: 2.7.0
+ synckit: 0.9.2
+ tslib: 2.8.0
unified: 11.0.5
unified-engine: 11.2.1
unist-util-visit: 5.0.0
@@ -22866,63 +22787,63 @@ snapshots:
- bluebird
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
- eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
- eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1)
- eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ eslint-import-resolver-typescript: 3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(eslint@8.57.1):
+ eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(eslint@8.57.1):
dependencies:
debug: 3.2.7
optionalDependencies:
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ eslint-import-resolver-webpack: 0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -22933,7 +22854,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -22942,15 +22863,16 @@ snapshots:
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/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -22961,7 +22883,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1))(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -22970,15 +22892,16 @@ snapshots:
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/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.30.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -22989,7 +22912,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -22998,15 +22921,16 @@ snapshots:
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/parser': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/parser': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.30.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(eslint-import-resolver-typescript@3.6.3)(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -23017,7 +22941,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.30.0)(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(eslint-import-resolver-webpack@0.13.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1))(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -23026,13 +22950,14 @@ snapshots:
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
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.30.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(eslint-import-resolver-webpack@0.13.9)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -23043,7 +22968,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.30.0)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-webpack@0.13.9(eslint-plugin-import@2.31.0)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -23052,6 +22977,7 @@ snapshots:
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
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -23060,19 +22986,19 @@ snapshots:
eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@8.57.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
eslint: 8.57.1
requireindex: 1.2.0
optionalDependencies:
'@testing-library/dom': 10.4.0
- eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)))(typescript@5.6.2):
+ eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(babel-plugin-macros@3.1.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 8.7.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/utils': 8.12.1(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2)
- jest: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ '@typescript-eslint/eslint-plugin': 8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)
+ jest: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -23082,17 +23008,16 @@ snapshots:
lodash: 4.17.21
vscode-json-languageservice: 4.2.1
- eslint-plugin-jsx-a11y@6.10.0(eslint@8.57.1):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
dependencies:
- aria-query: 5.1.3
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
- axe-core: 4.10.0
+ axe-core: 4.10.2
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- es-iterator-helpers: 1.0.19
eslint: 8.57.1
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -23100,7 +23025,7 @@ snapshots:
minimatch: 3.1.2
object.fromentries: 2.0.8
safe-regex-test: 1.0.3
- string.prototype.includes: 2.0.0
+ string.prototype.includes: 2.0.1
eslint-plugin-markdown@3.0.1(eslint@8.57.1):
dependencies:
@@ -23114,10 +23039,10 @@ snapshots:
eslint: 8.57.1
eslint-mdx: 3.1.5(eslint@8.57.1)
eslint-plugin-markdown: 3.0.1(eslint@8.57.1)
- remark-mdx: 3.0.1
+ remark-mdx: 3.1.0
remark-parse: 11.0.0
remark-stringify: 11.0.0
- tslib: 2.7.0
+ tslib: 2.8.0
unified: 11.0.5
vfile: 6.0.3
transitivePeerDependencies:
@@ -23126,19 +23051,19 @@ snapshots:
eslint-plugin-module-resolver@1.5.0: {}
- eslint-plugin-playwright@1.6.2(eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)))(typescript@5.6.2))(eslint@8.57.1):
+ eslint-plugin-playwright@1.8.3(eslint-plugin-jest@28.8.3(@typescript-eslint/eslint-plugin@8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(babel-plugin-macros@3.1.0))(typescript@5.6.3))(eslint@8.57.1):
dependencies:
eslint: 8.57.1
globals: 13.24.0
optionalDependencies:
- eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)))(typescript@5.6.2)
+ eslint-plugin-jest: 28.8.3(@typescript-eslint/eslint-plugin@8.12.1(@typescript-eslint/parser@8.12.1(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(jest@29.7.0(babel-plugin-macros@3.1.0))(typescript@5.6.3)
eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3):
dependencies:
eslint: 8.57.1
prettier: 3.3.3
prettier-linter-helpers: 1.0.0
- synckit: 0.9.1
+ synckit: 0.9.2
optionalDependencies:
eslint-config-prettier: 9.1.0(eslint@8.57.1)
@@ -23146,14 +23071,18 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-plugin-react@7.37.0(eslint@8.57.1):
+ eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1):
+ dependencies:
+ eslint: 8.57.1
+
+ eslint-plugin-react@7.37.2(eslint@8.57.1):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.0.19
+ es-iterator-helpers: 1.1.0
eslint: 8.57.1
estraverse: 5.3.0
hasown: 2.0.2
@@ -23168,15 +23097,15 @@ snapshots:
string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
- eslint-plugin-testing-library@6.3.0(eslint@8.57.1)(typescript@5.6.2):
+ eslint-plugin-testing-library@6.4.0(eslint@8.57.1)(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.6.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-turbo@2.1.2(eslint@8.57.1):
+ eslint-plugin-turbo@2.2.3(eslint@8.57.1):
dependencies:
dotenv: 16.0.3
eslint: 8.57.1
@@ -23197,8 +23126,8 @@ snapshots:
eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.1)
- '@eslint-community/regexpp': 4.11.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.1
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.1
'@humanwhocodes/config-array': 0.13.0
@@ -23247,8 +23176,8 @@ snapshots:
espree@9.6.1:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 3.4.3
esprima@4.0.1: {}
@@ -23278,6 +23207,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@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
@@ -23403,6 +23337,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ express@4.21.1:
+ dependencies:
+ accepts: 1.3.8
+ array-flatten: 1.1.1
+ body-parser: 1.20.3
+ content-disposition: 0.5.4
+ content-type: 1.0.5
+ cookie: 0.7.1
+ cookie-signature: 1.0.6
+ debug: 2.6.9
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 1.3.1
+ 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.10
+ proxy-addr: 2.0.7
+ qs: 6.13.0
+ range-parser: 1.2.1
+ safe-buffer: 5.2.1
+ send: 0.19.0
+ serve-static: 1.16.2
+ 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
+
ext@1.7.0:
dependencies:
type: 2.7.3
@@ -23447,7 +23417,7 @@ snapshots:
fast-safe-stringify@2.1.1: {}
- fast-uri@3.0.2: {}
+ fast-uri@3.0.3: {}
fast-xml-parser@4.4.1:
dependencies:
@@ -23480,23 +23450,23 @@ snapshots:
dependencies:
flat-cache: 3.2.0
- file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ file-loader@6.2.0(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
file-type@16.5.4:
dependencies:
@@ -23588,7 +23558,7 @@ snapshots:
flatted@3.3.1: {}
- flow-parser@0.247.1: {}
+ flow-parser@0.250.0: {}
fn-args@5.0.0: {}
@@ -23609,9 +23579,9 @@ snapshots:
forever-agent@0.6.1: {}
- fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.0
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -23623,12 +23593,12 @@ snapshots:
schema-utils: 3.3.0
semver: 7.6.3
tapable: 2.2.1
- typescript: 5.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ typescript: 5.6.3
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.0
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -23640,12 +23610,12 @@ snapshots:
schema-utils: 3.3.0
semver: 7.6.3
tapable: 2.2.1
- typescript: 5.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ typescript: 5.6.3
+ webpack: 5.95.0(esbuild@0.23.1)
- fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.2)(webpack@5.95.0):
+ fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.95.0):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.0
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -23657,7 +23627,7 @@ snapshots:
schema-utils: 3.3.0
semver: 7.6.3
tapable: 2.2.1
- typescript: 5.6.2
+ typescript: 5.6.3
webpack: 5.95.0
form-data@2.3.3:
@@ -23666,13 +23636,14 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
- form-data@2.5.1:
+ form-data@2.5.2:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
mime-types: 2.1.35
+ safe-buffer: 5.2.1
- form-data@4.0.0:
+ form-data@4.0.1:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -23684,19 +23655,19 @@ snapshots:
dependencies:
fetch-blob: 3.2.0
- formik-mui-lab@1.0.0(6jpqjgqkp2omfti2hkzyhya244):
+ formik-mui-lab@1.0.0(ggufnrxx63oy5h7baag2v3l5wi):
dependencies:
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
- '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1)
- '@mui/lab': 5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1)
+ '@mui/lab': 5.0.0-alpha.173(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
formik: 2.4.6(react@18.3.1)
react: 18.3.1
tiny-warning: 1.0.3
- formik-mui@5.0.0-alpha.1(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(formik@2.4.6(react@18.3.1))(react@18.3.1)(tiny-warning@1.0.3):
+ formik-mui@5.0.0-alpha.1(@mui/material@5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(formik@2.4.6(react@18.3.1))(react@18.3.1)(tiny-warning@1.0.3):
dependencies:
- '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react@18.3.1))(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@mui/material': 5.16.7(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
formik: 2.4.6(react@18.3.1)
react: 18.3.1
tiny-warning: 1.0.3
@@ -23711,7 +23682,7 @@ snapshots:
react: 18.3.1
react-fast-compare: 2.0.4
tiny-warning: 1.0.3
- tslib: 2.7.0
+ tslib: 2.8.0
forwarded@0.2.0: {}
@@ -23807,9 +23778,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.2.0: {}
-
- get-func-name@2.0.2: {}
+ get-east-asian-width@1.3.0: {}
get-intrinsic@1.2.4:
dependencies:
@@ -23951,7 +23920,7 @@ snapshots:
slash: 5.1.0
unicorn-magic: 0.1.0
- google-auth-library@9.14.1(encoding@0.1.13):
+ google-auth-library@9.14.2(encoding@0.1.13):
dependencies:
base64-js: 1.5.1
ecdsa-sig-formatter: 1.0.11
@@ -23967,7 +23936,7 @@ snapshots:
dependencies:
extend: 3.0.2
gaxios: 6.7.1(encoding@0.1.13)
- google-auth-library: 9.14.1(encoding@0.1.13)
+ google-auth-library: 9.14.2(encoding@0.1.13)
qs: 6.13.0
url-template: 2.0.8
uuid: 9.0.1
@@ -23977,7 +23946,7 @@ snapshots:
googleapis@133.0.0(encoding@0.1.13):
dependencies:
- google-auth-library: 9.14.1(encoding@0.1.13)
+ google-auth-library: 9.14.2(encoding@0.1.13)
googleapis-common: 7.2.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -23996,7 +23965,7 @@ snapshots:
apollo-utilities: 1.3.4(graphql@15.9.0)
graphql: 15.9.0
ts-invariant: 0.3.3
- tslib: 2.7.0
+ tslib: 2.8.0
graphql-http@1.21.0(graphql@16.8.1):
dependencies:
@@ -24019,12 +23988,12 @@ snapshots:
graphql-scalars@1.22.2(graphql@16.8.1):
dependencies:
graphql: 16.8.1
- tslib: 2.7.0
+ tslib: 2.8.0
graphql-tag@2.12.6(graphql@15.9.0):
dependencies:
graphql: 15.9.0
- tslib: 2.7.0
+ tslib: 2.8.0
graphql-type-json@0.3.2(graphql@16.8.1):
dependencies:
@@ -24081,12 +24050,6 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
- hash-base@3.1.0:
- dependencies:
- inherits: 2.0.4
- readable-stream: 3.6.2
- safe-buffer: 5.2.1
-
hash.js@1.1.7:
dependencies:
inherits: 2.0.4
@@ -24101,7 +24064,7 @@ snapshots:
'@types/hast': 3.0.4
devlop: 1.1.0
hast-util-from-parse5: 8.0.1
- parse5: 7.1.2
+ parse5: 7.2.1
vfile: 6.0.3
vfile-message: 4.0.2
@@ -24163,7 +24126,7 @@ snapshots:
stringify-entities: 4.0.4
zwitch: 2.0.4
- hast-util-to-jsx-runtime@2.3.0:
+ hast-util-to-jsx-runtime@2.3.2:
dependencies:
'@types/estree': 1.0.6
'@types/hast': 3.0.4
@@ -24205,7 +24168,7 @@ snapshots:
history@4.10.1:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.3
@@ -24250,7 +24213,7 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.34.1
+ terser: 5.36.0
html-parse-stringify@3.0.1:
dependencies:
@@ -24268,25 +24231,25 @@ snapshots:
html-void-elements@3.0.0: {}
- html-webpack-plugin@5.5.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ html-webpack-plugin@5.5.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- html-webpack-plugin@5.5.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ html-webpack-plugin@5.5.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ html-webpack-plugin@5.6.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -24294,9 +24257,9 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ html-webpack-plugin@5.6.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -24304,9 +24267,9 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- html-webpack-plugin@5.6.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ html-webpack-plugin@5.6.3(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -24314,9 +24277,9 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
- html-webpack-plugin@5.6.0(webpack@5.95.0):
+ html-webpack-plugin@5.6.3(webpack@5.95.0):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -24409,13 +24372,13 @@ snapshots:
i18next-browser-languagedetector@6.1.8:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
i18next-http-middleware@3.3.2: {}
i18next@22.5.1:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
iconv-lite@0.4.24:
dependencies:
@@ -24464,10 +24427,10 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-in-the-middle@1.11.1:
+ import-in-the-middle@1.11.2:
dependencies:
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
cjs-module-lexer: 1.4.1
module-details-from-path: 1.0.3
@@ -24612,7 +24575,7 @@ snapshots:
is-fullwidth-code-point@5.0.0:
dependencies:
- get-east-asian-width: 1.2.0
+ get-east-asian-width: 1.3.0
is-function@1.0.2: {}
@@ -24684,10 +24647,6 @@ snapshots:
dependencies:
'@types/estree': 1.0.6
- is-reference@3.0.2:
- dependencies:
- '@types/estree': 1.0.6
-
is-regex@1.1.4:
dependencies:
call-bind: 1.0.7
@@ -24769,8 +24728,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.25.2
- '@babel/parser': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.1
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -24779,8 +24738,8 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.25.2
- '@babel/parser': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.1
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -24806,7 +24765,7 @@ snapshots:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- iterator.prototype@1.1.2:
+ iterator.prototype@1.1.3:
dependencies:
define-properties: 1.2.1
get-intrinsic: 1.2.4
@@ -24838,7 +24797,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.3(babel-plugin-macros@3.1.0)
@@ -24858,35 +24817,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2)):
- dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
- '@jest/test-result': 29.7.0
- '@jest/types': 29.6.3
- chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
- exit: 0.1.2
- import-local: 3.2.0
- jest-config: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
- jest-util: 29.7.0
- jest-validate: 29.7.0
- yargs: 17.7.2
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
-
- jest-cli@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)):
+ jest-cli@29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.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.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ create-jest: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ jest-config: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -24896,12 +24836,12 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2)):
+ jest-config@29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.2)
+ babel-jest: 29.7.0(@babel/core@7.26.0)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -24921,70 +24861,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 20.16.10
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2)
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
-
- jest-config@29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)):
- dependencies:
- '@babel/core': 7.25.2
- '@jest/test-sequencer': 29.7.0
- '@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.2)
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
- jest-environment-node: 29.7.0
- jest-get-type: 29.6.3
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-runner: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- 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.10
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
-
- jest-config@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)):
- dependencies:
- '@babel/core': 7.25.2
- '@jest/test-sequencer': 29.7.0
- '@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.2)
- chalk: 4.1.2
- ci-info: 3.9.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.11
- jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
- jest-environment-node: 29.7.0
- jest-get-type: 29.6.3
- jest-regex-util: 29.6.3
- jest-resolve: 29.7.0
- jest-runner: 29.7.0
- jest-util: 29.7.0
- jest-validate: 29.7.0
- 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.4
- ts-node: 10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)
+ '@types/node': 20.17.2
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -25014,7 +24891,7 @@ snapshots:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 22.7.4
+ '@types/node': 22.8.2
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -25028,7 +24905,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -25038,7 +24915,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -25064,7 +24941,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.0
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -25077,7 +24954,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 22.8.2
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -25112,7 +24989,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -25140,7 +25017,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
chalk: 4.1.2
cjs-module-lexer: 1.4.1
collect-v8-coverage: 1.0.2
@@ -25160,15 +25037,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.25.2
- '@babel/generator': 7.25.6
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2)
- '@babel/types': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/generator': 7.26.0
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/types': 7.26.0
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.1.0(@babel/core@7.25.2)
+ babel-preset-current-node-syntax: 1.1.0(@babel/core@7.26.0)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -25186,7 +25063,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 22.8.2
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -25205,7 +25082,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -25214,35 +25091,23 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
merge-stream: 2.0.0
supports-color: 8.1.1
jest-worker@29.7.0:
dependencies:
- '@types/node': 22.7.4
+ '@types/node': 20.17.2
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2)):
- dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
- '@jest/types': 29.6.3
- import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@20.16.10)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2))
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
-
- jest@29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2)):
+ jest@29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@22.7.4)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2))
+ jest-cli: 29.7.0(@types/node@20.17.2)(babel-plugin-macros@3.1.0)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -25280,33 +25145,33 @@ snapshots:
jsbn@1.1.0: {}
- jscodeshift-add-imports@1.0.11(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))):
+ jscodeshift-add-imports@1.0.11(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))):
dependencies:
- '@babel/traverse': 7.25.6
- jscodeshift: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
- jscodeshift-find-imports: 2.0.5(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)))
+ '@babel/traverse': 7.25.9
+ jscodeshift: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
+ jscodeshift-find-imports: 2.0.5(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)))
transitivePeerDependencies:
- supports-color
- jscodeshift-find-imports@2.0.5(jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))):
+ jscodeshift-find-imports@2.0.5(jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))):
dependencies:
- jscodeshift: 0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2))
+ jscodeshift: 0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0))
- jscodeshift@0.15.2(@babel/preset-env@7.25.4(@babel/core@7.25.2)):
+ jscodeshift@0.15.2(@babel/preset-env@7.26.0(@babel/core@7.26.0)):
dependencies:
- '@babel/core': 7.25.2
- '@babel/parser': 7.25.6
- '@babel/plugin-transform-class-properties': 7.25.4(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.25.4(@babel/core@7.25.2)
- '@babel/preset-flow': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/register': 7.24.6(@babel/core@7.25.2)
- babel-core: 7.0.0-bridge.0(@babel/core@7.25.2)
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.1
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-flow': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/register': 7.25.9(@babel/core@7.26.0)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.26.0)
chalk: 4.1.2
- flow-parser: 0.247.1
+ flow-parser: 0.250.0
graceful-fs: 4.2.11
micromatch: 4.0.8
neo-async: 2.6.2
@@ -25315,7 +25180,7 @@ snapshots:
temp: 0.8.4
write-file-atomic: 2.4.3
optionalDependencies:
- '@babel/preset-env': 7.25.4(@babel/core@7.25.2)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
@@ -25324,7 +25189,7 @@ snapshots:
jsdom@20.0.3:
dependencies:
abab: 2.0.6
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-globals: 7.0.1
cssom: 0.5.0
cssstyle: 2.3.0
@@ -25332,13 +25197,13 @@ snapshots:
decimal.js: 10.4.3
domexception: 4.0.0
escodegen: 2.1.0
- form-data: 4.0.0
+ form-data: 4.0.1
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
nwsapi: 2.2.13
- parse5: 7.1.2
+ parse5: 7.2.1
saxes: 6.0.0
symbol-tree: 3.2.4
tough-cookie: 4.1.4
@@ -25359,13 +25224,13 @@ snapshots:
cssstyle: 4.1.0
data-urls: 5.0.0
decimal.js: 10.4.3
- form-data: 4.0.0
+ form-data: 4.0.1
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
is-potential-custom-element-name: 1.0.1
nwsapi: 2.2.13
- parse5: 7.1.2
+ parse5: 7.2.1
rrweb-cssom: 0.7.1
saxes: 6.0.0
symbol-tree: 3.2.4
@@ -25382,9 +25247,7 @@ snapshots:
- supports-color
- utf-8-validate
- jsesc@0.5.0: {}
-
- jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
json-bigint@1.0.0:
dependencies:
@@ -25398,9 +25261,9 @@ snapshots:
json-schema-to-typescript@14.0.5:
dependencies:
- '@apidevtools/json-schema-ref-parser': 11.7.0
+ '@apidevtools/json-schema-ref-parser': 11.7.2
'@types/json-schema': 7.0.15
- '@types/lodash': 4.17.9
+ '@types/lodash': 4.17.12
cli-color: 2.0.4
glob: 10.4.5
is-glob: 4.0.3
@@ -25450,10 +25313,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- jsonwebtoken@9.0.1:
+ jsonwebtoken@9.0.2:
dependencies:
jws: 3.2.2
- lodash: 4.17.21
+ lodash.includes: 4.3.0
+ lodash.isboolean: 3.0.3
+ lodash.isinteger: 4.0.4
+ lodash.isnumber: 3.0.3
+ lodash.isplainobject: 4.0.6
+ lodash.isstring: 4.0.1
+ lodash.once: 4.1.1
ms: 2.1.3
semver: 7.6.3
@@ -25466,46 +25335,46 @@ snapshots:
jss-plugin-camel-case@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
hyphenate-style-name: 1.1.0
jss: 10.10.0
jss-plugin-default-unit@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
jss: 10.10.0
jss-plugin-global@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
jss: 10.10.0
jss-plugin-nested@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
jss: 10.10.0
tiny-warning: 1.0.3
jss-plugin-props-sort@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
jss: 10.10.0
jss-plugin-rule-value-function@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
jss: 10.10.0
tiny-warning: 1.0.3
jss-plugin-vendor-prefixer@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
css-vendor: 2.0.8
jss: 10.10.0
jss@10.10.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
csstype: 3.1.3
is-in-browser: 1.1.3
tiny-warning: 1.0.3
@@ -25591,7 +25460,7 @@ snapshots:
debug: 4.3.7
execa: 8.0.1
lilconfig: 3.1.2
- listr2: 8.2.4
+ listr2: 8.2.5
micromatch: 4.0.8
pidtree: 0.6.0
string-argv: 0.3.2
@@ -25599,7 +25468,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- listr2@8.2.4:
+ listr2@8.2.5:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -25654,10 +25523,24 @@ snapshots:
lodash.get@4.4.2: {}
+ lodash.includes@4.3.0: {}
+
+ lodash.isboolean@3.0.3: {}
+
lodash.isequal@4.5.0: {}
+ lodash.isinteger@4.0.4: {}
+
+ lodash.isnumber@3.0.3: {}
+
+ lodash.isplainobject@4.0.6: {}
+
+ lodash.isstring@4.0.1: {}
+
lodash.merge@4.6.2: {}
+ lodash.once@4.1.1: {}
+
lodash.startcase@4.4.0: {}
lodash.toarray@4.4.0: {}
@@ -25683,13 +25566,11 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- loupe@3.1.1:
- dependencies:
- get-func-name: 2.0.2
+ loupe@3.1.2: {}
lower-case@2.0.2:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
lru-cache@10.4.3: {}
@@ -25714,11 +25595,11 @@ snapshots:
m3u8-parser@7.2.0:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@videojs/vhs-utils': 4.1.1
global: 4.4.0
- magic-string@0.30.11:
+ magic-string@0.30.12:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -25739,9 +25620,6 @@ snapshots:
dependencies:
semver: 7.6.3
- make-error@1.3.6:
- optional: true
-
make-fetch-happen@9.1.0:
dependencies:
agentkeepalive: 4.5.0
@@ -25756,7 +25634,7 @@ snapshots:
minipass-fetch: 1.4.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
- negotiator: 0.6.3
+ negotiator: 0.6.4
promise-retry: 2.0.1
socks-proxy-agent: 6.2.1
ssri: 8.0.1
@@ -25781,7 +25659,7 @@ snapshots:
md5.js@1.3.5:
dependencies:
- hash-base: 3.1.0
+ hash-base: 3.0.4
inherits: 2.0.4
safe-buffer: 5.2.1
@@ -25801,7 +25679,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- mdast-util-from-markdown@2.0.1:
+ mdast-util-from-markdown@2.0.2:
dependencies:
'@types/mdast': 4.0.4
'@types/unist': 3.0.3
@@ -25823,7 +25701,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
escape-string-regexp: 5.0.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
micromark-extension-frontmatter: 2.0.0
transitivePeerDependencies:
@@ -25835,7 +25713,7 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -25848,7 +25726,7 @@ snapshots:
'@types/unist': 3.0.3
ccount: 2.0.1
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
parse-entities: 4.0.1
stringify-entities: 4.0.4
@@ -25859,7 +25737,7 @@ snapshots:
mdast-util-mdx@3.0.0:
dependencies:
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-mdx-expression: 2.0.1
mdast-util-mdx-jsx: 3.1.3
mdast-util-mdxjs-esm: 2.0.1
@@ -25873,7 +25751,7 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
mdast-util-to-markdown: 2.1.0
transitivePeerDependencies:
- supports-color
@@ -26032,8 +25910,8 @@ snapshots:
micromark-extension-mdxjs@3.0.0:
dependencies:
- acorn: 8.12.1
- acorn-jsx: 5.3.2(acorn@8.12.1)
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
micromark-extension-mdx-expression: 3.0.0
micromark-extension-mdx-jsx: 3.0.1
micromark-extension-mdx-md: 2.0.0
@@ -26190,7 +26068,7 @@ snapshots:
braces: 3.0.3
picomatch: 2.3.1
- migrate-mongo@11.0.0(mongodb@4.17.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))):
+ migrate-mongo@11.0.0(mongodb@4.17.1(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))):
dependencies:
cli-table3: 0.6.5
commander: 9.5.0
@@ -26198,7 +26076,7 @@ snapshots:
fn-args: 5.0.0
fs-extra: 10.1.0
lodash: 4.17.21
- mongodb: 4.17.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
+ mongodb: 4.17.1(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
p-each-series: 2.2.0
miller-rabin@4.0.1:
@@ -26232,18 +26110,18 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@1.6.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ mini-css-extract-plugin@1.6.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
webpack-sources: 1.4.3
- mini-css-extract-plugin@1.6.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ mini-css-extract-plugin@1.6.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
webpack-sources: 1.4.3
minimalistic-assert@1.0.1: {}
@@ -26314,11 +26192,11 @@ snapshots:
mkdirp@3.0.1: {}
- mlly@1.7.1:
+ mlly@1.7.2:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
ufo: 1.5.4
module-details-from-path@1.0.3: {}
@@ -26332,13 +26210,13 @@ snapshots:
'@types/whatwg-url': 8.2.2
whatwg-url: 11.0.0
- mongodb@4.17.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1)):
+ mongodb@4.17.1(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0)):
dependencies:
bson: 4.7.2
mongodb-connection-string-url: 2.6.0
socks: 2.8.3
optionalDependencies:
- '@aws-sdk/credential-providers': 3.658.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
+ '@aws-sdk/credential-providers': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
'@mongodb-js/saslprep': 1.1.9
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
@@ -26348,11 +26226,11 @@ snapshots:
mongoose-paginate-v2@1.7.22: {}
- mongoose@6.12.3(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1)):
+ mongoose@6.12.3(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0)):
dependencies:
bson: 4.7.2
kareem: 2.5.1
- mongodb: 4.17.1(@aws-sdk/client-sso-oidc@3.658.1(@aws-sdk/client-sts@3.658.1))
+ mongodb: 4.17.1(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.679.0))
mpath: 0.9.0
mquery: 4.0.3
ms: 2.1.3
@@ -26364,10 +26242,10 @@ snapshots:
mpath@0.9.0: {}
- mpd-parser@1.3.0:
+ mpd-parser@1.3.1:
dependencies:
- '@babel/runtime': 7.25.6
- '@videojs/vhs-utils': 4.0.0
+ '@babel/runtime': 7.26.0
+ '@videojs/vhs-utils': 4.1.1
'@xmldom/xmldom': 0.8.10
global: 4.4.0
@@ -26392,7 +26270,12 @@ snapshots:
mux.js@7.0.3:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
+ global: 4.4.0
+
+ mux.js@7.1.0:
+ dependencies:
+ '@babel/runtime': 7.26.0
global: 4.4.0
mylas@2.1.13: {}
@@ -26419,74 +26302,77 @@ snapshots:
negotiator@0.6.3: {}
+ negotiator@0.6.4:
+ optional: true
+
neo-async@2.6.2: {}
- next-auth@4.24.8(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(nodemailer@6.9.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-auth@4.24.10(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(nodemailer@6.9.15)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@panva/hkdf': 1.2.1
- cookie: 0.5.0
+ cookie: 0.7.2
jose: 4.15.9
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
oauth: 0.9.15
openid-client: 5.7.0
- preact: 10.24.1
- preact-render-to-string: 5.2.6(preact@10.24.1)
+ preact: 10.24.3
+ preact-render-to-string: 5.2.6(preact@10.24.3)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
uuid: 8.3.2
optionalDependencies:
- nodemailer: 6.9.8
+ nodemailer: 6.9.15
- next-images@1.8.5(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ next-images@1.8.5(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- next-images@1.8.5(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ next-images@1.8.5(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ file-loader: 6.2.0(webpack@5.95.0(esbuild@0.23.1))
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0(esbuild@0.23.1)))(webpack@5.95.0(esbuild@0.23.1))
+ webpack: 5.95.0(esbuild@0.23.1)
- next-seo@6.6.0(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-seo@6.6.0(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- next-sitemap@1.9.12(next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)):
+ next-sitemap@1.9.12(next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)):
dependencies:
'@corex/deepmerge': 2.6.148
minimist: 1.2.8
- next: 14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
+ next: 14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4)
next-tick@1.1.0: {}
- next@14.2.13(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(@playwright/test@1.47.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4):
+ next@14.2.16(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.48.2)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.69.4):
dependencies:
- '@next/env': 14.2.13
+ '@next/env': 14.2.16
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001664
+ caniuse-lite: 1.0.30001673
graceful-fs: 4.2.11
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.2)(babel-plugin-macros@3.1.0)(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.13
- '@next/swc-darwin-x64': 14.2.13
- '@next/swc-linux-arm64-gnu': 14.2.13
- '@next/swc-linux-arm64-musl': 14.2.13
- '@next/swc-linux-x64-gnu': 14.2.13
- '@next/swc-linux-x64-musl': 14.2.13
- '@next/swc-win32-arm64-msvc': 14.2.13
- '@next/swc-win32-ia32-msvc': 14.2.13
- '@next/swc-win32-x64-msvc': 14.2.13
+ '@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
'@opentelemetry/api': 1.9.0
- '@playwright/test': 1.47.2
+ '@playwright/test': 1.48.2
sass: 1.69.4
transitivePeerDependencies:
- '@babel/core'
@@ -26495,9 +26381,9 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.7.0
+ tslib: 2.8.0
- node-abi@3.68.0:
+ node-abi@3.71.0:
dependencies:
semver: 7.6.3
@@ -26554,14 +26440,14 @@ snapshots:
node-int64@0.4.0: {}
- node-polyfill-webpack-plugin@2.0.1(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ node-polyfill-webpack-plugin@2.0.1(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
assert: 2.1.0
browserify-zlib: 0.2.0
buffer: 6.0.3
console-browserify: 1.2.0
constants-browserify: 1.0.0
- crypto-browserify: 3.12.0
+ crypto-browserify: 3.12.1
domain-browser: 4.23.0
events: 3.3.0
filter-obj: 2.0.2
@@ -26581,16 +26467,16 @@ snapshots:
url: 0.11.4
util: 0.12.5
vm-browserify: 1.1.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- node-polyfill-webpack-plugin@2.0.1(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ node-polyfill-webpack-plugin@2.0.1(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
assert: 2.1.0
browserify-zlib: 0.2.0
buffer: 6.0.3
console-browserify: 1.2.0
constants-browserify: 1.0.0
- crypto-browserify: 3.12.0
+ crypto-browserify: 3.12.1
domain-browser: 4.23.0
events: 3.3.0
filter-obj: 2.0.2
@@ -26610,7 +26496,7 @@ snapshots:
url: 0.11.4
util: 0.12.5
vm-browserify: 1.1.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
node-polyfill-webpack-plugin@2.0.1(webpack@5.95.0):
dependencies:
@@ -26619,7 +26505,7 @@ snapshots:
buffer: 6.0.3
console-browserify: 1.2.0
constants-browserify: 1.0.0
- crypto-browserify: 3.12.0
+ crypto-browserify: 3.12.1
domain-browser: 4.23.0
events: 3.3.0
filter-obj: 2.0.2
@@ -26647,7 +26533,7 @@ snapshots:
dependencies:
'@sendgrid/mail': 6.5.5
- nodemailer@6.9.8: {}
+ nodemailer@6.9.15: {}
nopt@5.0.0:
dependencies:
@@ -26716,7 +26602,7 @@ snapshots:
consola: 3.2.3
execa: 8.0.1
pathe: 1.1.2
- pkg-types: 1.2.0
+ pkg-types: 1.2.1
ufo: 1.5.4
oauth-sign@0.9.0: {}
@@ -26804,7 +26690,7 @@ snapshots:
oniguruma-to-js@0.4.3:
dependencies:
- regex: 4.3.2
+ regex: 4.3.3
open@8.4.2:
dependencies:
@@ -26826,7 +26712,7 @@ snapshots:
'@wry/caches': 1.0.1
'@wry/context': 0.7.4
'@wry/trie': 0.4.3
- tslib: 2.7.0
+ tslib: 2.8.0
optionator@0.9.4:
dependencies:
@@ -26900,7 +26786,7 @@ snapshots:
package-json-from-dist@1.0.1: {}
- package-manager-detector@0.2.0: {}
+ package-manager-detector@0.2.2: {}
pako@1.0.11: {}
@@ -26909,7 +26795,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
parent-module@1.0.1:
dependencies:
@@ -26946,14 +26832,14 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.0
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.24.7
+ '@babel/code-frame': 7.26.0
error-ex: 1.3.2
json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.4
@@ -26963,7 +26849,7 @@ snapshots:
parse-passwd@1.0.0: {}
- parse5@7.1.2:
+ parse5@7.2.1:
dependencies:
entities: 4.5.0
@@ -26972,7 +26858,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
passport-anonymous@1.0.1:
dependencies:
@@ -26985,7 +26871,7 @@ snapshots:
passport-jwt@4.0.1:
dependencies:
- jsonwebtoken: 9.0.1
+ jsonwebtoken: 9.0.2
passport-strategy: 1.0.0
passport-local@1.0.0:
@@ -27037,18 +26923,18 @@ snapshots:
pause@0.0.1: {}
- payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
'@date-io/date-fns': 2.16.0(date-fns@2.30.0)
'@dnd-kit/core': 6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
- '@faceless-ui/modal': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@faceless-ui/modal': 2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@faceless-ui/scroll-info': 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@faceless-ui/window-info': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@faceless-ui/window-info': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@monaco-editor/react': 4.5.1(monaco-editor@0.38.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@swc/core': 1.6.1(@swc/helpers@0.5.5)
'@swc/register': 0.1.10(@swc/core@1.6.1(@swc/helpers@0.5.5))
- body-parser: 1.20.2
+ body-parser: 1.20.3
body-scroll-lock: 4.0.0-beta.0
bson-objectid: 2.0.4
compression: 1.7.4
@@ -27057,7 +26943,7 @@ snapshots:
console-table-printer: 2.11.2
dataloader: 2.2.2
date-fns: 2.30.0
- deep-equal: 2.2.2
+ deep-equal: 2.2.3
deepmerge: 4.3.1
dotenv: 8.6.0
express: 4.21.0
@@ -27073,7 +26959,7 @@ snapshots:
graphql-query-complexity: 0.12.0(graphql@16.8.1)
graphql-scalars: 1.22.2(graphql@16.8.1)
graphql-type-json: 0.3.2(graphql@16.8.1)
- html-webpack-plugin: 5.5.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ html-webpack-plugin: 5.5.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
http-status: 1.6.2
i18next: 22.5.1
i18next-browser-languagedetector: 6.1.8
@@ -27084,14 +26970,14 @@ snapshots:
isomorphic-fetch: 3.0.0(encoding@0.1.13)
joi: 17.9.2
json-schema-to-typescript: 14.0.5
- jsonwebtoken: 9.0.1
+ jsonwebtoken: 9.0.2
jwt-decode: 3.1.2
md5: 2.3.0
method-override: 3.0.0
minimist: 1.2.8
mkdirp: 1.0.4
monaco-editor: 0.38.0
- nodemailer: 6.9.8
+ nodemailer: 6.9.15
object-to-formdata: 4.5.1
passport: 0.6.0
passport-anonymous: 1.0.1
@@ -27115,17 +27001,17 @@ snapshots:
react-image-crop: 10.1.8(react@18.3.1)
react-router-dom: 5.3.4(react@18.3.1)
react-router-navigation-prompt: 1.9.6(react-router-dom@5.3.4(react@18.3.1))(react@18.3.1)
- react-select: 5.7.4(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-select: 5.7.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-toastify: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
sanitize-filename: 1.6.3
sass: 1.69.4
- scheduler: 0.23.0
+ scheduler: 0.23.2
scmp: 2.1.0
sharp: 0.33.5
- swc-loader: 0.2.3(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- terser-webpack-plugin: 5.3.9(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- ts-essentials: 7.0.3(typescript@5.6.2)
- use-context-selector: 1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.23.0)
+ swc-loader: 0.2.6(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ ts-essentials: 7.0.3(typescript@5.6.3)
+ use-context-selector: 1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.23.2)
uuid: 9.0.1
transitivePeerDependencies:
- '@swc/helpers'
@@ -27138,18 +27024,18 @@ snapshots:
- uglify-js
- webpack
- payload@2.30.0(@swc/helpers@0.5.5)(@types/react@18.3.10)(encoding@0.1.13)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ payload@2.30.3(@swc/helpers@0.5.5)(@types/react@18.3.12)(encoding@0.1.13)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@date-io/date-fns': 2.16.0(date-fns@2.30.0)
'@dnd-kit/core': 6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
- '@faceless-ui/modal': 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@faceless-ui/modal': 2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@faceless-ui/scroll-info': 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@faceless-ui/window-info': 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@faceless-ui/window-info': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@monaco-editor/react': 4.5.1(monaco-editor@0.38.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@swc/core': 1.6.1(@swc/helpers@0.5.5)
'@swc/register': 0.1.10(@swc/core@1.6.1(@swc/helpers@0.5.5))
- body-parser: 1.20.2
+ body-parser: 1.20.3
body-scroll-lock: 4.0.0-beta.0
bson-objectid: 2.0.4
compression: 1.7.4
@@ -27158,7 +27044,7 @@ snapshots:
console-table-printer: 2.11.2
dataloader: 2.2.2
date-fns: 2.30.0
- deep-equal: 2.2.2
+ deep-equal: 2.2.3
deepmerge: 4.3.1
dotenv: 8.6.0
express: 4.21.0
@@ -27174,7 +27060,7 @@ snapshots:
graphql-query-complexity: 0.12.0(graphql@16.8.1)
graphql-scalars: 1.22.2(graphql@16.8.1)
graphql-type-json: 0.3.2(graphql@16.8.1)
- html-webpack-plugin: 5.5.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ html-webpack-plugin: 5.5.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
http-status: 1.6.2
i18next: 22.5.1
i18next-browser-languagedetector: 6.1.8
@@ -27185,14 +27071,14 @@ snapshots:
isomorphic-fetch: 3.0.0(encoding@0.1.13)
joi: 17.9.2
json-schema-to-typescript: 14.0.5
- jsonwebtoken: 9.0.1
+ jsonwebtoken: 9.0.2
jwt-decode: 3.1.2
md5: 2.3.0
method-override: 3.0.0
minimist: 1.2.8
mkdirp: 1.0.4
monaco-editor: 0.38.0
- nodemailer: 6.9.8
+ nodemailer: 6.9.15
object-to-formdata: 4.5.1
passport: 0.6.0
passport-anonymous: 1.0.1
@@ -27216,17 +27102,17 @@ snapshots:
react-image-crop: 10.1.8(react@18.3.1)
react-router-dom: 5.3.4(react@18.3.1)
react-router-navigation-prompt: 1.9.6(react-router-dom@5.3.4(react@18.3.1))(react@18.3.1)
- react-select: 5.7.4(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-select: 5.7.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-toastify: 10.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
sanitize-filename: 1.6.3
sass: 1.69.4
- scheduler: 0.23.0
+ scheduler: 0.23.2
scmp: 2.1.0
sharp: 0.33.5
- swc-loader: 0.2.3(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- terser-webpack-plugin: 5.3.9(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- ts-essentials: 7.0.3(typescript@5.6.2)
- use-context-selector: 1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.23.0)
+ swc-loader: 0.2.6(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ ts-essentials: 7.0.3(typescript@5.6.3)
+ use-context-selector: 1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.23.2)
uuid: 9.0.1
transitivePeerDependencies:
- '@swc/helpers'
@@ -27251,12 +27137,6 @@ snapshots:
performance-now@2.1.0: {}
- periscopic@3.1.0:
- dependencies:
- '@types/estree': 1.0.6
- estree-walker: 3.0.3
- is-reference: 3.0.2
-
pg-int8@1.0.1: {}
pg-protocol@1.7.0: {}
@@ -27269,10 +27149,12 @@ snapshots:
postgres-date: 1.0.7
postgres-interval: 1.2.0
- picocolors@1.1.0: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pidtree@0.6.0: {}
pify@4.0.1: {}
@@ -27324,7 +27206,7 @@ snapshots:
pkcs7@1.0.4:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
pkg-dir@3.0.0:
dependencies:
@@ -27338,10 +27220,10 @@ snapshots:
dependencies:
find-up: 6.3.0
- pkg-types@1.2.0:
+ pkg-types@1.2.1:
dependencies:
- confbox: 0.1.7
- mlly: 1.7.1
+ confbox: 0.1.8
+ mlly: 1.7.2
pathe: 1.1.2
pkg-up@3.1.0:
@@ -27357,11 +27239,11 @@ snapshots:
node-fetch: 2.6.7(encoding@0.1.13)
sharp: 0.33.5
- playwright-core@1.47.2: {}
+ playwright-core@1.48.2: {}
- playwright@1.47.2:
+ playwright@1.48.2:
dependencies:
- playwright-core: 1.47.2
+ playwright-core: 1.48.2
optionalDependencies:
fsevents: 2.3.2
@@ -27371,15 +27253,15 @@ snapshots:
pluralize@8.0.0: {}
- pnp-webpack-plugin@1.7.0(typescript@5.6.2):
+ pnp-webpack-plugin@1.7.0(typescript@5.6.3):
dependencies:
- ts-pnp: 1.2.0(typescript@5.6.2)
+ ts-pnp: 1.2.0(typescript@5.6.3)
transitivePeerDependencies:
- typescript
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
possible-typed-array-names@1.0.0: {}
@@ -27488,47 +27370,47 @@ snapshots:
'@csstools/utilities': 1.0.0(postcss@8.4.31)
postcss: 8.4.31
- postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.31
semver: 7.6.3
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ postcss-loader@6.2.1(postcss@8.4.31)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.31
semver: 7.6.3
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.6.2)
+ cosmiconfig: 9.0.0(typescript@5.6.3)
jiti: 1.21.6
postcss: 8.4.47
semver: 7.6.3
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
transitivePeerDependencies:
- typescript
- postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.6.2)
+ cosmiconfig: 9.0.0(typescript@5.6.3)
jiti: 1.21.6
postcss: 8.4.47
semver: 7.6.3
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
transitivePeerDependencies:
- typescript
- postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.2)(webpack@5.95.0):
+ postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.6.2)
+ cosmiconfig: 9.0.0(typescript@5.6.3)
jiti: 1.21.6
postcss: 8.4.47
semver: 7.6.3
@@ -27635,7 +27517,7 @@ snapshots:
'@csstools/postcss-trigonometric-functions': 3.0.10(postcss@8.4.31)
'@csstools/postcss-unset-value': 3.0.1(postcss@8.4.31)
autoprefixer: 10.4.20(postcss@8.4.31)
- browserslist: 4.24.0
+ browserslist: 4.24.2
css-blank-pseudo: 6.0.2(postcss@8.4.31)
css-has-pseudo: 6.0.5(postcss@8.4.31)
css-prefers-color-scheme: 9.0.1(postcss@8.4.31)
@@ -27693,13 +27575,13 @@ snapshots:
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.47:
dependencies:
nanoid: 3.3.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
source-map-js: 1.2.1
postgres-array@2.0.0: {}
@@ -27712,12 +27594,12 @@ snapshots:
dependencies:
xtend: 4.0.2
- preact-render-to-string@5.2.6(preact@10.24.1):
+ preact-render-to-string@5.2.6(preact@10.24.3):
dependencies:
- preact: 10.24.1
+ preact: 10.24.3
pretty-format: 3.8.0
- preact@10.24.1: {}
+ preact@10.24.3: {}
prebuild-install@7.1.2:
dependencies:
@@ -27727,7 +27609,7 @@ snapshots:
minimist: 1.2.8
mkdirp-classic: 0.5.3
napi-build-utils: 1.0.2
- node-abi: 3.68.0
+ node-abi: 3.71.0
pump: 3.0.2
rc: 1.2.8
simple-get: 4.0.1
@@ -27838,10 +27720,6 @@ snapshots:
dependencies:
qs: 6.4.1
- qs@6.11.0:
- dependencies:
- side-channel: 1.0.6
-
qs@6.11.2:
dependencies:
side-channel: 1.0.6
@@ -27899,7 +27777,7 @@ snapshots:
react-ace@11.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- ace-builds: 1.36.2
+ ace-builds: 1.36.3
diff-match-patch: 1.0.5
lodash.get: 4.4.2
lodash.isequal: 4.5.0
@@ -27938,7 +27816,7 @@ snapshots:
react-diff-viewer-continued@3.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@emotion/css': 11.13.0
+ '@emotion/css': 11.13.4
classnames: 2.5.1
diff: 5.2.0
memoize-one: 6.0.0
@@ -27948,15 +27826,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-docgen-typescript@2.2.2(typescript@5.6.2):
+ react-docgen-typescript@2.2.2(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
- react-docgen@7.0.3:
+ react-docgen@7.1.0:
dependencies:
- '@babel/core': 7.25.2
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/core': 7.26.0
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
'@types/doctrine': 0.0.9
@@ -27983,7 +27861,7 @@ snapshots:
react-event-listener@0.6.6(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
prop-types: 15.8.1
react: 18.3.1
warning: 4.0.3
@@ -28002,7 +27880,7 @@ snapshots:
react-i18next@11.18.6(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
html-parse-stringify: 3.0.1
i18next: 22.5.1
react: 18.3.1
@@ -28057,7 +27935,7 @@ snapshots:
react-router-dom@5.3.4(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -28073,7 +27951,7 @@ snapshots:
react-router@5.3.4(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
@@ -28084,11 +27962,11 @@ snapshots:
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- react-select@5.7.4(@types/react@18.3.10)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-select@5.7.4(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
'@emotion/cache': 11.13.1
- '@emotion/react': 11.13.3(@types/react@18.3.10)(react@18.3.1)
+ '@emotion/react': 11.13.3(@types/react@18.3.12)(react@18.3.1)
'@floating-ui/dom': 1.6.11
'@types/react-transition-group': 4.4.11
memoize-one: 6.0.0
@@ -28096,7 +27974,7 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.10)(react@18.3.1)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- supports-color
@@ -28159,7 +28037,7 @@ snapshots:
react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -28168,7 +28046,7 @@ snapshots:
react-vega@7.6.0(react@18.3.1)(vega-lite@5.21.0(vega@5.30.0(encoding@0.1.13)))(vega@5.30.0(encoding@0.1.13)):
dependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
fast-deep-equal: 3.1.3
prop-types: 15.8.1
react: 18.3.1
@@ -28241,12 +28119,42 @@ snapshots:
esprima: 4.0.1
source-map: 0.6.1
tiny-invariant: 1.3.3
- tslib: 2.7.0
+ tslib: 2.8.0
rechoir@0.7.1:
dependencies:
resolve: 1.22.8
+ 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
+
redent@3.0.0:
dependencies:
indent-string: 4.0.0
@@ -28274,35 +28182,37 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.25.6
+ '@babel/runtime': 7.26.0
regex-parser@2.3.0: {}
- regex@4.3.2: {}
+ regex@4.3.3: {}
- regexp.prototype.flags@1.5.2:
+ regexp.prototype.flags@1.5.3:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
set-function-name: 2.0.2
- regexpu-core@5.3.2:
+ regexpu-core@6.1.1:
dependencies:
- '@babel/regjsgen': 0.8.0
regenerate: 1.4.2
regenerate-unicode-properties: 10.2.0
- regjsparser: 0.9.1
+ regjsgen: 0.8.0
+ regjsparser: 0.11.2
unicode-match-property-ecmascript: 2.0.0
unicode-match-property-value-ecmascript: 2.2.0
- regjsparser@0.9.1:
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.11.2:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.0.2
- rehackt@0.1.0(@types/react@18.3.10)(react@18.3.1):
+ rehackt@0.1.0(@types/react@18.3.12)(react@18.3.1):
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
react: 18.3.1
rehype-autolink-headings@7.1.0:
@@ -28329,16 +28239,24 @@ snapshots:
hast-util-from-html: 2.0.3
unified: 11.0.5
- rehype-pretty-code@0.14.0(shiki@1.21.0):
+ rehype-pretty-code@0.14.0(shiki@1.22.2):
dependencies:
'@types/hast': 3.0.4
hast-util-to-string: 3.0.1
parse-numeric-range: 1.3.0
rehype-parse: 9.0.1
- shiki: 1.21.0
+ shiki: 1.22.2
unified: 11.0.5
unist-util-visit: 5.0.0
+ 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
+
rehype-slug@6.0.0:
dependencies:
'@types/hast': 3.0.4
@@ -28365,9 +28283,9 @@ snapshots:
estree-util-value-to-estree: 3.1.2
toml: 3.0.0
unified: 11.0.5
- yaml: 2.5.1
+ yaml: 2.6.0
- remark-mdx@3.0.1:
+ remark-mdx@3.1.0:
dependencies:
mdast-util-mdx: 3.0.0
micromark-extension-mdxjs: 3.0.0
@@ -28377,7 +28295,7 @@ snapshots:
remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.1
+ mdast-util-from-markdown: 2.0.2
micromark-util-types: 2.0.0
unified: 11.0.5
transitivePeerDependencies:
@@ -28515,7 +28433,7 @@ snapshots:
ripemd160@2.0.2:
dependencies:
- hash-base: 3.1.0
+ hash-base: 3.0.4
inherits: 2.0.4
robots-txt-parse@2.0.1:
@@ -28565,33 +28483,33 @@ snapshots:
dependencies:
truncate-utf8-bytes: 1.0.2
- sass-loader@12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ sass-loader@12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
optionalDependencies:
sass: 1.69.4
- sass-loader@12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ sass-loader@12.6.0(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
optionalDependencies:
sass: 1.69.4
- sass-loader@13.3.3(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ sass-loader@13.3.3(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
neo-async: 2.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
optionalDependencies:
sass: 1.69.4
- sass-loader@13.3.3(sass@1.69.4)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ sass-loader@13.3.3(sass@1.69.4)(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
neo-async: 2.6.2
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
optionalDependencies:
sass: 1.69.4
@@ -28616,10 +28534,6 @@ snapshots:
dependencies:
xmlchars: 2.2.0
- scheduler@0.23.0:
- dependencies:
- loose-envify: 1.4.0
-
scheduler@0.23.2:
dependencies:
loose-envify: 1.4.0
@@ -28754,13 +28668,13 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@1.21.0:
+ shiki@1.22.2:
dependencies:
- '@shikijs/core': 1.21.0
- '@shikijs/engine-javascript': 1.21.0
- '@shikijs/engine-oniguruma': 1.21.0
- '@shikijs/types': 1.21.0
- '@shikijs/vscode-textmate': 9.2.2
+ '@shikijs/core': 1.22.2
+ '@shikijs/engine-javascript': 1.22.2
+ '@shikijs/engine-oniguruma': 1.22.2
+ '@shikijs/types': 1.22.2
+ '@shikijs/vscode-textmate': 9.3.0
'@types/hast': 3.0.4
shimmer@1.2.1: {}
@@ -28829,7 +28743,7 @@ snapshots:
dependencies:
'@juggle/resize-observer': 3.4.0
'@types/is-hotkey': 0.1.10
- '@types/lodash': 4.17.9
+ '@types/lodash': 4.17.12
direction: 1.0.4
is-hotkey: 0.1.8
is-plain-object: 5.0.0
@@ -28867,7 +28781,7 @@ snapshots:
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.0
socks-proxy-agent@6.2.1:
dependencies:
@@ -28996,9 +28910,9 @@ snapshots:
dependencies:
internal-slot: 1.0.7
- storybook@8.3.4:
+ storybook@8.3.6:
dependencies:
- '@storybook/core': 8.3.4
+ '@storybook/core': 8.3.6
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -29052,11 +28966,12 @@ snapshots:
string-width@7.2.0:
dependencies:
emoji-regex: 10.4.0
- get-east-asian-width: 1.2.0
+ get-east-asian-width: 1.3.0
strip-ansi: 7.1.0
- string.prototype.includes@2.0.0:
+ string.prototype.includes@2.0.1:
dependencies:
+ call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
@@ -29071,7 +28986,7 @@ snapshots:
gopd: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
+ regexp.prototype.flags: 1.5.3
set-function-name: 2.0.2
side-channel: 1.0.6
@@ -29149,25 +29064,25 @@ snapshots:
'@tokenizer/token': 0.3.0
peek-readable: 4.1.0
- style-loader@2.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ style-loader@2.0.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- style-loader@2.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ style-loader@2.0.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- style-loader@3.3.4(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ style-loader@3.3.4(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- style-loader@3.3.4(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ style-loader@3.3.4(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
style-loader@3.3.4(webpack@5.95.0):
dependencies:
@@ -29181,20 +29096,20 @@ snapshots:
dependencies:
inline-style-parser: 0.2.4
- styled-jsx@5.1.1(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
babel-plugin-macros: 3.1.0
- styled-jsx@5.1.6(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1):
+ styled-jsx@5.1.6(@babel/core@7.26.0)(babel-plugin-macros@3.1.0)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
babel-plugin-macros: 3.1.0
stylis@4.2.0: {}
@@ -29217,15 +29132,15 @@ snapshots:
svg-parser@2.0.4: {}
- svg-url-loader@8.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ svg-url-loader@8.0.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- svg-url-loader@8.0.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ svg-url-loader@8.0.0(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ file-loader: 6.2.0(webpack@5.95.0(esbuild@0.23.1))
+ webpack: 5.95.0(esbuild@0.23.1)
svgo@3.3.2:
dependencies:
@@ -29235,39 +29150,41 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.1.0
+ picocolors: 1.1.1
- swc-loader@0.2.3(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ swc-loader@0.2.6(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
'@swc/core': 1.6.1(@swc/helpers@0.5.5)
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ '@swc/counter': 0.1.3
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- swc-loader@0.2.3(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ swc-loader@0.2.6(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@swc/core': 1.6.1(@swc/helpers@0.5.5)
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ '@swc/counter': 0.1.3
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- swc-loader@0.2.6(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ swc-loader@0.2.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
+ '@swc/core': 1.7.40(@swc/helpers@0.5.5)
'@swc/counter': 0.1.3
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- swc-loader@0.2.6(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ swc-loader@0.2.6(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
+ '@swc/core': 1.7.40(@swc/helpers@0.5.5)
'@swc/counter': 0.1.3
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- swc-minify-webpack-plugin@2.1.3(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ swc-minify-webpack-plugin@2.1.3(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ '@swc/core': 1.7.40(@swc/helpers@0.5.5)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- swc-minify-webpack-plugin@2.1.3(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ swc-minify-webpack-plugin@2.1.3(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ '@swc/core': 1.7.40(@swc/helpers@0.5.5)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
swr@2.2.5(react@18.3.1):
dependencies:
@@ -29279,10 +29196,10 @@ snapshots:
symbol-tree@3.2.4: {}
- synckit@0.9.1:
+ synckit@0.9.2:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.7.0
+ tslib: 2.8.0
tabbable@5.3.3: {}
@@ -29324,75 +29241,74 @@ snapshots:
term-size@2.2.1: {}
- terser-webpack-plugin@5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.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.34.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ terser: 5.36.0
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- esbuild: 0.23.1
+ '@swc/core': 1.6.1(@swc/helpers@0.5.5)
- terser-webpack-plugin@5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ terser-webpack-plugin@5.3.10(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.34.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ terser: 5.36.0
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
+ '@swc/core': 1.6.1(@swc/helpers@0.5.5)
- terser-webpack-plugin@5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.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.34.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ terser: 5.36.0
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
+ '@swc/core': 1.7.40(@swc/helpers@0.5.5)
- terser-webpack-plugin@5.3.10(webpack@5.95.0):
+ terser-webpack-plugin@5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.34.1
- webpack: 5.95.0
+ terser: 5.36.0
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
+ optionalDependencies:
+ '@swc/core': 1.7.40(@swc/helpers@0.5.5)
- terser-webpack-plugin@5.3.9(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ terser-webpack-plugin@5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.34.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ terser: 5.36.0
+ webpack: 5.95.0(esbuild@0.23.1)
optionalDependencies:
- '@swc/core': 1.6.1(@swc/helpers@0.5.5)
+ esbuild: 0.23.1
- terser-webpack-plugin@5.3.9(@swc/core@1.6.1(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ 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.34.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
- optionalDependencies:
- '@swc/core': 1.6.1(@swc/helpers@0.5.5)
+ terser: 5.36.0
+ webpack: 5.95.0
- terser@5.34.1:
+ terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -29450,8 +29366,6 @@ snapshots:
tmpl@1.0.5: {}
- to-fast-properties@2.0.0: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
@@ -29503,19 +29417,19 @@ snapshots:
dependencies:
utf8-byte-length: 1.0.5
- ts-api-utils@1.3.0(typescript@5.6.2):
+ ts-api-utils@1.3.0(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
ts-dedent@2.2.0: {}
- ts-essentials@7.0.3(typescript@5.6.2):
+ ts-essentials@7.0.3(typescript@5.6.3):
dependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
ts-invariant@0.10.3:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.0
ts-invariant@0.3.3:
dependencies:
@@ -29525,51 +29439,9 @@ snapshots:
dependencies:
tslib: 1.14.1
- ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@20.16.10)(typescript@5.6.2):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 20.16.10
- acorn: 8.12.1
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.6.2
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
- optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- optional: true
-
- ts-node@10.9.2(@swc/core@1.7.26(@swc/helpers@0.5.5))(@types/node@22.7.4)(typescript@5.6.2):
- dependencies:
- '@cspotcode/source-map-support': 0.8.1
- '@tsconfig/node10': 1.0.11
- '@tsconfig/node12': 1.0.11
- '@tsconfig/node14': 1.0.3
- '@tsconfig/node16': 1.0.4
- '@types/node': 22.7.4
- acorn: 8.12.1
- acorn-walk: 8.3.4
- arg: 4.1.3
- create-require: 1.1.1
- diff: 4.0.2
- make-error: 1.3.6
- typescript: 5.6.2
- v8-compile-cache-lib: 3.0.1
- yn: 3.1.1
+ ts-pnp@1.2.0(typescript@5.6.3):
optionalDependencies:
- '@swc/core': 1.7.26(@swc/helpers@0.5.5)
- optional: true
-
- ts-pnp@1.2.0(typescript@5.6.2):
- optionalDependencies:
- typescript: 5.6.2
+ typescript: 5.6.3
tsc-alias@1.8.10:
dependencies:
@@ -29603,14 +29475,14 @@ snapshots:
tslib@2.6.3: {}
- tslib@2.7.0: {}
+ tslib@2.8.0: {}
- tsutils@3.21.0(typescript@5.6.2):
+ tsutils@3.21.0(typescript@5.6.3):
dependencies:
tslib: 1.14.1
- typescript: 5.6.2
+ typescript: 5.6.3
- tsx@4.19.1:
+ tsx@4.19.2:
dependencies:
esbuild: 0.23.1
get-tsconfig: 4.8.1
@@ -29623,32 +29495,32 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- turbo-darwin-64@2.1.2:
+ turbo-darwin-64@2.2.3:
optional: true
- turbo-darwin-arm64@2.1.2:
+ turbo-darwin-arm64@2.2.3:
optional: true
- turbo-linux-64@2.1.2:
+ turbo-linux-64@2.2.3:
optional: true
- turbo-linux-arm64@2.1.2:
+ turbo-linux-arm64@2.2.3:
optional: true
- turbo-windows-64@2.1.2:
+ turbo-windows-64@2.2.3:
optional: true
- turbo-windows-arm64@2.1.2:
+ turbo-windows-arm64@2.2.3:
optional: true
- turbo@2.1.2:
+ turbo@2.2.3:
optionalDependencies:
- turbo-darwin-64: 2.1.2
- turbo-darwin-arm64: 2.1.2
- turbo-linux-64: 2.1.2
- turbo-linux-arm64: 2.1.2
- turbo-windows-64: 2.1.2
- turbo-windows-arm64: 2.1.2
+ 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
tweetnacl@0.14.5: {}
@@ -29711,7 +29583,7 @@ snapshots:
typedarray@0.0.6: {}
- typescript@5.6.2: {}
+ typescript@5.6.3: {}
ufo@1.5.4: {}
@@ -29742,7 +29614,7 @@ snapshots:
'@types/concat-stream': 2.0.3
'@types/debug': 4.1.12
'@types/is-empty': 1.2.3
- '@types/node': 20.16.10
+ '@types/node': 20.17.2
'@types/unist': 3.0.3
concat-stream: 2.0.0
debug: 4.3.7
@@ -29759,7 +29631,7 @@ snapshots:
vfile-message: 4.0.2
vfile-reporter: 8.1.1
vfile-statistics: 3.0.0
- yaml: 2.5.1
+ yaml: 2.6.0
transitivePeerDependencies:
- bluebird
- supports-color
@@ -29829,54 +29701,54 @@ snapshots:
unplugin@1.0.1:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
chokidar: 3.6.0
webpack-sources: 3.2.3
webpack-virtual-modules: 0.5.0
- unplugin@1.14.1(webpack-sources@3.2.3):
+ unplugin@1.15.0(webpack-sources@3.2.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
webpack-virtual-modules: 0.6.2
optionalDependencies:
webpack-sources: 3.2.3
- update-browserslist-db@1.1.1(browserslist@4.24.0):
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.24.0
+ browserslist: 4.24.2
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
- url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
optionalDependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
- url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
optionalDependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
- url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ url-loader@4.1.1(file-loader@6.2.0(webpack@5.95.0(esbuild@0.23.1)))(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
optionalDependencies:
- file-loader: 6.2.0(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ file-loader: 6.2.0(webpack@5.95.0(esbuild@0.23.1))
url-parse@1.5.10:
dependencies:
@@ -29885,8 +29757,6 @@ snapshots:
url-template@2.0.8: {}
- url-toolkit@2.2.5: {}
-
url@0.10.3:
dependencies:
punycode: 1.3.2
@@ -29897,18 +29767,18 @@ snapshots:
punycode: 1.4.1
qs: 6.13.0
- use-context-selector@1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.23.0):
+ use-context-selector@1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.23.2):
dependencies:
react: 18.3.1
- scheduler: 0.23.0
+ scheduler: 0.23.2
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.10)(react@18.3.1):
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.10
+ '@types/react': 18.3.12
use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
@@ -29947,9 +29817,6 @@ snapshots:
kleur: 4.1.5
sade: 1.8.1
- v8-compile-cache-lib@3.0.1:
- optional: true
-
v8-to-istanbul@9.3.0:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
@@ -29990,7 +29857,7 @@ snapshots:
fast-json-patch: 3.1.1
json-stringify-pretty-compact: 3.0.0
semver: 7.6.3
- tslib: 2.7.0
+ tslib: 2.8.0
vega: 5.30.0(encoding@0.1.13)
vega-interpreter: 1.0.5
vega-lite: 5.21.0(vega@5.30.0(encoding@0.1.13))
@@ -30551,25 +30418,25 @@ snapshots:
victory-voronoi-container: 36.9.2(react@18.3.1)
victory-zoom-container: 36.9.2(react@18.3.1)
- video.js@8.17.4:
+ video.js@8.19.1:
dependencies:
- '@babel/runtime': 7.25.6
- '@videojs/http-streaming': 3.13.3(video.js@8.17.4)
- '@videojs/vhs-utils': 4.0.0
+ '@babel/runtime': 7.26.0
+ '@videojs/http-streaming': 3.15.0(video.js@8.19.1)
+ '@videojs/vhs-utils': 4.1.1
'@videojs/xhr': 2.7.0
aes-decrypter: 4.0.2
global: 4.4.0
m3u8-parser: 7.2.0
- mpd-parser: 1.3.0
- mux.js: 7.0.3
- videojs-contrib-quality-levels: 4.1.0(video.js@8.17.4)
+ mpd-parser: 1.3.1
+ mux.js: 7.1.0
+ videojs-contrib-quality-levels: 4.1.0(video.js@8.19.1)
videojs-font: 4.2.0
videojs-vtt.js: 0.15.5
- videojs-contrib-quality-levels@4.1.0(video.js@8.17.4):
+ videojs-contrib-quality-levels@4.1.0(video.js@8.19.1):
dependencies:
global: 4.4.0
- video.js: 8.17.4
+ video.js: 8.19.1
videojs-font@4.2.0: {}
@@ -30577,9 +30444,9 @@ snapshots:
dependencies:
global: 4.4.0
- videojs-youtube@3.0.1(video.js@8.17.4):
+ videojs-youtube@3.0.1(video.js@8.19.1):
dependencies:
- video.js: 8.17.4
+ video.js: 8.19.1
vm-browserify@1.1.2: {}
@@ -30639,7 +30506,7 @@ snapshots:
webpack-bundle-analyzer@4.10.2:
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.12.1
+ acorn: 8.14.0
acorn-walk: 8.3.4
commander: 7.2.0
debounce: 1.2.1
@@ -30647,17 +30514,17 @@ snapshots:
gzip-size: 6.0.0
html-escaper: 2.0.2
opener: 1.5.2
- picocolors: 1.1.0
+ picocolors: 1.1.1
sirv: 2.0.4
ws: 7.5.10
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack@5.95.0))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
'@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack@5.95.0))
'@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack@5.95.0))
colorette: 2.0.20
@@ -30667,17 +30534,17 @@ snapshots:
import-local: 3.2.0
interpret: 2.2.0
rechoir: 0.7.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
webpack-merge: 5.10.0
optionalDependencies:
webpack-bundle-analyzer: 4.10.2
- webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
- '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
- '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
+ '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
+ '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
colorette: 2.0.20
commander: 7.2.0
cross-spawn: 7.0.3
@@ -30685,12 +30552,12 @@ snapshots:
import-local: 3.2.0
interpret: 2.2.0
rechoir: 0.7.1
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
webpack-merge: 5.10.0
optionalDependencies:
webpack-bundle-analyzer: 4.10.2
- webpack-dev-middleware@6.1.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
+ webpack-dev-middleware@6.1.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
@@ -30698,9 +30565,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0)
- webpack-dev-middleware@6.1.2(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ webpack-dev-middleware@6.1.2(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
@@ -30708,9 +30575,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- webpack-dev-middleware@6.1.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)):
+ webpack-dev-middleware@6.1.3(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
@@ -30718,9 +30585,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)
+ webpack: 5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))))
- webpack-dev-middleware@6.1.3(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))):
+ webpack-dev-middleware@6.1.3(webpack@5.95.0(esbuild@0.23.1)):
dependencies:
colorette: 2.0.20
memfs: 3.5.3
@@ -30728,7 +30595,7 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))))
+ webpack: 5.95.0(esbuild@0.23.1)
webpack-dev-middleware@6.1.3(webpack@5.95.0):
dependencies:
@@ -30769,9 +30636,9 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.24.0
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -30793,15 +30660,15 @@ snapshots:
- esbuild
- uglify-js
- webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1):
+ webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))):
dependencies:
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.24.0
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -30815,23 +30682,25 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(esbuild@0.23.1))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
watchpack: 2.4.2
webpack-sources: 3.2.3
+ optionalDependencies:
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5)))
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))):
+ webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0):
dependencies:
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.24.0
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -30845,25 +30714,25 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
watchpack: 2.4.2
webpack-sources: 3.2.3
optionalDependencies:
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5)))
+ webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.40(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0):
+ webpack@5.95.0(esbuild@0.23.1):
dependencies:
'@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.24.0
+ acorn: 8.14.0
+ acorn-import-attributes: 1.9.5(acorn@8.14.0)
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -30877,11 +30746,9 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
+ terser-webpack-plugin: 5.3.10(esbuild@0.23.1)(webpack@5.95.0(esbuild@0.23.1))
watchpack: 2.4.2
webpack-sources: 3.2.3
- optionalDependencies:
- webpack-cli: 4.10.0(webpack-bundle-analyzer@4.10.2)(webpack@5.95.0(@swc/core@1.7.26(@swc/helpers@0.5.5))(webpack-cli@4.10.0))
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -31030,7 +30897,7 @@ snapshots:
xml2js@0.6.2:
dependencies:
- sax: 1.4.1
+ sax: 1.2.1
xmlbuilder: 11.0.1
xmlbuilder@11.0.1: {}
@@ -31060,6 +30927,8 @@ snapshots:
yaml@2.5.1: {}
+ yaml@2.6.0: {}
+
yargs-parser@21.1.1: {}
yargs@17.7.2:
@@ -31072,9 +30941,6 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
- yn@3.1.1:
- optional: true
-
yocto-queue@0.1.0: {}
yocto-queue@1.1.1: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index a0060b3e2..906400146 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -14,6 +14,7 @@ catalog:
"@babel/runtime": ^7.25.0
"@changesets/changelog-github": ^0.5.0
"@changesets/cli": ^2.27.8
+ "@commons-ui/legacy": npm:@commons-ui/core@^0.1.0
"@commons-ui/core": ^0.1.0
"@emotion/cache": ^11.13.1
"@emotion/react": ^11.13.3