diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
deleted file mode 100644
index 1e905b09f..000000000
--- a/.github/workflows/cypress.yml
+++ /dev/null
@@ -1,59 +0,0 @@
-name: cypress
-# https://glebbahmutov.com/blog/develop-preview-test/
-on: [deployment_status]
-jobs:
- e2e:
- if: github.event.deployment_status.state == 'success'
- runs-on: ubuntu-latest
- strategy:
- # when one test fails, DO NOT cancel the other
- # containers, because this will kill Cypress processes
- # leaving the Dashboard hanging ...
- # https://github.com/cypress-io/github-action/issues/48
- fail-fast: false
- matrix:
- # run 2 copies of the current job in parallel
- containers: [1, 2]
- steps:
- - name: Checkout đ
- uses: actions/checkout@v3
-
- - name: Install pnpm
- uses: pnpm/action-setup@v2
- with:
- version: ^7.4.1
- run_install: false
-
- - name: Get pnpm store directory
- id: pnpm-cache
- run: |
- echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
-
- - uses: actions/cache@v3
- name: Setup pnpm cache
- with:
- path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
- key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
- restore-keys: |
- ${{ runner.os }}-pnpm-store-
-
- - name: Install dependencies
- run: pnpm install
-
- - name: Run Cypress đ˛
- uses: cypress-io/github-action@v4
- with:
- browser: chrome
- record: true
- parallel: true
- install: false
- working-directory: apps/e2e
- group: 'Cypress Actions'
- env:
- CYPRESS_BASE_URL: ${{ github.event.deployment_status.target_url }}
- CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }}
- TEST_USER_ID: ${{ secrets.TEST_USER_ID }}
- # DEBUG: 'cypress:*'
- # DEBUG_DEPTH: 9
diff --git a/README-zh.md b/README-zh.md
index e581b2802..f122e75c7 100644
--- a/README-zh.md
+++ b/README-zh.md
@@ -1,7 +1,6 @@
# Chirpy
[](https://github.com/devrsi0n/chirpy/deployments)
-[](https://dashboard.cypress.io/projects/2p3w5f/runs)
[](https://twitter.com/ChirpyHQ)
diff --git a/README.md b/README.md
index 4d68ca12a..1a741fe39 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
# Chirpy | [įŽäŊä¸æ](./README-zh.md)
[](https://github.com/devrsi0n/chirpy/deployments)
-[](https://dashboard.cypress.io/projects/2p3w5f/runs)
[](https://twitter.com/ChirpyHQ)
diff --git a/apps/bootstrapper/package.json b/apps/bootstrapper/package.json
index c78605a3c..e119fcefc 100644
--- a/apps/bootstrapper/package.json
+++ b/apps/bootstrapper/package.json
@@ -16,18 +16,18 @@
"@chirpy-dev/types": "workspace:*",
"@chirpy-dev/utils": "workspace:*",
"@testing-library/react": "14.0.0",
- "@types/jest": "29.5.3",
+ "@types/jest": "29.5.4",
"@types/node": "18.16.18",
- "@types/react": "18.2.20",
+ "@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"dotenv": "16.3.1",
"dotenv-cli": "7.3.0",
"dotenv-expand": "10.0.0",
- "eslint": "8.47.0",
- "jest": "29.6.2",
+ "eslint": "8.48.0",
+ "jest": "29.6.4",
"react": "18.2.0",
"react-dom": "18.2.0",
- "typescript": "5.1.6",
+ "typescript": "5.2.2",
"vite": "4.4.9",
"vite-plugin-dts": "2.3.0"
},
@@ -36,8 +36,8 @@
},
"dependencies": {
"@chirpy-dev/trpc": "workspace:*",
- "@trpc/client": "10.37.1",
- "@trpc/server": "10.37.1",
+ "@trpc/client": "10.38.1",
+ "@trpc/server": "10.38.1",
"superjson": "1.13.1"
}
}
diff --git a/apps/e2e/.eslintrc.js b/apps/e2e/.eslintrc.js
deleted file mode 100644
index e89381058..000000000
--- a/apps/e2e/.eslintrc.js
+++ /dev/null
@@ -1,4 +0,0 @@
-module.exports = {
- root: true,
- extends: ['@chirpy-dev'],
-};
diff --git a/apps/e2e/CHANGELOG.md b/apps/e2e/CHANGELOG.md
deleted file mode 100644
index c47962a09..000000000
--- a/apps/e2e/CHANGELOG.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# @chirpy-dev/e2e
-
-## 0.0.2
-
-### Patch Changes
-
-- Updated dependencies [[`e0a8726`](https://github.com/devrsi0n/chirpy/commit/e0a87265ea31e9434288f9b4de2fe680e5c00b60)]:
- - @chirpy-dev/eslint-config@0.1.1
-
-## 0.0.1
-
-### Patch Changes
-
-- Updated dependencies [85ec5a2]
- - @chirpy-dev/eslint-config@0.1.0
diff --git a/apps/e2e/cypress.config.ts b/apps/e2e/cypress.config.ts
deleted file mode 100644
index dc056811b..000000000
--- a/apps/e2e/cypress.config.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { defineConfig } from 'cypress';
-
-export default defineConfig({
- projectId: '2p3w5f',
- chromeWebSecurity: false,
- videoCompression: false,
- e2e: {
- setupNodeEvents(on, config) {
- return require('./cypress/plugins/index.ts').default(on, config);
- },
- specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
- },
- retries: {
- runMode: 2,
- },
-});
diff --git a/apps/e2e/cypress/e2e/dashboard/project.spec.ts b/apps/e2e/cypress/e2e/dashboard/project.spec.ts
deleted file mode 100644
index feda6c802..000000000
--- a/apps/e2e/cypress/e2e/dashboard/project.spec.ts
+++ /dev/null
@@ -1,78 +0,0 @@
-import { waitTrpc } from '../../fixtures/utils';
-
-describe('Project', () => {
- before(() => {
- cy.login();
- cy.visit('/dashboard');
- // Wait for spinner dismiss
- cy.get(`[aria-label="Loading data"]`, { timeout: 10_000 }).should(
- 'not.exist',
- );
- cy.get('body').then(($body) => {
- // Delete duplicated project if exist
- if ($body.find(`[aria-label='Project list']`).length > 0) {
- cy.findByLabelText(/project list/i)
- .first()
- .first()
- .findByRole('button', { name: /show more project options/i })
- .click();
- cy.findByLabelText(/project list/i)
- .first()
- .first()
- .findByRole('menuitem', { name: /delete/i })
- .click();
- cy.findByRole('dialog')
- .findByRole('button', { name: /delete/i })
- .click();
- waitTrpc();
- }
- });
-
- // Create project
- cy.findByRole('button', {
- name: /create project/i,
- }).click({ force: true });
- cy.findByRole('textbox', {
- name: /name/i,
- }).type('Foo');
- cy.findByRole('textbox', {
- name: /domain/i,
- }).type('foobar.com');
- cy.findByRole('button', {
- name: /^create$/i,
- }).click();
- waitForProjectCardAppear();
- });
-
- it('should show integration doc', () => {
- cy.findByRole('button', {
- name: /integrate guide/i,
- }).click();
- cy.findByRole('dialog', { name: /get started with \S+ comment/i }).should(
- 'be.visible',
- );
- cy.findByRole('button', { name: /dismiss/i }).click();
- cy.findByRole('dialog', { name: /get started with \S+ comment/i }).should(
- 'not.exist',
- );
- });
-
- it('should active theme', () => {
- cy.findByRole('link', { name: /theme/i }).click();
- cy.url({ timeout: 60_000 }).should('include', '/theme/foobar.com');
- cy.findByLabelText(/primary color picker/i).click();
- cy.findByRole('button', { name: /color green/i }).click({ force: true });
- cy.findByRole('button', { name: /post/i }).should(
- 'have.css',
- 'background-color',
- 'rgb(48, 164, 108)',
- );
-
- cy.visit('/dashboard');
- });
-});
-
-const waitForProjectCardAppear = () =>
- cy
- .findByRole('button', { name: /theme/i, timeout: 10_000 })
- .should('be.visible');
diff --git a/apps/e2e/cypress/e2e/home/footer.spec.ts b/apps/e2e/cypress/e2e/home/footer.spec.ts
deleted file mode 100644
index ee776e80a..000000000
--- a/apps/e2e/cypress/e2e/home/footer.spec.ts
+++ /dev/null
@@ -1,32 +0,0 @@
-describe('Footer', () => {
- before(() => {
- cy.visit('/');
- });
-
- it('navigation links', () => {
- cy.get('footer')
- .findByRole('link', { name: 'Docs' })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/docs');
-
- cy.get('footer')
- .findByRole('link', { name: 'Blog' })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/blog');
-
- cy.get('footer')
- .findByRole('link', { name: 'Pricing' })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/#pricing');
-
- cy.get('footer')
- .findByRole('link', { name: 'Terms' })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/terms-of-service');
-
- cy.get('footer')
- .findByRole('link', { name: 'Privacy' })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/privacy-policy');
- });
-});
diff --git a/apps/e2e/cypress/e2e/home/header.spec.ts b/apps/e2e/cypress/e2e/home/header.spec.ts
deleted file mode 100644
index 3eedba31c..000000000
--- a/apps/e2e/cypress/e2e/home/header.spec.ts
+++ /dev/null
@@ -1,67 +0,0 @@
-import { testUser } from '../../fixtures/user';
-
-describe('Header', () => {
- it('should show navigation links', () => {
- loadHomePage();
-
- cy.get('header').findByRole('link', { name: 'Docs' }).click();
- cy.url({ timeout: 60_000 }).should('include', '/docs');
-
- cy.get('header').findByRole('link', { name: 'Blog' }).click();
- cy.url({ timeout: 60_000 }).should('include', '/blog');
-
- cy.get('header')
- .findByRole('link', { name: /^logo of \S+/i })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/');
- });
-
- it('should show user menu', () => {
- cy.login();
- loadHomePage();
- cy.get('header').findByRole('link', { name: 'Dashboard' }).click();
- cy.url({ timeout: 60_000 }).should('include', '/dashboard');
- clickUserMenu();
- cy.get('header').findByText(testUser.name).should('be.visible');
- cy.get('header')
- .findByRole('menu')
- .findByRole('menuitem', { name: 'Dashboard' })
- .should('be.visible')
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/dashboard');
-
- clickUserMenu();
- cy.get('header')
- .findByRole('menuitem', { name: 'Profile' })
- .click({ force: true });
- cy.url({ timeout: 60_000 }).should('include', '/profile');
-
- clickUserMenu();
- cy.get('header')
- .findByRole('menuitem', { name: 'Log out' })
- .should('be.visible')
- .click({ force: true });
- cy.get('header').findByText(testUser.name).should('not.exist');
- });
-});
-
-function loadHomePage() {
- cy.visit('/', {
- timeout: 60_000,
- });
- cy.get('[aria-label="Logo of Chirpy"]', { timeout: 60_000 }).should(
- 'be.visible',
- );
-}
-
-function clickUserMenu() {
- const userImage = cy.get('header').findByRole('img', {
- name: new RegExp(`${testUser.name}'s avatar`, 'i'),
- });
- userImage.parent().then((elem) => {
- // Only click the menu if it's unexpanded
- if (elem.attr('aria-expanded') === 'false') {
- elem.trigger('click');
- }
- });
-}
diff --git a/apps/e2e/cypress/e2e/home/index.spec.ts b/apps/e2e/cypress/e2e/home/index.spec.ts
deleted file mode 100644
index 563591a62..000000000
--- a/apps/e2e/cypress/e2e/home/index.spec.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-describe('Index', () => {
- before(() => {
- cy.visit('/');
- });
-
- it('main call to actions', () => {
- cy.findByRole('button', { name: 'Get Early Access' }).click();
- cy.findAllByRole('button', { name: 'Try It Free' }).should(
- 'have.length',
- 1,
- );
- cy.url({ timeout: 60_000 }).should('include', '/auth/sign-in');
- cy.visit('/');
- });
-
- it('learn more', () => {
- cy.findByRole('button', {
- name: /learn more/i,
- }).click();
- cy.url({ timeout: 60_000 }).should('include', '/docs');
- });
-});
diff --git a/apps/e2e/cypress/fixtures/example.json b/apps/e2e/cypress/fixtures/example.json
deleted file mode 100644
index 02e425437..000000000
--- a/apps/e2e/cypress/fixtures/example.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "name": "Using fixtures to represent data",
- "email": "hello@cypress.io",
- "body": "Fixtures are a great way to mock data for responses to routes"
-}
diff --git a/apps/e2e/cypress/fixtures/load-env.ts b/apps/e2e/cypress/fixtures/load-env.ts
deleted file mode 100644
index 718c7d762..000000000
--- a/apps/e2e/cypress/fixtures/load-env.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import * as DotEnv from 'dotenv';
-import * as path from 'path';
-
-DotEnv.config({
- // eslint-disable-next-line unicorn/prefer-module
- path: path.resolve(__dirname, '../../../main/.env.local'),
- debug: true,
-});
diff --git a/apps/e2e/cypress/fixtures/user.ts b/apps/e2e/cypress/fixtures/user.ts
deleted file mode 100644
index 24e25ed00..000000000
--- a/apps/e2e/cypress/fixtures/user.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-export const testUser = {
- // Used in node and browser contexts
- id:
- process.env.TEST_USER_ID?.replace(/-/g, '').slice(0, 23) ||
- // @ts-ignore
- ('Cypress' in global ? global.Cypress.env('TEST_USER_ID') : 'invalid-id'),
- name: 'CypressTest',
- email: 'cypress.test@localhost',
- avatar: 'https://www.cypress.io/icons/icon-72x72.png',
-};
diff --git a/apps/e2e/cypress/fixtures/utils.ts b/apps/e2e/cypress/fixtures/utils.ts
deleted file mode 100644
index b06392cf7..000000000
--- a/apps/e2e/cypress/fixtures/utils.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-export const waitTrpc = () =>
- cy.wait('@trpc', {
- timeout: 20_000,
- });
diff --git a/apps/e2e/cypress/plugins/index.ts b/apps/e2e/cypress/plugins/index.ts
deleted file mode 100644
index 66206ada7..000000000
--- a/apps/e2e/cypress/plugins/index.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-// ***********************************************************
-// This example plugins/index.ts can be used to load plugins
-//
-// You can change the location of this file or turn off loading
-// the plugins file with the 'pluginsFile' configuration option.
-//
-// You can read more here:
-// https://on.cypress.io/plugins-guide
-// ***********************************************************
-import '../fixtures/load-env';
-
-export default function Plugins(
- on: Cypress.PluginEvents,
- config: Cypress.PluginConfigOptions,
-): void | Cypress.ConfigOptions | Promise {
- // `on` is used to hook into various events Cypress emits
- // `config` is the resolved Cypress config
-
- config.env.TEST_USER_ID = process.env.TEST_USER_ID?.replace(/-/g, '').slice(
- 0,
- 23,
- );
- return config;
-}
diff --git a/apps/e2e/cypress/support/commands.ts b/apps/e2e/cypress/support/commands.ts
deleted file mode 100644
index a25af46d5..000000000
--- a/apps/e2e/cypress/support/commands.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-// ***********************************************
-// This example commands.js shows you how to
-// create various custom commands and overwrite
-// existing commands.
-//
-// For more comprehensive examples of custom
-// commands please read more here:
-// https://on.cypress.io/custom-commands
-// ***********************************************
-//
-//
-// -- This is a parent command --
-// Cypress.Commands.add('login', (email, password) => { ... })
-//
-//
-// -- This is a child command --
-// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
-//
-//
-// -- This is a dual command --
-// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
-//
-//
-// -- This will overwrite an existing command --
-// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
-import '@testing-library/cypress/add-commands';
-
-import { waitTrpc } from '../fixtures/utils';
-
-Cypress.Commands.add('login', () => {
- cy.intercept('/api/trpc/**').as('trpc');
- cy.visit('/auth/sign-in?allowAnonymous=true');
- cy.get('input[name=name]').type(Cypress.env('TEST_USER_ID'));
- cy.get('button[type=submit]').click();
- cy.wait(1000);
- waitTrpc();
-});
diff --git a/apps/e2e/cypress/support/e2e.ts b/apps/e2e/cypress/support/e2e.ts
deleted file mode 100644
index fad27c243..000000000
--- a/apps/e2e/cypress/support/e2e.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-// ***********************************************************
-// This example support/index.ts is processed and
-// loaded automatically before your test files.
-//
-// This is a great place to put global configuration and
-// behavior that modifies Cypress.
-//
-// You can change the location of this file or turn off
-// automatically serving support files with the
-// 'supportFile' configuration option.
-//
-// You can read more here:
-// https://on.cypress.io/configuration
-// ***********************************************************
-///
-import '../fixtures/load-env';
-import './commands';
-
-declare global {
- namespace Cypress {
- interface Chainable {
- login(): void;
- }
- }
-}
-
-// This module executes in browser context
-// NOTE: This hook only run once when clicking `Run x integration specs` button on Cypress GUI
-// before(() => {
-// cy.login();
-// });
-
-Cypress.Cookies.defaults({
- preserve: [
- 'next-auth.session-token',
- 'next-auth.callback-url',
- 'next-auth.csrf-token',
- ],
-});
-
-Cypress.on('uncaught:exception', () => {
- // returning false here prevents Cypress from
- // failing the test
- return false;
-});
diff --git a/apps/e2e/package.json b/apps/e2e/package.json
deleted file mode 100644
index c53606cbb..000000000
--- a/apps/e2e/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "name": "@chirpy-dev/e2e",
- "version": "0.0.2",
- "license": "AGPL-3.0-or-later",
- "scripts": {
- "cy:open": "CYPRESS_BASE_URL=http://localhost:3000 cypress open",
- "cy:run": "CYPRESS_BASE_URL=http://localhost:3000 cypress run"
- },
- "dependencies": {
- "@chirpy-dev/eslint-config": "workspace:*",
- "@chirpy-dev/tsconfigs": "workspace:*",
- "@testing-library/cypress": "8.0.3",
- "@types/node": "18.16.18",
- "cypress": "10.11.0",
- "dotenv": "16.3.1",
- "dotenv-cli": "7.3.0",
- "dotenv-expand": "10.0.0",
- "eslint": "8.47.0",
- "typescript": "5.1.6"
- },
- "publishConfig": {
- "access": "public"
- }
-}
diff --git a/apps/e2e/tsconfig.json b/apps/e2e/tsconfig.json
deleted file mode 100644
index f80e77046..000000000
--- a/apps/e2e/tsconfig.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/tsconfig",
- "extends": "@chirpy-dev/tsconfigs/base.json",
- "compilerOptions": {
- "baseUrl": ".",
- "target": "es6",
- "types": ["cypress", "@testing-library/cypress", "node"]
- },
- "include": ["./**/*.ts"]
-}
diff --git a/apps/emails/package.json b/apps/emails/package.json
index b8ade28e3..a9ee3b2b6 100644
--- a/apps/emails/package.json
+++ b/apps/emails/package.json
@@ -10,10 +10,10 @@
},
"dependencies": {
"@maizzle/cli": "1.5.6",
- "@maizzle/framework": "4.4.7",
- "autoprefixer": "10.4.14",
+ "@maizzle/framework": "4.5.0",
+ "autoprefixer": "10.4.15",
"glob": "8.0.3",
- "postcss": "8.4.27",
+ "postcss": "8.4.29",
"tailwindcss": "3.3.3",
"tailwindcss-box-shadow": "2.0.1",
"tailwindcss-email-variants": "2.0.3",
diff --git a/apps/main/package.json b/apps/main/package.json
index b3c895e31..a8f7253f9 100644
--- a/apps/main/package.json
+++ b/apps/main/package.json
@@ -50,8 +50,8 @@
"rehype-slug": "5.1.0",
"shiki": "0.14.3",
"superjson": "1.13.1",
- "type-fest": "4.2.0",
- "web-push": "3.6.4",
+ "type-fest": "4.3.1",
+ "web-push": "3.6.5",
"zod": "3.22.2"
},
"devDependencies": {
@@ -62,25 +62,25 @@
"@chirpy-dev/service-worker": "workspace:*",
"@chirpy-dev/tsconfigs": "workspace:*",
"@next/bundle-analyzer": "13.4.19",
- "@relative-ci/agent": "4.1.6",
+ "@relative-ci/agent": "4.1.8",
"@types/cors": "2.8.13",
- "@types/jest": "29.5.3",
+ "@types/jest": "29.5.4",
"@types/lodash": "4.14.197",
"@types/node": "18.16.18",
- "@types/react": "18.2.20",
+ "@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/requestidlecallback": "0.3.5",
- "@types/web-push": "3.3.2",
+ "@types/web-push": "3.6.0",
"dotenv": "16.3.1",
"dotenv-cli": "7.3.0",
"dotenv-expand": "10.0.0",
- "eslint": "8.47.0",
- "jest": "29.6.2",
- "postcss": "8.4.27",
+ "eslint": "8.48.0",
+ "jest": "29.6.4",
+ "postcss": "8.4.29",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "8.5.1",
"tailwindcss": "3.3.3",
- "typescript": "5.1.6",
+ "typescript": "5.2.2",
"webpack": "5.88.2"
},
"publishConfig": {
diff --git a/apps/react-email/package.json b/apps/react-email/package.json
index a29e3bd7c..489bc0da3 100644
--- a/apps/react-email/package.json
+++ b/apps/react-email/package.json
@@ -20,7 +20,7 @@
"devDependencies": {
"@types/color-convert": "2.0.0",
"@types/node": "18.16.18",
- "@types/react": "18.2.20",
+ "@types/react": "18.2.21",
"@types/react-dom": "18.2.7"
},
"publishConfig": {
diff --git a/apps/service-worker/package.json b/apps/service-worker/package.json
index a358c642c..6235eed21 100644
--- a/apps/service-worker/package.json
+++ b/apps/service-worker/package.json
@@ -13,8 +13,8 @@
"dotenv": "16.3.1",
"dotenv-cli": "7.3.0",
"dotenv-expand": "10.0.0",
- "eslint": "8.47.0",
- "typescript": "5.1.6",
+ "eslint": "8.48.0",
+ "typescript": "5.2.2",
"vite": "4.4.9"
},
"publishConfig": {
diff --git a/package.json b/package.json
index 5f26dbd08..6ca9b68db 100644
--- a/package.json
+++ b/package.json
@@ -18,7 +18,7 @@
"@changesets/cli": "2.26.2",
"@chirpy-dev/eslint-config": "workspace:*",
"@chirpy-dev/prettier-config": "workspace:*",
- "eslint": "8.47.0",
+ "eslint": "8.48.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"next": "13.4.19",
diff --git a/packages/analytics/package.json b/packages/analytics/package.json
index f04b8e692..b48a3bc22 100644
--- a/packages/analytics/package.json
+++ b/packages/analytics/package.json
@@ -14,10 +14,10 @@
"@chirpy-dev/types": "workspace:*",
"@chirpy-dev/ui": "workspace:*",
"@chirpy-dev/utils": "workspace:*",
- "@headlessui/react": "1.7.16",
- "@tremor/react": "3.6.1",
+ "@headlessui/react": "1.7.17",
+ "@tremor/react": "3.6.6",
"clsx": "2.0.0",
- "framer-motion": "10.16.0",
+ "framer-motion": "10.16.2",
"next": "13.4.19",
"prop-types": "15.8.1",
"react": "18.2.0",
@@ -29,13 +29,13 @@
"@chirpy-dev/tsconfigs": "workspace:*",
"@headlessui/tailwindcss": "0.2.0",
"@types/node": "18.16.18",
- "@types/react": "18.2.20",
+ "@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
- "autoprefixer": "10.4.14",
- "eslint": "8.47.0",
- "postcss": "8.4.27",
+ "autoprefixer": "10.4.15",
+ "eslint": "8.48.0",
+ "postcss": "8.4.29",
"tailwindcss": "3.3.3",
- "typescript": "5.1.6"
+ "typescript": "5.2.2"
},
"publishConfig": {
"access": "public"
diff --git a/packages/configs/package.json b/packages/configs/package.json
index d29be8218..f6c157892 100644
--- a/packages/configs/package.json
+++ b/packages/configs/package.json
@@ -10,12 +10,12 @@
"@radix-ui/colors": "1.0.1",
"@tailwindcss/typography": "0.5.9",
"color-convert": "2.0.1",
- "postcss": "8.4.27",
+ "postcss": "8.4.29",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "8.5.1",
"tailwind-scrollbar": "3.0.5",
"tailwindcss": "3.3.3",
- "typescript": "5.1.6"
+ "typescript": "5.2.2"
},
"publishConfig": {
"access": "public"
diff --git a/packages/emails/package.json b/packages/emails/package.json
index 25884e277..28f56f60b 100644
--- a/packages/emails/package.json
+++ b/packages/emails/package.json
@@ -14,7 +14,7 @@
"eta": "1.12.3"
},
"devDependencies": {
- "typescript": "5.1.6"
+ "typescript": "5.2.2"
},
"keywords": [],
"author": "devrsi0n",
diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json
index c17e561a0..c3f766324 100644
--- a/packages/eslint-config/package.json
+++ b/packages/eslint-config/package.json
@@ -5,8 +5,8 @@
"main": "./index.js",
"dependencies": {
"@chirpy-dev/prettier-config": "workspace:*",
- "@typescript-eslint/eslint-plugin": "6.4.0",
- "@typescript-eslint/parser": "6.4.0",
+ "@typescript-eslint/eslint-plugin": "6.5.0",
+ "@typescript-eslint/parser": "6.5.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.3",
@@ -17,10 +17,10 @@
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
- "typescript": "5.1.6"
+ "typescript": "5.2.2"
},
"devDependencies": {
- "eslint": "8.47.0"
+ "eslint": "8.48.0"
},
"publishConfig": {
"access": "public"
diff --git a/packages/trpc/package.json b/packages/trpc/package.json
index 752c23c80..d9b6af03e 100644
--- a/packages/trpc/package.json
+++ b/packages/trpc/package.json
@@ -18,29 +18,29 @@
"@chirpy-dev/types": "workspace:*",
"@chirpy-dev/utils": "workspace:*",
"@next-auth/prisma-adapter": "1.0.7",
- "@prisma/client": "5.1.1",
- "@tanstack/react-query": "4.32.6",
- "@trpc/client": "10.37.1",
- "@trpc/next": "10.37.1",
- "@trpc/react-query": "10.37.1",
- "@trpc/server": "10.37.1",
- "@types/web-push": "3.3.2",
+ "@prisma/client": "5.2.0",
+ "@tanstack/react-query": "4.33.0",
+ "@trpc/client": "10.38.1",
+ "@trpc/next": "10.38.1",
+ "@trpc/react-query": "10.38.1",
+ "@trpc/server": "10.38.1",
+ "@types/web-push": "3.6.0",
"dayjs": "1.11.9",
"next": "13.4.19",
- "next-auth": "4.23.0",
+ "next-auth": "4.23.1",
"next-axiom": "0.17.0",
"react": "18.2.0",
"react-dom": "18.2.0",
- "stripe": "13.2.0",
+ "stripe": "13.3.0",
"superjson": "1.13.1",
- "web-push": "3.6.4",
+ "web-push": "3.6.5",
"zod": "3.22.2"
},
"devDependencies": {
- "@types/jest": "29.5.3",
+ "@types/jest": "29.5.4",
"@types/node": "18.16.18",
- "prisma": "5.1.1",
- "typescript": "5.1.6"
+ "prisma": "5.2.0",
+ "typescript": "5.2.2"
},
"keywords": [],
"author": "devrsi0n",
diff --git a/packages/types/package.json b/packages/types/package.json
index a834a33b3..7367f9c23 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -7,25 +7,25 @@
"types": "./src/index.ts",
"devDependencies": {
"@chirpy-dev/tsconfigs": "workspace:*",
- "@tiptap/core": "2.1.6",
- "@tiptap/pm": "2.1.6",
- "@tiptap/react": "2.1.6",
+ "@tiptap/core": "2.1.7",
+ "@tiptap/pm": "2.1.7",
+ "@tiptap/react": "2.1.7",
"@types/node": "18.16.18",
- "@types/react": "18.2.20",
+ "@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"csstype": "3.1.2",
"next": "13.4.19",
- "next-auth": "4.23.0",
+ "next-auth": "4.23.1",
"next-mdx-remote": "3.0.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"reading-time": "1.5.0",
- "typescript": "5.1.6"
+ "typescript": "5.2.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
- "@tanstack/react-query": "4.32.6"
+ "@tanstack/react-query": "4.33.0"
}
}
diff --git a/packages/ui/package.json b/packages/ui/package.json
index 2cba572ca..58395a8c1 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -20,21 +20,21 @@
"@chirpy-dev/types": "workspace:*",
"@chirpy-dev/utils": "workspace:*",
"@geist-ui/icons": "1.0.2",
- "@headlessui/react": "1.7.16",
+ "@headlessui/react": "1.7.17",
"@radix-ui/colors": "1.0.1",
"@radix-ui/react-dropdown-menu": "2.0.5",
"@radix-ui/react-popover": "1.0.6",
"@radix-ui/react-tooltip": "1.0.6",
"@stripe/stripe-js": "2.1.0",
- "@tanstack/react-query": "4.32.6",
- "@tiptap/core": "2.1.6",
- "@tiptap/extension-image": "2.1.6",
- "@tiptap/extension-link": "2.1.6",
- "@tiptap/extension-placeholder": "2.1.6",
- "@tiptap/extension-underline": "2.1.6",
- "@tiptap/pm": "2.1.6",
- "@tiptap/react": "2.1.6",
- "@tiptap/starter-kit": "2.1.6",
+ "@tanstack/react-query": "4.33.0",
+ "@tiptap/core": "2.1.7",
+ "@tiptap/extension-image": "2.1.7",
+ "@tiptap/extension-link": "2.1.7",
+ "@tiptap/extension-placeholder": "2.1.7",
+ "@tiptap/extension-underline": "2.1.7",
+ "@tiptap/pm": "2.1.7",
+ "@tiptap/react": "2.1.7",
+ "@tiptap/starter-kit": "2.1.7",
"avvvatars-react": "0.4.2",
"canvas-confetti": "1.6.0",
"class-variance-authority": "0.6.1",
@@ -42,10 +42,10 @@
"crisp-sdk-web": "1.0.21",
"dayjs": "1.11.9",
"debounce-promise": "3.1.2",
- "framer-motion": "10.16.0",
+ "framer-motion": "10.16.2",
"lucide-react": "0.268.0",
"next": "13.4.19",
- "next-auth": "4.23.0",
+ "next-auth": "4.23.1",
"next-axiom": "0.17.0",
"next-mdx-remote": "3.0.8",
"next-themes": "0.2.1",
@@ -55,10 +55,10 @@
"react-error-boundary": "4.0.11",
"super-tiny-icons": "0.5.0",
"superjson": "1.13.1",
- "tailwindcss-animate": "1.0.6"
+ "tailwindcss-animate": "1.0.7"
},
"devDependencies": {
- "@babel/core": "7.22.10",
+ "@babel/core": "7.22.11",
"@chirpy-dev/configs": "workspace:*",
"@chirpy-dev/eslint-config": "workspace:*",
"@chirpy-dev/tsconfigs": "workspace:*",
@@ -76,26 +76,26 @@
"@testing-library/user-event": "14.4.3",
"@types/canvas-confetti": "1.6.0",
"@types/debounce-promise": "3.1.6",
- "@types/jest": "29.5.3",
+ "@types/jest": "29.5.4",
"@types/node": "18.16.18",
- "@types/react": "18.2.20",
+ "@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/testing-library__jest-dom": "6.0.0",
- "autoprefixer": "10.4.14",
+ "autoprefixer": "10.4.15",
"babel-loader": "8.2.5",
"chromatic": "6.11.4",
"concurrently": "7.5.0",
"css-loader": "6.8.1",
"csstype": "3.1.2",
- "eslint": "8.47.0",
+ "eslint": "8.48.0",
"fake-indexeddb": "4.0.2",
"html-loader": "4.2.0",
"intersection-observer": "0.12.2",
- "jest": "29.6.2",
- "jest-environment-jsdom": "29.6.2",
- "msw": "1.2.3",
+ "jest": "29.6.4",
+ "jest-environment-jsdom": "29.6.4",
+ "msw": "1.2.5",
"msw-storybook-addon": "1.6.3",
- "postcss": "8.4.27",
+ "postcss": "8.4.29",
"postcss-loader": "7.3.3",
"require-from-string": "2.0.2",
"resolve-url-loader": "5.0.0",
@@ -104,10 +104,10 @@
"storybook-addon-next": "1.7.1",
"style-loader": "3.3.3",
"tailwindcss": "3.3.3",
- "type-fest": "4.2.0",
- "typescript": "5.1.6",
+ "type-fest": "4.3.1",
+ "typescript": "5.2.2",
"webpack": "5.88.2",
- "whatwg-fetch": "3.6.17"
+ "whatwg-fetch": "3.6.18"
},
"modules": "./src/index.ts",
"msw": {
diff --git a/packages/ui/src/pages/new.tsx b/packages/ui/src/pages/new.tsx
index 571a6514e..c83a3d562 100644
--- a/packages/ui/src/pages/new.tsx
+++ b/packages/ui/src/pages/new.tsx
@@ -1,8 +1,10 @@
import { trpc } from '@chirpy-dev/trpc/src/client';
import { useRouter } from 'next/router';
+import React from 'react';
import { PageTitle, SiteLayout } from '../blocks';
import { Button, Link, TextField } from '../components';
+import { useCurrentUser } from '../contexts';
import { useForm, useLocalStorage } from '../hooks';
import { isValidDomain } from '../utilities';
@@ -19,9 +21,15 @@ export function New(): JSX.Element {
domain: '',
queryParameters: '',
},
- 'project-creation',
+ 'onboarding-project-creation',
);
+ const { isSignIn } = useCurrentUser();
const router = useRouter();
+ React.useEffect(() => {
+ if (isSignIn) {
+ router.push(`/dashboard/project/new`);
+ }
+ }, [isSignIn, router]);
return (
=6.9.0'}
dependencies:
- '@babel/highlight': 7.22.5
+ '@babel/highlight': 7.22.10
dev: false
/@babel/code-frame/7.22.10:
@@ -802,6 +802,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.22.10
+ dev: false
/@babel/compat-data/7.22.9:
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
@@ -814,11 +815,11 @@ packages:
'@babel/code-frame': 7.22.10
'@babel/generator': 7.22.10
'@babel/helper-module-transforms': 7.22.9_@babel+core@7.12.9
- '@babel/helpers': 7.22.10
- '@babel/parser': 7.22.10
+ '@babel/helpers': 7.22.11
+ '@babel/parser': 7.22.11
'@babel/template': 7.22.5
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -830,20 +831,20 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/core/7.22.10:
- resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==}
+ /@babel/core/7.22.11:
+ resolution: {integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.1
'@babel/code-frame': 7.22.10
'@babel/generator': 7.22.10
'@babel/helper-compilation-targets': 7.22.10
- '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.10
- '@babel/helpers': 7.22.10
- '@babel/parser': 7.22.10
+ '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11
+ '@babel/helpers': 7.22.11
+ '@babel/parser': 7.22.11
'@babel/template': 7.22.5
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
convert-source-map: 1.9.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -879,7 +880,7 @@ packages:
resolution: {integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
'@jridgewell/gen-mapping': 0.3.3
'@jridgewell/trace-mapping': 0.3.19
jsesc: 2.5.2
@@ -898,7 +899,7 @@ packages:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
@@ -906,7 +907,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@babel/helper-compilation-targets/7.22.10:
@@ -933,13 +934,13 @@ packages:
semver: 6.3.1
dev: false
- /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.22.10:
+ /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-function-name': 7.22.5
@@ -951,27 +952,27 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.22.10:
+ /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.2.2
dev: true
- /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.22.10:
+ /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.22.11:
resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-compilation-targets': 7.22.10
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/traverse': 7.22.10
+ '@babel/traverse': 7.22.11
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.4
@@ -980,12 +981,12 @@ packages:
- supports-color
dev: true
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.22.10:
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.22.11:
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-compilation-targets': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4
@@ -1004,7 +1005,7 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@babel/helper-function-name/7.22.5:
@@ -1012,26 +1013,26 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.5
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
/@babel/helper-hoist-variables/7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
/@babel/helper-member-expression-to-functions/7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@babel/helper-module-imports/7.22.5:
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
/@babel/helper-module-transforms/7.22.9_@babel+core@7.12.9:
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
@@ -1046,13 +1047,13 @@ packages:
'@babel/helper-split-export-declaration': 7.22.6
'@babel/helper-validator-identifier': 7.22.5
- /@babel/helper-module-transforms/7.22.9_@babel+core@7.22.10:
+ /@babel/helper-module-transforms/7.22.9_@babel+core@7.22.11:
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-module-imports': 7.22.5
'@babel/helper-simple-access': 7.22.5
@@ -1077,7 +1078,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@babel/helper-plugin-utils/7.10.4:
@@ -1087,17 +1088,17 @@ packages:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
engines: {node: '>=6.9.0'}
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.22.10:
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.20.5
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
transitivePeerDependencies:
- supports-color
dev: true
@@ -1109,8 +1110,8 @@ packages:
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
transitivePeerDependencies:
- supports-color
dev: true
@@ -1119,20 +1120,20 @@ packages:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
/@babel/helper-skip-transparent-expression-wrappers/7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@babel/helper-split-export-declaration/7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
/@babel/helper-string-parser/7.22.5:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
@@ -1152,19 +1153,19 @@ packages:
dependencies:
'@babel/helper-function-name': 7.22.5
'@babel/template': 7.22.5
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/helpers/7.22.10:
- resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==}
+ /@babel/helpers/7.22.11:
+ resolution: {integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': 7.22.5
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
transitivePeerDependencies:
- supports-color
@@ -1187,28 +1188,27 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/highlight/7.22.5:
- resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
- engines: {node: '>=6.9.0'}
+ /@babel/parser/7.22.11:
+ resolution: {integrity: sha512-R5zb8eJIBPJriQtbH/htEQy4k7E2dHWlD2Y2VT07JCzwYZHBxV5ZYtM0UhXSNMT74LyxuM+b1jdL7pSesXbC/g==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
dependencies:
- '@babel/helper-validator-identifier': 7.22.5
- chalk: 2.4.2
- js-tokens: 4.0.0
- dev: false
+ '@babel/types': 7.22.11
- /@babel/parser/7.22.10:
- resolution: {integrity: sha512-lNbdGsQb9ekfsnjFGhEiF4hfFqGgfOP3H3d27re3n+CGhNuTSUEQdfWk556sTLNTloczcdM5TYF2LhzmDQKyvQ==}
+ /@babel/parser/7.22.13:
+ resolution: {integrity: sha512-3l6+4YOvc9wx7VlCSw4yQfcBo01ECA8TicQfbnCPuCEpRQrf+gTUyGdxNw+pyTUyywp6JRD1w0YQs9TpBXYlkw==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
+ dev: true
/@babel/parser/7.22.5:
resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==}
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.22.5
+ '@babel/types': 7.22.11
dev: true
/@babel/parser/7.22.7:
@@ -1219,161 +1219,161 @@ packages:
'@babel/types': 7.22.5
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.22.10
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.22.10:
+ /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.22.11:
resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-environment-visitor': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.10
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.10
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-decorators/7.20.5_@babel+core@7.22.10:
+ /@babel/plugin-proposal-decorators/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.19.1
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.22.10
+ '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.10
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.22.10:
+ /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.22.11:
resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.22.10
+ '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.10
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.10
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.10
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.10
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.10
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11
dev: true
/@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
@@ -1386,192 +1386,192 @@ packages:
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
'@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9
- /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.22.10:
+ /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.22.11:
resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-compilation-targets': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.22.10
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.10
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.10
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11
dev: true
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.22.10:
+ /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.10
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.10:
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.22.11:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.10:
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.22.11:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.10:
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.22.11:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.22.10:
+ /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.22.11:
resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.22.10:
+ /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.22.11:
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.10:
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.22.11:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1583,40 +1583,40 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-jsx/7.22.5_@babel+core@7.22.10:
+ /@babel/plugin-syntax-jsx/7.22.5_@babel+core@7.22.11:
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.10:
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.22.11:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.10:
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.22.11:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -1628,114 +1628,114 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.10:
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.22.11:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.10:
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.22.11:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.10:
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.22.11:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-syntax-typescript/7.22.5_@babel+core@7.22.10:
+ /@babel/plugin-syntax-typescript/7.22.5_@babel+core@7.22.11:
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.22.10
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.22.10:
+ /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-classes/7.20.2_@babel+core@7.22.10:
+ /@babel/plugin-transform-classes/7.20.2_@babel+core@7.22.11:
resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-compilation-targets': 7.22.10
'@babel/helper-environment-visitor': 7.22.5
@@ -1749,186 +1749,186 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.22.10:
+ /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.22.11:
resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.22.10:
+ /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.22.11:
resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.22.10
+ '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.22.11
dev: true
- /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.22.10:
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.22.11:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-compilation-targets': 7.22.10
'@babel/helper-function-name': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.22.11:
resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.22.11:
resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
dev: true
- /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.22.11:
resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.10
+ '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.22.5
dev: true
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-module-transforms': 7.22.9_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.22.10:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
@@ -1944,325 +1944,325 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.22.10:
+ /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.11
dev: true
- /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.22.10:
+ /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.22.11:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.22.5
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.10
- '@babel/types': 7.22.10
+ '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.11
+ '@babel/types': 7.22.11
dev: true
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.22.10:
+ /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.22.11:
resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.1
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-spread/7.19.0_@babel+core@7.22.10:
+ /@babel/plugin-transform-spread/7.19.0_@babel+core@7.22.11:
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: true
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.22.10:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.22.10:
+ /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.22.11:
resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-typescript': 7.22.5_@babel+core@7.22.10
+ '@babel/plugin-syntax-typescript': 7.22.5_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.22.10:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.22.11:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.22.10:
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.22.11
'@babel/helper-plugin-utils': 7.22.5
dev: true
- /@babel/preset-env/7.20.2_@babel+core@7.22.10:
+ /@babel/preset-env/7.20.2_@babel+core@7.22.11:
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-compilation-targets': 7.22.10
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.22.10
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.22.10
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.10
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.10
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.10
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.22.10
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.10
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.10
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.10
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.10
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.22.10
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.22.10
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.22.10
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.22.10
- '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.22.10
- '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.22.10
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.22.10
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.22.10
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.22.10
- '@babel/preset-modules': 0.1.5_@babel+core@7.22.10
- '@babel/types': 7.22.10
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.22.10
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.22.10
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.22.10
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.22.11
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.22.11
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.11
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.22.11
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.22.11
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.22.11
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.11
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.22.11
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.22.11
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.22.11
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.22.11
+ '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.22.11
+ '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.22.11
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.22.11
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.22.11
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.22.11
+ '@babel/preset-modules': 0.1.5_@babel+core@7.22.11
+ '@babel/types': 7.22.11
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.22.11
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.22.11
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.22.11
core-js-compat: 3.26.1
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-flow/7.18.6_@babel+core@7.22.10:
+ /@babel/preset-flow/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.22.10
+ '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.22.11
dev: true
- /@babel/preset-modules/0.1.5_@babel+core@7.22.10:
+ /@babel/preset-modules/0.1.5_@babel+core@7.22.11:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.22.10
- '@babel/types': 7.22.10
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.22.11
+ '@babel/types': 7.22.11
esutils: 2.0.3
dev: true
- /@babel/preset-react/7.18.6_@babel+core@7.22.10:
+ /@babel/preset-react/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.10
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.22.10
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.11
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.22.11
dev: true
- /@babel/preset-typescript/7.18.6_@babel+core@7.22.10:
+ /@babel/preset-typescript/7.18.6_@babel+core@7.22.11:
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-option': 7.22.5
- '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.22.10
+ '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/register/7.18.9_@babel+core@7.22.10:
+ /@babel/register/7.18.9_@babel+core@7.22.11:
resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -2282,6 +2282,12 @@ packages:
dependencies:
regenerator-runtime: 0.14.0
+ /@babel/runtime/7.22.11:
+ resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.14.0
+
/@babel/runtime/7.22.5:
resolution: {integrity: sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==}
engines: {node: '>=6.9.0'}
@@ -2293,6 +2299,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
+ dev: true
/@babel/runtime/7.5.5:
resolution: {integrity: sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==}
@@ -2311,11 +2318,11 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.10
- '@babel/parser': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/parser': 7.22.11
+ '@babel/types': 7.22.11
- /@babel/traverse/7.22.10:
- resolution: {integrity: sha512-Q/urqV4pRByiNNpb/f5OSv28ZlGJiFiiTh+GAHktbIrkPhPbl90+uW6SmpoLyZqutrg9AEaEf3Q/ZBRHBXgxig==}
+ /@babel/traverse/7.22.11:
+ resolution: {integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.22.10
@@ -2324,8 +2331,8 @@ packages:
'@babel/helper-function-name': 7.22.5
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/parser': 7.22.11
+ '@babel/types': 7.22.11
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -2349,8 +2356,8 @@ packages:
- supports-color
dev: false
- /@babel/types/7.22.10:
- resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==}
+ /@babel/types/7.22.11:
+ resolution: {integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.22.5
@@ -2364,6 +2371,7 @@ packages:
'@babel/helper-string-parser': 7.22.5
'@babel/helper-validator-identifier': 7.22.5
to-fast-properties: 2.0.0
+ dev: false
/@base2/pretty-print-object/1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
@@ -2381,17 +2389,17 @@ packages:
types-pkg-json: 1.2.1
dev: false
- /@bundle-stats/plugin-webpack-filter/4.5.2_core-js@3.31.1:
- resolution: {integrity: sha512-M2I8/CGtGgVML4GIJ7AroRhwifQjuXKxNBPmXycjKQ26Uc5UW8u+TwtkTh0/tA71qTsAAblfdowWs2EyKu77AQ==}
+ /@bundle-stats/plugin-webpack-filter/4.6.3_core-js@3.32.1:
+ resolution: {integrity: sha512-HvQ3Q2Po8DAJdhcUpDOY0p2qJdMTZLMwgX8D6E3gHEopqcN9FRUPkpFqpaJ253+27bnmobiJwig/a1AXuQrXkA==}
engines: {node: '>= 14.0'}
peerDependencies:
core-js: ^3.0.0 || 3
dependencies:
- core-js: 3.31.1
+ core-js: 3.32.1
dev: true
- /@bundle-stats/plugin-webpack-validate/4.5.2:
- resolution: {integrity: sha512-KiuXd1kcEw4qtx01EvaoV2t3tv8jwhyRoDlPnghRUMpCQd+KEYusL4LZMdlkDpNMle1Zg3OAOVcduFFg1h9BHQ==}
+ /@bundle-stats/plugin-webpack-validate/4.6.3:
+ resolution: {integrity: sha512-P8mp8YADWWcb4aRkgUHmIP7R+faqa+G8eqPR2QdCaq2Bi9W3BbAr6nrFHGFwmGWPpdVKnC7wU5aeykc2hosNLg==}
engines: {node: '>= 14.0'}
dependencies:
lodash: 4.17.21
@@ -2682,17 +2690,17 @@ packages:
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- /@csstools/postcss-cascade-layers/3.0.1_postcss@8.4.27:
+ /@csstools/postcss-cascade-layers/3.0.1_postcss@8.4.29:
resolution: {integrity: sha512-dD8W98dOYNOH/yX4V4HXOhfCOnvVAg8TtsL+qCGNoKXuq5z2C/d026wGWgySgC8cajXXo/wNezS31Glj5GcqrA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /@csstools/postcss-color-function/2.2.3_postcss@8.4.27:
+ /@csstools/postcss-color-function/2.2.3_postcss@8.4.29:
resolution: {integrity: sha512-b1ptNkr1UWP96EEHqKBWWaV5m/0hgYGctgA/RVZhONeP1L3T/8hwoqDm9bB23yVCfOgE9U93KI9j06+pEkJTvw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2701,10 +2709,10 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
- /@csstools/postcss-color-mix-function/1.0.3_postcss@8.4.27:
+ /@csstools/postcss-color-mix-function/1.0.3_postcss@8.4.29:
resolution: {integrity: sha512-QGXjGugTluqFZWzVf+S3wCiRiI0ukXlYqCi7OnpDotP/zaVTyl/aqZujLFzTOXy24BoWnu89frGMc79ohY5eog==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2713,19 +2721,19 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
- /@csstools/postcss-font-format-keywords/2.0.2_postcss@8.4.27:
+ /@csstools/postcss-font-format-keywords/2.0.2_postcss@8.4.29:
resolution: {integrity: sha512-iKYZlIs6JsNT7NKyRjyIyezTCHLh4L4BBB3F5Nx7Dc4Z/QmBgX+YJFuUSar8IM6KclGiAUFGomXFdYxAwJydlA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-gradients-interpolation-method/3.0.6_postcss@8.4.27:
+ /@csstools/postcss-gradients-interpolation-method/3.0.6_postcss@8.4.29:
resolution: {integrity: sha512-rBOBTat/YMmB0G8VHwKqDEx+RZ4KCU9j42K8LwS0IpZnyThalZZF7BCSsZ6TFlZhcRZKlZy3LLFI2pLqjNVGGA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2734,10 +2742,10 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
- /@csstools/postcss-hwb-function/2.2.2_postcss@8.4.27:
+ /@csstools/postcss-hwb-function/2.2.2_postcss@8.4.29:
resolution: {integrity: sha512-W5Y5oaJ382HSlbdGfPf60d7dAK6Hqf10+Be1yZbd/TNNrQ/3dDdV1c07YwOXPQ3PZ6dvFMhxbIbn8EC3ki3nEg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2746,55 +2754,55 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-ic-unit/2.0.4_postcss@8.4.27:
+ /@csstools/postcss-ic-unit/2.0.4_postcss@8.4.29:
resolution: {integrity: sha512-9W2ZbV7whWnr1Gt4qYgxMWzbevZMOvclUczT5vk4yR6vS53W/njiiUhtm/jh/BKYwQ1W3PECZjgAd2dH4ebJig==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-is-pseudo-class/3.2.1_postcss@8.4.27:
+ /@csstools/postcss-is-pseudo-class/3.2.1_postcss@8.4.29:
resolution: {integrity: sha512-AtANdV34kJl04Al62is3eQRk/BfOfyAvEmRJvbt+nx5REqImLC+2XhuE6skgkcPli1l8ONS67wS+l1sBzySc3Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /@csstools/postcss-logical-float-and-clear/1.0.1_postcss@8.4.27:
+ /@csstools/postcss-logical-float-and-clear/1.0.1_postcss@8.4.29:
resolution: {integrity: sha512-eO9z2sMLddvlfFEW5Fxbjyd03zaO7cJafDurK4rCqyRt9P7aaWwha0LcSzoROlcZrw1NBV2JAp2vMKfPMQO1xw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-logical-resize/1.0.1_postcss@8.4.27:
+ /@csstools/postcss-logical-resize/1.0.1_postcss@8.4.29:
resolution: {integrity: sha512-x1ge74eCSvpBkDDWppl+7FuD2dL68WP+wwP2qvdUcKY17vJksz+XoE1ZRV38uJgS6FNUwC0AxrPW5gy3MxsDHQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-logical-viewport-units/1.0.3_postcss@8.4.27:
+ /@csstools/postcss-logical-viewport-units/1.0.3_postcss@8.4.29:
resolution: {integrity: sha512-6zqcyRg9HSqIHIPMYdt6THWhRmE5/tyHKJQLysn2TeDf/ftq7Em9qwMTx98t2C/7UxIsYS8lOiHHxAVjWn2WUg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-media-minmax/1.0.4_postcss@8.4.27:
+ /@csstools/postcss-media-minmax/1.0.4_postcss@8.4.29:
resolution: {integrity: sha512-olnKTQk9+RMzpIpkjv55d44L4Ni02j8ZJoedJezQC5M03a56npcM1hx0apaTRG4Fz1wfPCQ0DBjQ8zsiJFelmA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2804,9 +2812,9 @@ packages:
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
'@csstools/media-query-list-parser': 2.1.1_g5wmdbqtzzaodrrmvxcit5gfji
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-media-queries-aspect-ratio-number-values/1.0.4_postcss@8.4.27:
+ /@csstools/postcss-media-queries-aspect-ratio-number-values/1.0.4_postcss@8.4.29:
resolution: {integrity: sha512-IwyTbyR8E2y3kh6Fhrs251KjKBJeUPV5GlnUKnpU70PRFEN2DolWbf2V4+o/B9+Oj77P/DullLTulWEQ8uFtAA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2815,27 +2823,27 @@ packages:
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
'@csstools/media-query-list-parser': 2.1.1_g5wmdbqtzzaodrrmvxcit5gfji
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-nested-calc/2.0.2_postcss@8.4.27:
+ /@csstools/postcss-nested-calc/2.0.2_postcss@8.4.29:
resolution: {integrity: sha512-jbwrP8rN4e7LNaRcpx3xpMUjhtt34I9OV+zgbcsYAAk6k1+3kODXJBf95/JMYWhu9g1oif7r06QVUgfWsKxCFw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-normalize-display-values/2.0.1_postcss@8.4.27:
+ /@csstools/postcss-normalize-display-values/2.0.1_postcss@8.4.29:
resolution: {integrity: sha512-TQT5g3JQ5gPXC239YuRK8jFceXF9d25ZvBkyjzBGGoW5st5sPXFVQS8OjYb9IJ/K3CdfK4528y483cgS2DJR/w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-oklab-function/2.2.3_postcss@8.4.27:
+ /@csstools/postcss-oklab-function/2.2.3_postcss@8.4.29:
resolution: {integrity: sha512-AgJ2rWMnLCDcbSMTHSqBYn66DNLBym6JpBpCaqmwZ9huGdljjDRuH3DzOYzkgQ7Pm2K92IYIq54IvFHloUOdvA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2844,19 +2852,19 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
- /@csstools/postcss-progressive-custom-properties/2.3.0_postcss@8.4.27:
+ /@csstools/postcss-progressive-custom-properties/2.3.0_postcss@8.4.29:
resolution: {integrity: sha512-Zd8ojyMlsL919TBExQ1I0CTpBDdyCpH/yOdqatZpuC3sd22K4SwC7+Yez3Q/vmXMWSAl+shjNeFZ7JMyxMjK+Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-relative-color-syntax/1.0.2_postcss@8.4.27:
+ /@csstools/postcss-relative-color-syntax/1.0.2_postcss@8.4.29:
resolution: {integrity: sha512-juCoVInkgH2TZPfOhyx6tIal7jW37L/0Tt+Vcl1LoxqQA9sxcg3JWYZ98pl1BonDnki6s/M7nXzFQHWsWMeHgw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2865,19 +2873,19 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
- /@csstools/postcss-scope-pseudo-class/2.0.2_postcss@8.4.27:
+ /@csstools/postcss-scope-pseudo-class/2.0.2_postcss@8.4.29:
resolution: {integrity: sha512-6Pvo4uexUCXt+Hz5iUtemQAcIuCYnL+ePs1khFR6/xPgC92aQLJ0zGHonWoewiBE+I++4gXK3pr+R1rlOFHe5w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /@csstools/postcss-stepped-value-functions/2.1.1_postcss@8.4.27:
+ /@csstools/postcss-stepped-value-functions/2.1.1_postcss@8.4.29:
resolution: {integrity: sha512-YCvdF0GCZK35nhLgs7ippcxDlRVe5QsSht3+EghqTjnYnyl3BbWIN6fYQ1dKWYTJ+7Bgi41TgqQFfJDcp9Xy/w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2886,19 +2894,19 @@ packages:
'@csstools/css-calc': 1.1.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-text-decoration-shorthand/2.2.4_postcss@8.4.27:
+ /@csstools/postcss-text-decoration-shorthand/2.2.4_postcss@8.4.29:
resolution: {integrity: sha512-zPN56sQkS/7YTCVZhOBVCWf7AiNge8fXDl7JVaHLz2RyT4pnyK2gFjckWRLpO0A2xkm1lCgZ0bepYZTwAVd/5A==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/color-helpers': 2.1.0
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /@csstools/postcss-trigonometric-functions/2.1.1_postcss@8.4.27:
+ /@csstools/postcss-trigonometric-functions/2.1.1_postcss@8.4.29:
resolution: {integrity: sha512-XcXmHEFfHXhvYz40FtDlA4Fp4NQln2bWTsCwthd2c+MCnYArUYU3YaMqzR5CrKP3pMoGYTBnp5fMqf1HxItNyw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -2907,15 +2915,15 @@ packages:
'@csstools/css-calc': 1.1.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.27
+ postcss: 8.4.29
- /@csstools/postcss-unset-value/2.0.1_postcss@8.4.27:
+ /@csstools/postcss-unset-value/2.0.1_postcss@8.4.29:
resolution: {integrity: sha512-oJ9Xl29/yU8U7/pnMJRqAZd4YXNCfGEdcP4ywREuqm/xMqcgDNDppYRoCGDt40aaZQIEKBS79LytUDN/DHf0Ew==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
/@csstools/selector-specificity/2.2.0_c3vcbepomgmxc74cgtawpgpkyi:
resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==}
@@ -2962,15 +2970,15 @@ packages:
resolution: {integrity: sha512-ed4pNnfur6UbASEgF34gVxR9p7Mc3qF+Ygbmjiil8ws5IhNFhPDFy5vE5hQAUA9JmVsSxXPcVLM5Rf8LOZqQ5Q==}
dev: false
- /@design-systems/utils/2.12.0_qflmzdebv2ewfrqz6op6ohcc2q:
+ /@design-systems/utils/2.12.0_vnxzf5c44dqo4vncfl2mrh2gwm:
resolution: {integrity: sha512-Y/d2Zzr+JJfN6u1gbuBUb1ufBuLMJJRZQk+dRmw8GaTpqKx5uf7cGUYGTwN02dIb3I+Tf+cW8jcGBTRiFxdYFg==}
peerDependencies:
'@types/react': '*'
react: '>= 16.8.6 || 18'
react-dom: '>= 16.8.6 || 18'
dependencies:
- '@babel/runtime': 7.22.10
- '@types/react': 18.2.20
+ '@babel/runtime': 7.22.11
+ '@types/react': 18.2.21
clsx: 1.2.1
focus-lock: 0.8.1
react: 18.2.0
@@ -2978,15 +2986,15 @@ packages:
react-merge-refs: 1.1.0
dev: true
- /@devtools-ds/object-inspector/1.2.0_qflmzdebv2ewfrqz6op6ohcc2q:
+ /@devtools-ds/object-inspector/1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm:
resolution: {integrity: sha512-VztcwqVwScSvYdvJVZBJYsVO/2Pew3JPpFV3T9fuCHQLlHcLYOV3aU/kBS2ScuE2O1JN0ZbobLqFLa3vQF54Fw==}
peerDependencies:
react: '>= 16.8.6 || 18'
dependencies:
'@babel/runtime': 7.7.2
'@devtools-ds/object-parser': 1.2.0
- '@devtools-ds/themes': 1.2.0_qflmzdebv2ewfrqz6op6ohcc2q
- '@devtools-ds/tree': 1.2.0_qflmzdebv2ewfrqz6op6ohcc2q
+ '@devtools-ds/themes': 1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm
+ '@devtools-ds/tree': 1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm
clsx: 1.1.0
react: 18.2.0
transitivePeerDependencies:
@@ -3000,13 +3008,13 @@ packages:
'@babel/runtime': 7.5.5
dev: true
- /@devtools-ds/themes/1.2.0_qflmzdebv2ewfrqz6op6ohcc2q:
+ /@devtools-ds/themes/1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm:
resolution: {integrity: sha512-LimEITorE6yWZWWuMc6OiBfLQgPrQqWbyMEmfRUDPa3PHXoAY4SpDxczfg31fgyRDUNWnZhjaJH5bBbu8VEbIw==}
peerDependencies:
react: '>= 16.8.6 || 18'
dependencies:
'@babel/runtime': 7.5.5
- '@design-systems/utils': 2.12.0_qflmzdebv2ewfrqz6op6ohcc2q
+ '@design-systems/utils': 2.12.0_vnxzf5c44dqo4vncfl2mrh2gwm
clsx: 1.1.0
react: 18.2.0
transitivePeerDependencies:
@@ -3014,13 +3022,13 @@ packages:
- react-dom
dev: true
- /@devtools-ds/tree/1.2.0_qflmzdebv2ewfrqz6op6ohcc2q:
+ /@devtools-ds/tree/1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm:
resolution: {integrity: sha512-hC4g4ocuo2eg7jsnzKdauxH0sDQiPW3KSM2+uK3kRgcmr9PzpBD5Kob+Y/WFSVKswFleftOGKL4BQLuRv0sPxA==}
peerDependencies:
react: '>= 16.8.6 || 18'
dependencies:
'@babel/runtime': 7.7.2
- '@devtools-ds/themes': 1.2.0_qflmzdebv2ewfrqz6op6ohcc2q
+ '@devtools-ds/themes': 1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm
clsx: 1.1.0
react: 18.2.0
transitivePeerDependencies:
@@ -3442,17 +3450,17 @@ packages:
dev: true
optional: true
- /@eslint-community/eslint-utils/4.4.0_eslint@8.47.0:
+ /@eslint-community/eslint-utils/4.4.0_eslint@8.48.0:
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.47.0
+ eslint: 8.48.0
eslint-visitor-keys: 3.4.3
- /@eslint-community/regexpp/4.6.2:
- resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==}
+ /@eslint-community/regexpp/4.8.0:
+ resolution: {integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
/@eslint/eslintrc/2.1.2:
@@ -3471,8 +3479,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@eslint/js/8.47.0:
- resolution: {integrity: sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==}
+ /@eslint/js/8.48.0:
+ resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
/@floating-ui/core/1.4.1:
@@ -3543,8 +3551,8 @@ packages:
react: 18.2.0
dev: false
- /@headlessui/react/1.7.16_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-2MphIAZdSUacZBT6EXk8AJkj+EuvaaJbtCyHTJrPsz8inhzCl7qeNPI1uk1AUvCgWylVtdN8cVVmnhUDPxPy3g==}
+ /@headlessui/react/1.7.17_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==}
engines: {node: '>=10'}
peerDependencies:
react: ^16 || ^17 || ^18 || 18
@@ -3573,8 +3581,8 @@ packages:
tailwindcss: 3.3.3
dev: true
- /@humanwhocodes/config-array/0.11.10:
- resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
+ /@humanwhocodes/config-array/0.11.11:
+ resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -3626,20 +3634,20 @@ packages:
engines: {node: '>=8'}
dev: true
- /@jest/console/29.6.2:
- resolution: {integrity: sha512-0N0yZof5hi44HAR2pPS+ikJ3nzKNoZdVu8FffRf3wy47I7Dm7etk/3KetMdRUqzVd16V4O2m2ISpNTbnIuqy1w==}
+ /@jest/console/29.6.4:
+ resolution: {integrity: sha512-wNK6gC0Ha9QeEPSkeJedQuTQqxZYnDPuDcDhVuVatRvMkL4D0VTvFVZj+Yuh6caG2aOfzkUZ36KtCmLNtR02hw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
chalk: 4.1.2
- jest-message-util: 29.6.2
- jest-util: 29.6.2
+ jest-message-util: 29.6.3
+ jest-util: 29.6.3
slash: 3.0.0
dev: true
- /@jest/core/29.6.2:
- resolution: {integrity: sha512-Oj+5B+sDMiMWLhPFF+4/DvHOf+U10rgvCLGPHP8Xlsy/7QxS51aU/eBngudHlJXnaWD5EohAgJ4js+T6pa+zOg==}
+ /@jest/core/29.6.4:
+ resolution: {integrity: sha512-U/vq5ccNTSVgYH7mHnodHmCffGWHJnz/E1BEWlLuK5pM4FZmGfBn/nrJGLjUsSmyx3otCeqc1T31F4y08AMDLg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -3647,32 +3655,32 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/console': 29.6.2
- '@jest/reporters': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/transform': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/console': 29.6.4
+ '@jest/reporters': 29.6.4
+ '@jest/test-result': 29.6.4
+ '@jest/transform': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.8.0
exit: 0.1.2
graceful-fs: 4.2.11
- jest-changed-files: 29.5.0
- jest-config: 29.6.2_@types+node@18.16.18
- jest-haste-map: 29.6.2
- jest-message-util: 29.6.2
- jest-regex-util: 29.4.3
- jest-resolve: 29.6.2
- jest-resolve-dependencies: 29.6.2
- jest-runner: 29.6.2
- jest-runtime: 29.6.2
- jest-snapshot: 29.6.2
- jest-util: 29.6.2
- jest-validate: 29.6.2
- jest-watcher: 29.6.2
+ jest-changed-files: 29.6.3
+ jest-config: 29.6.4_@types+node@18.16.18
+ jest-haste-map: 29.6.4
+ jest-message-util: 29.6.3
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.6.4
+ jest-resolve-dependencies: 29.6.4
+ jest-runner: 29.6.4
+ jest-runtime: 29.6.4
+ jest-snapshot: 29.6.4
+ jest-util: 29.6.3
+ jest-validate: 29.6.3
+ jest-watcher: 29.6.4
micromatch: 4.0.5
- pretty-format: 29.6.2
+ pretty-format: 29.6.3
slash: 3.0.0
strip-ansi: 6.0.1
transitivePeerDependencies:
@@ -3681,66 +3689,66 @@ packages:
- ts-node
dev: true
- /@jest/environment/29.6.2:
- resolution: {integrity: sha512-AEcW43C7huGd/vogTddNNTDRpO6vQ2zaQNrttvWV18ArBx9Z56h7BIsXkNFJVOO4/kblWEQz30ckw0+L3izc+Q==}
+ /@jest/environment/29.6.4:
+ resolution: {integrity: sha512-sQ0SULEjA1XUTHmkBRl7A1dyITM9yb1yb3ZNKPX3KlTd6IG7mWUe3e2yfExtC2Zz1Q+mMckOLHmL/qLiuQJrBQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/fake-timers': 29.6.2
- '@jest/types': 29.6.1
- '@types/node': 20.4.2
- jest-mock: 29.6.2
+ '@jest/fake-timers': 29.6.4
+ '@jest/types': 29.6.3
+ '@types/node': 18.16.18
+ jest-mock: 29.6.3
dev: true
- /@jest/expect-utils/29.6.1:
- resolution: {integrity: sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw==}
+ /@jest/expect-utils/29.6.3:
+ resolution: {integrity: sha512-nvOEW4YoqRKD9HBJ9OJ6przvIvP9qilp5nAn1462P5ZlL/MM9SgPEZFyjTGPfs7QkocdUsJa6KjHhyRn4ueItA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-get-type: 29.4.3
+ jest-get-type: 29.6.3
dev: true
- /@jest/expect-utils/29.6.2:
- resolution: {integrity: sha512-6zIhM8go3RV2IG4aIZaZbxwpOzz3ZiM23oxAlkquOIole+G6TrbeXnykxWYlqF7kz2HlBjdKtca20x9atkEQYg==}
+ /@jest/expect-utils/29.6.4:
+ resolution: {integrity: sha512-FEhkJhqtvBwgSpiTrocquJCdXPsyvNKcl/n7A3u7X4pVoF4bswm11c9d4AV+kfq2Gpv/mM8x7E7DsRvH+djkrg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-get-type: 29.4.3
+ jest-get-type: 29.6.3
dev: true
- /@jest/expect/29.6.2:
- resolution: {integrity: sha512-m6DrEJxVKjkELTVAztTLyS/7C92Y2b0VYqmDROYKLLALHn8T/04yPs70NADUYPrV3ruI+H3J0iUIuhkjp7vkfg==}
+ /@jest/expect/29.6.4:
+ resolution: {integrity: sha512-Warhsa7d23+3X5bLbrbYvaehcgX5TLYhI03JKoedTiI8uJU4IhqYBWF7OSSgUyz4IgLpUYPkK0AehA5/fRclAA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- expect: 29.6.2
- jest-snapshot: 29.6.2
+ expect: 29.6.4
+ jest-snapshot: 29.6.4
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/fake-timers/29.6.2:
- resolution: {integrity: sha512-euZDmIlWjm1Z0lJ1D0f7a0/y5Kh/koLFMUBE5SUYWrmy8oNhJpbTBDAP6CxKnadcMLDoDf4waRYCe35cH6G6PA==}
+ /@jest/fake-timers/29.6.4:
+ resolution: {integrity: sha512-6UkCwzoBK60edXIIWb0/KWkuj7R7Qq91vVInOe3De6DSpaEiqjKcJw4F7XUet24Wupahj9J6PlR09JqJ5ySDHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.4.2
- jest-message-util: 29.6.2
- jest-mock: 29.6.2
- jest-util: 29.6.2
+ '@types/node': 18.16.18
+ jest-message-util: 29.6.3
+ jest-mock: 29.6.3
+ jest-util: 29.6.3
dev: true
- /@jest/globals/29.6.2:
- resolution: {integrity: sha512-cjuJmNDjs6aMijCmSa1g2TNG4Lby/AeU7/02VtpW+SLcZXzOLK2GpN2nLqcFjmhy3B3AoPeQVx7BnyOf681bAw==}
+ /@jest/globals/29.6.4:
+ resolution: {integrity: sha512-wVIn5bdtjlChhXAzVXavcY/3PEjf4VqM174BM3eGL5kMxLiZD5CLnbmkEyA1Dwh9q8XjP6E8RwjBsY/iCWrWsA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.2
- '@jest/expect': 29.6.2
- '@jest/types': 29.6.1
- jest-mock: 29.6.2
+ '@jest/environment': 29.6.4
+ '@jest/expect': 29.6.4
+ '@jest/types': 29.6.3
+ jest-mock: 29.6.3
transitivePeerDependencies:
- supports-color
dev: true
- /@jest/reporters/29.6.2:
- resolution: {integrity: sha512-sWtijrvIav8LgfJZlrGCdN0nP2EWbakglJY49J1Y5QihcQLfy7ovyxxjJBRXMNltgt4uPtEcFmIMbVshEDfFWw==}
+ /@jest/reporters/29.6.4:
+ resolution: {integrity: sha512-sxUjWxm7QdchdrD3NfWKrL8FBsortZeibSJv4XLjESOOjSUOkjQcb0ZHJwfhEGIvBvTluTzfG2yZWZhkrXJu8g==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -3749,10 +3757,10 @@ packages:
optional: true
dependencies:
'@bcoe/v8-coverage': 0.2.3
- '@jest/console': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/transform': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/console': 29.6.4
+ '@jest/test-result': 29.6.4
+ '@jest/transform': 29.6.4
+ '@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.19
'@types/node': 18.16.18
chalk: 4.1.2
@@ -3761,13 +3769,13 @@ packages:
glob: 7.2.3
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.0
- istanbul-lib-instrument: 5.2.1
+ istanbul-lib-instrument: 6.0.0
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 4.0.1
istanbul-reports: 3.1.6
- jest-message-util: 29.6.2
- jest-util: 29.6.2
- jest-worker: 29.6.2
+ jest-message-util: 29.6.3
+ jest-util: 29.6.3
+ jest-worker: 29.6.4
slash: 3.0.0
string-length: 4.0.2
strip-ansi: 6.0.1
@@ -3776,15 +3784,15 @@ packages:
- supports-color
dev: true
- /@jest/schemas/29.6.0:
- resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==}
+ /@jest/schemas/29.6.3:
+ resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@sinclair/typebox': 0.27.8
dev: true
- /@jest/source-map/29.6.0:
- resolution: {integrity: sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==}
+ /@jest/source-map/29.6.3:
+ resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jridgewell/trace-mapping': 0.3.19
@@ -3792,23 +3800,23 @@ packages:
graceful-fs: 4.2.11
dev: true
- /@jest/test-result/29.6.2:
- resolution: {integrity: sha512-3VKFXzcV42EYhMCsJQURptSqnyjqCGbtLuX5Xxb6Pm6gUf1wIRIl+mandIRGJyWKgNKYF9cnstti6Ls5ekduqw==}
+ /@jest/test-result/29.6.4:
+ resolution: {integrity: sha512-uQ1C0AUEN90/dsyEirgMLlouROgSY+Wc/JanVVk0OiUKa5UFh7sJpMEM3aoUBAz2BRNvUJ8j3d294WFuRxSyOQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/console': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/console': 29.6.4
+ '@jest/types': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
collect-v8-coverage: 1.0.2
dev: true
- /@jest/test-sequencer/29.6.2:
- resolution: {integrity: sha512-GVYi6PfPwVejO7slw6IDO0qKVum5jtrJ3KoLGbgBWyr2qr4GaxFV6su+ZAjdTX75Sr1DkMFRk09r2ZVa+wtCGw==}
+ /@jest/test-sequencer/29.6.4:
+ resolution: {integrity: sha512-E84M6LbpcRq3fT4ckfKs9ryVanwkaIB0Ws9bw3/yP4seRLg/VaCZ/LgW0MCq5wwk4/iP/qnilD41aj2fsw2RMg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/test-result': 29.6.2
+ '@jest/test-result': 29.6.4
graceful-fs: 4.2.11
- jest-haste-map: 29.6.2
+ jest-haste-map: 29.6.4
slash: 3.0.0
dev: true
@@ -3816,7 +3824,7 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -3835,21 +3843,21 @@ packages:
- supports-color
dev: true
- /@jest/transform/29.6.2:
- resolution: {integrity: sha512-ZqCqEISr58Ce3U+buNFJYUktLJZOggfyvR+bZMaiV1e8B1SIvJbwZMrYz3gx/KAPn9EXmOmN+uB08yLCjWkQQg==}
+ /@jest/transform/29.6.4:
+ resolution: {integrity: sha512-8thgRSiXUqtr/pPGY/OsyHuMjGyhVnWrFAwoxmIemlBuiMyU1WFs0tXoNxzcr4A4uErs/ABre76SGmrr5ab/AA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.10
- '@jest/types': 29.6.1
+ '@babel/core': 7.22.11
+ '@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.19
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
convert-source-map: 2.0.0
fast-json-stable-stringify: 2.1.0
graceful-fs: 4.2.11
- jest-haste-map: 29.6.2
- jest-regex-util: 29.4.3
- jest-util: 29.6.2
+ jest-haste-map: 29.6.4
+ jest-regex-util: 29.6.3
+ jest-util: 29.6.3
micromatch: 4.0.5
pirates: 4.0.6
slash: 3.0.0
@@ -3864,7 +3872,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
'@types/yargs': 15.0.15
chalk: 4.1.2
dev: true
@@ -3875,16 +3883,16 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
'@types/yargs': 16.0.5
chalk: 4.1.2
dev: true
- /@jest/types/29.6.1:
- resolution: {integrity: sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==}
+ /@jest/types/29.6.3:
+ resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 29.6.0
+ '@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
'@types/node': 18.16.18
@@ -3903,6 +3911,7 @@ packages:
/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
+ dev: false
/@jridgewell/resolve-uri/3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
@@ -3916,10 +3925,11 @@ packages:
resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
dependencies:
'@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.19
/@jridgewell/sourcemap-codec/1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
+ dev: false
/@jridgewell/sourcemap-codec/1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
@@ -3929,6 +3939,7 @@ packages:
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
+ dev: false
/@jridgewell/trace-mapping/0.3.19:
resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
@@ -3956,13 +3967,13 @@ packages:
- zenObservable
dev: false
- /@maizzle/framework/4.4.7_glob@8.0.3:
- resolution: {integrity: sha512-bzf4IYSsRrqWZvuXh8W+rvcmbpoOXW3VOGD4gidBd/X0PDpCuQDhrU4gaJAp1GGca1cVYVqsThFTNyKciCqPew==}
+ /@maizzle/framework/4.5.0_glob@8.0.3:
+ resolution: {integrity: sha512-73tjo9zEgYlUqc8Y92WgdPjgXLnF7L71am+K81jlDNCxX1NLuzcyH7fQVSW1M4lc1FvPPwyOg7R4+c3vW9Ks0A==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
'@maizzle/cli': 1.5.6
- autoprefixer: 10.4.14_postcss@8.4.27
+ autoprefixer: 10.4.15_postcss@8.4.29
browser-sync: 2.29.3
color-shorthand-hex-to-six-digit: 3.1.0
email-comb: 5.3.1
@@ -3974,9 +3985,9 @@ packages:
juice: 9.1.0
lodash: 4.17.21
ora: 5.4.1
- postcss: 8.4.27
- postcss-import: 15.1.0_postcss@8.4.27
- postcss-merge-longhand: 6.0.0_postcss@8.4.27
+ postcss: 8.4.29
+ postcss-import: 15.1.0_postcss@8.4.29
+ postcss-merge-longhand: 6.0.0_postcss@8.4.29
posthtml: 0.16.6
posthtml-attrs-parser: 0.1.1
posthtml-base-url: 2.0.0
@@ -4150,7 +4161,7 @@ packages:
'@types/debug': 4.1.8
'@xmldom/xmldom': 0.8.10
debug: 4.3.4
- headers-polyfill: 3.1.2
+ headers-polyfill: 3.2.1
outvariant: 1.4.0
strict-event-emitter: 0.2.8
web-encoding: 1.1.5
@@ -4158,14 +4169,14 @@ packages:
- supports-color
dev: true
- /@next-auth/prisma-adapter/1.0.7_hmwhkxshede7eot3ghuarcahze:
+ /@next-auth/prisma-adapter/1.0.7_neu6eobddhgrkyuxxxgkqeqnd4:
resolution: {integrity: sha512-Cdko4KfcmKjsyHFrWwZ//lfLUbcLqlyFqjd/nYE2m3aZ7tjMNUjpks47iw7NTCnXf+5UWz5Ypyt1dSs1EP5QJw==}
peerDependencies:
'@prisma/client': '>=2.26.0 || >=3'
next-auth: ^4
dependencies:
- '@prisma/client': 5.1.1_prisma@5.1.1
- next-auth: 4.23.0_m2l4knchnqa6bzxbbtfxlzoxdy
+ '@prisma/client': 5.2.0_prisma@5.2.0
+ next-auth: 4.23.1_m2l4knchnqa6bzxbbtfxlzoxdy
dev: false
/@next/bundle-analyzer/13.4.19:
@@ -4387,7 +4398,7 @@ packages:
'@octokit/request-error': 3.0.3
'@octokit/types': 9.3.2
is-plain-object: 5.0.0
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
universal-user-agent: 6.0.0
transitivePeerDependencies:
- encoding
@@ -4421,6 +4432,10 @@ packages:
'@octokit/openapi-types': 18.0.0
dev: false
+ /@one-ini/wasm/0.1.1:
+ resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==}
+ dev: false
+
/@open-draft/until/1.0.3:
resolution: {integrity: sha512-Aq58f5HiWdyDlFffbbSjAlv596h/cOnt2DO1w3DOC7OJ5EHs0hd/nycJfiu9RJbT6Yk6F1knnRRXNSpxoIVZ9Q==}
dev: true
@@ -4428,7 +4443,7 @@ packages:
/@panva/hkdf/1.1.1:
resolution: {integrity: sha512-dhPeilub1NuIG0X5Kvhh9lH4iW3ZsHlnzwgwbOlgwQ2wG1IqFzsgHqmKPk3WzsdWAeaxKJxgM0+W433RmN45GA==}
- /@pmmmwh/react-refresh-webpack-plugin/0.5.10_3jiny27o5v2we4qkd7etgwvoam:
+ /@pmmmwh/react-refresh-webpack-plugin/0.5.10_6gqlc5upjqs5d4sfwulwsuqnh4:
resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==}
engines: {node: '>= 10.13'}
peerDependencies:
@@ -4464,7 +4479,7 @@ packages:
react-refresh: 0.11.0
schema-utils: 3.3.0
source-map: 0.7.4
- type-fest: 4.2.0
+ type-fest: 4.3.1
webpack: 5.88.2
dev: true
@@ -4496,8 +4511,8 @@ packages:
/@popperjs/core/2.11.8:
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
- /@prisma/client/5.1.1_prisma@5.1.1:
- resolution: {integrity: sha512-fxcCeK5pMQGcgCqCrWsi+I2rpIbk0rAhdrN+ke7f34tIrgPwA68ensrpin+9+fZvuV2OtzHmuipwduSY6HswdA==}
+ /@prisma/client/5.2.0_prisma@5.2.0:
+ resolution: {integrity: sha512-AiTjJwR4J5Rh6Z/9ZKrBBLel3/5DzUNntMohOy7yObVnVoTNVFi2kvpLZlFuKO50d7yDspOtW6XBpiAd0BVXbQ==}
engines: {node: '>=16.13'}
requiresBuild: true
peerDependencies:
@@ -4506,16 +4521,16 @@ packages:
prisma:
optional: true
dependencies:
- '@prisma/engines-version': 5.1.1-1.6a3747c37ff169c90047725a05a6ef02e32ac97e
- prisma: 5.1.1
+ '@prisma/engines-version': 5.2.0-25.2804dc98259d2ea960602aca6b8e7fdc03c1758f
+ prisma: 5.2.0
dev: false
- /@prisma/engines-version/5.1.1-1.6a3747c37ff169c90047725a05a6ef02e32ac97e:
- resolution: {integrity: sha512-owZqbY/wucbr65bXJ/ljrHPgQU5xXTSkmcE/JcbqE1kusuAXV/TLN3/exmz21SZ5rJ7WDkyk70J2G/n68iogbQ==}
+ /@prisma/engines-version/5.2.0-25.2804dc98259d2ea960602aca6b8e7fdc03c1758f:
+ resolution: {integrity: sha512-jsnKT5JIDIE01lAeCj2ghY9IwxkedhKNvxQeoyLs6dr4ZXynetD0vTy7u6wMJt8vVPv8I5DPy/I4CFaoXAgbtg==}
dev: false
- /@prisma/engines/5.1.1:
- resolution: {integrity: sha512-NV/4nVNWFZSJCCIA3HIFJbbDKO/NARc9ej0tX5S9k2EVbkrFJC4Xt9b0u4rNZWL4V+F5LAjvta8vzEUw0rw+HA==}
+ /@prisma/engines/5.2.0:
+ resolution: {integrity: sha512-dT7FOLUCdZmq+AunLqB1Iz+ZH/IIS1Fz2THmKZQ6aFONrQD/BQ5ecJ7g2wGS2OgyUFf4OaLam6/bxmgdOBDqig==}
requiresBuild: true
/@radix-ui/colors/1.0.1:
@@ -4528,7 +4543,7 @@ packages:
'@babel/runtime': 7.22.5
dev: false
- /@radix-ui/react-arrow/1.0.3_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-arrow/1.0.3_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -4542,14 +4557,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@types/react': 18.2.20
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-collection/1.0.3_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-collection/1.0.3_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -4563,11 +4578,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-slot': 1.0.2_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-slot': 1.0.2_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -4578,11 +4593,11 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0 || 18
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
react: 18.2.0
dev: false
- /@radix-ui/react-compose-refs/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-compose-refs/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -4592,11 +4607,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-context/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-context/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -4606,11 +4621,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-direction/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-direction/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -4620,11 +4635,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-dismissable-layer/1.0.4_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-dismissable-layer/1.0.4_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -4639,17 +4654,17 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-escape-keydown': 1.0.3_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-escape-keydown': 1.0.3_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-dropdown-menu/2.0.5_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-dropdown-menu/2.0.5_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
peerDependencies:
'@types/react': '*'
@@ -4664,19 +4679,19 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-id': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-menu': 2.0.5_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-use-controllable-state': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-id': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-menu': 2.0.5_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-use-controllable-state': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-focus-guards/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-focus-guards/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -4686,11 +4701,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-focus-scope/1.0.3_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-focus-scope/1.0.3_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -4704,16 +4719,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-id/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-id/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -4723,12 +4738,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-use-layout-effect': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-use-layout-effect': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-menu/2.0.5_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-menu/2.0.5_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
peerDependencies:
'@types/react': '*'
@@ -4743,30 +4758,30 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-direction': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-dismissable-layer': 1.0.4_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-focus-guards': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-focus-scope': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-id': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-popper': 1.1.2_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-portal': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-presence': 1.0.1_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-roving-focus': 1.0.4_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-slot': 1.0.2_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-collection': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-direction': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-dismissable-layer': 1.0.4_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-focus-guards': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-focus-scope': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-id': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-popper': 1.1.2_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-portal': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-presence': 1.0.1_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-roving-focus': 1.0.4_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-slot': 1.0.2_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-remove-scroll: 2.5.5_j3ahe22lw6ac2w6qvqp4kjqnqy
+ react-remove-scroll: 2.5.5_gq4reeurwxuj4hvyerswzzqthy
dev: false
- /@radix-ui/react-popover/1.0.6_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-popover/1.0.6_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
peerDependencies:
'@types/react': '*'
@@ -4781,27 +4796,27 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-dismissable-layer': 1.0.4_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-focus-guards': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-focus-scope': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-id': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-popper': 1.1.2_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-portal': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-presence': 1.0.1_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-slot': 1.0.2_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-controllable-state': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-dismissable-layer': 1.0.4_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-focus-guards': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-focus-scope': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-id': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-popper': 1.1.2_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-portal': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-presence': 1.0.1_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-slot': 1.0.2_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-controllable-state': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-remove-scroll: 2.5.5_j3ahe22lw6ac2w6qvqp4kjqnqy
+ react-remove-scroll: 2.5.5_gq4reeurwxuj4hvyerswzzqthy
dev: false
- /@radix-ui/react-popper/1.1.2_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-popper/1.1.2_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -4816,22 +4831,22 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@floating-ui/react-dom': 2.0.1_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-arrow': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-layout-effect': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-rect': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-size': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
+ '@radix-ui/react-arrow': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-layout-effect': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-rect': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-size': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-portal/1.0.3_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-portal/1.0.3_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -4845,14 +4860,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@types/react': 18.2.20
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-presence/1.0.1_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-presence/1.0.1_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -4866,15 +4881,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-layout-effect': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-layout-effect': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-primitive/1.0.3_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-primitive/1.0.3_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -4888,14 +4903,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-slot': 1.0.2_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-slot': 1.0.2_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-roving-focus/1.0.4_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-roving-focus/1.0.4_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -4910,15 +4925,15 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-direction': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-id': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-controllable-state': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-collection': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-direction': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-id': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-controllable-state': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -4929,12 +4944,12 @@ packages:
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0 || 18
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
'@radix-ui/react-compose-refs': 1.0.0_react@18.2.0
react: 18.2.0
dev: false
- /@radix-ui/react-slot/1.0.2_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-slot/1.0.2_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -4944,12 +4959,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-tooltip/1.0.6_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-tooltip/1.0.6_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
peerDependencies:
'@types/react': '*'
@@ -4964,24 +4979,24 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-context': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-dismissable-layer': 1.0.4_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-id': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-popper': 1.1.2_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-portal': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-presence': 1.0.1_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@radix-ui/react-slot': 1.0.2_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-use-controllable-state': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@radix-ui/react-visually-hidden': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@types/react': 18.2.20
+ '@radix-ui/react-compose-refs': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-context': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-dismissable-layer': 1.0.4_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-id': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-popper': 1.1.2_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-portal': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-presence': 1.0.1_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@radix-ui/react-slot': 1.0.2_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-use-controllable-state': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@radix-ui/react-visually-hidden': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-use-callback-ref/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-use-callback-ref/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -4991,11 +5006,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-use-controllable-state/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-use-controllable-state/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -5005,12 +5020,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-use-escape-keydown/1.0.3_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-use-escape-keydown/1.0.3_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -5020,12 +5035,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-use-callback-ref': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-use-callback-ref': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-use-layout-effect/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -5035,11 +5050,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-use-rect/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-use-rect/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -5050,11 +5065,11 @@ packages:
dependencies:
'@babel/runtime': 7.22.5
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-use-size/1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /@radix-ui/react-use-size/1.0.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -5064,12 +5079,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-use-layout-effect': 1.0.1_j3ahe22lw6ac2w6qvqp4kjqnqy
- '@types/react': 18.2.20
+ '@radix-ui/react-use-layout-effect': 1.0.1_gq4reeurwxuj4hvyerswzzqthy
+ '@types/react': 18.2.21
react: 18.2.0
dev: false
- /@radix-ui/react-visually-hidden/1.0.3_gltvt74xzh7f5lvw2hzxriz5bu:
+ /@radix-ui/react-visually-hidden/1.0.3_zkisbtryv3xtasf42ecsrjh3ky:
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -5083,8 +5098,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.5
- '@radix-ui/react-primitive': 1.0.3_gltvt74xzh7f5lvw2hzxriz5bu
- '@types/react': 18.2.20
+ '@radix-ui/react-primitive': 1.0.3_zkisbtryv3xtasf42ecsrjh3ky
+ '@types/react': 18.2.21
'@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -5254,16 +5269,16 @@ packages:
react: 18.2.0
dev: false
- /@relative-ci/agent/4.1.6_webpack@5.88.2:
- resolution: {integrity: sha512-4kycHnO0YDVoz/WaIgVGVBYmOluALfPM7PW1X+TI6OcXWPyWfPgPmteS/zkSRHvLGDVGTwjFug9TKudq/pi68A==}
+ /@relative-ci/agent/4.1.8_webpack@5.88.2:
+ resolution: {integrity: sha512-X+Dct9Tda3pquoxly6O+sTcpAENmWRmPCuPJmtUBIdcFJIQ1wjU0NhvcrYt07FvDcFQRfGEUy6Cx1msbzw8eZA==}
engines: {node: '>= 14.0'}
hasBin: true
peerDependencies:
webpack: ^4.0.0 || ^5.0.0-rc.1
dependencies:
- '@bundle-stats/plugin-webpack-filter': 4.5.2_core-js@3.31.1
- '@bundle-stats/plugin-webpack-validate': 4.5.2
- core-js: 3.31.1
+ '@bundle-stats/plugin-webpack-filter': 4.6.3_core-js@3.32.1
+ '@bundle-stats/plugin-webpack-validate': 4.6.3
+ core-js: 3.32.1
cosmiconfig: 8.2.0
debug: 4.3.4
dotenv: 16.3.1
@@ -5382,6 +5397,7 @@ packages:
/@sendinblue/client/3.3.1:
resolution: {integrity: sha512-5xNGeT5gKD5XOvl5vHk682wvjJxRPnH3nc2vOZIaDX9XKuhoMaYXyEdqlP0R/Z6gEZiHhzpZxzrdiwlngGzsgw==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
dependencies:
'@types/bluebird': 3.5.38
'@types/request': 2.48.8
@@ -5487,7 +5503,7 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/addon-controls/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/addon-controls/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-p16k/69GjwVtnpEiz0fmb1qoqp/H2d5aaSGDt7VleeXsdhs4Kh0kJyxfLpekHmlzT+5IkO08Nm/U8tJOHbw4Hw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -5502,7 +5518,7 @@ packages:
'@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/client-logger': 6.5.14
'@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/csf': 0.0.2--canary.4566f4d.1
'@storybook/node-logger': 6.5.14
'@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y
@@ -5521,7 +5537,7 @@ packages:
- webpack-command
dev: true
- /@storybook/addon-docs/6.5.14_6wy76qakueyqeta664m2znitie:
+ /@storybook/addon-docs/6.5.14_mf6wgduplc5xdyyr7fsjixdmle:
resolution: {integrity: sha512-gapuzDY+dqgS4/Ap9zj5L76OSExBYtVNYej9xTiF+v0Gh4/kty9FIGlVWiqskffOmixL4nlyImpfsSH8V0JnCw==}
peerDependencies:
'@storybook/mdx2-csf': ^0.0.3
@@ -5535,25 +5551,25 @@ packages:
react-dom:
optional: true
dependencies:
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.10
- '@babel/preset-env': 7.20.2_@babel+core@7.22.10
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.11
+ '@babel/preset-env': 7.20.2_@babel+core@7.22.11
'@jest/transform': 26.6.2
'@mdx-js/react': 1.6.22_react@18.2.0
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/core-events': 6.5.14
'@storybook/csf': 0.0.2--canary.4566f4d.1
'@storybook/docs-tools': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/mdx1-csf': 0.0.1_@babel+core@7.22.10
+ '@storybook/mdx1-csf': 0.0.1_@babel+core@7.22.11
'@storybook/node-logger': 6.5.14
'@storybook/postinstall': 6.5.14
'@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/source-loader': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y
- babel-loader: 8.2.5_a7bz5yhgcoab2comip4bcc2pf4
+ babel-loader: 8.2.5_7nqnrdwtl44yxbgqpombxtkqjy
core-js: 3.26.1
fast-deep-equal: 3.1.3
global: 4.4.0
@@ -5576,7 +5592,7 @@ packages:
- webpack-command
dev: true
- /@storybook/addon-essentials/6.5.14_xsuf4numzmspkqych4bphf5fyq:
+ /@storybook/addon-essentials/6.5.14_bwlcw6fija3enhr626wihxnzla:
resolution: {integrity: sha512-6fmfDHbp1y/hF0GU0W95RLw4rzN3KGcEcpAZ8HbgTyXIF528j0hhlvkD5AjnQ5dVarlHdKAtMRZA9Y3OCEZD6A==}
peerDependencies:
'@babel/core': ^7.9.6
@@ -5633,19 +5649,19 @@ packages:
webpack:
optional: true
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@storybook/addon-actions': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/addon-backgrounds': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/addon-controls': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
- '@storybook/addon-docs': 6.5.14_6wy76qakueyqeta664m2znitie
+ '@storybook/addon-controls': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
+ '@storybook/addon-docs': 6.5.14_mf6wgduplc5xdyyr7fsjixdmle
'@storybook/addon-measure': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/addon-outline': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/addon-toolbars': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/addon-viewport': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/builder-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/builder-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/node-logger': 6.5.14
core-js: 3.26.1
react: 18.2.0
@@ -5663,7 +5679,7 @@ packages:
- webpack-command
dev: true
- /@storybook/addon-interactions/6.5.14_v5x7tobwkjhoz5lk67dqc5g7um:
+ /@storybook/addon-interactions/6.5.14_ehoetagbnz6phmsemrkqmp7soa:
resolution: {integrity: sha512-Stw/m3+T6ILrQPwyPgRNYtXZTBk9wE0KOSOUVrc6VixCcXm43nIYkUFiq4NL86lCBR4RKewfgl8U3Rn6chE8Tg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -5674,12 +5690,12 @@ packages:
react-dom:
optional: true
dependencies:
- '@devtools-ds/object-inspector': 1.2.0_qflmzdebv2ewfrqz6op6ohcc2q
+ '@devtools-ds/object-inspector': 1.2.0_vnxzf5c44dqo4vncfl2mrh2gwm
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/client-logger': 6.5.14
'@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/core-events': 6.5.14
'@storybook/csf': 0.0.2--canary.4566f4d.1
'@storybook/instrumenter': 6.5.14_biqbaboplfbrettd7655fr4n2y
@@ -5812,7 +5828,7 @@ packages:
'@storybook/router': 6.5.12_biqbaboplfbrettd7655fr4n2y
'@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y
'@types/webpack-env': 1.18.0
- core-js: 3.31.0
+ core-js: 3.32.1
global: 4.4.0
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -5854,7 +5870,7 @@ packages:
'@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y
'@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y
'@types/webpack-env': 1.18.0
- core-js: 3.31.0
+ core-js: 3.32.1
global: 4.4.0
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -5874,7 +5890,7 @@ packages:
'@storybook/router': 6.5.12_biqbaboplfbrettd7655fr4n2y
'@storybook/semver': 7.3.2
'@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y
- core-js: 3.31.0
+ core-js: 3.32.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
@@ -5928,7 +5944,7 @@ packages:
'@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y
'@storybook/semver': 7.3.2
'@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y
- core-js: 3.31.0
+ core-js: 3.32.1
fast-deep-equal: 3.1.3
global: 4.4.0
lodash: 4.17.21
@@ -5942,7 +5958,7 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/builder-webpack4/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/builder-webpack4/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-0pv8BlsMeiP9VYU2CbCZaa3yXDt1ssb8OeTRDbFC0uFFb3eqslsH68I7XsC8ap/dr0RZR0Edtw0OW3HhkjUXXw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -5952,7 +5968,7 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/channel-postmessage': 6.5.14
@@ -5960,7 +5976,7 @@ packages:
'@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/client-logger': 6.5.14
'@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/core-events': 6.5.14
'@storybook/node-logger': 6.5.14
'@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y
@@ -5972,18 +5988,18 @@ packages:
'@types/node': 16.11.45
'@types/webpack': 4.41.33
autoprefixer: 9.8.8
- babel-loader: 8.2.5_vckkkmkydt63wm5f7khqmaumqa
+ babel-loader: 8.2.5_6gybhbqitvywvqspas67uhcyce
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.26.1
css-loader: 3.6.0_webpack@4.46.0
file-loader: 6.2.0_webpack@4.46.0
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 4.1.6_ocmsqikodigm44ritzt6kvr4vy
+ fork-ts-checker-webpack-plugin: 4.1.6_6iwq6kufuq7pqcbhduqapyzpyu
glob: 7.2.3
glob-promise: 3.4.0_glob@7.2.3
global: 4.4.0
html-webpack-plugin: 4.5.2_webpack@4.46.0
- pnp-webpack-plugin: 1.6.4_typescript@5.1.6
+ pnp-webpack-plugin: 1.6.4_typescript@5.2.2
postcss: 7.0.39
postcss-flexbugs-fixes: 4.2.1
postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe
@@ -5994,7 +6010,7 @@ packages:
style-loader: 1.3.0_webpack@4.46.0
terser-webpack-plugin: 4.2.3_webpack@4.46.0
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy
util-deprecate: 1.0.2
webpack: 4.46.0
@@ -6011,7 +6027,7 @@ packages:
- webpack-command
dev: true
- /@storybook/builder-webpack5/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/builder-webpack5/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-Ukj7Wwxz/3mKn5TI5mkm2mIm583LxOz78ZrpcOgI+vpjeRlMFXmGGEb68R47SiCdZoVCfIeCXXXzBd6Q6As6QQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -6021,7 +6037,7 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/channel-postmessage': 6.5.14
@@ -6029,7 +6045,7 @@ packages:
'@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/client-logger': 6.5.14
'@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/core-events': 6.5.14
'@storybook/node-logger': 6.5.14
'@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y
@@ -6038,13 +6054,13 @@ packages:
'@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@types/node': 16.11.45
- babel-loader: 8.2.5_a7bz5yhgcoab2comip4bcc2pf4
+ babel-loader: 8.2.5_7nqnrdwtl44yxbgqpombxtkqjy
babel-plugin-named-exports-order: 0.0.2
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.26.1
css-loader: 5.2.7_webpack@5.88.2
- fork-ts-checker-webpack-plugin: 6.5.2_fs5k6y67ild4sa3ei4qlx7vmfa
+ fork-ts-checker-webpack-plugin: 6.5.2_7oeaeroewfqz4nihn4wisyzr3a
glob: 7.2.3
glob-promise: 3.4.0_glob@7.2.3
html-webpack-plugin: 5.5.0_webpack@5.88.2
@@ -6056,7 +6072,7 @@ packages:
style-loader: 2.0.0_webpack@5.88.2
terser-webpack-plugin: 5.3.6_webpack@5.88.2
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
util-deprecate: 1.0.2
webpack: 5.88.2
webpack-dev-middleware: 4.3.0_webpack@5.88.2
@@ -6098,7 +6114,7 @@ packages:
/@storybook/channels/6.5.12:
resolution: {integrity: sha512-X5XaKbe4b7LXJ4sUakBo00x6pXnW78JkOonHoaKoWsccHLlEzwfBZpVVekhVZnqtCoLT23dB8wjKgA71RYWoiw==}
dependencies:
- core-js: 3.31.0
+ core-js: 3.32.1
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
@@ -6114,7 +6130,7 @@ packages:
/@storybook/channels/6.5.9:
resolution: {integrity: sha512-FvGA35nV38UPXWOl9ERapFTJaxwSTamQ339s2Ev7E9riyRG+GRkgTWzf5kECJgS1PAYKd/7m/RqKJT9BVv6A5g==}
dependencies:
- core-js: 3.31.0
+ core-js: 3.32.1
ts-dedent: 2.2.0
util-deprecate: 1.0.2
dev: true
@@ -6152,7 +6168,7 @@ packages:
/@storybook/client-logger/6.5.12:
resolution: {integrity: sha512-IrkMr5KZcudX935/C2balFbxLHhkvQnJ78rbVThHDVckQ7l3oIXTh66IMzldeOabVFDZEMiW8AWuGEYof+JtLw==}
dependencies:
- core-js: 3.31.0
+ core-js: 3.32.1
global: 4.4.0
dev: true
@@ -6166,7 +6182,7 @@ packages:
/@storybook/client-logger/6.5.9:
resolution: {integrity: sha512-DOHL6p0uiDd3gV/Sb2FR+Vh6OiPrrf8BrA06uvXWsMRIIvEEvnparxv9EvPg7FlmUX0T3nq7d3juwjx4F8Wbcg==}
dependencies:
- core-js: 3.31.0
+ core-js: 3.32.1
global: 4.4.0
dev: true
@@ -6188,7 +6204,7 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/core-client/6.5.14_2jabxvyissptxqz6hbbomthk6q:
+ /@storybook/core-client/6.5.14_ezwf6xyksr6r6okqelezccxvly:
resolution: {integrity: sha512-d5mUgz1xSvrAdal8XKI5YOZOM/XUly90vis3DboeZRO58qSp+NH5xFYIBBED5qefDgmGU0Yv4rXHQlph96LSHQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -6219,13 +6235,13 @@ packages:
react-dom: 18.2.0_react@18.2.0
regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
unfetch: 4.2.0
util-deprecate: 1.0.2
webpack: 5.88.2
dev: true
- /@storybook/core-client/6.5.14_lqm5nntfpkfe3qgujqwymyfc6a:
+ /@storybook/core-client/6.5.14_nlpwvx6b7ekigz7lwhrul4ed24:
resolution: {integrity: sha512-d5mUgz1xSvrAdal8XKI5YOZOM/XUly90vis3DboeZRO58qSp+NH5xFYIBBED5qefDgmGU0Yv4rXHQlph96LSHQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -6256,13 +6272,13 @@ packages:
react-dom: 18.2.0_react@18.2.0
regenerator-runtime: 0.13.11
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
unfetch: 4.2.0
util-deprecate: 1.0.2
webpack: 4.46.0
dev: true
- /@storybook/core-common/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/core-common/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-MrxhYXYrtN6z/+tydjPkCIwDQm5q8Jx+w4TPdLKBZu7vzfp6T3sT12Ym96j9MJ42CvE4vSDl/Njbw6C0D+yEVw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -6272,41 +6288,41 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.10
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-decorators': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.22.10
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.22.10
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.22.10
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.22.10
- '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.22.10
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.22.10
- '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.22.10
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.22.10
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.22.10
- '@babel/preset-env': 7.20.2_@babel+core@7.22.10
- '@babel/preset-react': 7.18.6_@babel+core@7.22.10
- '@babel/preset-typescript': 7.18.6_@babel+core@7.22.10
- '@babel/register': 7.18.9_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-decorators': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.22.11
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.22.11
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.22.11
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.22.11
+ '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.22.11
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.22.11
+ '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.22.11
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.22.11
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.22.11
+ '@babel/preset-env': 7.20.2_@babel+core@7.22.11
+ '@babel/preset-react': 7.18.6_@babel+core@7.22.11
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.22.11
+ '@babel/register': 7.18.9_@babel+core@7.22.11
'@storybook/node-logger': 6.5.14
'@storybook/semver': 7.3.2
'@types/node': 16.11.45
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.2.5_vckkkmkydt63wm5f7khqmaumqa
+ babel-loader: 8.2.5_6gybhbqitvywvqspas67uhcyce
babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.22.10
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.22.11
chalk: 4.1.2
core-js: 3.26.1
express: 4.18.2
file-system-cache: 1.1.0
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.2_ocmsqikodigm44ritzt6kvr4vy
+ fork-ts-checker-webpack-plugin: 6.5.2_6iwq6kufuq7pqcbhduqapyzpyu
fs-extra: 9.1.0
glob: 7.2.3
handlebars: 4.7.7
@@ -6322,7 +6338,7 @@ packages:
slash: 3.0.0
telejson: 6.0.8
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
util-deprecate: 1.0.2
webpack: 4.46.0
transitivePeerDependencies:
@@ -6336,7 +6352,7 @@ packages:
/@storybook/core-events/6.5.12:
resolution: {integrity: sha512-0AMyMM19R/lHsYRfWqM8zZTXthasTAK2ExkSRzYi2GkIaVMxRKtM33YRwxKIpJ6KmIKIs8Ru3QCXu1mfCmGzNg==}
dependencies:
- core-js: 3.31.0
+ core-js: 3.32.1
dev: true
/@storybook/core-events/6.5.14:
@@ -6348,10 +6364,10 @@ packages:
/@storybook/core-events/6.5.9:
resolution: {integrity: sha512-tXt7a3ZvJOCeEKpNa/B5rQM5VI7UJLlOh3IHOImWn4HqoBRrZvbourmac+PRZAtXpos0h3c6554Hjapj/Sny5Q==}
dependencies:
- core-js: 3.31.0
+ core-js: 3.32.1
dev: true
- /@storybook/core-server/6.5.14_jkc22rhyiqhgi5wrmf36pl6vdy:
+ /@storybook/core-server/6.5.14_izmfc5kczs2jgieqee7iqbngmy:
resolution: {integrity: sha512-+Z3lHEsDpiBXt6xBwU5AVBoEkicndnHoiLwhEGPkfixy7POYEEny3cm54tteVxV8O5AHMwsHs54/QD+hHxAXnQ==}
peerDependencies:
'@storybook/builder-webpack5': '*'
@@ -6368,19 +6384,19 @@ packages:
optional: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-webpack4': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
- '@storybook/builder-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
- '@storybook/core-client': 6.5.14_lqm5nntfpkfe3qgujqwymyfc6a
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/builder-webpack4': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
+ '@storybook/builder-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
+ '@storybook/core-client': 6.5.14_nlpwvx6b7ekigz7lwhrul4ed24
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/core-events': 6.5.14
'@storybook/csf': 0.0.2--canary.4566f4d.1
'@storybook/csf-tools': 6.5.14
- '@storybook/manager-webpack4': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
- '@storybook/manager-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/manager-webpack4': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
+ '@storybook/manager-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/node-logger': 6.5.14
'@storybook/semver': 7.3.2
'@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/telemetry': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/telemetry': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@types/node': 16.11.45
'@types/node-fetch': 2.6.2
'@types/pretty-hrtime': 1.0.1
@@ -6400,7 +6416,7 @@ packages:
globby: 11.1.0
ip: 2.0.0
lodash: 4.17.21
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
open: 8.4.2
pretty-hrtime: 1.0.3
prompts: 2.4.2
@@ -6411,7 +6427,7 @@ packages:
slash: 3.0.0
telejson: 6.0.8
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
util-deprecate: 1.0.2
watchpack: 2.4.0
webpack: 4.46.0
@@ -6430,7 +6446,7 @@ packages:
- webpack-command
dev: true
- /@storybook/core/6.5.14_k3e3ghitpmucagbf6bqjfa4mra:
+ /@storybook/core/6.5.14_vnmq7spqxfpp5cjhk3z5oaw4li:
resolution: {integrity: sha512-5rjwZXk++NkKWCmHt/CC+h2L4ZbOYkLJpMmaB97CwgQCA6kaF8xuJqlAwG72VUH3oV+6RntW02X6/ypgX1atPw==}
peerDependencies:
'@storybook/builder-webpack5': '*'
@@ -6447,13 +6463,13 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/builder-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
- '@storybook/core-client': 6.5.14_2jabxvyissptxqz6hbbomthk6q
- '@storybook/core-server': 6.5.14_jkc22rhyiqhgi5wrmf36pl6vdy
- '@storybook/manager-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/builder-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
+ '@storybook/core-client': 6.5.14_ezwf6xyksr6r6okqelezccxvly
+ '@storybook/core-server': 6.5.14_izmfc5kczs2jgieqee7iqbngmy
+ '@storybook/manager-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
webpack: 5.88.2
transitivePeerDependencies:
- '@storybook/mdx2-csf'
@@ -6476,15 +6492,15 @@ packages:
'@storybook/mdx2-csf':
optional: true
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/generator': 7.22.10
- '@babel/parser': 7.22.10
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.10
- '@babel/preset-env': 7.20.2_@babel+core@7.22.10
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/parser': 7.22.11
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.22.11
+ '@babel/preset-env': 7.20.2_@babel+core@7.22.11
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
'@storybook/csf': 0.0.2--canary.4566f4d.1
- '@storybook/mdx1-csf': 0.0.1_@babel+core@7.22.10
+ '@storybook/mdx1-csf': 0.0.1_@babel+core@7.22.11
core-js: 3.26.1
fs-extra: 9.1.0
global: 4.4.0
@@ -6515,7 +6531,7 @@ packages:
/@storybook/docs-tools/6.5.14_biqbaboplfbrettd7655fr4n2y:
resolution: {integrity: sha512-qA0UWvrZ7XyIWD+01NGHiiGPSbfercrxjphM9wHgF6KrO6e5iykNKIEL4elsM+EV4szfhlalQdtpnwM7WtXODA==}
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@storybook/csf': 0.0.2--canary.4566f4d.1
'@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y
core-js: 3.26.1
@@ -6547,14 +6563,14 @@ packages:
'@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y
'@storybook/client-logger': 6.5.9
'@storybook/core-events': 6.5.9
- core-js: 3.31.0
+ core-js: 3.32.1
global: 4.4.0
transitivePeerDependencies:
- react
- react-dom
dev: true
- /@storybook/manager-webpack4/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/manager-webpack4/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-ixfJuaG0eiOlxn4i+LJNRUZkm+3WMsiaGUm0hw2XHF0pW3cBIA/+HyzkEwVh/fROHbsOERTkjNl0Ygl12Imw9w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -6564,18 +6580,18 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.10
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.10
- '@babel/preset-react': 7.18.6_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.11
+ '@babel/preset-react': 7.18.6_@babel+core@7.22.11
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-client': 6.5.14_lqm5nntfpkfe3qgujqwymyfc6a
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-client': 6.5.14_nlpwvx6b7ekigz7lwhrul4ed24
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/node-logger': 6.5.14
'@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@types/node': 16.11.45
'@types/webpack': 4.41.33
- babel-loader: 8.2.5_vckkkmkydt63wm5f7khqmaumqa
+ babel-loader: 8.2.5_6gybhbqitvywvqspas67uhcyce
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.26.1
@@ -6585,8 +6601,8 @@ packages:
find-up: 5.0.0
fs-extra: 9.1.0
html-webpack-plugin: 4.5.2_webpack@4.46.0
- node-fetch: 2.6.12
- pnp-webpack-plugin: 1.6.4_typescript@5.1.6
+ node-fetch: 2.7.0
+ pnp-webpack-plugin: 1.6.4_typescript@5.2.2
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
read-pkg-up: 7.0.1
@@ -6596,7 +6612,7 @@ packages:
telejson: 6.0.8
terser-webpack-plugin: 4.2.3_webpack@4.46.0
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy
util-deprecate: 1.0.2
webpack: 4.46.0
@@ -6612,7 +6628,7 @@ packages:
- webpack-command
dev: true
- /@storybook/manager-webpack5/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/manager-webpack5/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-Z9uXhaBPpUhbLEYkZVm95vKSmyxXk+DLqa1apAQEmHz3EBMTNk/2n0aZnNnsspYzjNP6wvXWT0sGyXG6yhX2cw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -6622,17 +6638,17 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.10
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.10
- '@babel/preset-react': 7.18.6_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.22.11
+ '@babel/preset-react': 7.18.6_@babel+core@7.22.11
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/core-client': 6.5.14_2jabxvyissptxqz6hbbomthk6q
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-client': 6.5.14_ezwf6xyksr6r6okqelezccxvly
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/node-logger': 6.5.14
'@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@types/node': 16.11.45
- babel-loader: 8.2.5_a7bz5yhgcoab2comip4bcc2pf4
+ babel-loader: 8.2.5_7nqnrdwtl44yxbgqpombxtkqjy
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.26.1
@@ -6652,7 +6668,7 @@ packages:
telejson: 6.0.8
terser-webpack-plugin: 5.3.6_webpack@5.88.2
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
util-deprecate: 1.0.2
webpack: 5.88.2
webpack-dev-middleware: 4.3.0_webpack@5.88.2
@@ -6669,13 +6685,13 @@ packages:
- webpack-command
dev: true
- /@storybook/mdx1-csf/0.0.1_@babel+core@7.22.10:
+ /@storybook/mdx1-csf/0.0.1_@babel+core@7.22.11:
resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==}
dependencies:
'@babel/generator': 7.22.10
- '@babel/parser': 7.22.10
- '@babel/preset-env': 7.20.2_@babel+core@7.22.10
- '@babel/types': 7.22.10
+ '@babel/parser': 7.22.11
+ '@babel/preset-env': 7.20.2_@babel+core@7.22.11
+ '@babel/types': 7.22.11
'@mdx-js/mdx': 1.6.22
'@types/lodash': 4.14.197
js-string-escape: 1.0.1
@@ -6730,7 +6746,7 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_wlox7xpecxj4rvkt6b6o7frtlu:
+ /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_dtthwp2bsqb7yvb7hoeealjg4i:
resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==}
peerDependencies:
typescript: '>= 3.x'
@@ -6741,15 +6757,15 @@ packages:
find-cache-dir: 3.3.2
flat-cache: 3.0.4
micromatch: 4.0.5
- react-docgen-typescript: 2.2.2_typescript@5.1.6
+ react-docgen-typescript: 2.2.2_typescript@5.2.2
tslib: 2.6.2
- typescript: 5.1.6
+ typescript: 5.2.2
webpack: 5.88.2
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/react/6.5.14_dlmpcyjwefcwkc23ysegtamjke:
+ /@storybook/react/6.5.14_s26s6ycrcs2f77icfwvvyplgmy:
resolution: {integrity: sha512-SL0P5czN3g/IZAYw8ur9I/O8MPZI7Lyd46Pw+B1f7+Ou8eLmhqa8Uc8+3fU6v7ohtUDwsBiTsg3TAfTVEPog4A==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -6777,20 +6793,20 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.22.10
- '@babel/preset-flow': 7.18.6_@babel+core@7.22.10
- '@babel/preset-react': 7.18.6_@babel+core@7.22.10
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_3jiny27o5v2we4qkd7etgwvoam
+ '@babel/core': 7.22.11
+ '@babel/preset-flow': 7.18.6_@babel+core@7.22.11
+ '@babel/preset-react': 7.18.6_@babel+core@7.22.11
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_6gqlc5upjqs5d4sfwulwsuqnh4
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/builder-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/builder-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/client-logger': 6.5.14
- '@storybook/core': 6.5.14_k3e3ghitpmucagbf6bqjfa4mra
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core': 6.5.14_vnmq7spqxfpp5cjhk3z5oaw4li
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/csf': 0.0.2--canary.4566f4d.1
'@storybook/docs-tools': 6.5.14_biqbaboplfbrettd7655fr4n2y
- '@storybook/manager-webpack5': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/manager-webpack5': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
'@storybook/node-logger': 6.5.14
- '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_wlox7xpecxj4rvkt6b6o7frtlu
+ '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_dtthwp2bsqb7yvb7hoeealjg4i
'@storybook/semver': 7.3.2
'@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y
'@types/estree': 0.0.51
@@ -6816,7 +6832,7 @@ packages:
regenerator-runtime: 0.13.11
require-from-string: 2.0.2
ts-dedent: 2.2.0
- typescript: 5.1.6
+ typescript: 5.2.2
util-deprecate: 1.0.2
webpack: 5.88.2
transitivePeerDependencies:
@@ -6848,7 +6864,7 @@ packages:
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
dependencies:
'@storybook/client-logger': 6.5.12
- core-js: 3.31.0
+ core-js: 3.32.1
memoizerific: 1.11.3
qs: 6.11.2
react: 18.2.0
@@ -6878,7 +6894,7 @@ packages:
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
dependencies:
'@storybook/client-logger': 6.5.9
- core-js: 3.31.0
+ core-js: 3.32.1
memoizerific: 1.11.3
qs: 6.11.2
react: 18.2.0
@@ -6940,11 +6956,11 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/telemetry/6.5.14_kwj4tyukvwquborqp42yvnqpsm:
+ /@storybook/telemetry/6.5.14_zxjvfcb33ajyvjalvv73ohakje:
resolution: {integrity: sha512-AVSw7WyKHrVbXMSZZ0fvg3oAb8xAS7OrmNU6++yUfbuqpF0JNtNkNnRSaJ4Nh7Vujzloy5jYhbpfY44nb/hsCw==}
dependencies:
'@storybook/client-logger': 6.5.14
- '@storybook/core-common': 6.5.14_kwj4tyukvwquborqp42yvnqpsm
+ '@storybook/core-common': 6.5.14_zxjvfcb33ajyvjalvv73ohakje
chalk: 4.1.2
core-js: 3.26.1
detect-package-manager: 2.0.1
@@ -6998,7 +7014,7 @@ packages:
optional: true
dependencies:
'@storybook/csf': 0.0.2--canary.87bc651.0
- '@storybook/react': 6.5.14_dlmpcyjwefcwkc23ysegtamjke
+ '@storybook/react': 6.5.14_s26s6ycrcs2f77icfwvvyplgmy
react: 18.2.0
dev: true
@@ -7009,7 +7025,7 @@ packages:
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
dependencies:
'@storybook/client-logger': 6.5.12
- core-js: 3.31.0
+ core-js: 3.32.1
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -7037,7 +7053,7 @@ packages:
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
dependencies:
'@storybook/client-logger': 6.5.9
- core-js: 3.31.0
+ core-js: 3.32.1
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -7098,24 +7114,24 @@ packages:
defer-to-connect: 2.0.1
dev: false
- /@t3-oss/env-core/0.6.1_7ffzfhm45svvrewwadhunj76bu:
+ /@t3-oss/env-core/0.6.1_v7htcrlgukgf7qsxduvbwauwy4:
resolution: {integrity: sha512-KQD7qEDJtkWIWWmTVjNvk0wnHpkvAQ6CRbUxbWMFNG/fiosBQDQvtRpBNu6USxBscJCoC4z6y7P9MN52/mLOzw==}
peerDependencies:
typescript: '>=4.7.2'
zod: ^3.0.0
dependencies:
- typescript: 5.1.6
+ typescript: 5.2.2
zod: 3.22.2
dev: false
- /@t3-oss/env-nextjs/0.6.1_7ffzfhm45svvrewwadhunj76bu:
+ /@t3-oss/env-nextjs/0.6.1_v7htcrlgukgf7qsxduvbwauwy4:
resolution: {integrity: sha512-z1dIC++Vxj9kmzX5nSPfcrCSkszy3dTEPC4Ssx7Ap5AqR3c2Qa7S0xf8axn6coy7D/vCXDAAnHYnCMDhtcY3SQ==}
peerDependencies:
typescript: '>=4.7.2'
zod: ^3.0.0
dependencies:
- '@t3-oss/env-core': 0.6.1_7ffzfhm45svvrewwadhunj76bu
- typescript: 5.1.6
+ '@t3-oss/env-core': 0.6.1_v7htcrlgukgf7qsxduvbwauwy4
+ typescript: 5.2.2
zod: 3.22.2
dev: false
@@ -7131,12 +7147,12 @@ packages:
tailwindcss: 3.3.3
dev: false
- /@tanstack/query-core/4.32.6:
- resolution: {integrity: sha512-YVB+mVWENQwPyv+40qO7flMgKZ0uI41Ph7qXC2Zf1ft5AIGfnXnMZyifB2ghhZ27u+5wm5mlzO4Y6lwwadzxCA==}
+ /@tanstack/query-core/4.33.0:
+ resolution: {integrity: sha512-qYu73ptvnzRh6se2nyBIDHGBQvPY1XXl3yR769B7B6mIDD7s+EZhdlWHQ67JI6UOTFRaI7wupnTnwJ3gE0Mr/g==}
dev: false
- /@tanstack/react-query/4.32.6_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-AITu/IKJJJXsHHeXNBy5bclu12t08usMCY0vFC2dh9SP/w6JAk5U9GwfjOIPj3p+ATADZvxQPe8UiCtMLNeQbg==}
+ /@tanstack/react-query/4.33.0_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-97nGbmDK0/m0B86BdiXzx3EW9RcDYKpnyL2+WwyuLHEgpfThYAnXFaMMmnTDuAO4bQJXEhflumIEUfKmP7ESGA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -7147,7 +7163,7 @@ packages:
react-native:
optional: true
dependencies:
- '@tanstack/query-core': 4.32.6
+ '@tanstack/query-core': 4.33.0
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
use-sync-external-store: 1.2.0_react@18.2.0
@@ -7235,7 +7251,7 @@ packages:
dependencies:
'@tensorflow/tfjs-core': 3.18.0
'@types/node-fetch': 2.6.2
- node-fetch: 2.6.11
+ node-fetch: 2.6.13
transitivePeerDependencies:
- encoding
dev: false
@@ -7284,7 +7300,7 @@ packages:
engines: {node: '>=12'}
dependencies:
'@babel/code-frame': 7.22.10
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
'@types/aria-query': 4.2.2
aria-query: 5.3.0
chalk: 4.1.2
@@ -7311,7 +7327,7 @@ packages:
resolution: {integrity: sha512-0DGPd9AR3+iDTjGoMpxIkAsUihHZ3Ai6CneU6bRRrffXMgzCdlNk43jTrD2/5LT6CBb3MWTP8v510JzYtahD2w==}
engines: {node: '>=14'}
dependencies:
- '@babel/code-frame': 7.22.5
+ '@babel/code-frame': 7.22.10
'@babel/runtime': 7.22.5
'@types/aria-query': 5.0.1
aria-query: 5.1.3
@@ -7359,7 +7375,7 @@ packages:
'@testing-library/dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
'@testing-library/dom': 8.14.0
dev: true
@@ -7373,226 +7389,226 @@ packages:
optional: true
dev: true
- /@tiptap/core/2.1.6_@tiptap+pm@2.1.6:
- resolution: {integrity: sha512-gm8n1oiBhSP6CDhalmmWwLD7yzIUqJJ246/t8rY3o+HJ/I+p0rqCx0mPvMiwcIBmYX8tUCVz7mb9aSFUu/umOQ==}
+ /@tiptap/core/2.1.7_@tiptap+pm@2.1.7:
+ resolution: {integrity: sha512-1pqTwlTnwTKQSNQmmTWhs2lwdvd+hFFNFZnrRAfvZhQZA6qPmPmKMNTcYmK38Tn4axKth6mhBamzTJgMZFI7ng==}
peerDependencies:
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/pm': 2.1.6
+ '@tiptap/pm': 2.1.7
- /@tiptap/extension-blockquote/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-y3Jj9XcJaUjlEZZFBQUZcToOjamL64B/Jjlu7JUv87VArWWpg5Pnd2sQG3l9A/q1vfY0/TpHm7r5EvKoeIq6ag==}
+ /@tiptap/extension-blockquote/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-oAsUU1c0DDZKHwK7/uCtYpnTUQt0o3w+SsJSv4S2vlSHidiFl9gCQGozUQ/Alzc7GO1Y95rOscL28DJXgXESQg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-bold/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-gZDVuhYdceBQ/xGGY1X7lmkgNrDHFuFYBFRWMK0pLe9YBlQtJPc6+hiOmCtRtGmbQADDnvMmSU2a0+8bckmbCw==}
+ /@tiptap/extension-bold/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-GZV2D91WENkWd1W29vM4kyGWObcxOKQrY8MuCvTdxni1kobEc/LPZzQ1XiQmiNTvXTMcBz5ckLpezdjASV1dNg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-bubble-menu/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-13YDJB19xbDL/SZaPs8NvUAA+w5MIWugP8ByKQeIlL8vlcbiJjqoT77YP6v300DtFyVrnLo/iMJh9RMB4NOnwg==}
+ /@tiptap/extension-bubble-menu/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-VcwwUgiG17TEDZda1JBbyKCHLIBTu8B2OAzYrnd4ZqeRs5KTVAB279o/TVjsLVgEfC+c7IWwhhaPPMoXn/lJ3g==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
tippy.js: 6.3.7
- /@tiptap/extension-bullet-list/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-NjPL5cIa4wVqv62OEw4lQ4Dj4c2hxia7GtPKHZKjoot5iu1RDkzD9Cxy/0tmH0vfCwTqa0JbGf9FAxRCyok4kg==}
+ /@tiptap/extension-bullet-list/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-BReix1wkGNH12DSWGnWPKNu4do92Avh98aLkRS1o1V1Y49/+YGMYtfBXB9obq40o0WqKvk4MoM+rhKbfEc44Gg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-code-block/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-tLK9YeHYz03qeG4Sy5uZMq6v5uo34315I4WrfIAujesDloG1v8nd+D9I8A7PD4BWHZOzv13ToVeDYpLYDdvE7Q==}
+ /@tiptap/extension-code-block/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-uiasfWCIQuk34vGoIENqAJOHf9m3hAkcELnb9T6+uNxA3O7PUZQqBVN/27oEipj7j15pqua50D6C1jql9kFe0g==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
dev: false
- /@tiptap/extension-code/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-vFWE74Aipt0kbmWyya+9zvsAgVusbbHx8g3Zqm8iKDt95BY3MWGurCZ3F5uoVuPuWD9VSrbNs4/T6oKbVKc9Ow==}
+ /@tiptap/extension-code/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-g0IA6Q6DFZE0AEOMXAV1mktl/XzIO3s1h/haPIKZ8GNes522qhBr9FYc5OUPQCCbgYjL7soTGzxA/W5Jk3f2AQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-document/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-econFqLeQR8pe0xv7kjw6ZPRhcNXGrNi9854celX0lhqTqtBxvU6nWHzUDzoq/lmnXYgpFTPv42AwUEspvpwdw==}
+ /@tiptap/extension-document/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-tZyoPPmvzti7PEnyulXomEtINd/Oi2S84uOt6gw7DTCnDq5bF5sn1IfN8Icqp9t4jDwyLXy2TL0Zg/sR0a2Ibg==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-dropcursor/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-+nk4XtCp2+lVf1pzwonaOdIolE9AI3HPAtUO7sthHYLDIm1JEQT2GS3+MVDGHdFKxEGUkB5DEcNLtr/xLTQjZQ==}
+ /@tiptap/extension-dropcursor/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-hNk2BuLnNSXlGOQphlzdpFKCKo7uHUFjWuBfzF1S9FMAQgcN7eTia+cCClmXABYfVLW4fT14PC1KiuGjxi9MuA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
dev: false
- /@tiptap/extension-floating-menu/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-Xy4esdjsZlgNxMbBC6+wLoiTfqaqFjuFquqcYEPqzgBizYa15Ww6wIx5+h2K+hzyJkSPI7ZX/rPjKXML8lNteQ==}
+ /@tiptap/extension-floating-menu/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-K0bO7JKHAvgLM5MkhNgoYcD6SB0Z2tNIFhZHs5SCTuhg7dwduMSM3pC6QBrJGUk99DGsKuMPYQn3c2oG7MLbyQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
tippy.js: 6.3.7
- /@tiptap/extension-gapcursor/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-5AH6Je1B6JpZkMBslXw/UglMpxVwL8AXqX5xWKP2OSsKVYcL00jApq709FxfYhyqui/SukUVusKKQFstTNqIGA==}
+ /@tiptap/extension-gapcursor/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-7eoInzzk1sssoD3RMkwFC86U15Ja4ANve+8wIC+xhN4R3Oe3PY3lFbp1GQxCmaJj8b3rtjNKIQZ2zO0PH58afA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
dev: false
- /@tiptap/extension-hard-break/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-znFYceEFbrgxhHZF+/wNQlAn3MWG9/VRqQAFxPGne0csewibKZRwZbeSYZQ16x1vSAlAQsKhIaAst/na/2H8LA==}
+ /@tiptap/extension-hard-break/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-6gFXXlCGAdXjy27BW29q4yfCQPAEFd18k7zRTnbd4aE/zIWUtLqdiTfI3kotUMab9Tt9/z1BRmCbEUxRsf1Nww==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-heading/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-V6PImalPhgAxsA95op70ssb8IXehLyr7wu5t1SeoTUUQtvMojKXPd+n+xF5b4b7VIhXHDlGSnoT0/XwjCJY0tQ==}
+ /@tiptap/extension-heading/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-jMeTqtq3kbMFtMvUb3SeIt4FFM3W+b6TAw5H4Qd6z3gYsAU3GahRK67MtbJfPmznUkZfimrqW9VCaBezScfrsQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-history/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-ltHz9cW3bWi7Z3m960F5eLPAqZDBNOpUP31t9YdKqhyxA16eygryj1USVeus9DX5OBoW79I8EecFAuRo3Rymlw==}
+ /@tiptap/extension-history/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-8SIEKSImrIkqJThym1bPD13sC4/76UrG+piQ30xKQU4B7zUFCbutvrwYuQHSRvaEt8BPdTv2LWIK+wBkIgbWVA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
dev: false
- /@tiptap/extension-horizontal-rule/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-1epXM+4DRlhos+Awj4sHApceO2O26tuqyrZot0Mm+mF0yuCGy3B5fefAgUcxBu/oRuywfDl8cwCzN2E/d8KXtA==}
+ /@tiptap/extension-horizontal-rule/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-hJupsDxDVmjmKI/Ewl/gtiyUx52Y3wRUhT8dCXNOA5eldmPXN23E2Fa2BC8XB47dyc5pubyNcLuqaLeaZ5hedw==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
dev: false
- /@tiptap/extension-image/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-Ibu3yYDpWPJd9ajduzdJz8xscWNPYayWj+IATXU8FjsNvPkWpRoRZv+txfrTLOkmx8Qd3z30kriHNjZsIYLHkA==}
+ /@tiptap/extension-image/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-aWa/NPMc1U9Z6xuV0gk1O1nk4H7BAwQMwqXWdvUQCJhmW5+LJPdEiKvt3P6j+ClIN7sdyokZCgr6eGr817qTLA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-italic/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-o41hil+x2yqFciOiJPx67FnguJ4/aEMU8MotmXekFGHM+I0wFOd4lA5t7HqFU5Si0Z7gyTb/N0wLUbAnbyk/Aw==}
+ /@tiptap/extension-italic/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-7e37f+OFqisdY19nWIthbSNHMJy4+4dec06rUICPrkiuFaADj5HjUQr0dyWpL/LkZh92Wf/rWgp4V/lEwon3jA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-link/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-at4tUpb8P2mMqc3jGMsggoKrt2mMWX0uNvoFYpKpnptQvsweCXSV5xi60o1C5kL7f0v/FYvEk4QaQBJmG5DmRg==}
+ /@tiptap/extension-link/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-NDfoMCkThng1B530pMg5y69+eWoghZXK2uCntrJH7Rs8jNeGMyt9wGIOd7N8ZYz0oJ2ZYKzZjS0RANdBDS17DA==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
linkifyjs: 4.1.1
dev: false
- /@tiptap/extension-list-item/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-hgG8XzWRvhmEtb70ut2YTWfexMDu4PHgDS8WxYGOCVH0F+DwZqGF5KEARhFSPlmRUCWcmKey4sp8YDpLqShEWA==}
+ /@tiptap/extension-list-item/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-hd/E4qQopBXWa6kdFY19qFVgqj4fzdPgAnzdXJ2XW7bC6O2CusmHphRRZ5FBsuspYTN/6/fv0i0jK9rSGlsEyA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-ordered-list/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-7igbJBSeCByYM9G3XHlK1sqPQtIsOlezdc4PH7xBaOtvNDd1ruGvOGFovo9b5TW8+J08KCAqy25cV4Pn72fuGw==}
+ /@tiptap/extension-ordered-list/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-3XIXqbZmYkNzF+8PQ2jcCOCj0lpC3y9HGM/+joPIunhiUiktrIgpbUDv2E1Gq5lJHYqthIeujniI2dB85tkwJQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-paragraph/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-k0QSIaJPVgTn9+X2580JFCjV2RCH1Fo+gPodABDnjunfoUVSjuq0rlILEtTuha3evlS6kDKiz7lk7pIoCo36Cw==}
+ /@tiptap/extension-paragraph/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-cLqX27hNrXrwZCKrIW8OC3rW2+MT8hhS37+cdqOxZo5hUqQ9EF/puwS0w8uUZ7B3awX9Jm1QZDMjjERLkcmobw==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-placeholder/2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi:
- resolution: {integrity: sha512-M6C80FnbDPiZWVGFIVVOUMbqNUMhXRzlJr7uwUWP98OJfj3Du4pk8mF5Lo5MsWH3C/XW3YRbqlGPpdas3onSkQ==}
+ /@tiptap/extension-placeholder/2.1.7_wls5jda43mscbcbz3xg5qrtacm:
+ resolution: {integrity: sha512-IiBoItYYNS7hb/zmPitw3w6Cylmp9qX+zW+QKe3lDkCNPeKxyQr86AnVLcQYOuXg62cLV9dp+4azZzHoz9SOcg==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/pm': 2.1.7
dev: false
- /@tiptap/extension-strike/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-LX7X2ohKEE0nUyWecSGxBcuzLxXTIbPmUnbkZvqYiWTaE02r3TxzkJMO0iuTnbygceC1TtiAfKwGgth0b9tMCQ==}
+ /@tiptap/extension-strike/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-ONLXYnuZGM2EoGcxkyvJSDMBeAp7K6l83UXkK9TSj+VpEEDdeV7m8mJs8/vACJjJxD5HMN61+EPgU7VTEukQCA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-text/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-CqV0N6ngoXZFeJGlQ86FSZJ/0k7+BN3S6aSUcb5DRAKsSEv/Ga1LvSG24sHy+dwjTuj3EtRPJSVZTFcSB17ZSA==}
+ /@tiptap/extension-text/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-3xaMMMNydLgoS+o+yOvaZF04ui9spJwJZl8VyYgcJKVGGLGRlWHrireXN5/OqXG2jLb/jWqXVx5idppQjX+PMA==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/extension-underline/2.1.6_@tiptap+core@2.1.6:
- resolution: {integrity: sha512-3yBCTzqYsmUfffhDJ+8MFyRy0nUcv9dffPt0bnmXsOqUIG4rMFIGrGY/hspzX6dw9Pn4htA4lBQCB64LT+GTqw==}
+ /@tiptap/extension-underline/2.1.7_@tiptap+core@2.1.7:
+ resolution: {integrity: sha512-mL95afyEJvg+C2yrTVn7QltfyE9ja1+94+OUkRBbB8PN3N6HvfSL4K/QSqecOLQ38bSQm/6ZGPkBLDkDGhGPdw==}
peerDependencies:
'@tiptap/core': ^2.0.0
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
dev: false
- /@tiptap/pm/2.1.6:
- resolution: {integrity: sha512-JkFlZp2z6Se2Ttnabi4lkP2yLNMH/eebO7ScYL1kXvwNLgELC/I3fwQVmnYA0E8pqJ5KQXOSl14NaB1mVPJqlg==}
+ /@tiptap/pm/2.1.7:
+ resolution: {integrity: sha512-RBVb/k9OjmClwdVl7fpekFgUsLAm1U+5I4w1qA2tj7L/hSPOuPzaEHwCqDYe0b2PR5dd8h0nylS9qXuXVlfwfQ==}
dependencies:
prosemirror-changeset: 2.2.1
prosemirror-collab: 1.3.1
@@ -7603,53 +7619,53 @@ packages:
prosemirror-inputrules: 1.2.1
prosemirror-keymap: 1.2.2
prosemirror-markdown: 1.11.2
- prosemirror-menu: 1.2.3
+ prosemirror-menu: 1.2.4
prosemirror-model: 1.19.3
prosemirror-schema-basic: 1.2.2
prosemirror-schema-list: 1.3.0
prosemirror-state: 1.4.3
prosemirror-tables: 1.3.4
prosemirror-trailing-node: 2.0.7_kk6v3b44qprnqmsxmvqyl6g65m
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
prosemirror-view: 1.31.7
- /@tiptap/react/2.1.6_7iqvmf4y5lk63fhqmyqie6hbdu:
- resolution: {integrity: sha512-HEsoFlcE61gQz9TllEtBa+5d909MA/ersbxGYOUWIY2HhH5lvNIUvyJ3pdzMkK/4cSniMsDDqobFexsGyTAsrw==}
+ /@tiptap/react/2.1.7_2dqnjqv3aeuij3k6apjyhkbexa:
+ resolution: {integrity: sha512-jCs5z/rXZ7mEOTPcJ+r/OSTtLOGBahS7D3xDu3pRX4P0wtWHlprsdptxxlWjkBHLav01XXJ+OtGZTfhWBio1QQ==}
peerDependencies:
'@tiptap/core': ^2.0.0
'@tiptap/pm': ^2.0.0
react: ^17.0.0 || ^18.0.0 || 18
react-dom: ^17.0.0 || ^18.0.0 || 18
dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/extension-bubble-menu': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/extension-floating-menu': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/pm': 2.1.6
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/extension-bubble-menu': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/extension-floating-menu': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/pm': 2.1.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- /@tiptap/starter-kit/2.1.6_@tiptap+pm@2.1.6:
- resolution: {integrity: sha512-JmTvexA90+VqsltAo9+MysYLoR9/dpEEy1LrFT09R1q9p6EJCWfxtyi/QsrZnwD6zthpTByChmDZRGv85Nb3Aw==}
- dependencies:
- '@tiptap/core': 2.1.6_@tiptap+pm@2.1.6
- '@tiptap/extension-blockquote': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-bold': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-bullet-list': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-code': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-code-block': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/extension-document': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-dropcursor': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/extension-gapcursor': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/extension-hard-break': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-heading': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-history': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/extension-horizontal-rule': 2.1.6_fsesy7ifnuxlqcu2xelrg5rkhi
- '@tiptap/extension-italic': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-list-item': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-ordered-list': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-paragraph': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-strike': 2.1.6_@tiptap+core@2.1.6
- '@tiptap/extension-text': 2.1.6_@tiptap+core@2.1.6
+ /@tiptap/starter-kit/2.1.7_@tiptap+pm@2.1.7:
+ resolution: {integrity: sha512-z2cmJRSC7ImaTGWrHv+xws9y1wIG0OCPosBYpmpwlEfA3JG3axWFmVRJlWnsQV4eSMi3QY3vaPgBAnrR4IxRhQ==}
+ dependencies:
+ '@tiptap/core': 2.1.7_@tiptap+pm@2.1.7
+ '@tiptap/extension-blockquote': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-bold': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-bullet-list': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-code': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-code-block': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/extension-document': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-dropcursor': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/extension-gapcursor': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/extension-hard-break': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-heading': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-history': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/extension-horizontal-rule': 2.1.7_wls5jda43mscbcbz3xg5qrtacm
+ '@tiptap/extension-italic': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-list-item': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-ordered-list': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-paragraph': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-strike': 2.1.7_@tiptap+core@2.1.7
+ '@tiptap/extension-text': 2.1.7_@tiptap+core@2.1.7
transitivePeerDependencies:
- '@tiptap/pm'
dev: false
@@ -7659,74 +7675,74 @@ packages:
engines: {node: '>= 10'}
dev: true
- /@tremor/react/3.6.1_zrapbp5bhju6nhklhwf5u2ffs4:
- resolution: {integrity: sha512-AHLKwW62kTGjZVEMO8INRNFV/wGM3yZE0eyczMWQ2JrKQ4SNlt6Cn9Q8pnSP/Spub0YBOH55EgU9K0sLjgAVNQ==}
+ /@tremor/react/3.6.6_zrapbp5bhju6nhklhwf5u2ffs4:
+ resolution: {integrity: sha512-JTt2rR+InEm6CMWFPy5/VYXY2LgGStYYaW70gTZ4xldzxyS+DRJdYaKd23latEMRRFnfGJXdjSWawHeRBoE4Rw==}
peerDependencies:
react: ^18.0.0 || 18
react-dom: '>=16.6.0 || 18'
dependencies:
'@floating-ui/react': 0.19.2_biqbaboplfbrettd7655fr4n2y
- '@headlessui/react': 1.7.16_biqbaboplfbrettd7655fr4n2y
+ '@headlessui/react': 1.7.17_biqbaboplfbrettd7655fr4n2y
'@headlessui/tailwindcss': 0.1.3_tailwindcss@3.3.3
date-fns: 2.30.0
react: 18.2.0
- react-day-picker: 8.8.0_kzhlcyde2l6xjiirkbg7jzhosa
+ react-day-picker: 8.8.1_kzhlcyde2l6xjiirkbg7jzhosa
react-dom: 18.2.0_react@18.2.0
react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y
- recharts: 2.7.2_v2m5e27vhdewzwhryxwfaorcca
+ recharts: 2.8.0_v2m5e27vhdewzwhryxwfaorcca
tailwind-merge: 1.14.0
transitivePeerDependencies:
- prop-types
- tailwindcss
dev: false
- /@trpc/client/10.37.1_@trpc+server@10.37.1:
- resolution: {integrity: sha512-OSblNfeI0Z9ERn3usgLV2x63CwwPoNOHf1FQK85cOT7F8MNaWyEHoEv7tHUwNGJwyzKXmpU+ockZ0movzX3D0g==}
+ /@trpc/client/10.38.1_@trpc+server@10.38.1:
+ resolution: {integrity: sha512-kY7ZV7Eco5SeFIGJX6OBg7AAKkiMt5+1N+GC7N1lTZszrw95ZiNgtkZ5TI6+Un4O+RqrOcqqast6MeExCoyZhQ==}
peerDependencies:
- '@trpc/server': 10.37.1
+ '@trpc/server': 10.38.1
dependencies:
- '@trpc/server': 10.37.1
+ '@trpc/server': 10.38.1
dev: false
- /@trpc/next/10.37.1_uzzydfxhxix53yyjodowfckjlu:
- resolution: {integrity: sha512-0KEgr09mBfao56lkj7ZBfVOY86d3+bDH1o0zJkDHSH60Dp/hIJ7wLCnZJIhePlZxEwknCQjVeLsTy4Pqlu8NyQ==}
+ /@trpc/next/10.38.1_naf53uh2fd7k4xln4asrwy3eli:
+ resolution: {integrity: sha512-N5x5IBf0epm6q54GFq6fMk4E26IdLQtAI3J6UmtcVd91gZm4PKuWg5vcvVMGKGgMqwNe2rm5kpirtk7VDMUi0w==}
peerDependencies:
'@tanstack/react-query': ^4.18.0
- '@trpc/client': 10.37.1
- '@trpc/react-query': 10.37.1
- '@trpc/server': 10.37.1
+ '@trpc/client': 10.38.1
+ '@trpc/react-query': 10.38.1
+ '@trpc/server': 10.38.1
next: '*'
react: '>=16.8.0 || 18'
react-dom: '>=16.8.0 || 18'
dependencies:
- '@tanstack/react-query': 4.32.6_biqbaboplfbrettd7655fr4n2y
- '@trpc/client': 10.37.1_@trpc+server@10.37.1
- '@trpc/react-query': 10.37.1_osxhw6t56wwgdftg5wod3rvjuy
- '@trpc/server': 10.37.1
+ '@tanstack/react-query': 4.33.0_biqbaboplfbrettd7655fr4n2y
+ '@trpc/client': 10.38.1_@trpc+server@10.38.1
+ '@trpc/react-query': 10.38.1_ex6xlqvi5denbyyw5fudlsl3d4
+ '@trpc/server': 10.38.1
next: 13.4.19_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
react-ssr-prepass: 1.5.0_react@18.2.0
dev: false
- /@trpc/react-query/10.37.1_osxhw6t56wwgdftg5wod3rvjuy:
- resolution: {integrity: sha512-TbOOPp0fZVaKfaeEyDoV8QeTHW1vgPTbfOs0uSQ4AzBXqXPu+9v1B44z8GGRJSdUxuOX9pG/6Ap5Kx8PQ3eF+Q==}
+ /@trpc/react-query/10.38.1_ex6xlqvi5denbyyw5fudlsl3d4:
+ resolution: {integrity: sha512-eNmNYDzfn4Xx5R94v/Z2vmNjsLo/CpgPyRBNARcO7wLwjpzLxRPsJKNfOB92RWB+QsPJxqeBGIS1IETg2yyu7w==}
peerDependencies:
'@tanstack/react-query': ^4.18.0
- '@trpc/client': 10.37.1
- '@trpc/server': 10.37.1
+ '@trpc/client': 10.38.1
+ '@trpc/server': 10.38.1
react: '>=16.8.0 || 18'
react-dom: '>=16.8.0 || 18'
dependencies:
- '@tanstack/react-query': 4.32.6_biqbaboplfbrettd7655fr4n2y
- '@trpc/client': 10.37.1_@trpc+server@10.37.1
- '@trpc/server': 10.37.1
+ '@tanstack/react-query': 4.33.0_biqbaboplfbrettd7655fr4n2y
+ '@trpc/client': 10.38.1_@trpc+server@10.38.1
+ '@trpc/server': 10.38.1
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@trpc/server/10.37.1:
- resolution: {integrity: sha512-r3VeA319/braYMBIzj+XLgLKQ9lJSVglvPvP9HUv4kr5w6Y5grQMxMcExhTiZWltE9bnSJHKtBBzHafOo7KC8A==}
+ /@trpc/server/10.38.1:
+ resolution: {integrity: sha512-59mM0Jk3cnWBExSv4Z4cw/776MPwa+rcVNywnV5gyHyK/p5qHtis1b1JPYdTEQZ0zhR+6zeto14rTR51hg+Nuw==}
dev: false
/@ts-morph/common/0.19.0:
@@ -7752,8 +7768,8 @@ packages:
/@types/babel__core/7.20.1:
resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==}
dependencies:
- '@babel/parser': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/parser': 7.22.13
+ '@babel/types': 7.22.11
'@types/babel__generator': 7.6.4
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.20.1
@@ -7762,20 +7778,20 @@ packages:
/@types/babel__generator/7.6.4:
resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/parser': 7.22.13
+ '@babel/types': 7.22.11
dev: true
/@types/babel__traverse/7.20.1:
resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==}
dependencies:
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
dev: true
/@types/bluebird/3.5.38:
@@ -7787,7 +7803,7 @@ packages:
dependencies:
'@types/http-cache-semantics': 4.0.1
'@types/keyv': 3.1.4
- '@types/node': 20.4.2
+ '@types/node': 20.5.7
'@types/responselike': 1.0.0
dev: false
@@ -7817,8 +7833,8 @@ packages:
dependencies:
'@types/node': 20.4.2
- /@types/d3-array/3.0.5:
- resolution: {integrity: sha512-Qk7fpJ6qFp+26VeQ47WY0mkwXaiq8+76RJcncDEfMc2ocRzXLO67bLFRNI4OX1aGBoPzsM5Y2T+/m1pldOgD+A==}
+ /@types/d3-array/3.0.6:
+ resolution: {integrity: sha512-NHkizg870sKYQn45oZT5ItoHqcgRgJD7KAiWZp4Udc6YdrFH2W0tZ2vv4shRHP+SXHoJ1G8B4I1GWb5oQSGypA==}
dev: false
/@types/d3-color/3.1.0:
@@ -7839,14 +7855,14 @@ packages:
resolution: {integrity: sha512-0g/A+mZXgFkQxN3HniRDbXMN79K3CdTpLsevj+PXiTcb2hVyvkZUBg37StmgCQkaD84cUJ4uaDAWq7UJOQy2Tg==}
dev: false
- /@types/d3-scale/4.0.3:
- resolution: {integrity: sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==}
+ /@types/d3-scale/4.0.4:
+ resolution: {integrity: sha512-eq1ZeTj0yr72L8MQk6N6heP603ubnywSDRfNpi5enouR112HzGLS6RIvExCzZTraFF4HdzNpJMwA/zGiMoHUUw==}
dependencies:
'@types/d3-time': 3.0.0
dev: false
- /@types/d3-shape/3.1.1:
- resolution: {integrity: sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==}
+ /@types/d3-shape/3.1.2:
+ resolution: {integrity: sha512-NN4CXr3qeOUNyK5WasVUV8NCSAx/CRVcwcb0BuuS1PiTqwIm6ABi1SyasLZ/vsVCFDArF+W4QiGzSry1eKYQ7w==}
dependencies:
'@types/d3-path': 3.0.0
dev: false
@@ -7892,19 +7908,19 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.4.2
+ '@types/node': 20.5.7
/@types/glob/8.1.0:
resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
dev: true
/@types/graceful-fs/4.1.6:
resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
dev: true
/@types/hast/2.3.4:
@@ -7956,11 +7972,11 @@ packages:
'@types/istanbul-lib-report': 3.0.0
dev: true
- /@types/jest/29.5.3:
- resolution: {integrity: sha512-1Nq7YrO/vJE/FYnqYyw0FS8LdrjExSgIiHyKg7xPpn+yi8Q4huZryKnkJatN1ZRH89Kw2v33/8ZMB7DuZeSLlA==}
+ /@types/jest/29.5.4:
+ resolution: {integrity: sha512-PhglGmhWeD46FYOVLt3X7TiWjzwuVGW9wG/4qocPevXMjCmrIc5b6db9WjeGE4QYVpUAWMDv3v0IiBwObY289A==}
dependencies:
- expect: 29.6.1
- pretty-format: 29.6.1
+ expect: 29.6.3
+ pretty-format: 29.6.3
dev: true
/@types/js-levenshtein/1.1.1:
@@ -7970,7 +7986,7 @@ packages:
/@types/jsdom/20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
'@types/tough-cookie': 4.0.2
parse5: 7.1.2
dev: true
@@ -7985,7 +8001,7 @@ packages:
/@types/keyv/3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 20.5.7
dev: false
/@types/lodash/4.14.197:
@@ -8034,6 +8050,9 @@ packages:
/@types/node/20.4.2:
resolution: {integrity: sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==}
+ /@types/node/20.5.7:
+ resolution: {integrity: sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==}
+
/@types/normalize-package-data/2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -8080,10 +8099,10 @@ packages:
/@types/react-dom/18.2.7:
resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
dependencies:
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
- /@types/react/18.2.20:
- resolution: {integrity: sha512-WKNtmsLWJM/3D5mG4U84cysVY31ivmyw85dE84fOCk5Hx78wezB/XEjVPWl2JTZ5FkEeaTJf+VgUAUn3PE7Isw==}
+ /@types/react/18.2.21:
+ resolution: {integrity: sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.3
@@ -8093,7 +8112,7 @@ packages:
resolution: {integrity: sha512-whjk1EDJPcAR2kYHRbFl/lKeeKYTi05A15K9bnLInCVroNDCtXce57xKdI0/rQaA3K+6q0eFyUBPmqfSndUZdQ==}
dependencies:
'@types/caseless': 0.12.2
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
'@types/tough-cookie': 4.0.2
form-data: 2.5.1
dev: false
@@ -8105,7 +8124,7 @@ packages:
/@types/responselike/1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 20.5.7
dev: false
/@types/scheduler/0.16.3:
@@ -8118,10 +8137,14 @@ packages:
/@types/semver/7.5.0:
resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
+ /@types/semver/7.5.1:
+ resolution: {integrity: sha512-cJRQXpObxfNKkFAZbJl2yjWtJCqELQIdShsogr1d2MilP8dKD9TE/nEKHkJgUNHdGKCQaf9HbIynuV2csLGVLg==}
+ dev: false
+
/@types/set-cookie-parser/2.4.3:
resolution: {integrity: sha512-7QhnH7bi+6KAhBB+Auejz1uV9DHiopZqu7LfR/5gZZTkejJV5nYeZZpgfFoE0N8aDsXuiYpfKyfyMatCwQhyTQ==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
dev: true
/@types/sinonjs__fake-timers/8.1.1:
@@ -8147,7 +8170,7 @@ packages:
/@types/testing-library__jest-dom/5.14.9:
resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==}
dependencies:
- '@types/jest': 29.5.3
+ '@types/jest': 29.5.4
dev: true
/@types/testing-library__jest-dom/6.0.0:
@@ -8176,10 +8199,10 @@ packages:
/@types/unist/2.0.7:
resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==}
- /@types/web-push/3.3.2:
- resolution: {integrity: sha512-JxWGVL/m7mWTIg4mRYO+A6s0jPmBkr4iJr39DqJpRJAc+jrPiEe1/asmkwerzRon8ZZDxaZJpsxpv0Z18Wo9gw==}
+ /@types/web-push/3.6.0:
+ resolution: {integrity: sha512-Kk23yDmYheAcQ0ALS9YE7MY7lqwaIfVQ67zVEFeqbLw+/g8jlYTg9o/zYJOk5YhebWrq2Cr/Lbh4RoYfzrn0ww==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
/@types/webgl-ext/0.0.30:
resolution: {integrity: sha512-LKVgNmBxN0BbljJrVUwkxwRYqzsAEPcZOe6S2T6ZaBDIrFp0qu4FNlpc5sM1tGbXUYFgdVQIoeLk1Y1UoblyEg==}
@@ -8196,7 +8219,7 @@ packages:
/@types/webpack-sources/3.2.0:
resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
'@types/source-list-map': 0.1.2
source-map: 0.7.4
dev: true
@@ -8204,7 +8227,7 @@ packages:
/@types/webpack/4.41.33:
resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
'@types/tapable': 1.0.8
'@types/uglify-js': 3.17.1
'@types/webpack-sources': 3.2.0
@@ -8242,8 +8265,8 @@ packages:
dev: false
optional: true
- /@typescript-eslint/eslint-plugin/6.4.0_ec2ucdo575yoxr55fjuy6wxey4:
- resolution: {integrity: sha512-62o2Hmc7Gs3p8SLfbXcipjWAa6qk2wZGChXG2JbBtYpwSRmti/9KHLqfbLs9uDigOexG+3PaQ9G2g3201FWLKg==}
+ /@typescript-eslint/eslint-plugin/6.5.0_nvwva6txm3qs6xnog6dqanz5uy:
+ resolution: {integrity: sha512-2pktILyjvMaScU6iK3925uvGU87E+N9rh372uGZgiMYwafaw9SXq86U04XPq3UH6tzRvNgBsub6x2DacHc33lw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -8253,39 +8276,39 @@ packages:
typescript:
optional: true
dependencies:
- '@eslint-community/regexpp': 4.6.2
- '@typescript-eslint/parser': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
- '@typescript-eslint/scope-manager': 6.4.0
- '@typescript-eslint/type-utils': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
- '@typescript-eslint/utils': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
- '@typescript-eslint/visitor-keys': 6.4.0
+ '@eslint-community/regexpp': 4.8.0
+ '@typescript-eslint/parser': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
+ '@typescript-eslint/scope-manager': 6.5.0
+ '@typescript-eslint/type-utils': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
+ '@typescript-eslint/utils': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
+ '@typescript-eslint/visitor-keys': 6.5.0
debug: 4.3.4
- eslint: 8.47.0
+ eslint: 8.48.0
graphemer: 1.4.0
ignore: 5.2.4
natural-compare: 1.4.0
semver: 7.5.4
- ts-api-utils: 1.0.2_typescript@5.1.6
- typescript: 5.1.6
+ ts-api-utils: 1.0.2_typescript@5.2.2
+ typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/experimental-utils/5.30.6_qj3u6ezxe2airdzjq3nyoxe24m:
+ /@typescript-eslint/experimental-utils/5.30.6_w2g2uv42be7wag4oipwkfv43p4:
resolution: {integrity: sha512-bqvT+0L8IjtW7MCrMgm9oVNxs4g7mESro1mm5c1/SNfTnHuFTf9OUX1WzVkTz75M9cp//UrTrSmGvK48NEKshQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@typescript-eslint/utils': 5.30.6_qj3u6ezxe2airdzjq3nyoxe24m
- eslint: 8.47.0
+ '@typescript-eslint/utils': 5.30.6_w2g2uv42be7wag4oipwkfv43p4
+ eslint: 8.48.0
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /@typescript-eslint/parser/6.4.0_qj3u6ezxe2airdzjq3nyoxe24m:
- resolution: {integrity: sha512-I1Ah1irl033uxjxO9Xql7+biL3YD7w9IU8zF+xlzD/YxY6a4b7DYA08PXUUCbm2sEljwJF6ERFy2kTGAGcNilg==}
+ /@typescript-eslint/parser/6.5.0_w2g2uv42be7wag4oipwkfv43p4:
+ resolution: {integrity: sha512-LMAVtR5GN8nY0G0BadkG0XIe4AcNMeyEy3DyhKGAh9k4pLSMBO7rF29JvDBpZGCmp5Pgz5RLHP6eCpSYZJQDuQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -8294,13 +8317,13 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.4.0
- '@typescript-eslint/types': 6.4.0
- '@typescript-eslint/typescript-estree': 6.4.0_typescript@5.1.6
- '@typescript-eslint/visitor-keys': 6.4.0
+ '@typescript-eslint/scope-manager': 6.5.0
+ '@typescript-eslint/types': 6.5.0
+ '@typescript-eslint/typescript-estree': 6.5.0_typescript@5.2.2
+ '@typescript-eslint/visitor-keys': 6.5.0
debug: 4.3.4
- eslint: 8.47.0
- typescript: 5.1.6
+ eslint: 8.48.0
+ typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: false
@@ -8321,16 +8344,16 @@ packages:
'@typescript-eslint/visitor-keys': 5.62.0
dev: false
- /@typescript-eslint/scope-manager/6.4.0:
- resolution: {integrity: sha512-TUS7vaKkPWDVvl7GDNHFQMsMruD+zhkd3SdVW0d7b+7Zo+bd/hXJQ8nsiUZMi1jloWo6c9qt3B7Sqo+flC1nig==}
+ /@typescript-eslint/scope-manager/6.5.0:
+ resolution: {integrity: sha512-A8hZ7OlxURricpycp5kdPTH3XnjG85UpJS6Fn4VzeoH4T388gQJ/PGP4ole5NfKt4WDVhmLaQ/dBLNDC4Xl/Kw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.4.0
- '@typescript-eslint/visitor-keys': 6.4.0
+ '@typescript-eslint/types': 6.5.0
+ '@typescript-eslint/visitor-keys': 6.5.0
dev: false
- /@typescript-eslint/type-utils/6.4.0_qj3u6ezxe2airdzjq3nyoxe24m:
- resolution: {integrity: sha512-TvqrUFFyGY0cX3WgDHcdl2/mMCWCDv/0thTtx/ODMY1QhEiyFtv/OlLaNIiYLwRpAxAtOLOY9SUf1H3Q3dlwAg==}
+ /@typescript-eslint/type-utils/6.5.0_w2g2uv42be7wag4oipwkfv43p4:
+ resolution: {integrity: sha512-f7OcZOkRivtujIBQ4yrJNIuwyCQO1OjocVqntl9dgSIZAdKqicj3xFDqDOzHDlGCZX990LqhLQXWRnQvsapq8A==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -8339,12 +8362,12 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.4.0_typescript@5.1.6
- '@typescript-eslint/utils': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
+ '@typescript-eslint/typescript-estree': 6.5.0_typescript@5.2.2
+ '@typescript-eslint/utils': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
debug: 4.3.4
- eslint: 8.47.0
- ts-api-utils: 1.0.2_typescript@5.1.6
- typescript: 5.1.6
+ eslint: 8.48.0
+ ts-api-utils: 1.0.2_typescript@5.2.2
+ typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: false
@@ -8359,12 +8382,12 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false
- /@typescript-eslint/types/6.4.0:
- resolution: {integrity: sha512-+FV9kVFrS7w78YtzkIsNSoYsnOtrYVnKWSTVXoL1761CsCRv5wpDOINgsXpxD67YCLZtVQekDDyaxfjVWUJmmg==}
+ /@typescript-eslint/types/6.5.0:
+ resolution: {integrity: sha512-eqLLOEF5/lU8jW3Bw+8auf4lZSbbljHR2saKnYqON12G/WsJrGeeDHWuQePoEf9ro22+JkbPfWQwKEC5WwLQ3w==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: false
- /@typescript-eslint/typescript-estree/5.30.6_typescript@5.1.6:
+ /@typescript-eslint/typescript-estree/5.30.6_typescript@5.2.2:
resolution: {integrity: sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8379,13 +8402,13 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- tsutils: 3.21.0_typescript@5.1.6
- typescript: 5.1.6
+ tsutils: 3.21.0_typescript@5.2.2
+ typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/typescript-estree/5.62.0_typescript@5.1.6:
+ /@typescript-eslint/typescript-estree/5.62.0_typescript@5.2.2:
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8400,14 +8423,14 @@ packages:
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- tsutils: 3.21.0_typescript@5.1.6
- typescript: 5.1.6
+ tsutils: 3.21.0_typescript@5.2.2
+ typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/typescript-estree/6.4.0_typescript@5.1.6:
- resolution: {integrity: sha512-iDPJArf/K2sxvjOR6skeUCNgHR/tCQXBsa+ee1/clRKr3olZjZ/dSkXPZjG6YkPtnW6p5D1egeEPMCW6Gn4yLA==}
+ /@typescript-eslint/typescript-estree/6.5.0_typescript@5.2.2:
+ resolution: {integrity: sha512-q0rGwSe9e5Kk/XzliB9h2LBc9tmXX25G0833r7kffbl5437FPWb2tbpIV9wAATebC/018pGa9fwPDuvGN+LxWQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -8415,19 +8438,19 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.4.0
- '@typescript-eslint/visitor-keys': 6.4.0
+ '@typescript-eslint/types': 6.5.0
+ '@typescript-eslint/visitor-keys': 6.5.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.2_typescript@5.1.6
- typescript: 5.1.6
+ ts-api-utils: 1.0.2_typescript@5.2.2
+ typescript: 5.2.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/utils/5.30.6_qj3u6ezxe2airdzjq3nyoxe24m:
+ /@typescript-eslint/utils/5.30.6_w2g2uv42be7wag4oipwkfv43p4:
resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
@@ -8436,28 +8459,28 @@ packages:
'@types/json-schema': 7.0.12
'@typescript-eslint/scope-manager': 5.30.6
'@typescript-eslint/types': 5.30.6
- '@typescript-eslint/typescript-estree': 5.30.6_typescript@5.1.6
- eslint: 8.47.0
+ '@typescript-eslint/typescript-estree': 5.30.6_typescript@5.2.2
+ eslint: 8.48.0
eslint-scope: 5.1.1
- eslint-utils: 3.0.0_eslint@8.47.0
+ eslint-utils: 3.0.0_eslint@8.48.0
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /@typescript-eslint/utils/5.62.0_qj3u6ezxe2airdzjq3nyoxe24m:
+ /@typescript-eslint/utils/5.62.0_w2g2uv42be7wag4oipwkfv43p4:
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.47.0
+ '@eslint-community/eslint-utils': 4.4.0_eslint@8.48.0
'@types/json-schema': 7.0.12
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.1.6
- eslint: 8.47.0
+ '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.2.2
+ eslint: 8.48.0
eslint-scope: 5.1.1
semver: 7.5.4
transitivePeerDependencies:
@@ -8465,19 +8488,19 @@ packages:
- typescript
dev: false
- /@typescript-eslint/utils/6.4.0_qj3u6ezxe2airdzjq3nyoxe24m:
- resolution: {integrity: sha512-BvvwryBQpECPGo8PwF/y/q+yacg8Hn/2XS+DqL/oRsOPK+RPt29h5Ui5dqOKHDlbXrAeHUTnyG3wZA0KTDxRZw==}
+ /@typescript-eslint/utils/6.5.0_w2g2uv42be7wag4oipwkfv43p4:
+ resolution: {integrity: sha512-9nqtjkNykFzeVtt9Pj6lyR9WEdd8npPhhIPM992FWVkZuS6tmxHfGVnlUcjpUP2hv8r4w35nT33mlxd+Be1ACQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.47.0
+ '@eslint-community/eslint-utils': 4.4.0_eslint@8.48.0
'@types/json-schema': 7.0.12
- '@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 6.4.0
- '@typescript-eslint/types': 6.4.0
- '@typescript-eslint/typescript-estree': 6.4.0_typescript@5.1.6
- eslint: 8.47.0
+ '@types/semver': 7.5.1
+ '@typescript-eslint/scope-manager': 6.5.0
+ '@typescript-eslint/types': 6.5.0
+ '@typescript-eslint/typescript-estree': 6.5.0_typescript@5.2.2
+ eslint: 8.48.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -8500,11 +8523,11 @@ packages:
eslint-visitor-keys: 3.4.3
dev: false
- /@typescript-eslint/visitor-keys/6.4.0:
- resolution: {integrity: sha512-yJSfyT+uJm+JRDWYRYdCm2i+pmvXJSMtPR9Cq5/XQs4QIgNoLcoRtDdzsLbLsFM/c6um6ohQkg/MLxWvoIndJA==}
+ /@typescript-eslint/visitor-keys/6.5.0:
+ resolution: {integrity: sha512-yCB/2wkbv3hPsh02ZS8dFQnij9VVQXJMN/gbQsaaY+zxALkZnxa/wagvLEFsAWMPv7d7lxQmNsIzGU1w/T/WyA==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.4.0
+ '@typescript-eslint/types': 6.5.0
eslint-visitor-keys: 3.4.3
dev: false
@@ -9263,7 +9286,7 @@ packages:
/arrayiffy-if-string/3.14.0:
resolution: {integrity: sha512-pQQDnM+wOBvgElVGB8//y16IpZEsi3mU3jkjvhJCm3J7zSvRPlm/8Wl76gE1O9vnU1CWcz2u5JfsOLtD7yvuLw==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
dev: false
/arrify/1.0.1:
@@ -9360,19 +9383,19 @@ packages:
hasBin: true
dev: true
- /autoprefixer/10.4.14_postcss@8.4.27:
- resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
+ /autoprefixer/10.4.15_postcss@8.4.29:
+ resolution: {integrity: sha512-KCuPB8ZCIqFdA4HwKXsvz7j6gvSDNhDP7WnUjBleRkKjPdvCmHFuQ77ocavI8FT6NdvlBnE2UFr2H4Mycn8Vew==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.5
- caniuse-lite: 1.0.30001487
- fraction.js: 4.2.0
+ browserslist: 4.21.10
+ caniuse-lite: 1.0.30001522
+ fraction.js: 4.2.1
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
/autoprefixer/9.8.8:
@@ -9380,7 +9403,7 @@ packages:
hasBin: true
dependencies:
browserslist: 4.21.10
- caniuse-lite: 1.0.30001521
+ caniuse-lite: 1.0.30001523
normalize-range: 0.1.2
num2fraction: 1.2.2
picocolors: 0.2.1
@@ -9436,17 +9459,17 @@ packages:
dequal: 2.0.3
dev: false
- /babel-jest/29.6.2_@babel+core@7.22.10:
- resolution: {integrity: sha512-BYCzImLos6J3BH/+HvUCHG1dTf2MzmAB4jaVxHV+29RZLjR29XuYTmsf2sdDwkrb+FczkGo3kOhE7ga6sI0P4A==}
+ /babel-jest/29.6.4_@babel+core@7.22.11:
+ resolution: {integrity: sha512-meLj23UlSLddj6PC+YTOFRgDAtjnZom8w/ACsrx0gtPtv5cJZk0A5Unk5bV4wixD7XaPCN1fQvpww8czkZURmw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.8.0
dependencies:
- '@babel/core': 7.22.10
- '@jest/transform': 29.6.2
+ '@babel/core': 7.22.11
+ '@jest/transform': 29.6.4
'@types/babel__core': 7.20.1
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.5.0_@babel+core@7.22.10
+ babel-preset-jest: 29.6.3_@babel+core@7.22.11
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -9454,34 +9477,34 @@ packages:
- supports-color
dev: true
- /babel-loader/8.2.5_a7bz5yhgcoab2comip4bcc2pf4:
+ /babel-loader/8.2.5_6gybhbqitvywvqspas67uhcyce:
resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
find-cache-dir: 3.3.2
loader-utils: 2.0.3
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.88.2
+ webpack: 4.46.0
dev: true
- /babel-loader/8.2.5_vckkkmkydt63wm5f7khqmaumqa:
+ /babel-loader/8.2.5_7nqnrdwtl44yxbgqpombxtkqjy:
resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
find-cache-dir: 3.3.2
loader-utils: 2.0.3
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 4.46.0
+ webpack: 5.88.2
dev: true
/babel-plugin-add-react-displayname/0.0.5:
@@ -9515,12 +9538,12 @@ packages:
- supports-color
dev: true
- /babel-plugin-jest-hoist/29.5.0:
- resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==}
+ /babel-plugin-jest-hoist/29.6.3:
+ resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/template': 7.22.5
- '@babel/types': 7.22.10
+ '@babel/types': 7.22.11
'@types/babel__core': 7.20.1
'@types/babel__traverse': 7.20.1
dev: true
@@ -9529,7 +9552,7 @@ packages:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
cosmiconfig: 7.1.0
resolve: 1.22.4
dev: true
@@ -9538,50 +9561,50 @@ packages:
resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==}
dev: true
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.22.10:
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.22.11:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.22.9
- '@babel/core': 7.22.10
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.11
semver: 6.3.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.22.10:
+ /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.22.11:
resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.22.11
core-js-compat: 3.26.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.22.10:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.22.11:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.11
core-js-compat: 3.26.1
transitivePeerDependencies:
- supports-color
dev: true
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.22.10:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.22.11:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.10
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.22.11
transitivePeerDependencies:
- supports-color
dev: true
@@ -9596,35 +9619,35 @@ packages:
- supports-color
dev: true
- /babel-preset-current-node-syntax/1.0.1_@babel+core@7.22.10:
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.22.11:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.10
- '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.10
- '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.10
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.10
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.10
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.10
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.10
- dev: true
-
- /babel-preset-jest/29.5.0_@babel+core@7.22.10:
- resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==}
+ '@babel/core': 7.22.11
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.22.11
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.22.11
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.22.11
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.22.11
+ dev: true
+
+ /babel-preset-jest/29.6.3_@babel+core@7.22.11:
+ resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.22.10
- babel-plugin-jest-hoist: 29.5.0
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.10
+ '@babel/core': 7.22.11
+ babel-plugin-jest-hoist: 29.6.3
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.11
dev: true
/bail/1.0.5:
@@ -9791,7 +9814,7 @@ packages:
dependencies:
ansi-align: 3.0.1
camelcase: 7.0.1
- chalk: 5.2.0
+ chalk: 5.3.0
cli-boxes: 3.0.0
string-width: 5.1.2
type-fest: 2.19.0
@@ -9879,7 +9902,7 @@ packages:
connect-history-api-fallback: 1.6.0
immutable: 3.8.2
server-destroy: 1.0.1
- socket.io-client: 4.7.1
+ socket.io-client: 4.7.2
stream-throttle: 0.1.3
transitivePeerDependencies:
- bufferutil
@@ -9918,7 +9941,7 @@ packages:
serve-index: 1.9.1
serve-static: 1.13.2
server-destroy: 1.0.1
- socket.io: 4.7.1
+ socket.io: 4.7.2
ua-parser-js: 1.0.35
yargs: 17.7.2
transitivePeerDependencies:
@@ -9988,28 +10011,18 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001521
- electron-to-chromium: 1.4.487
+ caniuse-lite: 1.0.30001523
+ electron-to-chromium: 1.4.502
node-releases: 2.0.13
update-browserslist-db: 1.0.11_browserslist@4.21.10
- /browserslist/4.21.5:
- resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001487
- electron-to-chromium: 1.4.440
- node-releases: 2.0.12
- update-browserslist-db: 1.0.11_browserslist@4.21.5
-
/browserslist/4.21.9:
resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001521
- electron-to-chromium: 1.4.464
+ caniuse-lite: 1.0.30001523
+ electron-to-chromium: 1.4.502
node-releases: 2.0.13
update-browserslist-db: 1.0.11_browserslist@4.21.9
@@ -10112,8 +10125,8 @@ packages:
find-up: 5.0.0
foreground-child: 2.0.0
istanbul-lib-coverage: 3.2.0
- istanbul-lib-report: 3.0.0
- istanbul-reports: 3.1.5
+ istanbul-lib-report: 3.0.1
+ istanbul-reports: 3.1.6
rimraf: 3.0.2
test-exclude: 6.0.0
v8-to-istanbul: 9.1.0
@@ -10199,7 +10212,7 @@ packages:
'@types/http-cache-semantics': 4.0.1
get-stream: 6.0.1
http-cache-semantics: 4.1.1
- keyv: 4.5.2
+ keyv: 4.5.3
mimic-response: 4.0.0
normalize-url: 8.0.0
responselike: 3.0.0
@@ -10250,8 +10263,8 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- /callsites/4.0.0:
- resolution: {integrity: sha512-y3jRROutgpKdz5vzEhWM34TidDU8vkJppF8dszITeb1PQmSqV3DTxyV8G/lyO/DNvtE1YTedehmw9MPZsCBHxQ==}
+ /callsites/4.1.0:
+ resolution: {integrity: sha512-aBMbD1Xxay75ViYezwT40aQONfr+pSXTHwNKvIXhXD6+LY3F1dLIcceoC5OZKBVHbXcysz1hL9D2w0JJIMXpUw==}
engines: {node: '>=12.20'}
dev: false
@@ -10313,12 +10326,15 @@ packages:
engines: {node: '>=14.16'}
dev: false
- /caniuse-lite/1.0.30001487:
- resolution: {integrity: sha512-83564Z3yWGqXsh2vaH/mhXfEM0wX+NlBCm1jYHOb97TrTWJEmPTccZgeLTPBUUb0PNVo+oomb7wkimZBIERClA==}
-
/caniuse-lite/1.0.30001521:
resolution: {integrity: sha512-fnx1grfpEOvDGH+V17eccmNjucGUnCbP6KL+l5KqBIerp26WK/+RQ7CIDE37KGJjaPyqWXXlFUyKiWmvdNNKmQ==}
+ /caniuse-lite/1.0.30001522:
+ resolution: {integrity: sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==}
+
+ /caniuse-lite/1.0.30001523:
+ resolution: {integrity: sha512-I5q5cisATTPZ1mc588Z//pj/Ox80ERYDfR71YnvY7raS/NOk8xXlZcB0sF7JdqaV//kOaa6aus7lRfpdnt1eBA==}
+
/canvas-confetti/1.6.0:
resolution: {integrity: sha512-ej+w/m8Jzpv9Z7W7uJZer14Ke8P2ogsjg4ZMGIuq4iqUOqY2Jq8BNW42iGmNfRwREaaEfFIczLuZZiEVSYNHAA==}
dev: false
@@ -10383,13 +10399,6 @@ packages:
supports-color: 7.2.0
dev: true
- /chalk/4.1.1:
- resolution: {integrity: sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==}
- engines: {node: '>=10'}
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
/chalk/4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
@@ -10400,6 +10409,12 @@ packages:
/chalk/5.2.0:
resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: true
+
+ /chalk/5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ dev: false
/char-regex/1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
@@ -10489,7 +10504,7 @@ packages:
normalize-path: 3.0.0
readdirp: 3.6.0
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
/chownr/1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -10766,7 +10781,7 @@ packages:
/color-shorthand-hex-to-six-digit/3.1.0:
resolution: {integrity: sha512-Mqd0b5KwDuvbQET6UsP82K4w27pWA3I7qzyoDiM7gI+6nb222d0+dUy6rlzr28YbVJkpY1dnF5yclhfG055kZg==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
hex-color-regex: 1.1.0
lodash.clonedeep: 4.5.0
lodash.isplainobject: 4.0.6
@@ -11063,13 +11078,8 @@ packages:
requiresBuild: true
dev: true
- /core-js/3.31.0:
- resolution: {integrity: sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==}
- requiresBuild: true
- dev: true
-
- /core-js/3.31.1:
- resolution: {integrity: sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==}
+ /core-js/3.32.1:
+ resolution: {integrity: sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==}
requiresBuild: true
dev: true
@@ -11236,23 +11246,23 @@ packages:
type-fest: 1.4.0
dev: false
- /css-blank-pseudo/5.0.2_postcss@8.4.27:
+ /css-blank-pseudo/5.0.2_postcss@8.4.29:
resolution: {integrity: sha512-aCU4AZ7uEcVSUzagTlA9pHciz7aWPKA/YzrEkpdSopJ2pvhIxiQ5sYeMz1/KByxlIo4XBdvMNJAVKMg/GRnhfw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /css-has-pseudo/5.0.2_postcss@8.4.27:
+ /css-has-pseudo/5.0.2_postcss@8.4.29:
resolution: {integrity: sha512-q+U+4QdwwB7T9VEW/LyO6CFrLAeLqOykC5mDqJXc7aKZAhDbq7BvGT13VGJe+IwBfdN2o3Xdw2kJ5IxwV1Sc9Q==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
@@ -11284,13 +11294,13 @@ packages:
peerDependencies:
webpack: ^4.27.0 || ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.27
+ icss-utils: 5.1.0_postcss@8.4.29
loader-utils: 2.0.4
- postcss: 8.4.27
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.27
- postcss-modules-local-by-default: 4.0.3_postcss@8.4.27
- postcss-modules-scope: 3.0.0_postcss@8.4.27
- postcss-modules-values: 4.0.0_postcss@8.4.27
+ postcss: 8.4.29
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.29
+ postcss-modules-local-by-default: 4.0.3_postcss@8.4.29
+ postcss-modules-scope: 3.0.0_postcss@8.4.29
+ postcss-modules-values: 4.0.0_postcss@8.4.29
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
semver: 7.5.4
@@ -11303,24 +11313,24 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.27
- postcss: 8.4.27
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.27
- postcss-modules-local-by-default: 4.0.3_postcss@8.4.27
- postcss-modules-scope: 3.0.0_postcss@8.4.27
- postcss-modules-values: 4.0.0_postcss@8.4.27
+ icss-utils: 5.1.0_postcss@8.4.29
+ postcss: 8.4.29
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.29
+ postcss-modules-local-by-default: 4.0.3_postcss@8.4.29
+ postcss-modules-scope: 3.0.0_postcss@8.4.29
+ postcss-modules-values: 4.0.0_postcss@8.4.29
postcss-value-parser: 4.2.0
semver: 7.5.2
webpack: 5.88.2
dev: true
- /css-prefers-color-scheme/8.0.2_postcss@8.4.27:
+ /css-prefers-color-scheme/8.0.2_postcss@8.4.29:
resolution: {integrity: sha512-OvFghizHJ45x7nsJJUSYLyQNTzsCU8yWjxAc/nhPQg1pbs18LMoET8N3kOweFDPy0JV0OSXN2iqRFhPBHYOeMA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
/css-select/4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
@@ -11574,7 +11584,7 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
dev: false
/dayjs/1.11.5:
@@ -11715,8 +11725,8 @@ packages:
resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==}
dev: true
- /dedent/1.3.0:
- resolution: {integrity: sha512-7glNLfvdsMzZm3FpRY1CHuI2lbYDR+71YmrhmTZjYFD5pfT0ACgnGRdrrC9Mk2uICnzkcdelCx5at787UDGOvg==}
+ /dedent/1.5.1:
+ resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -11785,7 +11795,7 @@ packages:
dependencies:
bundle-name: 3.0.0
default-browser-id: 3.0.0
- execa: 7.2.0
+ execa: 7.1.1
titleize: 3.0.0
dev: false
@@ -11955,8 +11965,8 @@ packages:
/didyoumean/1.2.2:
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
- /diff-sequences/29.4.3:
- resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==}
+ /diff-sequences/29.6.3:
+ resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
@@ -12013,13 +12023,13 @@ packages:
/dom-helpers/3.4.0:
resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
dev: false
/dom-helpers/5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
csstype: 3.1.2
dev: false
@@ -12204,27 +12214,22 @@ packages:
safe-buffer: 5.2.1
dev: false
- /editorconfig/0.15.3:
- resolution: {integrity: sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==}
+ /editorconfig/1.0.4:
+ resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==}
+ engines: {node: '>=14'}
hasBin: true
dependencies:
- commander: 2.20.3
- lru-cache: 4.1.5
- semver: 5.7.2
- sigmund: 1.0.1
+ '@one-ini/wasm': 0.1.1
+ commander: 10.0.1
+ minimatch: 9.0.1
+ semver: 7.5.4
dev: false
/ee-first/1.1.1:
resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
- /electron-to-chromium/1.4.440:
- resolution: {integrity: sha512-r6dCgNpRhPwiWlxbHzZQ/d9swfPaEJGi8ekqRBwQYaR3WmA5VkqQfBWSDDjuJU1ntO+W9tHx8OHV/96Q8e0dVw==}
-
- /electron-to-chromium/1.4.464:
- resolution: {integrity: sha512-guZ84yoou4+ILNdj0XEbmGs6DEWj6zpVOWYpY09GU66yEb0DSYvP/biBPzHn0GuW/3RC/pnaYNUWlQE1fJYtgA==}
-
- /electron-to-chromium/1.4.487:
- resolution: {integrity: sha512-XbCRs/34l31np/p33m+5tdBrdXu9jJkZxSbNxj5I0H1KtV2ZMSB+i/HYqDiRzHaFx2T5EdytjoBRe8QRJE2vQg==}
+ /electron-to-chromium/1.4.502:
+ resolution: {integrity: sha512-xqeGw3Gr6o3uyHy/yKjdnDQHY2RQvXcGC2cfHjccK1IGkH6cX1WQBN8EeC/YpwPhGkBaikDTecJ8+ssxSVRQlw==}
/elegant-spinner/1.0.1:
resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==}
@@ -12280,12 +12285,12 @@ packages:
objectorarray: 1.0.5
dev: true
- /engine.io-client/6.5.1:
- resolution: {integrity: sha512-hE5wKXH8Ru4L19MbM1GgYV/2Qo54JSMh1rlJbfpa40bEWkCKNo3ol2eOtGmowcr+ysgbI7+SGL+by42Q3pt/Ng==}
+ /engine.io-client/6.5.2:
+ resolution: {integrity: sha512-CQZqbrpEYnrpGqC07a9dJDz4gePZUgTPMU3NKJPSeQOyw27Tst4Pl3FemKoFGAlHzgZmKjoRmiJvbWfhCXUlIg==}
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
- engine.io-parser: 5.1.0
+ engine.io-parser: 5.2.1
ws: 8.11.0
xmlhttprequest-ssl: 2.0.0
transitivePeerDependencies:
@@ -12294,24 +12299,24 @@ packages:
- utf-8-validate
dev: false
- /engine.io-parser/5.1.0:
- resolution: {integrity: sha512-enySgNiK5tyZFynt3z7iqBR+Bto9EVVVvDFuTT0ioHCGbzirZVGDGiQjZzEp8hWl6hd5FSVytJGuScX1C1C35w==}
+ /engine.io-parser/5.2.1:
+ resolution: {integrity: sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==}
engines: {node: '>=10.0.0'}
dev: false
- /engine.io/6.5.1:
- resolution: {integrity: sha512-mGqhI+D7YxS9KJMppR6Iuo37Ed3abhU8NdfgSvJSDUafQutrN+sPTncJYTyM9+tkhSmWodKtVYGPPHyXJEwEQA==}
- engines: {node: '>=10.0.0'}
+ /engine.io/6.5.2:
+ resolution: {integrity: sha512-IXsMcGpw/xRfjra46sVZVHiSWo/nJ/3g1337q9KNXtS6YRzbW5yIzTCb9DjhrBe7r3GZQR0I4+nq+4ODk5g/cA==}
+ engines: {node: '>=10.2.0'}
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.13
- '@types/node': 20.4.2
+ '@types/node': 20.5.7
accepts: 1.3.8
base64id: 2.0.0
cookie: 0.4.2
cors: 2.8.5
debug: 4.3.4
- engine.io-parser: 5.1.0
+ engine.io-parser: 5.2.1
ws: 8.11.0
transitivePeerDependencies:
- bufferutil
@@ -12627,7 +12632,7 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-next/13.4.19_qj3u6ezxe2airdzjq3nyoxe24m:
+ /eslint-config-next/13.4.19_w2g2uv42be7wag4oipwkfv43p4:
resolution: {integrity: sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -12638,27 +12643,27 @@ packages:
dependencies:
'@next/eslint-plugin-next': 13.4.19
'@rushstack/eslint-patch': 1.3.3
- '@typescript-eslint/parser': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
- eslint: 8.47.0
+ '@typescript-eslint/parser': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
+ eslint: 8.48.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.0_5mgxfx36fpkivlddytfj7wekqa
- eslint-plugin-import: 2.28.1_cgqxvzepe7nbqww66stv2dpdja
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.47.0
- eslint-plugin-react: 7.33.2_eslint@8.47.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.47.0
- typescript: 5.1.6
+ eslint-import-resolver-typescript: 3.6.0_7bshaz6vfxfeevskyva6hsqbyu
+ eslint-plugin-import: 2.28.1_mr6vzeaukkr6z7mqm7nwr5uizy
+ eslint-plugin-jsx-a11y: 6.7.1_eslint@8.48.0
+ eslint-plugin-react: 7.33.2_eslint@8.48.0
+ eslint-plugin-react-hooks: 4.6.0_eslint@8.48.0
+ typescript: 5.2.2
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: false
- /eslint-config-prettier/8.8.0_eslint@8.47.0:
+ /eslint-config-prettier/8.8.0_eslint@8.48.0:
resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.47.0
+ eslint: 8.48.0
dev: false
/eslint-import-resolver-node/0.3.9:
@@ -12671,7 +12676,7 @@ packages:
- supports-color
dev: false
- /eslint-import-resolver-typescript/3.6.0_5mgxfx36fpkivlddytfj7wekqa:
+ /eslint-import-resolver-typescript/3.6.0_7bshaz6vfxfeevskyva6hsqbyu:
resolution: {integrity: sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -12680,9 +12685,9 @@ packages:
dependencies:
debug: 4.3.4
enhanced-resolve: 5.15.0
- eslint: 8.47.0
- eslint-module-utils: 2.8.0_wnhbyjopm3zu2qrqi2hcj6w6ta
- eslint-plugin-import: 2.28.1_cgqxvzepe7nbqww66stv2dpdja
+ eslint: 8.48.0
+ eslint-module-utils: 2.8.0_muvivozv633bfhsqx7awa52ek4
+ eslint-plugin-import: 2.28.1_mr6vzeaukkr6z7mqm7nwr5uizy
fast-glob: 3.3.1
get-tsconfig: 4.7.0
is-core-module: 2.13.0
@@ -12694,7 +12699,7 @@ packages:
- supports-color
dev: false
- /eslint-module-utils/2.8.0_wnhbyjopm3zu2qrqi2hcj6w6ta:
+ /eslint-module-utils/2.8.0_muvivozv633bfhsqx7awa52ek4:
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -12715,16 +12720,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
+ '@typescript-eslint/parser': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
debug: 3.2.7
- eslint: 8.47.0
+ eslint: 8.48.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.0_5mgxfx36fpkivlddytfj7wekqa
+ eslint-import-resolver-typescript: 3.6.0_7bshaz6vfxfeevskyva6hsqbyu
transitivePeerDependencies:
- supports-color
dev: false
- /eslint-plugin-import/2.28.1_cgqxvzepe7nbqww66stv2dpdja:
+ /eslint-plugin-import/2.28.1_mr6vzeaukkr6z7mqm7nwr5uizy:
resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
engines: {node: '>=4'}
peerDependencies:
@@ -12734,16 +12739,16 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.4.0_qj3u6ezxe2airdzjq3nyoxe24m
+ '@typescript-eslint/parser': 6.5.0_w2g2uv42be7wag4oipwkfv43p4
array-includes: 3.1.6
array.prototype.findlastindex: 1.2.2
array.prototype.flat: 1.3.1
array.prototype.flatmap: 1.3.1
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.47.0
+ eslint: 8.48.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0_wnhbyjopm3zu2qrqi2hcj6w6ta
+ eslint-module-utils: 2.8.0_muvivozv633bfhsqx7awa52ek4
has: 1.0.3
is-core-module: 2.13.0
is-glob: 4.0.3
@@ -12759,7 +12764,7 @@ packages:
- supports-color
dev: false
- /eslint-plugin-jest/27.2.3_mt6zmjxlubkt5rwgvp4jqyivxm:
+ /eslint-plugin-jest/27.2.3_mriqaunvw2n4l4xxh2ul7yhizm:
resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -12772,21 +12777,21 @@ packages:
jest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 6.4.0_ec2ucdo575yoxr55fjuy6wxey4
- '@typescript-eslint/utils': 5.62.0_qj3u6ezxe2airdzjq3nyoxe24m
- eslint: 8.47.0
+ '@typescript-eslint/eslint-plugin': 6.5.0_nvwva6txm3qs6xnog6dqanz5uy
+ '@typescript-eslint/utils': 5.62.0_w2g2uv42be7wag4oipwkfv43p4
+ eslint: 8.48.0
transitivePeerDependencies:
- supports-color
- typescript
dev: false
- /eslint-plugin-jsx-a11y/6.7.1_eslint@8.47.0:
+ /eslint-plugin-jsx-a11y/6.7.1_eslint@8.48.0:
resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
aria-query: 5.3.0
array-includes: 3.1.6
array.prototype.flatmap: 1.3.1
@@ -12795,7 +12800,7 @@ packages:
axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.47.0
+ eslint: 8.48.0
has: 1.0.3
jsx-ast-utils: 3.3.5
language-tags: 1.0.5
@@ -12805,7 +12810,7 @@ packages:
semver: 6.3.1
dev: false
- /eslint-plugin-prettier/4.2.1_6nqcmxhxbzmyjyegv3wbgimn7m:
+ /eslint-plugin-prettier/4.2.1_dc4mrvje5to4473kpnk3n6hx24:
resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -12816,22 +12821,22 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.47.0
- eslint-config-prettier: 8.8.0_eslint@8.47.0
+ eslint: 8.48.0
+ eslint-config-prettier: 8.8.0_eslint@8.48.0
prettier: 2.8.8
prettier-linter-helpers: 1.0.0
dev: false
- /eslint-plugin-react-hooks/4.6.0_eslint@8.47.0:
+ /eslint-plugin-react-hooks/4.6.0_eslint@8.48.0:
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.47.0
+ eslint: 8.48.0
dev: false
- /eslint-plugin-react/7.33.2_eslint@8.47.0:
+ /eslint-plugin-react/7.33.2_eslint@8.48.0:
resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
engines: {node: '>=4'}
peerDependencies:
@@ -12842,7 +12847,7 @@ packages:
array.prototype.tosorted: 1.1.1
doctrine: 2.1.0
es-iterator-helpers: 1.0.13
- eslint: 8.47.0
+ eslint: 8.48.0
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -12856,15 +12861,15 @@ packages:
string.prototype.matchall: 4.0.8
dev: false
- /eslint-plugin-storybook/0.6.7_qj3u6ezxe2airdzjq3nyoxe24m:
+ /eslint-plugin-storybook/0.6.7_w2g2uv42be7wag4oipwkfv43p4:
resolution: {integrity: sha512-lcUsB+3PesKWXwwEHGSTCijKWDXuQ4ITVbnsSDMXRCR/cjGtHZIEcy2pp/Eh7nfWA/GZrDPpK97DsTWEzyN6Bw==}
engines: {node: 12.x || 14.x || >= 16}
peerDependencies:
eslint: '>=6'
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/experimental-utils': 5.30.6_qj3u6ezxe2airdzjq3nyoxe24m
- eslint: 8.47.0
+ '@typescript-eslint/experimental-utils': 5.30.6_w2g2uv42be7wag4oipwkfv43p4
+ eslint: 8.48.0
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -12872,17 +12877,17 @@ packages:
- typescript
dev: false
- /eslint-plugin-unicorn/48.0.1_eslint@8.47.0:
+ /eslint-plugin-unicorn/48.0.1_eslint@8.48.0:
resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==}
engines: {node: '>=16'}
peerDependencies:
eslint: '>=8.44.0'
dependencies:
'@babel/helper-validator-identifier': 7.22.5
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.47.0
+ '@eslint-community/eslint-utils': 4.4.0_eslint@8.48.0
ci-info: 3.8.0
clean-regexp: 1.0.0
- eslint: 8.47.0
+ eslint: 8.48.0
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -12918,13 +12923,13 @@ packages:
esrecurse: 4.3.0
estraverse: 5.3.0
- /eslint-utils/3.0.0_eslint@8.47.0:
+ /eslint-utils/3.0.0_eslint@8.48.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
peerDependencies:
eslint: '>=5'
dependencies:
- eslint: 8.47.0
+ eslint: 8.48.0
eslint-visitor-keys: 2.1.0
dev: false
@@ -12937,16 +12942,16 @@ packages:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /eslint/8.47.0:
- resolution: {integrity: sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==}
+ /eslint/8.48.0:
+ resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.47.0
- '@eslint-community/regexpp': 4.6.2
+ '@eslint-community/eslint-utils': 4.4.0_eslint@8.48.0
+ '@eslint-community/regexpp': 4.8.0
'@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.47.0
- '@humanwhocodes/config-array': 0.11.10
+ '@eslint/js': 8.48.0
+ '@humanwhocodes/config-array': 0.11.11
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
@@ -13019,8 +13024,8 @@ packages:
resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==}
engines: {node: '>=8.3.0'}
dependencies:
- '@babel/traverse': 7.22.10
- '@babel/types': 7.22.10
+ '@babel/traverse': 7.22.11
+ '@babel/types': 7.22.11
c8: 7.12.0
transitivePeerDependencies:
- supports-color
@@ -13122,21 +13127,6 @@ packages:
signal-exit: 3.0.7
strip-final-newline: 3.0.0
- /execa/7.2.0:
- resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
- engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 4.3.1
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.1.0
- onetime: 6.0.0
- signal-exit: 3.0.7
- strip-final-newline: 3.0.0
- dev: false
-
/executable/4.1.1:
resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==}
engines: {node: '>=4'}
@@ -13169,28 +13159,26 @@ packages:
- supports-color
dev: true
- /expect/29.6.1:
- resolution: {integrity: sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g==}
+ /expect/29.6.3:
+ resolution: {integrity: sha512-x1vY4LlEMWUYVZQrFi4ZANXFwqYbJ/JNQspLVvzhW2BNY28aNcXMQH6imBbt+RBf5sVRTodYHXtSP/TLEU0Dxw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/expect-utils': 29.6.1
- '@types/node': 18.16.18
- jest-get-type: 29.4.3
- jest-matcher-utils: 29.6.1
- jest-message-util: 29.6.1
- jest-util: 29.6.1
+ '@jest/expect-utils': 29.6.3
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.6.3
+ jest-message-util: 29.6.3
+ jest-util: 29.6.3
dev: true
- /expect/29.6.2:
- resolution: {integrity: sha512-iAErsLxJ8C+S02QbLAwgSGSezLQK+XXRDt8IuFXFpwCNw2ECmzZSmjKcCaFVp5VRMk+WAvz6h6jokzEzBFZEuA==}
+ /expect/29.6.4:
+ resolution: {integrity: sha512-F2W2UyQ8XYyftHT57dtfg8Ue3X5qLgm2sSug0ivvLRH/VKNRL/pDxg/TH7zVzbQB0tu80clNFy6LU7OS/VSEKA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/expect-utils': 29.6.2
- '@types/node': 18.16.18
- jest-get-type: 29.4.3
- jest-matcher-utils: 29.6.2
- jest-message-util: 29.6.2
- jest-util: 29.6.2
+ '@jest/expect-utils': 29.6.4
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.6.4
+ jest-message-util: 29.6.3
+ jest-util: 29.6.3
dev: true
/express/4.18.2:
@@ -13439,7 +13427,7 @@ packages:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flat-cache: 3.0.4
+ flat-cache: 3.1.0
/file-loader/6.2.0_webpack@4.46.0:
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
@@ -13585,6 +13573,15 @@ packages:
dependencies:
flatted: 3.2.7
rimraf: 3.0.2
+ dev: true
+
+ /flat-cache/3.1.0:
+ resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ flatted: 3.2.7
+ keyv: 4.5.3
+ rimraf: 3.0.2
/flatted/3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
@@ -13603,6 +13600,16 @@ packages:
tslib: 1.14.1
dev: true
+ /follow-redirects/1.15.2:
+ resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+ dev: false
+
/follow-redirects/1.15.2_debug@4.3.2:
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
engines: {node: '>=4.0'}
@@ -13637,7 +13644,7 @@ packages:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: false
- /fork-ts-checker-webpack-plugin/4.1.6_ocmsqikodigm44ritzt6kvr4vy:
+ /fork-ts-checker-webpack-plugin/4.1.6_6iwq6kufuq7pqcbhduqapyzpyu:
resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==}
engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
peerDependencies:
@@ -13653,19 +13660,19 @@ packages:
dependencies:
'@babel/code-frame': 7.22.10
chalk: 2.4.2
- eslint: 8.47.0
+ eslint: 8.48.0
micromatch: 3.1.10
minimatch: 3.1.2
semver: 5.7.2
tapable: 1.1.3
- typescript: 5.1.6
+ typescript: 5.2.2
webpack: 4.46.0
worker-rpc: 0.1.1
transitivePeerDependencies:
- supports-color
dev: true
- /fork-ts-checker-webpack-plugin/6.5.2_fs5k6y67ild4sa3ei4qlx7vmfa:
+ /fork-ts-checker-webpack-plugin/6.5.2_6iwq6kufuq7pqcbhduqapyzpyu:
resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -13685,7 +13692,7 @@ packages:
chokidar: 3.5.3
cosmiconfig: 6.0.0
deepmerge: 4.3.1
- eslint: 8.47.0
+ eslint: 8.48.0
fs-extra: 9.1.0
glob: 7.2.3
memfs: 3.4.12
@@ -13693,11 +13700,11 @@ packages:
schema-utils: 2.7.0
semver: 7.5.4
tapable: 1.1.3
- typescript: 5.1.6
- webpack: 5.88.2
+ typescript: 5.2.2
+ webpack: 4.46.0
dev: true
- /fork-ts-checker-webpack-plugin/6.5.2_ocmsqikodigm44ritzt6kvr4vy:
+ /fork-ts-checker-webpack-plugin/6.5.2_7oeaeroewfqz4nihn4wisyzr3a:
resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -13717,7 +13724,7 @@ packages:
chokidar: 3.5.3
cosmiconfig: 6.0.0
deepmerge: 4.3.1
- eslint: 8.47.0
+ eslint: 8.48.0
fs-extra: 9.1.0
glob: 7.2.3
memfs: 3.4.12
@@ -13725,8 +13732,8 @@ packages:
schema-utils: 2.7.0
semver: 7.5.4
tapable: 1.1.3
- typescript: 5.1.6
- webpack: 4.46.0
+ typescript: 5.2.2
+ webpack: 5.88.2
dev: true
/form-data-encoder/2.1.4:
@@ -13774,8 +13781,8 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /fraction.js/4.2.0:
- resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
+ /fraction.js/4.2.1:
+ resolution: {integrity: sha512-/KxoyCnPM0GwYI4NN0Iag38Tqt+od3/mLuguepLgCAKPn0ZhC544nssAW0tG2/00zXEYl9W+7hwAIpLHo6Oc7Q==}
/fragment-cache/0.2.1:
resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==}
@@ -13784,8 +13791,8 @@ packages:
map-cache: 0.2.2
dev: true
- /framer-motion/10.16.0_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-R+88Mkr/1dr7XHjacwptfJyrywRzQ1HZX3YSZtN4tFMBq1O8GGCbDEv31Nf/H08o0hUXLC87GkxsR/1bZgwXfw==}
+ /framer-motion/10.16.2_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-aY6L9YMvqMWtfOQptaUvvr8dp97jskXY5UYLQM0vOPxKeERrG/Z034EIQZ/52u7MeCT0HlCQy3/l0HdUZCB9Tw==}
peerDependencies:
react: ^18.0.0 || 18
react-dom: ^18.0.0 || 18
@@ -13918,8 +13925,8 @@ packages:
dev: true
optional: true
- /fsevents/2.3.2:
- resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
+ /fsevents/2.3.3:
+ resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
requiresBuild: true
@@ -14303,8 +14310,8 @@ packages:
/graphemer/1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
- /graphql/16.7.1:
- resolution: {integrity: sha512-DRYR9tf+UGU0KOsMcKAlXeFfX89UiiIZ0dRU3mR0yJfu6OjZqUcp68NnFLnqQU5RexygFoDy1EW+ccOYcPfmHg==}
+ /graphql/16.8.0:
+ resolution: {integrity: sha512-0oKGaR+y3qcS5mCu1vb7KG+a89vjn06C7Ihq/dDl3jA+A8B3TKomvi3CiEcVLJQGalbu8F52LxkOym7U5sSfbg==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
dev: true
@@ -14608,8 +14615,11 @@ packages:
hasBin: true
dev: true
- /headers-polyfill/3.1.2:
- resolution: {integrity: sha512-tWCK4biJ6hcLqTviLXVR9DTRfYGQMXEIUj3gwJ2rZ5wO/at3XtkI4g8mCvFdUF9l1KMBNCfmNAdnahm1cgavQA==}
+ /headers-polyfill/3.2.1:
+ resolution: {integrity: sha512-jpY9fNMWPWwkqRN9CpSRNqL9svpiuSmg4CsbPl4s43KltIDIVHlPv75UOXVgc/PTP6BzHSUvd9UMdxSW1I+ETQ==}
+ dependencies:
+ '@types/set-cookie-parser': 2.4.3
+ set-cookie-parser: 2.6.0
dev: true
/hex-color-regex/1.1.0:
@@ -14650,7 +14660,7 @@ packages:
/html-crush/4.2.0:
resolution: {integrity: sha512-z+8zsmaf6iHX1UN6t5mFxnlvweBh1eSws0NI2RjrMv9NX2gGubjcUPIaU6sdrypiBvU0S/Hjqr5aEcJ55fndPA==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
ranges-apply: 5.1.0
ranges-push: 5.1.0
string-left-right: 4.1.0
@@ -14894,7 +14904,7 @@ packages:
engines: {node: '>=8.0.0'}
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.2_debug@4.3.2
+ follow-redirects: 1.15.2
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -15008,13 +15018,13 @@ packages:
postcss: 7.0.39
dev: true
- /icss-utils/5.1.0_postcss@8.4.27:
+ /icss-utils/5.1.0_postcss@8.4.29:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: true
/ieee754/1.2.1:
@@ -15203,7 +15213,7 @@ packages:
engines: {node: '>=12.0.0'}
dependencies:
ansi-escapes: 4.3.2
- chalk: 4.1.1
+ chalk: 4.1.2
cli-cursor: 3.1.0
cli-width: 3.0.0
external-editor: 3.1.0
@@ -15217,13 +15227,35 @@ packages:
strip-ansi: 6.0.1
through: 2.3.8
wrap-ansi: 7.0.0
+ dev: false
+
+ /inquirer/8.2.6:
+ resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
+ engines: {node: '>=12.0.0'}
+ dependencies:
+ ansi-escapes: 4.3.2
+ chalk: 4.1.2
+ cli-cursor: 3.1.0
+ cli-width: 3.0.0
+ external-editor: 3.1.0
+ figures: 3.2.0
+ lodash: 4.17.21
+ mute-stream: 0.0.8
+ ora: 5.4.1
+ run-async: 2.4.1
+ rxjs: 7.8.1
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ through: 2.3.8
+ wrap-ansi: 6.2.0
+ dev: true
/inquirer/9.2.7:
resolution: {integrity: sha512-Bf52lnfvNxGPJPltiNO2tLBp3zC339KNlGMqOkW+dsvNikBhcVDK5kqU2lVX2FTPzuXUFX5WJDlsw//w3ZwoTw==}
engines: {node: '>=14.18.0'}
dependencies:
ansi-escapes: 4.3.2
- chalk: 5.2.0
+ chalk: 5.3.0
cli-cursor: 3.1.0
cli-width: 4.0.0
external-editor: 3.1.0
@@ -15864,8 +15896,8 @@ packages:
/isomorphic-fetch/3.0.0:
resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==}
dependencies:
- node-fetch: 2.6.12
- whatwg-fetch: 3.6.17
+ node-fetch: 2.7.0
+ whatwg-fetch: 3.6.18
transitivePeerDependencies:
- encoding
dev: true
@@ -15873,7 +15905,7 @@ packages:
/isomorphic-unfetch/3.1.0:
resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==}
dependencies:
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
unfetch: 4.2.0
transitivePeerDependencies:
- encoding
@@ -15897,8 +15929,8 @@ packages:
resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.22.10
- '@babel/parser': 7.22.10
+ '@babel/core': 7.22.11
+ '@babel/parser': 7.22.11
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.1
@@ -15906,13 +15938,17 @@ packages:
- supports-color
dev: true
- /istanbul-lib-report/3.0.0:
- resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==}
- engines: {node: '>=8'}
+ /istanbul-lib-instrument/6.0.0:
+ resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==}
+ engines: {node: '>=10'}
dependencies:
+ '@babel/core': 7.22.11
+ '@babel/parser': 7.22.13
+ '@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
- make-dir: 3.1.0
- supports-color: 7.2.0
+ semver: 7.5.4
+ transitivePeerDependencies:
+ - supports-color
dev: true
/istanbul-lib-report/3.0.1:
@@ -15935,14 +15971,6 @@ packages:
- supports-color
dev: true
- /istanbul-reports/3.1.5:
- resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==}
- engines: {node: '>=8'}
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.0
- dev: true
-
/istanbul-reports/3.1.6:
resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==}
engines: {node: '>=8'}
@@ -15977,35 +16005,36 @@ packages:
engines: {node: '>= 0.6.0'}
dev: true
- /jest-changed-files/29.5.0:
- resolution: {integrity: sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==}
+ /jest-changed-files/29.6.3:
+ resolution: {integrity: sha512-G5wDnElqLa4/c66ma5PG9eRjE342lIbF6SUnTJi26C3J28Fv2TVY2rOyKB9YGbSA5ogwevgmxc4j4aVjrEK6Yg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
execa: 5.1.1
+ jest-util: 29.6.3
p-limit: 3.1.0
dev: true
- /jest-circus/29.6.2:
- resolution: {integrity: sha512-G9mN+KOYIUe2sB9kpJkO9Bk18J4dTDArNFPwoZ7WKHKel55eKIS/u2bLthxgojwlf9NLCVQfgzM/WsOVvoC6Fw==}
+ /jest-circus/29.6.4:
+ resolution: {integrity: sha512-YXNrRyntVUgDfZbjXWBMPslX1mQ8MrSG0oM/Y06j9EYubODIyHWP8hMUbjbZ19M3M+zamqEur7O80HODwACoJw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.2
- '@jest/expect': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/environment': 29.6.4
+ '@jest/expect': 29.6.4
+ '@jest/test-result': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
chalk: 4.1.2
co: 4.6.0
- dedent: 1.3.0
+ dedent: 1.5.1
is-generator-fn: 2.1.0
- jest-each: 29.6.2
- jest-matcher-utils: 29.6.2
- jest-message-util: 29.6.2
- jest-runtime: 29.6.2
- jest-snapshot: 29.6.2
- jest-util: 29.6.2
+ jest-each: 29.6.3
+ jest-matcher-utils: 29.6.4
+ jest-message-util: 29.6.3
+ jest-runtime: 29.6.4
+ jest-snapshot: 29.6.4
+ jest-util: 29.6.3
p-limit: 3.1.0
- pretty-format: 29.6.2
+ pretty-format: 29.6.3
pure-rand: 6.0.2
slash: 3.0.0
stack-utils: 2.0.6
@@ -16014,8 +16043,8 @@ packages:
- supports-color
dev: true
- /jest-cli/29.6.2_@types+node@18.16.18:
- resolution: {integrity: sha512-TT6O247v6dCEX2UGHGyflMpxhnrL0DNqP2fRTKYm3nJJpCTfXX3GCMQPGFjXDoj0i5/Blp3jriKXFgdfmbYB6Q==}
+ /jest-cli/29.6.4_@types+node@18.16.18:
+ resolution: {integrity: sha512-+uMCQ7oizMmh8ZwRfZzKIEszFY9ksjjEQnTEMTaL7fYiL3Kw4XhqT9bYh+A4DQKUb67hZn2KbtEnDuHvcgK4pQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
@@ -16024,16 +16053,16 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/core': 29.6.4
+ '@jest/test-result': 29.6.4
+ '@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
import-local: 3.1.0
- jest-config: 29.6.2_@types+node@18.16.18
- jest-util: 29.6.2
- jest-validate: 29.6.2
+ jest-config: 29.6.4_@types+node@18.16.18
+ jest-util: 29.6.3
+ jest-validate: 29.6.3
prompts: 2.4.2
yargs: 17.7.2
transitivePeerDependencies:
@@ -16043,8 +16072,8 @@ packages:
- ts-node
dev: true
- /jest-config/29.6.2_@types+node@18.16.18:
- resolution: {integrity: sha512-VxwFOC8gkiJbuodG9CPtMRjBUNZEHxwfQXmIudSTzFWxaci3Qub1ddTRbFNQlD/zUeaifLndh/eDccFX4wCMQw==}
+ /jest-config/29.6.4_@types+node@18.16.18:
+ resolution: {integrity: sha512-JWohr3i9m2cVpBumQFv2akMEnFEPVOh+9L2xIBJhJ0zOaci2ZXuKJj0tgMKQCBZAKA09H049IR4HVS/43Qb19A==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
'@types/node': '*'
@@ -16055,27 +16084,27 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.22.10
- '@jest/test-sequencer': 29.6.2
- '@jest/types': 29.6.1
+ '@babel/core': 7.22.11
+ '@jest/test-sequencer': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
- babel-jest: 29.6.2_@babel+core@7.22.10
+ babel-jest: 29.6.4_@babel+core@7.22.11
chalk: 4.1.2
ci-info: 3.8.0
deepmerge: 4.3.1
glob: 7.2.3
graceful-fs: 4.2.11
- jest-circus: 29.6.2
- jest-environment-node: 29.6.2
- jest-get-type: 29.4.3
- jest-regex-util: 29.4.3
- jest-resolve: 29.6.2
- jest-runner: 29.6.2
- jest-util: 29.6.2
- jest-validate: 29.6.2
+ jest-circus: 29.6.4
+ jest-environment-node: 29.6.4
+ jest-get-type: 29.6.3
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.6.4
+ jest-runner: 29.6.4
+ jest-util: 29.6.3
+ jest-validate: 29.6.3
micromatch: 4.0.5
parse-json: 5.2.0
- pretty-format: 29.6.2
+ pretty-format: 29.6.3
slash: 3.0.0
strip-json-comments: 3.1.1
transitivePeerDependencies:
@@ -16083,46 +16112,46 @@ packages:
- supports-color
dev: true
- /jest-diff/29.6.1:
- resolution: {integrity: sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg==}
+ /jest-diff/29.6.3:
+ resolution: {integrity: sha512-3sw+AdWnwH9sSNohMRKA7JiYUJSRr/WS6+sEFfBuhxU5V5GlEVKfvUn8JuMHE0wqKowemR1C2aHy8VtXbaV8dQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- diff-sequences: 29.4.3
- jest-get-type: 29.4.3
- pretty-format: 29.6.1
+ diff-sequences: 29.6.3
+ jest-get-type: 29.6.3
+ pretty-format: 29.6.3
dev: true
- /jest-diff/29.6.2:
- resolution: {integrity: sha512-t+ST7CB9GX5F2xKwhwCf0TAR17uNDiaPTZnVymP9lw0lssa9vG+AFyDZoeIHStU3WowFFwT+ky+er0WVl2yGhA==}
+ /jest-diff/29.6.4:
+ resolution: {integrity: sha512-9F48UxR9e4XOEZvoUXEHSWY4qC4zERJaOfrbBg9JpbJOO43R1vN76REt/aMGZoY6GD5g84nnJiBIVlscegefpw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- diff-sequences: 29.4.3
- jest-get-type: 29.4.3
- pretty-format: 29.6.2
+ diff-sequences: 29.6.3
+ jest-get-type: 29.6.3
+ pretty-format: 29.6.3
dev: true
- /jest-docblock/29.4.3:
- resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==}
+ /jest-docblock/29.6.3:
+ resolution: {integrity: sha512-2+H+GOTQBEm2+qFSQ7Ma+BvyV+waiIFxmZF5LdpBsAEjWX8QYjSCa4FrkIYtbfXUJJJnFCYrOtt6TZ+IAiTjBQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
detect-newline: 3.1.0
dev: true
- /jest-each/29.6.2:
- resolution: {integrity: sha512-MsrsqA0Ia99cIpABBc3izS1ZYoYfhIy0NNWqPSE0YXbQjwchyt6B1HD2khzyPe1WiJA7hbxXy77ZoUQxn8UlSw==}
+ /jest-each/29.6.3:
+ resolution: {integrity: sha512-KoXfJ42k8cqbkfshW7sSHcdfnv5agDdHCPA87ZBdmHP+zJstTJc0ttQaJ/x7zK6noAL76hOuTIJ6ZkQRS5dcyg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
chalk: 4.1.2
- jest-get-type: 29.4.3
- jest-util: 29.6.2
- pretty-format: 29.6.2
+ jest-get-type: 29.6.3
+ jest-util: 29.6.3
+ pretty-format: 29.6.3
dev: true
- /jest-environment-jsdom/29.6.2:
- resolution: {integrity: sha512-7oa/+266AAEgkzae8i1awNEfTfjwawWKLpiw2XesZmaoVVj9u9t8JOYx18cG29rbPNtkUlZ8V4b5Jb36y/VxoQ==}
+ /jest-environment-jsdom/29.6.4:
+ resolution: {integrity: sha512-K6wfgUJ16DoMs02JYFid9lOsqfpoVtyJxpRlnTxUHzvZWBnnh2VNGRB9EC1Cro96TQdq5TtSjb3qUjNaJP9IyA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
canvas: ^2.5.0
@@ -16130,13 +16159,13 @@ packages:
canvas:
optional: true
dependencies:
- '@jest/environment': 29.6.2
- '@jest/fake-timers': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/environment': 29.6.4
+ '@jest/fake-timers': 29.6.4
+ '@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 20.4.2
- jest-mock: 29.6.2
- jest-util: 29.6.2
+ '@types/node': 18.16.18
+ jest-mock: 29.6.3
+ jest-util: 29.6.3
jsdom: 20.0.3
transitivePeerDependencies:
- bufferutil
@@ -16144,20 +16173,20 @@ packages:
- utf-8-validate
dev: true
- /jest-environment-node/29.6.2:
- resolution: {integrity: sha512-YGdFeZ3T9a+/612c5mTQIllvWkddPbYcN2v95ZH24oWMbGA4GGS2XdIF92QMhUhvrjjuQWYgUGW2zawOyH63MQ==}
+ /jest-environment-node/29.6.4:
+ resolution: {integrity: sha512-i7SbpH2dEIFGNmxGCpSc2w9cA4qVD+wfvg2ZnfQ7XVrKL0NA5uDVBIiGH8SR4F0dKEv/0qI5r+aDomDf04DpEQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.2
- '@jest/fake-timers': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/environment': 29.6.4
+ '@jest/fake-timers': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
- jest-mock: 29.6.2
- jest-util: 29.6.2
+ jest-mock: 29.6.3
+ jest-util: 29.6.3
dev: true
- /jest-get-type/29.4.3:
- resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==}
+ /jest-get-type/29.6.3:
+ resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
@@ -16167,7 +16196,7 @@ packages:
dependencies:
'@jest/types': 26.6.2
'@types/graceful-fs': 4.1.6
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -16179,84 +16208,69 @@ packages:
sane: 4.1.0
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /jest-haste-map/29.6.2:
- resolution: {integrity: sha512-+51XleTDAAysvU8rT6AnS1ZJ+WHVNqhj1k6nTvN2PYP+HjU3kqlaKQ1Lnw3NYW3bm2r8vq82X0Z1nDDHZMzHVA==}
+ /jest-haste-map/29.6.4:
+ resolution: {integrity: sha512-12Ad+VNTDHxKf7k+M65sviyynRoZYuL1/GTuhEVb8RYsNSNln71nANRb/faSyWvx0j+gHcivChXHIoMJrGYjog==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@types/graceful-fs': 4.1.6
'@types/node': 18.16.18
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
- jest-regex-util: 29.4.3
- jest-util: 29.6.2
- jest-worker: 29.6.2
+ jest-regex-util: 29.6.3
+ jest-util: 29.6.3
+ jest-worker: 29.6.4
micromatch: 4.0.5
walker: 1.0.8
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
- /jest-leak-detector/29.6.2:
- resolution: {integrity: sha512-aNqYhfp5uYEO3tdWMb2bfWv6f0b4I0LOxVRpnRLAeque2uqOVVMLh6khnTcE2qJ5wAKop0HcreM1btoysD6bPQ==}
+ /jest-leak-detector/29.6.3:
+ resolution: {integrity: sha512-0kfbESIHXYdhAdpLsW7xdwmYhLf1BRu4AA118/OxFm0Ho1b2RcTmO4oF6aAMaxpxdxnJ3zve2rgwzNBD4Zbm7Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-get-type: 29.4.3
- pretty-format: 29.6.2
+ jest-get-type: 29.6.3
+ pretty-format: 29.6.3
dev: true
- /jest-matcher-utils/29.6.1:
- resolution: {integrity: sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA==}
+ /jest-matcher-utils/29.6.3:
+ resolution: {integrity: sha512-6ZrMYINZdwduSt5Xu18/n49O1IgXdjsfG7NEZaQws9k69eTKWKcVbJBw/MZsjOZe2sSyJFmuzh8042XWwl54Zg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- jest-diff: 29.6.1
- jest-get-type: 29.4.3
- pretty-format: 29.6.1
+ jest-diff: 29.6.3
+ jest-get-type: 29.6.3
+ pretty-format: 29.6.3
dev: true
- /jest-matcher-utils/29.6.2:
- resolution: {integrity: sha512-4LiAk3hSSobtomeIAzFTe+N8kL6z0JtF3n6I4fg29iIW7tt99R7ZcIFW34QkX+DuVrf+CUe6wuVOpm7ZKFJzZQ==}
+ /jest-matcher-utils/29.6.4:
+ resolution: {integrity: sha512-KSzwyzGvK4HcfnserYqJHYi7sZVqdREJ9DMPAKVbS98JsIAvumihaNUbjrWw0St7p9IY7A9UskCW5MYlGmBQFQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
- jest-diff: 29.6.2
- jest-get-type: 29.4.3
- pretty-format: 29.6.2
+ jest-diff: 29.6.4
+ jest-get-type: 29.6.3
+ pretty-format: 29.6.3
dev: true
- /jest-message-util/29.6.1:
- resolution: {integrity: sha512-KoAW2zAmNSd3Gk88uJ56qXUWbFk787QKmjjJVOjtGFmmGSZgDBrlIL4AfQw1xyMYPNVD7dNInfIbur9B2rd/wQ==}
+ /jest-message-util/29.6.3:
+ resolution: {integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@babel/code-frame': 7.22.10
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@types/stack-utils': 2.0.1
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.5
- pretty-format: 29.6.1
- slash: 3.0.0
- stack-utils: 2.0.6
- dev: true
-
- /jest-message-util/29.6.2:
- resolution: {integrity: sha512-vnIGYEjoPSuRqV8W9t+Wow95SDp6KPX2Uf7EoeG9G99J2OVh7OSwpS4B6J0NfpEIpfkBNHlBZpA2rblEuEFhZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@babel/code-frame': 7.22.10
- '@jest/types': 29.6.1
- '@types/stack-utils': 2.0.1
- chalk: 4.1.2
- graceful-fs: 4.2.11
- micromatch: 4.0.5
- pretty-format: 29.6.2
+ pretty-format: 29.6.3
slash: 3.0.0
stack-utils: 2.0.6
dev: true
@@ -16266,19 +16280,19 @@ packages:
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
'@jest/types': 27.5.1
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
dev: true
- /jest-mock/29.6.2:
- resolution: {integrity: sha512-hoSv3lb3byzdKfwqCuT6uTscan471GUECqgNYykg6ob0yiAw3zYc7OrPnI9Qv8Wwoa4lC7AZ9hyS4AiIx5U2zg==}
+ /jest-mock/29.6.3:
+ resolution: {integrity: sha512-Z7Gs/mOyTSR4yPsaZ72a/MtuK6RnC3JYqWONe48oLaoEcYwEDxqvbXz85G4SJrm2Z5Ar9zp6MiHF4AlFlRM4Pg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
- '@types/node': 20.4.2
- jest-util: 29.6.2
+ '@jest/types': 29.6.3
+ '@types/node': 18.16.18
+ jest-util: 29.6.3
dev: true
- /jest-pnp-resolver/1.2.3_jest-resolve@29.6.2:
+ /jest-pnp-resolver/1.2.3_jest-resolve@29.6.4:
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
peerDependencies:
@@ -16287,7 +16301,7 @@ packages:
jest-resolve:
optional: true
dependencies:
- jest-resolve: 29.6.2
+ jest-resolve: 29.6.4
dev: true
/jest-regex-util/26.0.0:
@@ -16295,89 +16309,89 @@ packages:
engines: {node: '>= 10.14.2'}
dev: true
- /jest-regex-util/29.4.3:
- resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==}
+ /jest-regex-util/29.6.3:
+ resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dev: true
- /jest-resolve-dependencies/29.6.2:
- resolution: {integrity: sha512-LGqjDWxg2fuQQm7ypDxduLu/m4+4Lb4gczc13v51VMZbVP5tSBILqVx8qfWcsdP8f0G7aIqByIALDB0R93yL+w==}
+ /jest-resolve-dependencies/29.6.4:
+ resolution: {integrity: sha512-7+6eAmr1ZBF3vOAJVsfLj1QdqeXG+WYhidfLHBRZqGN24MFRIiKG20ItpLw2qRAsW/D2ZUUmCNf6irUr/v6KHA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- jest-regex-util: 29.4.3
- jest-snapshot: 29.6.2
+ jest-regex-util: 29.6.3
+ jest-snapshot: 29.6.4
transitivePeerDependencies:
- supports-color
dev: true
- /jest-resolve/29.6.2:
- resolution: {integrity: sha512-G/iQUvZWI5e3SMFssc4ug4dH0aZiZpsDq9o1PtXTV1210Ztyb2+w+ZgQkB3iOiC5SmAEzJBOHWz6Hvrd+QnNPw==}
+ /jest-resolve/29.6.4:
+ resolution: {integrity: sha512-fPRq+0vcxsuGlG0O3gyoqGTAxasagOxEuyoxHeyxaZbc9QNek0AmJWSkhjlMG+mTsj+8knc/mWb3fXlRNVih7Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
- jest-haste-map: 29.6.2
- jest-pnp-resolver: 1.2.3_jest-resolve@29.6.2
- jest-util: 29.6.2
- jest-validate: 29.6.2
+ jest-haste-map: 29.6.4
+ jest-pnp-resolver: 1.2.3_jest-resolve@29.6.4
+ jest-util: 29.6.3
+ jest-validate: 29.6.3
resolve: 1.22.4
resolve.exports: 2.0.2
slash: 3.0.0
dev: true
- /jest-runner/29.6.2:
- resolution: {integrity: sha512-wXOT/a0EspYgfMiYHxwGLPCZfC0c38MivAlb2lMEAlwHINKemrttu1uSbcGbfDV31sFaPWnWJPmb2qXM8pqZ4w==}
+ /jest-runner/29.6.4:
+ resolution: {integrity: sha512-SDaLrMmtVlQYDuG0iSPYLycG8P9jLI+fRm8AF/xPKhYDB2g6xDWjXBrR5M8gEWsK6KVFlebpZ4QsrxdyIX1Jaw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/console': 29.6.2
- '@jest/environment': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/transform': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/console': 29.6.4
+ '@jest/environment': 29.6.4
+ '@jest/test-result': 29.6.4
+ '@jest/transform': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
- jest-docblock: 29.4.3
- jest-environment-node: 29.6.2
- jest-haste-map: 29.6.2
- jest-leak-detector: 29.6.2
- jest-message-util: 29.6.2
- jest-resolve: 29.6.2
- jest-runtime: 29.6.2
- jest-util: 29.6.2
- jest-watcher: 29.6.2
- jest-worker: 29.6.2
+ jest-docblock: 29.6.3
+ jest-environment-node: 29.6.4
+ jest-haste-map: 29.6.4
+ jest-leak-detector: 29.6.3
+ jest-message-util: 29.6.3
+ jest-resolve: 29.6.4
+ jest-runtime: 29.6.4
+ jest-util: 29.6.3
+ jest-watcher: 29.6.4
+ jest-worker: 29.6.4
p-limit: 3.1.0
source-map-support: 0.5.13
transitivePeerDependencies:
- supports-color
dev: true
- /jest-runtime/29.6.2:
- resolution: {integrity: sha512-2X9dqK768KufGJyIeLmIzToDmsN0m7Iek8QNxRSI/2+iPFYHF0jTwlO3ftn7gdKd98G/VQw9XJCk77rbTGZnJg==}
+ /jest-runtime/29.6.4:
+ resolution: {integrity: sha512-s/QxMBLvmwLdchKEjcLfwzP7h+jsHvNEtxGP5P+Fl1FMaJX2jMiIqe4rJw4tFprzCwuSvVUo9bn0uj4gNRXsbA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/environment': 29.6.2
- '@jest/fake-timers': 29.6.2
- '@jest/globals': 29.6.2
- '@jest/source-map': 29.6.0
- '@jest/test-result': 29.6.2
- '@jest/transform': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/environment': 29.6.4
+ '@jest/fake-timers': 29.6.4
+ '@jest/globals': 29.6.4
+ '@jest/source-map': 29.6.3
+ '@jest/test-result': 29.6.4
+ '@jest/transform': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
glob: 7.2.3
graceful-fs: 4.2.11
- jest-haste-map: 29.6.2
- jest-message-util: 29.6.2
- jest-mock: 29.6.2
- jest-regex-util: 29.4.3
- jest-resolve: 29.6.2
- jest-snapshot: 29.6.2
- jest-util: 29.6.2
+ jest-haste-map: 29.6.4
+ jest-message-util: 29.6.3
+ jest-mock: 29.6.3
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.6.4
+ jest-snapshot: 29.6.4
+ jest-util: 29.6.3
slash: 3.0.0
strip-bom: 4.0.0
transitivePeerDependencies:
@@ -16388,33 +16402,33 @@ packages:
resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
graceful-fs: 4.2.11
dev: true
- /jest-snapshot/29.6.2:
- resolution: {integrity: sha512-1OdjqvqmRdGNvWXr/YZHuyhh5DeaLp1p/F8Tht/MrMw4Kr1Uu/j4lRG+iKl1DAqUJDWxtQBMk41Lnf/JETYBRA==}
+ /jest-snapshot/29.6.4:
+ resolution: {integrity: sha512-VC1N8ED7+4uboUKGIDsbvNAZb6LakgIPgAF4RSpF13dN6YaMokfRqO+BaqK4zIh6X3JffgwbzuGqDEjHm/MrvA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/generator': 7.22.10
- '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.10
- '@babel/plugin-syntax-typescript': 7.22.5_@babel+core@7.22.10
- '@babel/types': 7.22.10
- '@jest/expect-utils': 29.6.2
- '@jest/transform': 29.6.2
- '@jest/types': 29.6.1
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.10
+ '@babel/plugin-syntax-jsx': 7.22.5_@babel+core@7.22.11
+ '@babel/plugin-syntax-typescript': 7.22.5_@babel+core@7.22.11
+ '@babel/types': 7.22.11
+ '@jest/expect-utils': 29.6.4
+ '@jest/transform': 29.6.4
+ '@jest/types': 29.6.3
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.22.11
chalk: 4.1.2
- expect: 29.6.2
+ expect: 29.6.4
graceful-fs: 4.2.11
- jest-diff: 29.6.2
- jest-get-type: 29.4.3
- jest-matcher-utils: 29.6.2
- jest-message-util: 29.6.2
- jest-util: 29.6.2
+ jest-diff: 29.6.4
+ jest-get-type: 29.6.3
+ jest-matcher-utils: 29.6.4
+ jest-message-util: 29.6.3
+ jest-util: 29.6.3
natural-compare: 1.4.0
- pretty-format: 29.6.2
+ pretty-format: 29.6.3
semver: 7.5.4
transitivePeerDependencies:
- supports-color
@@ -16425,18 +16439,18 @@ packages:
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': 26.6.2
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
chalk: 4.1.2
graceful-fs: 4.2.11
is-ci: 2.0.0
micromatch: 4.0.5
dev: true
- /jest-util/29.6.1:
- resolution: {integrity: sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==}
+ /jest-util/29.6.3:
+ resolution: {integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
chalk: 4.1.2
ci-info: 3.8.0
@@ -16444,41 +16458,29 @@ packages:
picomatch: 2.3.1
dev: true
- /jest-util/29.6.2:
- resolution: {integrity: sha512-3eX1qb6L88lJNCFlEADKOkjpXJQyZRiavX1INZ4tRnrBVr2COd3RgcTLyUiEXMNBlDU/cgYq6taUS0fExrWW4w==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/types': 29.6.1
- '@types/node': 20.4.2
- chalk: 4.1.2
- ci-info: 3.8.0
- graceful-fs: 4.2.11
- picomatch: 2.3.1
- dev: true
-
- /jest-validate/29.6.2:
- resolution: {integrity: sha512-vGz0yMN5fUFRRbpJDPwxMpgSXW1LDKROHfBopAvDcmD6s+B/s8WJrwi+4bfH4SdInBA5C3P3BI19dBtKzx1Arg==}
+ /jest-validate/29.6.3:
+ resolution: {integrity: sha512-e7KWZcAIX+2W1o3cHfnqpGajdCs1jSM3DkXjGeLSNmCazv1EeI1ggTeK5wdZhF+7N+g44JI2Od3veojoaumlfg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/types': 29.6.1
+ '@jest/types': 29.6.3
camelcase: 6.3.0
chalk: 4.1.2
- jest-get-type: 29.4.3
+ jest-get-type: 29.6.3
leven: 3.1.0
- pretty-format: 29.6.2
+ pretty-format: 29.6.3
dev: true
- /jest-watcher/29.6.2:
- resolution: {integrity: sha512-GZitlqkMkhkefjfN/p3SJjrDaxPflqxEAv3/ik10OirZqJGYH5rPiIsgVcfof0Tdqg3shQGdEIxDBx+B4tuLzA==}
+ /jest-watcher/29.6.4:
+ resolution: {integrity: sha512-oqUWvx6+On04ShsT00Ir9T4/FvBeEh2M9PTubgITPxDa739p4hoQweWPRGyYeaojgT0xTpZKF0Y/rSY1UgMxvQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/test-result': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/test-result': 29.6.4
+ '@jest/types': 29.6.3
'@types/node': 18.16.18
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
- jest-util: 29.6.2
+ jest-util: 29.6.3
string-length: 4.0.2
dev: true
@@ -16486,7 +16488,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.4.2
+ '@types/node': 18.16.18
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -16499,18 +16501,18 @@ packages:
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest-worker/29.6.2:
- resolution: {integrity: sha512-l3ccBOabTdkng8I/ORCkADz4eSMKejTYv1vB/Z83UiubqhC1oQ5Li6dWCyqOIvSifGjUBxuvxvlm6KGK2DtuAQ==}
+ /jest-worker/29.6.4:
+ resolution: {integrity: sha512-6dpvFV4WjcWbDVGgHTWo/aupl8/LbBx2NSKfiwqf79xC/yeJjKHT1+StcKy/2KTmW16hE68ccKVOtXf+WZGz7Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@types/node': 18.16.18
- jest-util: 29.6.2
+ jest-util: 29.6.3
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
- /jest/29.6.2_@types+node@18.16.18:
- resolution: {integrity: sha512-8eQg2mqFbaP7CwfsTpCxQ+sHzw1WuNWL5UUvjnWP4hx2riGz9fPSzYOaU5q8/GqWn1TfgZIVTqYJygbGbWAANg==}
+ /jest/29.6.4_@types+node@18.16.18:
+ resolution: {integrity: sha512-tEFhVQFF/bzoYV1YuGyzLPZ6vlPrdfvDmmAxudA1dLEuiztqg2Rkx20vkKY32xiDROcD2KXlgZ7Cu8RPeEHRKw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
peerDependencies:
@@ -16519,10 +16521,10 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.6.2
- '@jest/types': 29.6.1
+ '@jest/core': 29.6.4
+ '@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.6.2_@types+node@18.16.18
+ jest-cli: 29.6.4_@types+node@18.16.18
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -16545,13 +16547,13 @@ packages:
/jose/4.14.4:
resolution: {integrity: sha512-j8GhLiKmUAh+dsFXlX1aJCbt5KMibuKb+d7j1JaOJG6s2UjX1PQlW+OKB/sD4a/5ZYF4RcmYmLSndOoU3Lt/3g==}
- /js-beautify/1.14.8:
- resolution: {integrity: sha512-4S7HFeI9YfRvRgKnEweohs0tgJj28InHVIj4Nl8Htf96Y6pHg3+tJrmo4ucAM9f7l4SHbFI3IvFAZ2a1eQPbyg==}
+ /js-beautify/1.14.9:
+ resolution: {integrity: sha512-coM7xq1syLcMyuVGyToxcj2AlzhkDjmfklL8r0JgJ7A76wyGMpJ1oA35mr4APdYNO/o/4YY8H54NQIJzhMbhBg==}
engines: {node: '>=12'}
hasBin: true
dependencies:
config-chain: 1.1.13
- editorconfig: 0.15.3
+ editorconfig: 1.0.4
glob: 8.1.0
nopt: 6.0.0
dev: false
@@ -16648,7 +16650,6 @@ packages:
/json-buffer/3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- dev: false
/json-parse-better-errors/1.0.2:
resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
@@ -16780,6 +16781,11 @@ packages:
json-buffer: 3.0.1
dev: false
+ /keyv/4.5.3:
+ resolution: {integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==}
+ dependencies:
+ json-buffer: 3.0.1
+
/kind-of/3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
@@ -16854,7 +16860,7 @@ packages:
resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==}
engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
app-root-dir: 1.0.2
core-js: 3.26.1
dotenv: 8.6.0
@@ -17210,14 +17216,14 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
dependencies:
- chalk: 4.1.1
+ chalk: 4.1.2
is-unicode-supported: 0.1.0
/log-symbols/5.1.0:
resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
engines: {node: '>=12'}
dependencies:
- chalk: 5.2.0
+ chalk: 5.3.0
is-unicode-supported: 1.3.0
dev: false
@@ -17283,6 +17289,7 @@ packages:
dependencies:
pseudomap: 1.0.2
yallist: 2.1.2
+ dev: true
/lru-cache/5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -17706,6 +17713,13 @@ packages:
brace-expansion: 2.0.1
dev: true
+ /minimatch/9.0.1:
+ resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dependencies:
+ brace-expansion: 2.0.1
+ dev: false
+
/minimatch/9.0.3:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -17844,21 +17858,21 @@ packages:
/ms/2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- /msw-storybook-addon/1.6.3_fapppnz23qujj6azshpijughaa:
+ /msw-storybook-addon/1.6.3_e6hiszb4ksxkkkn7rbo7nnhtw4:
resolution: {integrity: sha512-Ps80WdRmXsmenoTwfrgKMNpQD8INUUFyUFyZOecx8QjuqSlL++UYrLaGyACXN2goOn+/VS6rb0ZapbjrasPClg==}
peerDependencies:
msw: '>=0.35.0 <1.0.0'
dependencies:
'@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y
is-node-process: 1.0.1
- msw: 1.2.3_typescript@5.1.6
+ msw: 1.2.5_typescript@5.2.2
transitivePeerDependencies:
- react
- react-dom
dev: true
- /msw/1.2.3_typescript@5.1.6:
- resolution: {integrity: sha512-Fqy/TaLKR32x4IkMwudJHJysBzVM/v/lSoMPS9f3QaHLOmb3xHN9YurSUnRt+2eEvNXLjVPij1wMBQtLmTbKsg==}
+ /msw/1.2.5_typescript@5.2.2:
+ resolution: {integrity: sha512-Y3MwnAHX3d162eSWrEUeRdCv3+8hmgz/+Wh7OUkE6VB55+YTswxrep3yU3evZnKWHJGAM63G1s+olAgzIFdYtQ==}
engines: {node: '>=14'}
hasBin: true
requiresBuild: true
@@ -17873,20 +17887,20 @@ packages:
'@open-draft/until': 1.0.3
'@types/cookie': 0.4.1
'@types/js-levenshtein': 1.1.1
- chalk: 4.1.1
+ chalk: 4.1.2
chokidar: 3.5.3
cookie: 0.4.2
- graphql: 16.7.1
- headers-polyfill: 3.1.2
- inquirer: 8.2.5
+ graphql: 16.8.0
+ headers-polyfill: 3.2.1
+ inquirer: 8.2.6
is-node-process: 1.2.0
js-levenshtein: 1.1.6
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
outvariant: 1.4.0
path-to-regexp: 6.2.1
strict-event-emitter: 0.4.6
type-fest: 2.19.0
- typescript: 5.1.6
+ typescript: 5.2.2
yargs: 17.7.2
transitivePeerDependencies:
- encoding
@@ -17963,8 +17977,8 @@ packages:
type-fest: 2.19.0
dev: false
- /next-auth/4.23.0_m2l4knchnqa6bzxbbtfxlzoxdy:
- resolution: {integrity: sha512-RgukcJkBdvsJwEfA+B80Wcowvtgy6tk8KKWffb7CMCdzcLO4fCCA6aB6sp/DZ2I0ISvWGnbVcO5KXmlan71igw==}
+ /next-auth/4.23.1_m2l4knchnqa6bzxbbtfxlzoxdy:
+ resolution: {integrity: sha512-mL083z8KgRtlrIV6CDca2H1kduWJuK/3pTS0Fe2og15KOm4v2kkLGdSDfc2g+019aEBrJUT0pPW2Xx42ImN1WA==}
peerDependencies:
next: ^12.2.5 || ^13
nodemailer: ^6.6.5
@@ -17981,8 +17995,8 @@ packages:
next: 13.4.19_biqbaboplfbrettd7655fr4n2y
oauth: 0.9.15
openid-client: 5.4.3
- preact: 10.16.0
- preact-render-to-string: 5.2.6_preact@10.16.0
+ preact: 10.17.1
+ preact-render-to-string: 5.2.6_preact@10.17.1
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
uuid: 8.3.2
@@ -18080,7 +18094,7 @@ packages:
- '@babel/core'
- babel-plugin-macros
- /next/13.4.19_kad34t6xatktacetaiwsmjshve:
+ /next/13.4.19_i7fbsmp6luydialx2h65cfhsq4:
resolution: {integrity: sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==}
engines: {node: '>=16.8.0'}
hasBin: true
@@ -18103,7 +18117,7 @@ packages:
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
sass: 1.66.1
- styled-jsx: 5.1.1_rieqahbfozcw6pn6t2yoby4jsq
+ styled-jsx: 5.1.1_dyjrdn4cwwk5zc2yxh6dginkjq
watchpack: 2.4.0
zod: 3.21.4
optionalDependencies:
@@ -18147,9 +18161,10 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
+ dev: true
- /node-fetch/2.6.12:
- resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==}
+ /node-fetch/2.6.13:
+ resolution: {integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
encoding: ^0.1.0
@@ -18158,6 +18173,7 @@ packages:
optional: true
dependencies:
whatwg-url: 5.0.0
+ dev: false
/node-fetch/2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
@@ -18170,6 +18186,17 @@ packages:
dependencies:
whatwg-url: 5.0.0
+ /node-fetch/2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+ dependencies:
+ whatwg-url: 5.0.0
+
/node-int64/0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
dev: true
@@ -18202,9 +18229,6 @@ packages:
vm-browserify: 1.1.2
dev: true
- /node-releases/2.0.12:
- resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
-
/node-releases/2.0.13:
resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
@@ -18234,7 +18258,7 @@ packages:
engines: {node: '>=10'}
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.12.1
+ is-core-module: 2.13.0
semver: 7.5.4
validate-npm-package-license: 3.0.4
dev: false
@@ -18244,7 +18268,7 @@ packages:
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
dependencies:
hosted-git-info: 6.1.1
- is-core-module: 2.12.1
+ is-core-module: 2.13.0
semver: 7.5.4
validate-npm-package-license: 3.0.4
dev: false
@@ -18284,7 +18308,7 @@ packages:
engines: {git: '>=2.11.0', node: '>=16.6.0', npm: '>=7.19.0', yarn: '>=1.7.0'}
hasBin: true
dependencies:
- chalk: 5.2.0
+ chalk: 5.3.0
cosmiconfig: 8.2.0
del: 7.0.0
escape-goat: 4.0.0
@@ -18316,7 +18340,7 @@ packages:
pkg-dir: 7.0.0
read-pkg-up: 9.1.0
rxjs: 7.8.1
- semver: 7.5.3
+ semver: 7.5.4
symbol-observable: 4.0.0
terminal-link: 3.0.0
update-notifier: 6.0.2
@@ -18401,7 +18425,7 @@ packages:
/object-boolean-combinations/4.1.0:
resolution: {integrity: sha512-AkiONPtYhPo7B2X/0sohAlFsIBCFr9HElIe34edEFJIk5XSYc/N/06SJyQWeq6L/gFuvnUTa0/TnrqE0Ge3ncA==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
lodash.clonedeep: 4.5.0
lodash.intersection: 4.4.0
lodash.isplainobject: 4.0.6
@@ -18653,7 +18677,7 @@ packages:
engines: {node: '>=10'}
dependencies:
bl: 4.1.0
- chalk: 4.1.1
+ chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.9.0
is-interactive: 1.0.0
@@ -18701,7 +18725,7 @@ packages:
engines: {node: '>=14.16'}
dependencies:
'@sindresorhus/is': 5.4.1
- callsites: 4.0.0
+ callsites: 4.1.0
dot-prop: 7.2.0
lodash.isequal: 4.5.0
vali-date: 1.0.0
@@ -19178,11 +19202,11 @@ packages:
engines: {node: '>=4'}
dev: false
- /pnp-webpack-plugin/1.6.4_typescript@5.1.6:
+ /pnp-webpack-plugin/1.6.4_typescript@5.2.2:
resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
engines: {node: '>=6'}
dependencies:
- ts-pnp: 1.2.0_typescript@5.1.6
+ ts-pnp: 1.2.0_typescript@5.2.2
transitivePeerDependencies:
- typescript
dev: true
@@ -19191,7 +19215,7 @@ packages:
resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
dev: true
/portscanner/2.2.0:
@@ -19207,50 +19231,50 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /postcss-attribute-case-insensitive/6.0.2_postcss@8.4.27:
+ /postcss-attribute-case-insensitive/6.0.2_postcss@8.4.29:
resolution: {integrity: sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-clamp/4.1.0_postcss@8.4.27:
+ /postcss-clamp/4.1.0_postcss@8.4.29:
resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==}
engines: {node: '>=7.6.0'}
peerDependencies:
postcss: ^8.4.6
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-color-functional-notation/5.1.0_postcss@8.4.27:
+ /postcss-color-functional-notation/5.1.0_postcss@8.4.29:
resolution: {integrity: sha512-w2R4py6zrVE1U7FwNaAc76tNQlG9GLkrBbcFw+VhUjyDDiV28vfZG+l4LyPmpoQpeSJVtu8VgNjE8Jv5SpC7dQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-color-hex-alpha/9.0.2_postcss@8.4.27:
+ /postcss-color-hex-alpha/9.0.2_postcss@8.4.29:
resolution: {integrity: sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-color-rebeccapurple/8.0.2_postcss@8.4.27:
+ /postcss-color-rebeccapurple/8.0.2_postcss@8.4.29:
resolution: {integrity: sha512-xWf/JmAxVoB5bltHpXk+uGRoGFwu4WDAR7210el+iyvTdqiKpDhtcT8N3edXMoVJY0WHFMrKMUieql/wRNiXkw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
/postcss-css-variables/0.18.0_postcss@8.4.21:
@@ -19264,7 +19288,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-custom-media/9.1.5_postcss@8.4.27:
+ /postcss-custom-media/9.1.5_postcss@8.4.29:
resolution: {integrity: sha512-GStyWMz7Qbo/Gtw1xVspzVSX8eipgNg4lpsO3CAeY4/A1mzok+RV6MCv3fg62trWijh/lYEj6vps4o8JcBBpDA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -19274,9 +19298,9 @@ packages:
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
'@csstools/media-query-list-parser': 2.1.1_g5wmdbqtzzaodrrmvxcit5gfji
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-custom-properties/13.2.0_postcss@8.4.27:
+ /postcss-custom-properties/13.2.0_postcss@8.4.29:
resolution: {integrity: sha512-UYiPqbqmVayyv56y0mtGhvUKZClflwE9cTTmPaqEX8fOVjVwsotqKGYtJXSLxrJLwf9tt7ka+Luyh1ZAOhGHWA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -19285,10 +19309,10 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.2_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-custom-selectors/7.1.3_postcss@8.4.27:
+ /postcss-custom-selectors/7.1.3_postcss@8.4.29:
resolution: {integrity: sha512-GTVscax6O/8s7agFF0HsOoIyjrnAbLjgCUle8tn+0oDGJuVx7p56U7ClSRoC49poxFuMfu2B4Q8GnxSCOeuFKw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -19297,26 +19321,26 @@ packages:
'@csstools/cascade-layer-name-parser': 1.0.2_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-dir-pseudo-class/7.0.2_postcss@8.4.27:
+ /postcss-dir-pseudo-class/7.0.2_postcss@8.4.29:
resolution: {integrity: sha512-cMnslilYxBf9k3qejnovrUONZx1rXeUZJw06fgIUBzABJe3D2LiLL5WAER7Imt3nrkaIgG05XZBztueLEf5P8w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-double-position-gradients/4.0.4_postcss@8.4.27:
+ /postcss-double-position-gradients/4.0.4_postcss@8.4.29:
resolution: {integrity: sha512-nUAbUXURemLXIrl4Xoia2tiu5z/n8sY+BVDZApoeT9BlpByyrp02P/lFCRrRvZ/zrGRE+MOGLhk8o7VcMCtPtQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
/postcss-flexbugs-fixes/4.2.1:
@@ -19325,53 +19349,53 @@ packages:
postcss: 7.0.39
dev: true
- /postcss-flexbugs-fixes/5.0.2_postcss@8.4.27:
+ /postcss-flexbugs-fixes/5.0.2_postcss@8.4.29:
resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==}
peerDependencies:
postcss: ^8.1.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-focus-visible/8.0.2_postcss@8.4.27:
+ /postcss-focus-visible/8.0.2_postcss@8.4.29:
resolution: {integrity: sha512-f/Vd+EC/GaKElknU59esVcRYr/Y3t1ZAQyL4u2xSOgkDy4bMCmG7VP5cGvj3+BTLNE9ETfEuz2nnt4qkZwTTeA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-focus-within/7.0.2_postcss@8.4.27:
+ /postcss-focus-within/7.0.2_postcss@8.4.29:
resolution: {integrity: sha512-AHAJ89UQBcqBvFgQJE9XasGuwMNkKsGj4D/f9Uk60jFmEBHpAL14DrnSk3Rj+SwZTr/WUG+mh+Rvf8fid/346w==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-font-variant/5.0.0_postcss@8.4.27:
+ /postcss-font-variant/5.0.0_postcss@8.4.29:
resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-gap-properties/4.0.1_postcss@8.4.27:
+ /postcss-gap-properties/4.0.1_postcss@8.4.29:
resolution: {integrity: sha512-V5OuQGw4lBumPlwHWk/PRfMKjaq/LTGR4WDTemIMCaMevArVfCCA9wBJiL1VjDAd+rzuCIlkRoRvDsSiAaZ4Fg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-image-set-function/5.0.2_postcss@8.4.27:
+ /postcss-image-set-function/5.0.2_postcss@8.4.29:
resolution: {integrity: sha512-Sszjwo0ubETX0Fi5MvpYzsONwrsjeabjMoc5YqHvURFItXgIu3HdCjcVuVKGMPGzKRhgaknmdM5uVWInWPJmeg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
/postcss-import/14.1.0_postcss@8.4.21:
@@ -19386,23 +19410,23 @@ packages:
resolve: 1.22.4
dev: false
- /postcss-import/15.1.0_postcss@8.4.27:
+ /postcss-import/15.1.0_postcss@8.4.29:
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.2
+ resolve: 1.22.4
- /postcss-initial/4.0.1_postcss@8.4.27:
+ /postcss-initial/4.0.1_postcss@8.4.29:
resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
/postcss-js/4.0.1_postcss@8.4.21:
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
@@ -19414,16 +19438,16 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-js/4.0.1_postcss@8.4.27:
+ /postcss-js/4.0.1_postcss@8.4.29:
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-lab-function/5.2.3_postcss@8.4.27:
+ /postcss-lab-function/5.2.3_postcss@8.4.29:
resolution: {integrity: sha512-fi32AYKzji5/rvgxo5zXHFvAYBw0u0OzELbeCNjEZVLUir18Oj+9RmNphtM8QdLUaUnrfx8zy8vVYLmFLkdmrQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
@@ -19432,8 +19456,8 @@ packages:
'@csstools/css-color-parser': 1.2.1_g5wmdbqtzzaodrrmvxcit5gfji
'@csstools/css-parser-algorithms': 2.2.0_gdfqdfecdiaxr4x3xd7wxrvuhq
'@csstools/css-tokenizer': 2.1.1
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- postcss: 8.4.27
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ postcss: 8.4.29
/postcss-load-config/3.1.4_postcss@8.4.21:
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
@@ -19452,7 +19476,7 @@ packages:
yaml: 1.10.2
dev: false
- /postcss-load-config/4.0.1_postcss@8.4.27:
+ /postcss-load-config/4.0.1_postcss@8.4.29:
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -19465,7 +19489,7 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.27
+ postcss: 8.4.29
yaml: 2.3.1
/postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe:
@@ -19484,7 +19508,7 @@ packages:
webpack: 4.46.0
dev: true
- /postcss-loader/7.3.3_wtdfwmg7ycxaq333qvq47tatda:
+ /postcss-loader/7.3.3_2hkoivtpvllbjq6evlgvgrqmqy:
resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -19493,40 +19517,40 @@ packages:
dependencies:
cosmiconfig: 8.2.0
jiti: 1.18.2
- postcss: 8.4.27
+ postcss: 8.4.29
semver: 7.5.2
webpack: 5.88.2
dev: true
- /postcss-logical/6.2.0_postcss@8.4.27:
+ /postcss-logical/6.2.0_postcss@8.4.29:
resolution: {integrity: sha512-aqlfKGaY0nnbgI9jwUikp4gJKBqcH5noU/EdnIVceghaaDPYhZuyJVxlvWNy55tlTG5tunRKCTAX9yljLiFgmw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-merge-longhand/5.1.7_postcss@8.4.27:
+ /postcss-merge-longhand/5.1.7_postcss@8.4.29:
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.27
+ stylehacks: 5.1.1_postcss@8.4.29
dev: false
- /postcss-merge-longhand/6.0.0_postcss@8.4.27:
+ /postcss-merge-longhand/6.0.0_postcss@8.4.29:
resolution: {integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- stylehacks: 6.0.0_postcss@8.4.27
+ stylehacks: 6.0.0_postcss@8.4.29
dev: false
/postcss-modules-extract-imports/2.0.0:
@@ -19536,13 +19560,13 @@ packages:
postcss: 7.0.39
dev: true
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.27:
+ /postcss-modules-extract-imports/3.0.0_postcss@8.4.29:
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: true
/postcss-modules-local-by-default/3.0.3:
@@ -19555,14 +19579,14 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-local-by-default/4.0.3_postcss@8.4.27:
+ /postcss-modules-local-by-default/4.0.3_postcss@8.4.29:
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.27
- postcss: 8.4.27
+ icss-utils: 5.1.0_postcss@8.4.29
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: true
@@ -19575,13 +19599,13 @@ packages:
postcss-selector-parser: 6.0.13
dev: true
- /postcss-modules-scope/3.0.0_postcss@8.4.27:
+ /postcss-modules-scope/3.0.0_postcss@8.4.29:
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: true
@@ -19592,14 +19616,14 @@ packages:
postcss: 7.0.39
dev: true
- /postcss-modules-values/4.0.0_postcss@8.4.27:
+ /postcss-modules-values/4.0.0_postcss@8.4.29:
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.27
- postcss: 8.4.27
+ icss-utils: 5.1.0_postcss@8.4.29
+ postcss: 8.4.29
dev: true
/postcss-nested/6.0.0_postcss@8.4.21:
@@ -19612,154 +19636,154 @@ packages:
postcss-selector-parser: 6.0.13
dev: false
- /postcss-nested/6.0.1_postcss@8.4.27:
+ /postcss-nested/6.0.1_postcss@8.4.29:
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-nesting/11.3.0_postcss@8.4.27:
+ /postcss-nesting/11.3.0_postcss@8.4.29:
resolution: {integrity: sha512-JlS10AQm/RzyrUGgl5irVkAlZYTJ99mNueUl+Qab+TcHhVedLiylWVkKBhRale+rS9yWIJK48JVzQlq3LcSdeA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
'@csstools/selector-specificity': 2.2.0_c3vcbepomgmxc74cgtawpgpkyi
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-opacity-percentage/2.0.0_postcss@8.4.27:
+ /postcss-opacity-percentage/2.0.0_postcss@8.4.29:
resolution: {integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.2
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-overflow-shorthand/4.0.1_postcss@8.4.27:
+ /postcss-overflow-shorthand/4.0.1_postcss@8.4.29:
resolution: {integrity: sha512-HQZ0qi/9iSYHW4w3ogNqVNr2J49DHJAl7r8O2p0Meip38jsdnRPgiDW7r/LlLrrMBMe3KHkvNtAV2UmRVxzLIg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-page-break/3.0.4_postcss@8.4.27:
+ /postcss-page-break/3.0.4_postcss@8.4.29:
resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==}
peerDependencies:
postcss: ^8
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-place/8.0.1_postcss@8.4.27:
+ /postcss-place/8.0.1_postcss@8.4.29:
resolution: {integrity: sha512-Ow2LedN8sL4pq8ubukO77phSVt4QyCm35ZGCYXKvRFayAwcpgB0sjNJglDoTuRdUL32q/ZC1VkPBo0AOEr4Uiw==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-value-parser: 4.2.0
- /postcss-preset-env/8.5.1_postcss@8.4.27:
+ /postcss-preset-env/8.5.1_postcss@8.4.29:
resolution: {integrity: sha512-qhWnJJjP6ArLUINWJ38t6Aftxnv9NW6cXK0NuwcLCcRilbuw72dSFLkCVUJeCfHGgJiKzX+pnhkGiki0PEynWg==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- '@csstools/postcss-cascade-layers': 3.0.1_postcss@8.4.27
- '@csstools/postcss-color-function': 2.2.3_postcss@8.4.27
- '@csstools/postcss-color-mix-function': 1.0.3_postcss@8.4.27
- '@csstools/postcss-font-format-keywords': 2.0.2_postcss@8.4.27
- '@csstools/postcss-gradients-interpolation-method': 3.0.6_postcss@8.4.27
- '@csstools/postcss-hwb-function': 2.2.2_postcss@8.4.27
- '@csstools/postcss-ic-unit': 2.0.4_postcss@8.4.27
- '@csstools/postcss-is-pseudo-class': 3.2.1_postcss@8.4.27
- '@csstools/postcss-logical-float-and-clear': 1.0.1_postcss@8.4.27
- '@csstools/postcss-logical-resize': 1.0.1_postcss@8.4.27
- '@csstools/postcss-logical-viewport-units': 1.0.3_postcss@8.4.27
- '@csstools/postcss-media-minmax': 1.0.4_postcss@8.4.27
- '@csstools/postcss-media-queries-aspect-ratio-number-values': 1.0.4_postcss@8.4.27
- '@csstools/postcss-nested-calc': 2.0.2_postcss@8.4.27
- '@csstools/postcss-normalize-display-values': 2.0.1_postcss@8.4.27
- '@csstools/postcss-oklab-function': 2.2.3_postcss@8.4.27
- '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.27
- '@csstools/postcss-relative-color-syntax': 1.0.2_postcss@8.4.27
- '@csstools/postcss-scope-pseudo-class': 2.0.2_postcss@8.4.27
- '@csstools/postcss-stepped-value-functions': 2.1.1_postcss@8.4.27
- '@csstools/postcss-text-decoration-shorthand': 2.2.4_postcss@8.4.27
- '@csstools/postcss-trigonometric-functions': 2.1.1_postcss@8.4.27
- '@csstools/postcss-unset-value': 2.0.1_postcss@8.4.27
- autoprefixer: 10.4.14_postcss@8.4.27
+ '@csstools/postcss-cascade-layers': 3.0.1_postcss@8.4.29
+ '@csstools/postcss-color-function': 2.2.3_postcss@8.4.29
+ '@csstools/postcss-color-mix-function': 1.0.3_postcss@8.4.29
+ '@csstools/postcss-font-format-keywords': 2.0.2_postcss@8.4.29
+ '@csstools/postcss-gradients-interpolation-method': 3.0.6_postcss@8.4.29
+ '@csstools/postcss-hwb-function': 2.2.2_postcss@8.4.29
+ '@csstools/postcss-ic-unit': 2.0.4_postcss@8.4.29
+ '@csstools/postcss-is-pseudo-class': 3.2.1_postcss@8.4.29
+ '@csstools/postcss-logical-float-and-clear': 1.0.1_postcss@8.4.29
+ '@csstools/postcss-logical-resize': 1.0.1_postcss@8.4.29
+ '@csstools/postcss-logical-viewport-units': 1.0.3_postcss@8.4.29
+ '@csstools/postcss-media-minmax': 1.0.4_postcss@8.4.29
+ '@csstools/postcss-media-queries-aspect-ratio-number-values': 1.0.4_postcss@8.4.29
+ '@csstools/postcss-nested-calc': 2.0.2_postcss@8.4.29
+ '@csstools/postcss-normalize-display-values': 2.0.1_postcss@8.4.29
+ '@csstools/postcss-oklab-function': 2.2.3_postcss@8.4.29
+ '@csstools/postcss-progressive-custom-properties': 2.3.0_postcss@8.4.29
+ '@csstools/postcss-relative-color-syntax': 1.0.2_postcss@8.4.29
+ '@csstools/postcss-scope-pseudo-class': 2.0.2_postcss@8.4.29
+ '@csstools/postcss-stepped-value-functions': 2.1.1_postcss@8.4.29
+ '@csstools/postcss-text-decoration-shorthand': 2.2.4_postcss@8.4.29
+ '@csstools/postcss-trigonometric-functions': 2.1.1_postcss@8.4.29
+ '@csstools/postcss-unset-value': 2.0.1_postcss@8.4.29
+ autoprefixer: 10.4.15_postcss@8.4.29
browserslist: 4.21.9
- css-blank-pseudo: 5.0.2_postcss@8.4.27
- css-has-pseudo: 5.0.2_postcss@8.4.27
- css-prefers-color-scheme: 8.0.2_postcss@8.4.27
+ css-blank-pseudo: 5.0.2_postcss@8.4.29
+ css-has-pseudo: 5.0.2_postcss@8.4.29
+ css-prefers-color-scheme: 8.0.2_postcss@8.4.29
cssdb: 7.6.0
- postcss: 8.4.27
- postcss-attribute-case-insensitive: 6.0.2_postcss@8.4.27
- postcss-clamp: 4.1.0_postcss@8.4.27
- postcss-color-functional-notation: 5.1.0_postcss@8.4.27
- postcss-color-hex-alpha: 9.0.2_postcss@8.4.27
- postcss-color-rebeccapurple: 8.0.2_postcss@8.4.27
- postcss-custom-media: 9.1.5_postcss@8.4.27
- postcss-custom-properties: 13.2.0_postcss@8.4.27
- postcss-custom-selectors: 7.1.3_postcss@8.4.27
- postcss-dir-pseudo-class: 7.0.2_postcss@8.4.27
- postcss-double-position-gradients: 4.0.4_postcss@8.4.27
- postcss-focus-visible: 8.0.2_postcss@8.4.27
- postcss-focus-within: 7.0.2_postcss@8.4.27
- postcss-font-variant: 5.0.0_postcss@8.4.27
- postcss-gap-properties: 4.0.1_postcss@8.4.27
- postcss-image-set-function: 5.0.2_postcss@8.4.27
- postcss-initial: 4.0.1_postcss@8.4.27
- postcss-lab-function: 5.2.3_postcss@8.4.27
- postcss-logical: 6.2.0_postcss@8.4.27
- postcss-nesting: 11.3.0_postcss@8.4.27
- postcss-opacity-percentage: 2.0.0_postcss@8.4.27
- postcss-overflow-shorthand: 4.0.1_postcss@8.4.27
- postcss-page-break: 3.0.4_postcss@8.4.27
- postcss-place: 8.0.1_postcss@8.4.27
- postcss-pseudo-class-any-link: 8.0.2_postcss@8.4.27
- postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.27
- postcss-selector-not: 7.0.1_postcss@8.4.27
+ postcss: 8.4.29
+ postcss-attribute-case-insensitive: 6.0.2_postcss@8.4.29
+ postcss-clamp: 4.1.0_postcss@8.4.29
+ postcss-color-functional-notation: 5.1.0_postcss@8.4.29
+ postcss-color-hex-alpha: 9.0.2_postcss@8.4.29
+ postcss-color-rebeccapurple: 8.0.2_postcss@8.4.29
+ postcss-custom-media: 9.1.5_postcss@8.4.29
+ postcss-custom-properties: 13.2.0_postcss@8.4.29
+ postcss-custom-selectors: 7.1.3_postcss@8.4.29
+ postcss-dir-pseudo-class: 7.0.2_postcss@8.4.29
+ postcss-double-position-gradients: 4.0.4_postcss@8.4.29
+ postcss-focus-visible: 8.0.2_postcss@8.4.29
+ postcss-focus-within: 7.0.2_postcss@8.4.29
+ postcss-font-variant: 5.0.0_postcss@8.4.29
+ postcss-gap-properties: 4.0.1_postcss@8.4.29
+ postcss-image-set-function: 5.0.2_postcss@8.4.29
+ postcss-initial: 4.0.1_postcss@8.4.29
+ postcss-lab-function: 5.2.3_postcss@8.4.29
+ postcss-logical: 6.2.0_postcss@8.4.29
+ postcss-nesting: 11.3.0_postcss@8.4.29
+ postcss-opacity-percentage: 2.0.0_postcss@8.4.29
+ postcss-overflow-shorthand: 4.0.1_postcss@8.4.29
+ postcss-page-break: 3.0.4_postcss@8.4.29
+ postcss-place: 8.0.1_postcss@8.4.29
+ postcss-pseudo-class-any-link: 8.0.2_postcss@8.4.29
+ postcss-replace-overflow-wrap: 4.0.0_postcss@8.4.29
+ postcss-selector-not: 7.0.1_postcss@8.4.29
postcss-value-parser: 4.2.0
- /postcss-pseudo-class-any-link/8.0.2_postcss@8.4.27:
+ /postcss-pseudo-class-any-link/8.0.2_postcss@8.4.29:
resolution: {integrity: sha512-FYTIuRE07jZ2CW8POvctRgArQJ43yxhr5vLmImdKUvjFCkR09kh8pIdlCwdx/jbFm7MiW4QP58L4oOUv3grQYA==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
- /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.27:
+ /postcss-replace-overflow-wrap/4.0.0_postcss@8.4.29:
resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==}
peerDependencies:
postcss: ^8.0.3
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
- /postcss-safe-parser/6.0.0_postcss@8.4.27:
+ /postcss-safe-parser/6.0.0_postcss@8.4.29:
resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.3.3
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
dev: false
- /postcss-selector-not/7.0.1_postcss@8.4.27:
+ /postcss-selector-not/7.0.1_postcss@8.4.29:
resolution: {integrity: sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==}
engines: {node: ^14 || ^16 || >=18}
peerDependencies:
postcss: ^8.4
dependencies:
- postcss: 8.4.27
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
/postcss-selector-parser/6.0.10:
@@ -19816,6 +19840,15 @@ packages:
nanoid: 3.3.6
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: true
+
+ /postcss/8.4.29:
+ resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.6
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
/posthtml-attrs-parser/0.1.1:
resolution: {integrity: sha512-ZFZfTIb74uHFdn80+7DyP+qrryDX/Bb7Q2rUaByh6iUJ1HlKGSxkChKORpwIUHjChJDzcKEtnyXxzXzcjpH9CQ==}
@@ -19829,7 +19862,7 @@ packages:
dependencies:
is-url-superb: 5.0.0
lodash.merge: 4.6.2
- postcss: 8.4.27
+ postcss: 8.4.29
srcset: 4.0.0
dev: false
@@ -19953,8 +19986,8 @@ packages:
resolution: {integrity: sha512-Ob+jiusv1qA7NmVFvrCcJlpsLpfM1mJg6P4fBTi9+K1U+3wZR3th3KDnewUxzUFWyTmObole2SfajMfWSC0qQg==}
engines: {node: '>=14.0.0'}
dependencies:
- postcss: 8.4.27
- postcss-merge-longhand: 5.1.7_postcss@8.4.27
+ postcss: 8.4.29
+ postcss-merge-longhand: 5.1.7_postcss@8.4.29
posthtml: 0.16.6
dev: false
@@ -19975,8 +20008,8 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
css.escape: 1.5.1
- postcss: 8.4.27
- postcss-safe-parser: 6.0.0_postcss@8.4.27
+ postcss: 8.4.29
+ postcss-safe-parser: 6.0.0_postcss@8.4.29
postcss-selector-parser: 6.0.13
posthtml: 0.16.6
dev: false
@@ -20007,16 +20040,16 @@ packages:
posthtml-render: 3.0.0
dev: false
- /preact-render-to-string/5.2.6_preact@10.16.0:
+ /preact-render-to-string/5.2.6_preact@10.17.1:
resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==}
peerDependencies:
preact: '>=10'
dependencies:
- preact: 10.16.0
+ preact: 10.17.1
pretty-format: 3.8.0
- /preact/10.16.0:
- resolution: {integrity: sha512-XTSj3dJ4roKIC93pald6rWuB2qQJO9gO2iLLyTe87MrjQN+HklueLsmskbywEWqCHlclgz3/M4YLL2iBr9UmMA==}
+ /preact/10.17.1:
+ resolution: {integrity: sha512-X9BODrvQ4Ekwv9GURm9AKAGaomqXmip7NQTZgY7gcNmr7XE83adOMJvd3N42id1tMFU7ojiynRsYnY6/BRFxLA==}
/preferred-pm/3.0.3:
resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==}
@@ -20143,20 +20176,11 @@ packages:
ansi-styles: 5.2.0
react-is: 17.0.2
- /pretty-format/29.6.1:
- resolution: {integrity: sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==}
+ /pretty-format/29.6.3:
+ resolution: {integrity: sha512-ZsBgjVhFAj5KeK+nHfF1305/By3lechHQSMWCTl8iHSbfOm2TN5nHEtFc/+W7fAyUeCs2n5iow72gld4gW0xDw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@jest/schemas': 29.6.0
- ansi-styles: 5.2.0
- react-is: 18.2.0
- dev: true
-
- /pretty-format/29.6.2:
- resolution: {integrity: sha512-1q0oC8eRveTg5nnBEWMXAU2qpv65Gnuf2eCQzSjxpWFkPaPARwqZZDGuNE0zPAZfTCHzIk3A8dIjwlQKKLphyg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- '@jest/schemas': 29.6.0
+ '@jest/schemas': 29.6.3
ansi-styles: 5.2.0
react-is: 18.2.0
dev: true
@@ -20175,7 +20199,7 @@ packages:
dependencies:
condense-newlines: 0.2.1
extend-shallow: 2.0.1
- js-beautify: 1.14.8
+ js-beautify: 1.14.9
dev: false
/prism-react-renderer/2.0.6_react@18.2.0:
@@ -20188,13 +20212,13 @@ packages:
react: 18.2.0
dev: false
- /prisma/5.1.1:
- resolution: {integrity: sha512-WJFG/U7sMmcc6TjJTTifTfpI6Wjoh55xl4AzopVwAdyK68L9/ogNo8QQ2cxuUjJf/Wa82z/uhyh3wMzvRIBphg==}
+ /prisma/5.2.0:
+ resolution: {integrity: sha512-FfFlpjVCkZwrqxDnP4smlNYSH1so+CbfjgdpioFzGGqlQAEm6VHAYSzV7jJgC3ebtY9dNOhDMS2+4/1DDSM7bQ==}
engines: {node: '>=16.13'}
hasBin: true
requiresBuild: true
dependencies:
- '@prisma/engines': 5.1.1
+ '@prisma/engines': 5.2.0
/process-nextick-args/2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
@@ -20277,7 +20301,7 @@ packages:
/prosemirror-changeset/2.2.1:
resolution: {integrity: sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ==}
dependencies:
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
/prosemirror-collab/1.3.1:
resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==}
@@ -20289,13 +20313,13 @@ packages:
dependencies:
prosemirror-model: 1.19.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
/prosemirror-dropcursor/1.8.1:
resolution: {integrity: sha512-M30WJdJZLyXHi3N8vxN6Zh5O8ZBbQCz0gURTfPmTIBNQ5pxrdU7A58QkNqfa98YEjSAL1HUyyU34f6Pm5xBSGw==}
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
prosemirror-view: 1.31.7
/prosemirror-gapcursor/1.3.2:
@@ -20310,7 +20334,7 @@ packages:
resolution: {integrity: sha512-/zm0XoU/N/+u7i5zepjmZAEnpvjDtzoPWW6VmKptcAnPadN/SStsBjMImdCEbb3seiNTpveziPTIrXQbHLtU1g==}
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
prosemirror-view: 1.31.7
rope-sequence: 1.3.4
@@ -20318,7 +20342,7 @@ packages:
resolution: {integrity: sha512-3LrWJX1+ULRh5SZvbIQlwZafOXqp1XuV21MGBu/i5xsztd+9VD15x6OtN6mdqSFI7/8Y77gYUbQ6vwwJ4mr6QQ==}
dependencies:
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
/prosemirror-keymap/1.2.2:
resolution: {integrity: sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ==}
@@ -20332,8 +20356,8 @@ packages:
markdown-it: 13.0.1
prosemirror-model: 1.19.3
- /prosemirror-menu/1.2.3:
- resolution: {integrity: sha512-13H9+XvdJiUt2vQVMqCveFbc7YfEKR3g70pUwuQdQLwuvNfVGTzMHr1y5dwdY5vOBQbzhmjgnWUnclKzMdnlJA==}
+ /prosemirror-menu/1.2.4:
+ resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==}
dependencies:
crelt: 1.0.6
prosemirror-commands: 1.5.2
@@ -20355,13 +20379,13 @@ packages:
dependencies:
prosemirror-model: 1.19.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
/prosemirror-state/1.4.3:
resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
dependencies:
prosemirror-model: 1.19.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
prosemirror-view: 1.31.7
/prosemirror-tables/1.3.4:
@@ -20370,7 +20394,7 @@ packages:
prosemirror-keymap: 1.2.2
prosemirror-model: 1.19.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
prosemirror-view: 1.31.7
/prosemirror-trailing-node/2.0.7_kk6v3b44qprnqmsxmvqyl6g65m:
@@ -20387,8 +20411,8 @@ packages:
prosemirror-state: 1.4.3
prosemirror-view: 1.31.7
- /prosemirror-transform/1.7.4:
- resolution: {integrity: sha512-GO38mvqJ2yeI0BbL5E1CdHcly032Dlfn9nHqlnCHqlNf9e9jZwJixxp6VRtOeDZ1uTDpDIziezMKbA41LpAx3A==}
+ /prosemirror-transform/1.7.5:
+ resolution: {integrity: sha512-U/fWB6frEzY7dzwJUo+ir8dU1JEanaI/RwL12Imy9js/527N0v/IRUKewocP1kTq998JNT18IGtThaDLwLOBxQ==}
dependencies:
prosemirror-model: 1.19.3
@@ -20397,7 +20421,7 @@ packages:
dependencies:
prosemirror-model: 1.19.3
prosemirror-state: 1.4.3
- prosemirror-transform: 1.7.4
+ prosemirror-transform: 1.7.5
/proto-list/1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -20421,6 +20445,7 @@ packages:
/pseudomap/1.0.2:
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
+ dev: true
/psl/1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
@@ -20577,14 +20602,14 @@ packages:
/ranges-apply/5.1.0:
resolution: {integrity: sha512-VF3a0XUuYS/BQHv2RaIyX1K7S1hbfrs64hkGKgPVk0Y7p4XFwSucjTTttrBqmkcmB/PZx5ISTZdxErRZi/89aQ==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
ranges-merge: 7.1.0
dev: false
/ranges-merge/7.1.0:
resolution: {integrity: sha512-coTHcyAEIhoEdsBs9f5f+q0rmy7UHvS/5nfuXzuj5oLX/l/tbqM5uxRb6eh8WMdetXia3lK67ZO4tarH4ieulQ==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
ranges-push: 5.1.0
ranges-sort: 4.1.0
dev: false
@@ -20592,7 +20617,7 @@ packages:
/ranges-push/5.1.0:
resolution: {integrity: sha512-vqGcaGq7GWV1zBa9w83E+dzYkOvE9/3pIRUPvLf12c+mGQCf1nesrkBI7Ob8taN2CC9V1HDSJx0KAQl0SgZftA==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
ranges-merge: 7.1.0
string-collapse-leading-whitespace: 5.1.0
string-trim-spaces-only: 3.1.0
@@ -20601,7 +20626,7 @@ packages:
/ranges-sort/4.1.0:
resolution: {integrity: sha512-GOQgk6UtsrfKFeYa53YLiBVnLINwYmOk5l2QZG1csZpT6GdImUwooh+/cRrp7b+fYawZX/rnyA3Ul+pdgQBIzA==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
dev: false
/raw-body/2.4.1:
@@ -20655,8 +20680,8 @@ packages:
strip-json-comments: 2.0.1
dev: false
- /react-day-picker/8.8.0_kzhlcyde2l6xjiirkbg7jzhosa:
- resolution: {integrity: sha512-QIC3uOuyGGbtypbd5QEggsCSqVaPNu8kzUWquZ7JjW9fuWB9yv7WyixKmnaFelTLXFdq7h7zU6n/aBleBqe/dA==}
+ /react-day-picker/8.8.1_kzhlcyde2l6xjiirkbg7jzhosa:
+ resolution: {integrity: sha512-U7RsRoRI5pyMXhKq54hS9yM11WEGkPf8hIdrxIM/sefgmQjuxazqgwcZFMiPZW/K9vtmzLZFf9bLW0wVsGYd5w==}
peerDependencies:
date-fns: ^2.28.0
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18
@@ -20665,12 +20690,12 @@ packages:
react: 18.2.0
dev: false
- /react-docgen-typescript/2.2.2_typescript@5.1.6:
+ /react-docgen-typescript/2.2.2_typescript@5.2.2:
resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
peerDependencies:
typescript: '>= 4.3.x'
dependencies:
- typescript: 5.1.6
+ typescript: 5.2.2
dev: true
/react-docgen/5.4.3:
@@ -20678,9 +20703,9 @@ packages:
engines: {node: '>=8.10.0'}
hasBin: true
dependencies:
- '@babel/core': 7.22.10
+ '@babel/core': 7.22.11
'@babel/generator': 7.22.10
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
ast-types: 0.14.2
commander: 2.20.3
doctrine: 3.0.0
@@ -20753,7 +20778,7 @@ packages:
peerDependencies:
react: ^16.8.4 || ^17.0.0 || 18
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
is-dom: 1.1.0
prop-types: 15.8.1
react: 18.2.0
@@ -20786,7 +20811,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar/2.3.4_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /react-remove-scroll-bar/2.3.4_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -20796,13 +20821,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
- react-style-singleton: 2.2.1_j3ahe22lw6ac2w6qvqp4kjqnqy
+ react-style-singleton: 2.2.1_gq4reeurwxuj4hvyerswzzqthy
tslib: 2.6.2
dev: false
- /react-remove-scroll/2.5.5_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /react-remove-scroll/2.5.5_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -20812,13 +20837,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
- react-remove-scroll-bar: 2.3.4_j3ahe22lw6ac2w6qvqp4kjqnqy
- react-style-singleton: 2.2.1_j3ahe22lw6ac2w6qvqp4kjqnqy
+ react-remove-scroll-bar: 2.3.4_gq4reeurwxuj4hvyerswzzqthy
+ react-style-singleton: 2.2.1_gq4reeurwxuj4hvyerswzzqthy
tslib: 2.6.2
- use-callback-ref: 1.3.0_j3ahe22lw6ac2w6qvqp4kjqnqy
- use-sidecar: 1.1.2_j3ahe22lw6ac2w6qvqp4kjqnqy
+ use-callback-ref: 1.3.0_gq4reeurwxuj4hvyerswzzqthy
+ use-sidecar: 1.1.2_gq4reeurwxuj4hvyerswzzqthy
dev: false
/react-resize-detector/8.1.0_biqbaboplfbrettd7655fr4n2y:
@@ -20854,7 +20879,7 @@ packages:
react: 18.2.0
dev: false
- /react-style-singleton/2.2.1_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /react-style-singleton/2.2.1_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -20864,7 +20889,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
@@ -20891,7 +20916,7 @@ packages:
react: '>=16.6.0 || 18'
react-dom: '>=16.6.0 || 18'
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -21039,8 +21064,8 @@ packages:
decimal.js-light: 2.5.1
dev: false
- /recharts/2.7.2_v2m5e27vhdewzwhryxwfaorcca:
- resolution: {integrity: sha512-HMKRBkGoOXHW+7JcRa6+MukPSifNtJlqbc+JreGVNA407VLE/vOP+8n3YYjprDVVIF9E2ZgwWnL3D7K/LUFzBg==}
+ /recharts/2.8.0_v2m5e27vhdewzwhryxwfaorcca:
+ resolution: {integrity: sha512-nciXqQDh3aW8abhwUlA4EBOBusRHLNiKHfpRZiG/yjups1x+auHb2zWPuEcTn/IMiN47vVMMuF8Sr+vcQJtsmw==}
engines: {node: '>=12'}
peerDependencies:
prop-types: ^15.6.0
@@ -21136,7 +21161,7 @@ packages:
/regenerator-transform/0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
- '@babel/runtime': 7.22.10
+ '@babel/runtime': 7.22.11
dev: true
/regex-not/1.0.2:
@@ -21477,7 +21502,7 @@ packages:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.3
- postcss: 8.4.27
+ postcss: 8.4.29
source-map: 0.6.1
dev: true
@@ -21603,7 +21628,7 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/rope-sequence/1.3.4:
@@ -21862,6 +21887,7 @@ packages:
hasBin: true
dependencies:
lru-cache: 6.0.0
+ dev: true
/semver/7.5.4:
resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
@@ -22082,10 +22108,6 @@ packages:
get-intrinsic: 1.2.1
object-inspect: 1.12.3
- /sigmund/1.0.1:
- resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==}
- dev: false
-
/signal-exit/3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -22203,13 +22225,13 @@ packages:
- utf-8-validate
dev: false
- /socket.io-client/4.7.1:
- resolution: {integrity: sha512-Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w==}
+ /socket.io-client/4.7.2:
+ resolution: {integrity: sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==}
engines: {node: '>=10.0.0'}
dependencies:
'@socket.io/component-emitter': 3.1.0
debug: 4.3.4
- engine.io-client: 6.5.1
+ engine.io-client: 6.5.2
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -22227,15 +22249,15 @@ packages:
- supports-color
dev: false
- /socket.io/4.7.1:
- resolution: {integrity: sha512-W+utHys2w//dhFjy7iQQu9sGd3eokCjGbl2r59tyLqNiJJBdIebn3GAKEXBr3osqHTObJi2die/25bCx2zsaaw==}
- engines: {node: '>=10.0.0'}
+ /socket.io/4.7.2:
+ resolution: {integrity: sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==}
+ engines: {node: '>=10.2.0'}
dependencies:
accepts: 1.3.8
base64id: 2.0.0
cors: 2.8.5
debug: 4.3.4
- engine.io: 6.5.1
+ engine.io: 6.5.2
socket.io-adapter: 2.5.2
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -22443,7 +22465,7 @@ packages:
resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
dev: true
- /storybook-addon-next/1.7.1_xyl3t6obiv5stdfrtw5z5wfbya:
+ /storybook-addon-next/1.7.1_cwwom5vdgmachstztoedzqb2xu:
resolution: {integrity: sha512-SSbD91CUNSKiTMYfbqBGUkbRuSiC7+q7D4bRqDgHI2kSJn4wi99/ccFVGCegTRJoJqljwtEJ/vEqQ253L64hVQ==}
peerDependencies:
'@storybook/addon-actions': ^6.0.0
@@ -22458,8 +22480,8 @@ packages:
'@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y
image-size: 1.0.2
loader-utils: 3.2.1
- next: 13.4.19_kad34t6xatktacetaiwsmjshve
- postcss-loader: 7.3.3_wtdfwmg7ycxaq333qvq47tatda
+ next: 13.4.19_i7fbsmp6luydialx2h65cfhsq4
+ postcss-loader: 7.3.3_2hkoivtpvllbjq6evlgvgrqmqy
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
resolve-url-loader: 5.0.0
@@ -22546,19 +22568,19 @@ packages:
/string-character-is-astral-surrogate/1.13.0:
resolution: {integrity: sha512-tKRG2qaGiV2ntUur32sfeAypqTvMUtl+8spEYSJzDsee4lKGMFxQmdHIyCw/uiWWQSve+DQmde2japDYZlQpLA==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
dev: false
/string-collapse-leading-whitespace/5.1.0:
resolution: {integrity: sha512-mYz9/Kb5uvRB4DZj46zILwI4y9lD9JsvXG9Xb7zjbwm0I/R40G7oFfMsqJ28l2d7gWMTLJL569NfJQVLQbnHCw==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
dev: false
/string-left-right/4.1.0:
resolution: {integrity: sha512-ic/WvfNVUygWWsgg8akzSzp2NuttfhrdbH7QmSnda5b5RFmT9aCEDiS/M+gmTJwtFy7+b/2AXU4Z6vejcePQqQ==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
lodash.clonedeep: 4.5.0
lodash.isplainobject: 4.0.6
dev: false
@@ -22574,7 +22596,7 @@ packages:
/string-match-left-right/7.1.0:
resolution: {integrity: sha512-PSyXWesECKYnTJy6xaXAz/2AiyIjrga2hhMN8QbSNGwsnxcpWxt5pMpc7JQIzPkkEwDwip8PdIuU110xKuBevg==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
arrayiffy-if-string: 3.14.0
lodash.isplainobject: 4.0.6
string-character-is-astral-surrogate: 1.13.0
@@ -22583,13 +22605,13 @@ packages:
/string-range-expander/2.1.0:
resolution: {integrity: sha512-y/lRS0l1vfqAfj/msJ3APzf9IXCB7CZ6PrZFEPkXcLjau2vFrZ7ML1skKVItMYy16wGO87rv+28KtTYIAQoAYw==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
dev: false
/string-remove-widows/2.1.0:
resolution: {integrity: sha512-GoBqfTvkc1uKeazfS/+hjLSi81IBDPmPPVBowk5x39Z+VvrvHLjJZFoYJbwe0JlPg1Mc4rX3Ak+5zPqAexWu5Q==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
ranges-apply: 5.1.0
ranges-push: 5.1.0
string-left-right: 4.1.0
@@ -22604,7 +22626,7 @@ packages:
/string-trim-spaces-only/3.1.0:
resolution: {integrity: sha512-AW7RSi3+QtE6wR+4m/kmwlyy39neBbCIzrzzu1/RGzNRiPKQOeB3rGzr4ubg4UIQgYtr2w0PrxhKPXgyqJ0vaQ==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
dev: false
/string-width/1.0.2:
@@ -22807,8 +22829,8 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /stripe/13.2.0:
- resolution: {integrity: sha512-4a2UHpe/tyxP3sxSGhuKMgbW8hQnqSQIPMigXC8kW3P0+BpsITpKDP+xxriTMDkRAP0xTQwzxcqhfqB+/404Mg==}
+ /stripe/13.3.0:
+ resolution: {integrity: sha512-saDZBvk8fCBz9GigKpVXAaAo0K+TQe+DwVmucAzpJq503Y44P2ehMqulfaRoK8a+etuwIUlgsXD+am6YSMxepg==}
engines: {node: '>=12.*'}
dependencies:
'@types/node': 18.16.18
@@ -22863,7 +22885,7 @@ packages:
inline-style-parser: 0.1.1
dev: false
- /styled-jsx/5.1.1_react@18.2.0:
+ /styled-jsx/5.1.1_dyjrdn4cwwk5zc2yxh6dginkjq:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -22876,10 +22898,11 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
+ '@babel/core': 7.22.11
client-only: 0.0.1
react: 18.2.0
- /styled-jsx/5.1.1_rieqahbfozcw6pn6t2yoby4jsq:
+ /styled-jsx/5.1.1_react@18.2.0:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
peerDependencies:
@@ -22892,29 +22915,28 @@ packages:
babel-plugin-macros:
optional: true
dependencies:
- '@babel/core': 7.22.10
client-only: 0.0.1
react: 18.2.0
- /stylehacks/5.1.1_postcss@8.4.27:
+ /stylehacks/5.1.1_postcss@8.4.29:
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.9
- postcss: 8.4.27
+ browserslist: 4.21.10
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
- /stylehacks/6.0.0_postcss@8.4.27:
+ /stylehacks/6.0.0_postcss@8.4.29:
resolution: {integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==}
engines: {node: ^14 || ^16 || >=18.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.21.9
- postcss: 8.4.27
+ browserslist: 4.21.10
+ postcss: 8.4.29
postcss-selector-parser: 6.0.13
dev: false
@@ -23030,8 +23052,8 @@ packages:
tailwindcss: 3.3.3
dev: false
- /tailwindcss-animate/1.0.6_tailwindcss@3.3.3:
- resolution: {integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==}
+ /tailwindcss-animate/1.0.7_tailwindcss@3.3.3:
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
dependencies:
@@ -23115,11 +23137,11 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.27
- postcss-import: 15.1.0_postcss@8.4.27
- postcss-js: 4.0.1_postcss@8.4.27
- postcss-load-config: 4.0.1_postcss@8.4.27
- postcss-nested: 6.0.1_postcss@8.4.27
+ postcss: 8.4.29
+ postcss-import: 15.1.0_postcss@8.4.29
+ postcss-js: 4.0.1_postcss@8.4.29
+ postcss-load-config: 4.0.1_postcss@8.4.29
+ postcss-nested: 6.0.1_postcss@8.4.29
postcss-selector-parser: 6.0.13
resolve: 1.22.2
sucrase: 3.32.0
@@ -23251,7 +23273,7 @@ packages:
uglify-js:
optional: true
dependencies:
- '@jridgewell/trace-mapping': 0.3.18
+ '@jridgewell/trace-mapping': 0.3.19
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
@@ -23312,7 +23334,7 @@ packages:
/test-mixer/2.1.0:
resolution: {integrity: sha512-b258NzCyFOZlCNUiPubygccoTt0AAYeJQgFVV5BMQfzFxkSKJuWauehCOmocxM56+2P+Wv1uIIXac90M8KyJLA==}
dependencies:
- '@babel/runtime': 7.22.6
+ '@babel/runtime': 7.22.11
lodash.clonedeep: 4.5.0
object-boolean-combinations: 4.1.0
dev: false
@@ -23530,13 +23552,13 @@ packages:
regexparam: 1.3.0
dev: false
- /ts-api-utils/1.0.2_typescript@5.1.6:
+ /ts-api-utils/1.0.2_typescript@5.2.2:
resolution: {integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.1.6
+ typescript: 5.2.2
dev: false
/ts-dedent/2.2.0:
@@ -23553,7 +23575,7 @@ packages:
code-block-writer: 12.0.0
dev: true
- /ts-pnp/1.2.0_typescript@5.1.6:
+ /ts-pnp/1.2.0_typescript@5.2.2:
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
peerDependencies:
@@ -23562,7 +23584,7 @@ packages:
typescript:
optional: true
dependencies:
- typescript: 5.1.6
+ typescript: 5.2.2
dev: true
/tsconfig-paths-webpack-plugin/4.0.0:
@@ -23598,14 +23620,14 @@ packages:
/tslib/2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- /tsutils/3.21.0_typescript@5.1.6:
+ /tsutils/3.21.0_typescript@5.2.2:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
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'
dependencies:
tslib: 1.14.1
- typescript: 5.1.6
+ typescript: 5.2.2
dev: false
/tty-browserify/0.0.0:
@@ -23761,8 +23783,8 @@ packages:
engines: {node: '>=14.16'}
dev: false
- /type-fest/4.2.0:
- resolution: {integrity: sha512-5zknd7Dss75pMSED270A1RQS3KloqRJA9XbXLe0eCxyw7xXFb3rd+9B0UQ/0E+LQT6lnrLviEolYORlRWamn4w==}
+ /type-fest/4.3.1:
+ resolution: {integrity: sha512-pphNW/msgOUSkJbH58x8sqpq8uQj6b0ZKGxEsLKMUnGorRcDjrUaLS+39+/ub41JNTwrrMyJcUB8+YZs3mbwqw==}
engines: {node: '>=16'}
/type-is/1.6.18:
@@ -23839,8 +23861,8 @@ packages:
hasBin: true
dev: true
- /typescript/5.1.6:
- resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ /typescript/5.2.2:
+ resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
engines: {node: '>=14.17'}
hasBin: true
@@ -24126,16 +24148,6 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /update-browserslist-db/1.0.11_browserslist@4.21.5:
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.5
- escalade: 3.1.1
- picocolors: 1.0.0
-
/update-browserslist-db/1.0.11_browserslist@4.21.9:
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
@@ -24161,7 +24173,7 @@ packages:
is-yarn-global: 0.3.0
latest-version: 5.1.0
pupa: 2.1.1
- semver: 7.5.3
+ semver: 7.5.4
semver-diff: 3.1.1
xdg-basedir: 4.0.0
dev: false
@@ -24171,7 +24183,7 @@ packages:
engines: {node: '>=14.16'}
dependencies:
boxen: 7.1.0
- chalk: 5.2.0
+ chalk: 5.3.0
configstore: 6.0.0
has-yarn: 3.0.0
import-lazy: 4.0.0
@@ -24181,7 +24193,7 @@ packages:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.5.3
+ semver: 7.5.4
semver-diff: 4.0.0
xdg-basedir: 5.1.0
dev: false
@@ -24238,7 +24250,7 @@ packages:
resolution: {integrity: sha512-RtuPeMy7c1UrHwproMZN9gN6kiZ0SvJwRaEzwZY0j9MypEkFqyBaKv176jvlPtg58Zh36bOkS0NFABXMHvvGCA==}
dev: false
- /use-callback-ref/1.3.0_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /use-callback-ref/1.3.0_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
@@ -24248,12 +24260,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
react: 18.2.0
tslib: 2.6.2
dev: false
- /use-sidecar/1.1.2_j3ahe22lw6ac2w6qvqp4kjqnqy:
+ /use-sidecar/1.1.2_gq4reeurwxuj4hvyerswzzqthy:
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -24263,7 +24275,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.20
+ '@types/react': 18.2.21
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
@@ -24427,11 +24439,11 @@ packages:
/victory-vendor/36.6.11:
resolution: {integrity: sha512-nT8kCiJp8dQh8g991J/R5w5eE2KnO8EAIP0xocWlh9l2okngMWglOPoMZzJvek8Q1KUc4XE/mJxTZnvOB1sTYg==}
dependencies:
- '@types/d3-array': 3.0.5
+ '@types/d3-array': 3.0.6
'@types/d3-ease': 3.0.0
'@types/d3-interpolate': 3.0.1
- '@types/d3-scale': 4.0.3
- '@types/d3-shape': 3.1.1
+ '@types/d3-scale': 4.0.4
+ '@types/d3-shape': 3.1.2
'@types/d3-time': 3.0.0
'@types/d3-timer': 3.0.0
d3-array: 3.2.4
@@ -24498,7 +24510,7 @@ packages:
postcss: 8.4.27
rollup: 3.27.2
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/vite/4.4.9_@types+node@18.16.18:
@@ -24534,7 +24546,7 @@ packages:
postcss: 8.4.27
rollup: 3.27.2
optionalDependencies:
- fsevents: 2.3.2
+ fsevents: 2.3.3
dev: true
/vm-browserify/1.1.2:
@@ -24614,8 +24626,8 @@ packages:
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
dev: false
- /web-push/3.6.4:
- resolution: {integrity: sha512-An4nhiYuCPJkD51hXid7OIO3TACJsSUhj6XWDNvCDiLCS5ucEkhPUnh/s+jOWAJUUDASGHkuU8hFHg+mX+4vLQ==}
+ /web-push/3.6.5:
+ resolution: {integrity: sha512-rc/i0LRwA4EAeajRVHQp6+RW+NlCMuk3CgFLb+IR/NJ1RleeNzQ9iwayVHgc4LmcxaaWeslHBM1qLUq1yi0O6A==}
engines: {node: '>= 16'}
hasBin: true
dependencies:
@@ -24636,7 +24648,7 @@ packages:
escape-goat: 3.0.0
htmlparser2: 5.0.1
mime: 2.6.0
- node-fetch: 2.6.12
+ node-fetch: 2.7.0
valid-data-url: 3.0.1
transitivePeerDependencies:
- encoding
@@ -24841,8 +24853,8 @@ packages:
iconv-lite: 0.6.3
dev: true
- /whatwg-fetch/3.6.17:
- resolution: {integrity: sha512-c4ghIvG6th0eudYwKZY5keb81wtFz9/WeAHAoy8+r18kcWlitUIrmGFQ2rWEl4UCKUilD3zCLHOIPheHx5ypRQ==}
+ /whatwg-fetch/3.6.18:
+ resolution: {integrity: sha512-ltN7j66EneWn5TFDO4L9inYC1D+Czsxlrw2SalgjMmEMkLfA5SIZxEFdE6QtHFiiM6Q7WL32c7AkI3w6yxM84Q==}
dev: true
/whatwg-fetch/3.6.2:
@@ -25128,6 +25140,7 @@ packages:
/yallist/2.1.2:
resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
+ dev: true
/yallist/3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}