diff --git a/apps/builder/package.json b/apps/builder/package.json index 13dc556e0..74fca9863 100644 --- a/apps/builder/package.json +++ b/apps/builder/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "@chakra-ui/css-reset": "2.0.3", - "@chakra-ui/react": "^2.2.6", + "@chakra-ui/react": "^2.2.8", "@codemirror/lang-css": "^6.0.0", "@codemirror/lang-html": "^6.1.0", "@codemirror/lang-javascript": "^6.0.2", @@ -27,19 +27,19 @@ "@emotion/styled": "^11.10.0", "@giphy/js-fetch-api": "4.4.0", "@giphy/js-types": "^4.2.1", - "@giphy/react-components": "6.0.0", + "@giphy/react-components": "6.1.1", "@googleapis/drive": "^3.0.1", - "@sentry/nextjs": "7.9.0", + "@sentry/nextjs": "7.11.1", "@stripe/stripe-js": "1.35.0", "@tanstack/react-table": "8.5.11", - "@udecode/plate-basic-marks": "16.0.0", + "@udecode/plate-basic-marks": "16.3.0", "@udecode/plate-common": "^7.0.2", - "@udecode/plate-core": "16.0.0", - "@udecode/plate-link": "16.0.0", - "@udecode/plate-serializer-html": "16.0.0", - "@udecode/plate-ui-link": "16.0.0", - "@udecode/plate-ui-toolbar": "16.0.0", - "aws-sdk": "2.1189.0", + "@udecode/plate-core": "16.3.0", + "@udecode/plate-link": "16.3.0", + "@udecode/plate-serializer-html": "16.3.0", + "@udecode/plate-ui-link": "16.3.0", + "@udecode/plate-ui-toolbar": "16.3.0", + "aws-sdk": "2.1199.0", "bot-engine": "workspace:*", "browser-image-compression": "^2.0.0", "canvas-confetti": "^1.5.1", @@ -49,8 +49,8 @@ "dequal": "^2.0.3", "emojilib": "3.0.7", "focus-visible": "^5.2.0", - "framer-motion": "7.0.0", - "google-auth-library": "^8.1.1", + "framer-motion": "7.2.0", + "google-auth-library": "^8.3.0", "google-spreadsheet": "^3.3.0", "got": "12.3.1", "htmlparser2": "^8.0.1", @@ -61,9 +61,9 @@ "micro": "9.4.1", "micro-cors": "^0.1.1", "minio": "7.0.30", - "next": "12.2.4", + "next": "12.2.5", "next-auth": "4.10.3", - "nodemailer": "^6.7.7", + "nodemailer": "^6.7.8", "nprogress": "^0.2.0", "papaparse": "^5.3.2", "prettier": "2.7.1", @@ -75,7 +75,7 @@ "slate-history": "^0.66.0", "slate-hyperscript": "^0.77.0", "slate-react": "0.82.0", - "stripe": "10.0.0", + "stripe": "10.3.0", "styled-components": "^5.3.5", "svg-round-corners": "^0.3.0", "swr": "^1.3.0", @@ -85,13 +85,14 @@ }, "devDependencies": { "@babel/core": "7.18.10", + "@chakra-ui/styled-system": "^2.2.7", "@playwright/test": "1.25.0", "@types/canvas-confetti": "^1.4.3", "@types/google-spreadsheet": "^3.3.0", "@types/jsonwebtoken": "8.5.8", "@types/micro-cors": "^0.1.2", "@types/minio": "^7.0.13", - "@types/node": "18.6.5", + "@types/node": "18.7.8", "@types/nodemailer": "6.4.5", "@types/nprogress": "^0.2.0", "@types/papaparse": "5.3.3", @@ -100,12 +101,12 @@ "@types/react": "^18.0.17", "@types/react-table": "^7.7.12", "@types/tinycolor2": "^1.4.3", - "@typescript-eslint/eslint-plugin": "5.33.0", - "@typescript-eslint/parser": "5.33.0", + "@typescript-eslint/eslint-plugin": "5.33.1", + "@typescript-eslint/parser": "5.33.1", "db": "workspace:*", "dotenv": "^16.0.1", - "eslint": "8.21.0", - "eslint-config-next": "12.2.4", + "eslint": "8.22.0", + "eslint-config-next": "12.2.5", "eslint-plugin-react": "^7.30.1", "models": "workspace:*", "typescript": "^4.7.4", diff --git a/apps/builder/playwright/tests/integrations/sendEmail.spec.ts b/apps/builder/playwright/tests/integrations/sendEmail.spec.ts index 2b77958b4..c3b4f9203 100644 --- a/apps/builder/playwright/tests/integrations/sendEmail.spec.ts +++ b/apps/builder/playwright/tests/integrations/sendEmail.spec.ts @@ -16,7 +16,8 @@ test.describe('Send email block', () => { !process.env.SMTP_PORT || !process.env.SMTP_SECURE || !process.env.SMTP_HOST || - !process.env.SMTP_PASSWORD + !process.env.SMTP_PASSWORD || + !process.env.SMTP_FROM ) throw new Error('SMTP_ env vars are missing') await importTypebotInDatabase( @@ -31,9 +32,7 @@ test.describe('Send email block', () => { await page.goto(`/typebots/${typebotId}/edit`) await page.click('text=Configure...') - await page.click( - `text=${process.env.NEXT_PUBLIC_SMTP_FROM?.match(/\<(.*)\>/)?.pop()}` - ) + await page.click(`text=${process.env.SMTP_FROM}`) await page.click('text=Connect new') const createButton = page.locator('button >> text=Create') await expect(createButton).toBeDisabled() diff --git a/apps/builder/playwright/tests/theme.spec.ts b/apps/builder/playwright/tests/theme.spec.ts index 8409d434b..816a54cbf 100644 --- a/apps/builder/playwright/tests/theme.spec.ts +++ b/apps/builder/playwright/tests/theme.spec.ts @@ -26,6 +26,9 @@ test.describe.parallel('Theme page', () => { } ) await page.goto(`/typebots/${typebotId}/theme`) + await expect( + typebotViewer(page).locator('button >> text="Go"') + ).toBeVisible() await page.click('button:has-text("General")') // Font @@ -60,6 +63,9 @@ test.describe.parallel('Theme page', () => { } catch {} await page.goto(`/typebots/${typebotId}/theme`) + await expect( + typebotViewer(page).locator('button >> text="Go"') + ).toBeVisible() await page.click('button:has-text("Chat")') // Host avatar @@ -175,6 +181,9 @@ test.describe.parallel('Theme page', () => { } ) await page.goto(`/typebots/${typebotId}/theme`) + await expect( + typebotViewer(page).locator('button >> text="Go"') + ).toBeVisible() await page.click('button:has-text("Custom CSS")') await page.fill( 'div[role="textbox"]', diff --git a/apps/landing-page/package.json b/apps/landing-page/package.json index 6aabf5570..e30a34045 100644 --- a/apps/landing-page/package.json +++ b/apps/landing-page/package.json @@ -8,30 +8,30 @@ "analyze": "cross-env ANALYZE=true next build" }, "dependencies": { - "@chakra-ui/icon": "^3.0.6", - "@chakra-ui/react": "2.2.6", + "@chakra-ui/icon": "^3.0.8", + "@chakra-ui/react": "2.2.8", "@emotion/react": "11.10.0", "@emotion/styled": "11.10.0", "aos": "^2.3.4", "bot-engine": "*", "focus-visible": "^5.2.0", - "framer-motion": "7.0.0", + "framer-motion": "7.2.0", "models": "*", - "next": "12.2.4", + "next": "12.2.5", "react": "18.2.0", "react-dom": "18.2.0", "utils": "*" }, "devDependencies": { "@babel/core": "7.18.10", - "@chakra-ui/styled-system": "^2.2.5", - "@next/bundle-analyzer": "12.2.4", + "@chakra-ui/styled-system": "^2.2.7", + "@next/bundle-analyzer": "12.2.5", "@types/aos": "^3.0.4", - "@types/node": "18.6.5", + "@types/node": "18.7.8", "@types/react": "^18.0.17", "autoprefixer": "10.4.8", "cross-env": "^7.0.3", - "eslint": "8.21.0", + "eslint": "8.22.0", "postcss": "8.4.16", "prettier": "2.7.1", "typescript": "^4.7.4" diff --git a/apps/viewer/package.json b/apps/viewer/package.json index 538b70f4a..fd3cbeccf 100644 --- a/apps/viewer/package.json +++ b/apps/viewer/package.json @@ -12,38 +12,39 @@ "test:open": "PWDEBUG=1 pnpm playwright test" }, "dependencies": { - "@sentry/nextjs": "7.9.0", - "aws-sdk": "2.1190.0", + "@sentry/nextjs": "7.11.1", + "aws-sdk": "2.1199.0", "bot-engine": "*", "cors": "^2.8.5", "cuid": "^2.1.8", "db": "workspace:*", "google-spreadsheet": "^3.3.0", "got": "12.3.1", - "next": "12.2.4", - "nodemailer": "^6.7.7", + "next": "12.2.5", + "nodemailer": "^6.7.8", "qs": "^6.11.0", "react": "^18.2.0", "react-dom": "^18.2.0", "sanitize-html": "^2.7.1", - "stripe": "10.0.0" + "stripe": "10.3.0" }, "devDependencies": { - "@types/papaparse": "5.3.3", + "@babel/preset-env": "^7.18.10", "@playwright/test": "1.25.0", - "eslint-plugin-react": "^7.30.1", "@types/cors": "^2.8.12", "@types/google-spreadsheet": "^3.3.0", - "@types/node": "18.6.5", + "@types/node": "18.7.8", "@types/nodemailer": "6.4.5", + "@types/papaparse": "5.3.3", "@types/qs": "^6.9.7", "@types/react": "^18.0.17", "@types/sanitize-html": "2.6.2", "@typescript-eslint/eslint-plugin": "5.33.0", - "@typescript-eslint/parser": "5.33.0", - "eslint": "8.21.0", - "eslint-config-next": "12.2.4", - "google-auth-library": "^8.1.1", + "@typescript-eslint/parser": "5.33.1", + "eslint": "8.22.0", + "eslint-config-next": "12.2.5", + "eslint-plugin-react": "^7.30.1", + "google-auth-library": "^8.3.0", "models": "workspace:*", "next-transpile-modules": "^9.0.0", "papaparse": "^5.3.2", diff --git a/apps/viewer/playwright.config.ts b/apps/viewer/playwright.config.ts index bc1f82882..3a1f99d8d 100644 --- a/apps/viewer/playwright.config.ts +++ b/apps/viewer/playwright.config.ts @@ -2,7 +2,9 @@ import { devices, PlaywrightTestConfig } from '@playwright/test' import path from 'path' // eslint-disable-next-line @typescript-eslint/no-var-requires -require('dotenv').config({ path: path.join(__dirname, '.env.local') }) +require('dotenv').config({ + path: path.join(__dirname, 'playwright/.env'), +}) const config: PlaywrightTestConfig = { globalSetup: require.resolve(path.join(__dirname, 'playwright/global-setup')), @@ -11,14 +13,13 @@ const config: PlaywrightTestConfig = { expect: { timeout: 5000, }, - retries: process.env.NO_RETRIES ? 0 : 2, + retries: process.env.NO_RETRIES ? 0 : 1, workers: process.env.CI ? 1 : 3, reporter: 'html', maxFailures: process.env.CI ? 10 : undefined, use: { actionTimeout: 0, - baseURL: process.env.NEXT_PUBLIC_VIEWER_URL, - storageState: path.join(__dirname, 'playwright/proUser.json'), + baseURL: process.env.VIEWER_URL, trace: 'on-first-retry', video: 'retain-on-failure', locale: 'en-US', diff --git a/apps/viewer/playwright/.env.example b/apps/viewer/playwright/.env.example new file mode 100644 index 000000000..5788f855b --- /dev/null +++ b/apps/viewer/playwright/.env.example @@ -0,0 +1,4 @@ +VIEWER_URL=http://localhost:3001 +BUILDER_URL=http://localhost:3000 +DATABASE_URL=postgresql://postgres:typebot@localhost:5432/typebot +ENCRYPTION_SECRET=SgVkYp2s5v8y/B?E(H+MbQeThWmZq4t6 #256-bits secret (can be generated here: https://www.allkeysgenerator.com/Random/Security-Encryption-Key-Generator.aspx) \ No newline at end of file diff --git a/apps/viewer/playwright/proUser.json b/apps/viewer/playwright/proUser.json deleted file mode 100644 index 9eae6d8b7..000000000 --- a/apps/viewer/playwright/proUser.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "cookies": [], - "origins": [ - { - "origin": "http://localhost:3000", - "localStorage": [ - { - "name": "authenticatedUser", - "value": "{\"id\":\"proUser\",\"name\":\"Pro user\",\"email\":\"pro-user@email.com\",\"emailVerified\":null,\"image\":\"https://avatars.githubusercontent.com/u/16015833?v=4\",\"plan\":\"PRO\",\"stripeId\":null}" - }, - { - "name": "typebot-20-modal", - "value": "hide" - } - ] - } - ] -} diff --git a/apps/viewer/playwright/services/browser.ts b/apps/viewer/playwright/services/browser.ts new file mode 100644 index 000000000..93c3a37de --- /dev/null +++ b/apps/viewer/playwright/services/browser.ts @@ -0,0 +1,12 @@ +import { Page } from '@playwright/test' + +export const mockSessionApiCalls = (page: Page) => + page.route(`${process.env.BUILDER_URL}/api/auth/session`, (route) => { + if (route.request().method() === 'GET') { + return route.fulfill({ + status: 200, + body: '{"user":{"id":"proUser","name":"Pro user","email":"pro-user@email.com","emailVerified":null,"image":"https://avatars.githubusercontent.com/u/16015833?v=4","stripeId":null,"graphNavigation": "TRACKPAD"}}', + }) + } + return route.continue() + }) diff --git a/apps/viewer/playwright/tests/fileUpload.spec.ts b/apps/viewer/playwright/tests/fileUpload.spec.ts index ab3e8b79b..fd38d22ba 100644 --- a/apps/viewer/playwright/tests/fileUpload.spec.ts +++ b/apps/viewer/playwright/tests/fileUpload.spec.ts @@ -6,6 +6,9 @@ import { typebotViewer } from '../services/selectorUtils' import { importTypebotInDatabase } from '../services/database' import { readFileSync } from 'fs' import { isDefined } from 'utils' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('should work as expected', async ({ page, browser }) => { const typebotId = cuid() @@ -26,7 +29,7 @@ test('should work as expected', async ({ page, browser }) => { await expect( typebotViewer(page).locator(`text="3 files uploaded"`) ).toBeVisible() - await page.goto(`http://localhost:3000/typebots/${typebotId}/results`) + await page.goto(`${process.env.BUILDER_URL}/typebots/${typebotId}/results`) await expect(page.locator('text="api.json"')).toHaveAttribute( 'href', /.+\/api\.json/ diff --git a/apps/viewer/playwright/tests/hugeBlock.spec.ts b/apps/viewer/playwright/tests/hugeBlock.spec.ts index f1a74967c..25c064a1f 100644 --- a/apps/viewer/playwright/tests/hugeBlock.spec.ts +++ b/apps/viewer/playwright/tests/hugeBlock.spec.ts @@ -3,6 +3,9 @@ import path from 'path' import { importTypebotInDatabase } from '../services/database' import { typebotViewer } from '../services/selectorUtils' import cuid from 'cuid' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('should work as expected', async ({ page }) => { const typebotId = cuid() @@ -16,7 +19,7 @@ test('should work as expected', async ({ page }) => { await typebotViewer(page).locator('input').fill('26') await typebotViewer(page).locator('input').press('Enter') await typebotViewer(page).locator('button >> text=Yes').click() - await page.goto(`http://localhost:3000/typebots/${typebotId}/results`) + await page.goto(`${process.env.BUILDER_URL}/typebots/${typebotId}/results`) await expect(page.locator('text="Baptiste"')).toBeVisible() await expect(page.locator('text="26"')).toBeVisible() await expect(page.locator('text="Yes"')).toBeVisible() diff --git a/apps/viewer/playwright/tests/metadata.spec.ts b/apps/viewer/playwright/tests/metadata.spec.ts index 2d7d2be63..b67eb92e7 100644 --- a/apps/viewer/playwright/tests/metadata.spec.ts +++ b/apps/viewer/playwright/tests/metadata.spec.ts @@ -11,6 +11,9 @@ import { } from 'models' import { typebotViewer } from '../services/selectorUtils' import cuid from 'cuid' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('Should correctly parse metadata', async ({ page }) => { const typebotId = cuid() diff --git a/apps/viewer/playwright/tests/predefinedVariables.spec.ts b/apps/viewer/playwright/tests/predefinedVariables.spec.ts index 7c70c3fa8..fc7369124 100644 --- a/apps/viewer/playwright/tests/predefinedVariables.spec.ts +++ b/apps/viewer/playwright/tests/predefinedVariables.spec.ts @@ -3,6 +3,9 @@ import { importTypebotInDatabase } from '../services/database' import cuid from 'cuid' import path from 'path' import { typebotViewer } from '../services/selectorUtils' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('should correctly be injected', async ({ page }) => { const typebotId = cuid() diff --git a/apps/viewer/playwright/tests/sendEmail.spec.ts b/apps/viewer/playwright/tests/sendEmail.spec.ts index 68d4371b4..41c90bc05 100644 --- a/apps/viewer/playwright/tests/sendEmail.spec.ts +++ b/apps/viewer/playwright/tests/sendEmail.spec.ts @@ -7,17 +7,20 @@ import cuid from 'cuid' import path from 'path' import { typebotViewer } from '../services/selectorUtils' import { SmtpCredentialsData } from 'models' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) const mockSmtpCredentials: SmtpCredentialsData = { from: { - email: 'tobin.tillman65@ethereal.email', - name: 'John Smith', + email: 'kimberly.boyer36@ethereal.email', + name: 'Kimberly Boyer', }, host: 'smtp.ethereal.email', port: 587, - isTlsEnabled: false, - username: 'tobin.tillman65@ethereal.email', - password: 'Ty9BcwCBrK6w8AG2hx', + isTlsEnabled: true, + username: 'kimberly.boyer36@ethereal.email', + password: '4jvjGUgxYKRjbk15tW', } test('should send an email', async ({ page }) => { @@ -36,13 +39,13 @@ test('should send an email', async ({ page }) => { const { previewUrl } = await response.json() await page.goto(previewUrl) await expect(page.locator('text="Hey!"')).toBeVisible() - await expect(page.locator('text="John Smith"')).toBeVisible() + await expect(page.locator('text="Kimberly Boyer"')).toBeVisible() await expect(page.locator('text="" >> nth=0')).toBeVisible() await expect(page.locator('text="" >> nth=0')).toBeVisible() await expect( page.locator('text="" >> nth=0') ).toBeVisible() - await page.goto(`http://localhost:3000/typebots/${typebotId}/results`) + await page.goto(`${process.env.BUILDER_URL}/typebots/${typebotId}/results`) await page.click('text="See logs"') await expect(page.locator('text="Email successfully sent"')).toBeVisible() }) diff --git a/apps/viewer/playwright/tests/settings.spec.ts b/apps/viewer/playwright/tests/settings.spec.ts index 98b18c0c6..5c9147bc2 100644 --- a/apps/viewer/playwright/tests/settings.spec.ts +++ b/apps/viewer/playwright/tests/settings.spec.ts @@ -10,6 +10,9 @@ import { defaultTextInputOptions, InputBlockType, } from 'models' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('Result should be in storage by default', async ({ page }) => { const typebotId = cuid() diff --git a/apps/viewer/playwright/tests/typebotLink.spec.ts b/apps/viewer/playwright/tests/typebotLink.spec.ts index 6157bd068..a4fe1236e 100644 --- a/apps/viewer/playwright/tests/typebotLink.spec.ts +++ b/apps/viewer/playwright/tests/typebotLink.spec.ts @@ -2,6 +2,9 @@ import test, { expect } from '@playwright/test' import path from 'path' import { importTypebotInDatabase } from '../services/database' import { typebotViewer } from '../services/selectorUtils' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('should work as expected', async ({ page }) => { const typebotId = 'cl0ibhi7s0018n21aarlmg0cm' @@ -24,6 +27,6 @@ test('should work as expected', async ({ page }) => { resp.status() === 200 && resp.request().method() === 'PUT' ) - await page.goto(`http://localhost:3000/typebots/${typebotId}/results`) + await page.goto(`${process.env.BUILDER_URL}/typebots/${typebotId}/results`) await expect(page.locator('text=Hello there!')).toBeVisible() }) diff --git a/apps/viewer/playwright/tests/webhook.spec.ts b/apps/viewer/playwright/tests/webhook.spec.ts index 53672ea61..7d1294870 100644 --- a/apps/viewer/playwright/tests/webhook.spec.ts +++ b/apps/viewer/playwright/tests/webhook.spec.ts @@ -4,6 +4,9 @@ import cuid from 'cuid' import path from 'path' import { typebotViewer } from '../services/selectorUtils' import { HttpMethod } from 'models' +import { mockSessionApiCalls } from 'playwright/services/browser' + +test.beforeEach(({ page }) => mockSessionApiCalls(page)) test('should execute webhooks properly', async ({ page }) => { const typebotId = cuid() diff --git a/packages/bot-engine/package.json b/packages/bot-engine/package.json index ff976e2fb..0a006f0f7 100644 --- a/packages/bot-engine/package.json +++ b/packages/bot-engine/package.json @@ -11,7 +11,7 @@ "prop-types": "^15.8.1", "qs": "^6.11.0", "react-frame-component": "5.2.3", - "react-phone-number-input": "3.2.6", + "react-phone-number-input": "3.2.8", "react-scroll": "^1.8.7", "react-transition-group": "4.4.5", "resize-observer": "^1.0.4" @@ -27,11 +27,11 @@ "@types/react-scroll": "^1.8.4", "@types/react-transition-group": "^4.4.5", "@typescript-eslint/eslint-plugin": "5.33.0", - "@typescript-eslint/parser": "5.33.0", + "@typescript-eslint/parser": "5.33.1", "autoprefixer": "10.4.8", "db": "workspace:*", - "eslint": "8.21.0", - "eslint-config-next": "12.2.4", + "eslint": "8.22.0", + "eslint-config-next": "12.2.5", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "7.30.1", @@ -40,7 +40,7 @@ "prettier": "2.7.1", "react": "^18.2.0", "react-dom": "^18.2.0", - "rollup": "2.77.2", + "rollup": "2.78.1", "rollup-plugin-dts": "^4.2.2", "rollup-plugin-peer-deps-external": "^2.2.4", "rollup-plugin-postcss": "^4.0.2", diff --git a/packages/db/package.json b/packages/db/package.json index eb32f3d3f..3731d7d70 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -5,12 +5,12 @@ "main": "./index.ts", "types": "./index.ts", "devDependencies": { - "prisma": "4.1.1", + "prisma": "4.2.1", "typescript": "^4.7.4", "dotenv-cli": "6.0.0" }, "dependencies": { - "@prisma/client": "4.1.1" + "@prisma/client": "4.2.1" }, "scripts": { "dx": "dotenv -e ../../apps/builder/.env.local prisma db push && pnpm generate:schema && pnpm start:sutdio ", diff --git a/packages/models/package.json b/packages/models/package.json index 25be02927..8c15c76e8 100644 --- a/packages/models/package.json +++ b/packages/models/package.json @@ -11,14 +11,14 @@ "@rollup/plugin-commonjs": "22.0.2", "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-typescript": "8.3.4", - "rollup": "2.77.2", + "rollup": "2.78.1", "rollup-plugin-dts": "^4.2.2", "rollup-plugin-peer-deps-external": "^2.2.4", - "next": "12.2.4", + "next": "12.2.5", "db": "workspace:*" }, "dependencies": { - "zod": "^3.17.10" + "zod": "^3.18.0" }, "peerDependencies": { "next": "^12.0.0", diff --git a/packages/typebot-js/package.json b/packages/typebot-js/package.json index d056394e5..b086fd9a4 100644 --- a/packages/typebot-js/package.json +++ b/packages/typebot-js/package.json @@ -11,19 +11,19 @@ }, "devDependencies": { "@rollup/plugin-typescript": "8.3.4", - "@types/jest": "^28.1.6", + "@types/jest": "^28.1.7", "@typescript-eslint/eslint-plugin": "5.32.0", - "@typescript-eslint/parser": "5.32.0", - "eslint": "8.21.0", + "@typescript-eslint/parser": "5.33.1", + "eslint": "8.22.0", "eslint-plugin-functional": "^4.2.2", - "eslint-plugin-jest": "26.7.0", + "eslint-plugin-jest": "26.8.5", "eslint-plugin-prettier": "^4.2.1", "jest": "^28.1.3", "prettier": "2.7.1", - "rollup": "2.77.2", + "rollup": "2.78.1", "rollup-plugin-styles": "^4.0.0", "rollup-plugin-terser": "^7.0.2", - "ts-jest": "^28.0.7", + "ts-jest": "^28.0.8", "tslib": "^2.4.0", "typescript": "^4.7.4" }, diff --git a/packages/utils/package.json b/packages/utils/package.json index 5ac66005d..df4cb4e33 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -10,14 +10,14 @@ "@rollup/plugin-commonjs": "22.0.2", "@rollup/plugin-node-resolve": "^13.3.0", "@rollup/plugin-typescript": "8.3.4", - "rollup": "2.77.2", + "rollup": "2.78.1", "rollup-plugin-dts": "^4.2.2", "rollup-plugin-peer-deps-external": "^2.2.4", "tslib": "^2.4.0", "typescript": "^4.7.4", - "aws-sdk": "2.1190.0", + "aws-sdk": "2.1199.0", "models": "workspace:*", - "next": "12.2.4" + "next": "12.2.5" }, "peerDependencies": { "aws-sdk": "^2.1152.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b0bcee138..9b8f14507 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,7 +12,8 @@ importers: specifiers: '@babel/core': 7.18.10 '@chakra-ui/css-reset': 2.0.3 - '@chakra-ui/react': ^2.2.6 + '@chakra-ui/react': ^2.2.8 + '@chakra-ui/styled-system': ^2.2.7 '@codemirror/lang-css': ^6.0.0 '@codemirror/lang-html': ^6.1.0 '@codemirror/lang-javascript': ^6.0.2 @@ -26,10 +27,10 @@ importers: '@emotion/styled': ^11.10.0 '@giphy/js-fetch-api': 4.4.0 '@giphy/js-types': ^4.2.1 - '@giphy/react-components': 6.0.0 + '@giphy/react-components': 6.1.1 '@googleapis/drive': ^3.0.1 '@playwright/test': 1.25.0 - '@sentry/nextjs': 7.9.0 + '@sentry/nextjs': 7.11.1 '@stripe/stripe-js': 1.35.0 '@tanstack/react-table': 8.5.11 '@types/canvas-confetti': ^1.4.3 @@ -37,7 +38,7 @@ importers: '@types/jsonwebtoken': 8.5.8 '@types/micro-cors': ^0.1.2 '@types/minio': ^7.0.13 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/nodemailer': 6.4.5 '@types/nprogress': ^0.2.0 '@types/papaparse': 5.3.3 @@ -46,16 +47,16 @@ importers: '@types/react': ^18.0.17 '@types/react-table': ^7.7.12 '@types/tinycolor2': ^1.4.3 - '@typescript-eslint/eslint-plugin': 5.33.0 - '@typescript-eslint/parser': 5.33.0 - '@udecode/plate-basic-marks': 16.0.0 + '@typescript-eslint/eslint-plugin': 5.33.1 + '@typescript-eslint/parser': 5.33.1 + '@udecode/plate-basic-marks': 16.3.0 '@udecode/plate-common': ^7.0.2 - '@udecode/plate-core': 16.0.0 - '@udecode/plate-link': 16.0.0 - '@udecode/plate-serializer-html': 16.0.0 - '@udecode/plate-ui-link': 16.0.0 - '@udecode/plate-ui-toolbar': 16.0.0 - aws-sdk: 2.1189.0 + '@udecode/plate-core': 16.3.0 + '@udecode/plate-link': 16.3.0 + '@udecode/plate-serializer-html': 16.3.0 + '@udecode/plate-ui-link': 16.3.0 + '@udecode/plate-ui-toolbar': 16.3.0 + aws-sdk: 2.1199.0 bot-engine: workspace:* browser-image-compression: ^2.0.0 canvas-confetti: ^1.5.1 @@ -66,12 +67,12 @@ importers: dequal: ^2.0.3 dotenv: ^16.0.1 emojilib: 3.0.7 - eslint: 8.21.0 - eslint-config-next: 12.2.4 + eslint: 8.22.0 + eslint-config-next: 12.2.5 eslint-plugin-react: ^7.30.1 focus-visible: ^5.2.0 - framer-motion: 7.0.0 - google-auth-library: ^8.1.1 + framer-motion: 7.2.0 + google-auth-library: ^8.3.0 google-spreadsheet: ^3.3.0 got: 12.3.1 htmlparser2: ^8.0.1 @@ -83,9 +84,9 @@ importers: micro-cors: ^0.1.1 minio: 7.0.30 models: workspace:* - next: 12.2.4 + next: 12.2.5 next-auth: 4.10.3 - nodemailer: ^6.7.7 + nodemailer: ^6.7.8 nprogress: ^0.2.0 papaparse: ^5.3.2 prettier: 2.7.1 @@ -97,7 +98,7 @@ importers: slate-history: ^0.66.0 slate-hyperscript: ^0.77.0 slate-react: 0.82.0 - stripe: 10.0.0 + stripe: 10.3.0 styled-components: ^5.3.5 svg-round-corners: ^0.3.0 swr: ^1.3.0 @@ -108,9 +109,9 @@ importers: utils: workspace:* dependencies: '@chakra-ui/css-reset': 2.0.3_g566eayvhbit5eqxocdac5mhdm - '@chakra-ui/react': 2.2.6_4kylzkmxqzeuwi4n5q2ftjtep4 - '@codemirror/lang-css': 6.0.0 - '@codemirror/lang-html': 6.1.0 + '@chakra-ui/react': 2.2.8_4tepo34aiwxoce74yrvdsfmsmq + '@codemirror/lang-css': 6.0.0_5iuszxvunsfdgagvpwnubh4wt4 + '@codemirror/lang-html': 6.1.0_@codemirror+view@6.1.0 '@codemirror/lang-javascript': 6.0.2 '@codemirror/lang-json': 6.0.0 '@codemirror/lint': 6.0.0 @@ -122,30 +123,30 @@ importers: '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly '@giphy/js-fetch-api': 4.4.0 '@giphy/js-types': 4.2.1 - '@giphy/react-components': 6.0.0_dvp6wxm7rs4sirs67lhxth6k7q + '@giphy/react-components': 6.1.1_dvp6wxm7rs4sirs67lhxth6k7q '@googleapis/drive': 3.0.1 - '@sentry/nextjs': 7.9.0_next@12.2.4+react@18.2.0 + '@sentry/nextjs': 7.11.1_xhgugymgk3ncoadul5ja7muiri '@stripe/stripe-js': 1.35.0 '@tanstack/react-table': 8.5.11_biqbaboplfbrettd7655fr4n2y - '@udecode/plate-basic-marks': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-basic-marks': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq '@udecode/plate-common': 7.0.2_y76phs2t5jz4pnmukbpl4xz6se - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-link': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-serializer-html': 16.0.0_am3zbczju7xetfufwa2asgwf3m - '@udecode/plate-ui-link': 16.0.0_fh3nb6nmkkor47kq743xqw3oc4 - '@udecode/plate-ui-toolbar': 16.0.0_fh3nb6nmkkor47kq743xqw3oc4 - aws-sdk: 2.1189.0 + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-link': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-serializer-html': 16.3.0_am3zbczju7xetfufwa2asgwf3m + '@udecode/plate-ui-link': 16.3.0_fh3nb6nmkkor47kq743xqw3oc4 + '@udecode/plate-ui-toolbar': 16.3.0_fh3nb6nmkkor47kq743xqw3oc4 + aws-sdk: 2.1199.0 bot-engine: link:../../packages/bot-engine browser-image-compression: 2.0.0 canvas-confetti: 1.5.1 - codemirror: 6.0.1 + codemirror: 6.0.1_@lezer+common@1.0.0 cuid: 2.1.8 deep-object-diff: 1.1.7 dequal: 2.0.3 emojilib: 3.0.7 focus-visible: 5.2.0 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y - google-auth-library: 8.1.1 + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y + google-auth-library: 8.3.0 google-spreadsheet: 3.3.0 got: 12.3.1 htmlparser2: 8.0.1 @@ -156,9 +157,9 @@ importers: micro: 9.4.1 micro-cors: 0.1.1 minio: 7.0.30 - next: 12.2.4_twoewwu6sg7cdf3ao6njtbftne - next-auth: 4.10.3_mnimnj2pdeccz5uivmdmoly3tq - nodemailer: 6.7.7 + next: 12.2.5_twoewwu6sg7cdf3ao6njtbftne + next-auth: 4.10.3_br325yun545l5vwdnneu6tztxq + nodemailer: 6.7.8 nprogress: 0.2.0 papaparse: 5.3.2 prettier: 2.7.1 @@ -170,7 +171,7 @@ importers: slate-history: 0.66.0_slate@0.82.0 slate-hyperscript: 0.77.0_slate@0.82.0 slate-react: 0.82.0_bg222ifi7it6hblyfyz26virpa - stripe: 10.0.0 + stripe: 10.3.0 styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba svg-round-corners: 0.3.0 swr: 1.3.0_react@18.2.0 @@ -179,13 +180,14 @@ importers: use-debounce: 8.0.3_react@18.2.0 devDependencies: '@babel/core': 7.18.10 + '@chakra-ui/styled-system': 2.2.7 '@playwright/test': 1.25.0 '@types/canvas-confetti': 1.4.3 '@types/google-spreadsheet': 3.3.0 '@types/jsonwebtoken': 8.5.8 '@types/micro-cors': 0.1.2 '@types/minio': 7.0.13 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/nodemailer': 6.4.5 '@types/nprogress': 0.2.0 '@types/papaparse': 5.3.3 @@ -194,13 +196,13 @@ importers: '@types/react': 18.0.17 '@types/react-table': 7.7.12 '@types/tinycolor2': 1.4.3 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/eslint-plugin': 5.33.1_vsoshirnpb7xw6mr7xomgfas2i + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq db: link:../../packages/db dotenv: 16.0.1 - eslint: 8.21.0 - eslint-config-next: 12.2.4_qugx7qdu5zevzvxaiqyxfiwquq - eslint-plugin-react: 7.30.1_eslint@8.21.0 + eslint: 8.22.0 + eslint-config-next: 12.2.5_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint-plugin-react: 7.30.1_eslint@8.22.0 models: link:../../packages/models typescript: 4.7.4 utils: link:../../packages/utils @@ -245,24 +247,24 @@ importers: apps/landing-page: specifiers: '@babel/core': 7.18.10 - '@chakra-ui/icon': ^3.0.6 - '@chakra-ui/react': 2.2.6 - '@chakra-ui/styled-system': ^2.2.5 + '@chakra-ui/icon': ^3.0.8 + '@chakra-ui/react': 2.2.8 + '@chakra-ui/styled-system': ^2.2.7 '@emotion/react': 11.10.0 '@emotion/styled': 11.10.0 - '@next/bundle-analyzer': 12.2.4 + '@next/bundle-analyzer': 12.2.5 '@types/aos': ^3.0.4 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/react': ^18.0.17 aos: ^2.3.4 autoprefixer: 10.4.8 bot-engine: '*' cross-env: ^7.0.3 - eslint: 8.21.0 + eslint: 8.22.0 focus-visible: ^5.2.0 - framer-motion: 7.0.0 + framer-motion: 7.2.0 models: '*' - next: 12.2.4 + next: 12.2.5 postcss: 8.4.16 prettier: 2.7.1 react: 18.2.0 @@ -270,102 +272,104 @@ importers: typescript: ^4.7.4 utils: '*' dependencies: - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react': 2.2.6_4kylzkmxqzeuwi4n5q2ftjtep4 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react': 2.2.8_4tepo34aiwxoce74yrvdsfmsmq '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly aos: 2.3.4 bot-engine: link:../../packages/bot-engine focus-visible: 5.2.0 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y models: link:../../packages/models - next: 12.2.4_twoewwu6sg7cdf3ao6njtbftne + next: 12.2.5_twoewwu6sg7cdf3ao6njtbftne react: 18.2.0 react-dom: 18.2.0_react@18.2.0 utils: link:../../packages/utils devDependencies: '@babel/core': 7.18.10 - '@chakra-ui/styled-system': 2.2.5 - '@next/bundle-analyzer': 12.2.4 + '@chakra-ui/styled-system': 2.2.7 + '@next/bundle-analyzer': 12.2.5 '@types/aos': 3.0.4 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/react': 18.0.17 autoprefixer: 10.4.8_postcss@8.4.16 cross-env: 7.0.3 - eslint: 8.21.0 + eslint: 8.22.0 postcss: 8.4.16 prettier: 2.7.1 typescript: 4.7.4 apps/viewer: specifiers: + '@babel/preset-env': ^7.18.10 '@playwright/test': 1.25.0 - '@sentry/nextjs': 7.9.0 + '@sentry/nextjs': 7.11.1 '@types/cors': ^2.8.12 '@types/google-spreadsheet': ^3.3.0 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/nodemailer': 6.4.5 '@types/papaparse': 5.3.3 '@types/qs': ^6.9.7 '@types/react': ^18.0.17 '@types/sanitize-html': 2.6.2 '@typescript-eslint/eslint-plugin': 5.33.0 - '@typescript-eslint/parser': 5.33.0 - aws-sdk: 2.1190.0 + '@typescript-eslint/parser': 5.33.1 + aws-sdk: 2.1199.0 bot-engine: '*' cors: ^2.8.5 cuid: ^2.1.8 db: workspace:* - eslint: 8.21.0 - eslint-config-next: 12.2.4 + eslint: 8.22.0 + eslint-config-next: 12.2.5 eslint-plugin-react: ^7.30.1 - google-auth-library: ^8.1.1 + google-auth-library: ^8.3.0 google-spreadsheet: ^3.3.0 got: 12.3.1 models: workspace:* - next: 12.2.4 + next: 12.2.5 next-transpile-modules: ^9.0.0 - nodemailer: ^6.7.7 + nodemailer: ^6.7.8 papaparse: ^5.3.2 qs: ^6.11.0 react: ^18.2.0 react-dom: ^18.2.0 sanitize-html: ^2.7.1 - stripe: 10.0.0 + stripe: 10.3.0 typescript: ^4.7.4 utils: workspace:* dependencies: - '@sentry/nextjs': 7.9.0_next@12.2.4+react@18.2.0 - aws-sdk: 2.1190.0 + '@sentry/nextjs': 7.11.1_xhgugymgk3ncoadul5ja7muiri + aws-sdk: 2.1199.0 bot-engine: link:../../packages/bot-engine cors: 2.8.5 cuid: 2.1.8 db: link:../../packages/db google-spreadsheet: 3.3.0 got: 12.3.1 - next: 12.2.4_biqbaboplfbrettd7655fr4n2y - nodemailer: 6.7.7 + next: 12.2.5_twoewwu6sg7cdf3ao6njtbftne + nodemailer: 6.7.8 qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 sanitize-html: 2.7.1 - stripe: 10.0.0 + stripe: 10.3.0 devDependencies: + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 '@playwright/test': 1.25.0 '@types/cors': 2.8.12 '@types/google-spreadsheet': 3.3.0 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/nodemailer': 6.4.5 '@types/papaparse': 5.3.3 '@types/qs': 6.9.7 '@types/react': 18.0.17 '@types/sanitize-html': 2.6.2 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-config-next: 12.2.4_qugx7qdu5zevzvxaiqyxfiwquq - eslint-plugin-react: 7.30.1_eslint@8.21.0 - google-auth-library: 8.1.1 + '@typescript-eslint/eslint-plugin': 5.33.0_vsoshirnpb7xw6mr7xomgfas2i + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint: 8.22.0 + eslint-config-next: 12.2.5_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint-plugin-react: 7.30.1_eslint@8.22.0 + google-auth-library: 8.3.0 models: link:../../packages/models next-transpile-modules: 9.0.0 papaparse: 5.3.2 @@ -386,11 +390,11 @@ importers: '@types/react-scroll': ^1.8.4 '@types/react-transition-group': ^4.4.5 '@typescript-eslint/eslint-plugin': 5.33.0 - '@typescript-eslint/parser': 5.33.0 + '@typescript-eslint/parser': 5.33.1 autoprefixer: 10.4.8 db: workspace:* - eslint: 8.21.0 - eslint-config-next: 12.2.4 + eslint: 8.22.0 + eslint-config-next: 12.2.5 eslint-config-prettier: ^8.5.0 eslint-plugin-prettier: ^4.2.1 eslint-plugin-react: 7.30.1 @@ -402,11 +406,11 @@ importers: react: ^18.2.0 react-dom: ^18.2.0 react-frame-component: 5.2.3 - react-phone-number-input: 3.2.6 + react-phone-number-input: 3.2.8 react-scroll: ^1.8.7 react-transition-group: 4.4.5 resize-observer: ^1.0.4 - rollup: 2.77.2 + rollup: 2.78.1 rollup-plugin-dts: ^4.2.2 rollup-plugin-peer-deps-external: ^2.2.4 rollup-plugin-postcss: ^4.0.2 @@ -421,55 +425,55 @@ importers: prop-types: 15.8.1 qs: 6.11.0 react-frame-component: 5.2.3_v2m5e27vhdewzwhryxwfaorcca - react-phone-number-input: 3.2.6_biqbaboplfbrettd7655fr4n2y + react-phone-number-input: 3.2.8_biqbaboplfbrettd7655fr4n2y react-scroll: 1.8.7_biqbaboplfbrettd7655fr4n2y react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y resize-observer: 1.0.4 devDependencies: - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.2 - '@rollup/plugin-json': 4.1.0_rollup@2.77.2 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2 - '@rollup/plugin-typescript': 8.3.4_mad6iryzja5sfcvlsiy3osqulq + '@rollup/plugin-commonjs': 22.0.2_rollup@2.78.1 + '@rollup/plugin-json': 4.1.0_rollup@2.78.1 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.78.1 + '@rollup/plugin-typescript': 8.3.4_5zsqiitiqqdgwm4iemtywlnhku '@types/qs': 6.9.7 '@types/react': 18.0.17 '@types/react-phone-number-input': 3.0.14 '@types/react-scroll': 1.8.4 '@types/react-transition-group': 4.4.5 - '@typescript-eslint/eslint-plugin': 5.33.0_njno5y7ry2l2lcmiu4tywxkwnq - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/eslint-plugin': 5.33.0_vsoshirnpb7xw6mr7xomgfas2i + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq autoprefixer: 10.4.8_postcss@8.4.16 db: link:../db - eslint: 8.21.0 - eslint-config-next: 12.2.4_qugx7qdu5zevzvxaiqyxfiwquq - eslint-config-prettier: 8.5.0_eslint@8.21.0 - eslint-plugin-prettier: 4.2.1_h62lvancfh4b7r6zn2dgodrh5e - eslint-plugin-react: 7.30.1_eslint@8.21.0 + eslint: 8.22.0 + eslint-config-next: 12.2.5_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint-config-prettier: 8.5.0_eslint@8.22.0 + eslint-plugin-prettier: 4.2.1_i2cojdczqdiurzgttlwdgf764e + eslint-plugin-react: 7.30.1_eslint@8.22.0 models: link:../models postcss: 8.4.16 prettier: 2.7.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - rollup: 2.77.2 - rollup-plugin-dts: 4.2.2_oo3i3f3qmqiztdz5qgxrrjmd5e - rollup-plugin-peer-deps-external: 2.2.4_rollup@2.77.2 + rollup: 2.78.1 + rollup-plugin-dts: 4.2.2_accrhai6qopda76wnqb3pkewpq + rollup-plugin-peer-deps-external: 2.2.4_rollup@2.78.1 rollup-plugin-postcss: 4.0.2_postcss@8.4.16 - rollup-plugin-terser: 7.0.2_rollup@2.77.2 - tailwindcss: 3.1.8 + rollup-plugin-terser: 7.0.2_rollup@2.78.1 + tailwindcss: 3.1.8_postcss@8.4.16 tslib: 2.4.0 typescript: 4.7.4 utils: link:../utils packages/db: specifiers: - '@prisma/client': 4.1.1 + '@prisma/client': 4.2.1 dotenv-cli: 6.0.0 - prisma: 4.1.1 + prisma: 4.2.1 typescript: ^4.7.4 dependencies: - '@prisma/client': 4.1.1_prisma@4.1.1 + '@prisma/client': 4.2.1_prisma@4.2.1 devDependencies: dotenv-cli: 6.0.0 - prisma: 4.1.1 + prisma: 4.2.1 typescript: 4.7.4 packages/models: @@ -478,23 +482,23 @@ importers: '@rollup/plugin-node-resolve': ^13.3.0 '@rollup/plugin-typescript': 8.3.4 db: workspace:* - next: 12.2.4 - rollup: 2.77.2 + next: 12.2.5 + rollup: 2.78.1 rollup-plugin-dts: ^4.2.2 rollup-plugin-peer-deps-external: ^2.2.4 typescript: ^4.7.4 - zod: ^3.17.10 + zod: ^3.18.0 dependencies: - zod: 3.17.10 + zod: 3.18.0 devDependencies: - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.2 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2 - '@rollup/plugin-typescript': 8.3.4_oo3i3f3qmqiztdz5qgxrrjmd5e + '@rollup/plugin-commonjs': 22.0.2_rollup@2.78.1 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.78.1 + '@rollup/plugin-typescript': 8.3.4_accrhai6qopda76wnqb3pkewpq db: link:../db - next: 12.2.4_biqbaboplfbrettd7655fr4n2y - rollup: 2.77.2 - rollup-plugin-dts: 4.2.2_oo3i3f3qmqiztdz5qgxrrjmd5e - rollup-plugin-peer-deps-external: 2.2.4_rollup@2.77.2 + next: 12.2.5_biqbaboplfbrettd7655fr4n2y + rollup: 2.78.1 + rollup-plugin-dts: 4.2.2_accrhai6qopda76wnqb3pkewpq + rollup-plugin-peer-deps-external: 2.2.4_rollup@2.78.1 typescript: 4.7.4 packages/scripts: @@ -516,39 +520,39 @@ importers: packages/typebot-js: specifiers: '@rollup/plugin-typescript': 8.3.4 - '@types/jest': ^28.1.6 + '@types/jest': ^28.1.7 '@typescript-eslint/eslint-plugin': 5.32.0 - '@typescript-eslint/parser': 5.32.0 - eslint: 8.21.0 + '@typescript-eslint/parser': 5.33.1 + eslint: 8.22.0 eslint-plugin-functional: ^4.2.2 - eslint-plugin-jest: 26.7.0 + eslint-plugin-jest: 26.8.5 eslint-plugin-prettier: ^4.2.1 jest: ^28.1.3 jest-environment-jsdom: ^28.1.3 prettier: 2.7.1 - rollup: 2.77.2 + rollup: 2.78.1 rollup-plugin-styles: ^4.0.0 rollup-plugin-terser: ^7.0.2 - ts-jest: ^28.0.7 + ts-jest: ^28.0.8 tslib: ^2.4.0 typescript: ^4.7.4 dependencies: jest-environment-jsdom: 28.1.3 devDependencies: - '@rollup/plugin-typescript': 8.3.4_mad6iryzja5sfcvlsiy3osqulq - '@types/jest': 28.1.6 - '@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 - eslint-plugin-functional: 4.2.2_qugx7qdu5zevzvxaiqyxfiwquq - eslint-plugin-jest: 26.7.0_4gzxb4ijm7tr3yx5zzwnpgdkem - eslint-plugin-prettier: 4.2.1_po3yoeeutu52wwqsoi2mwzccke + '@rollup/plugin-typescript': 8.3.4_5zsqiitiqqdgwm4iemtywlnhku + '@types/jest': 28.1.7 + '@typescript-eslint/eslint-plugin': 5.32.0_vsoshirnpb7xw6mr7xomgfas2i + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint: 8.22.0 + eslint-plugin-functional: 4.2.2_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint-plugin-jest: 26.8.5_wsnumsk3aw5ugktnxyzyce5y3q + eslint-plugin-prettier: 4.2.1_2xd4q2tc5cqa5as7uugqhp6oue jest: 28.1.3 prettier: 2.7.1 - rollup: 2.77.2 - rollup-plugin-styles: 4.0.0_rollup@2.77.2 - rollup-plugin-terser: 7.0.2_rollup@2.77.2 - ts-jest: 28.0.7_m5noci3hdgjcbp5i3skppiufvq + rollup: 2.78.1 + rollup-plugin-styles: 4.0.0_rollup@2.78.1 + rollup-plugin-terser: 7.0.2_rollup@2.78.1 + ts-jest: 28.0.8_m5noci3hdgjcbp5i3skppiufvq tslib: 2.4.0 typescript: 4.7.4 @@ -557,24 +561,24 @@ importers: '@rollup/plugin-commonjs': 22.0.2 '@rollup/plugin-node-resolve': ^13.3.0 '@rollup/plugin-typescript': 8.3.4 - aws-sdk: 2.1190.0 + aws-sdk: 2.1199.0 models: workspace:* - next: 12.2.4 - rollup: 2.77.2 + next: 12.2.5 + rollup: 2.78.1 rollup-plugin-dts: ^4.2.2 rollup-plugin-peer-deps-external: ^2.2.4 tslib: ^2.4.0 typescript: ^4.7.4 devDependencies: - '@rollup/plugin-commonjs': 22.0.2_rollup@2.77.2 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.77.2 - '@rollup/plugin-typescript': 8.3.4_mad6iryzja5sfcvlsiy3osqulq - aws-sdk: 2.1190.0 + '@rollup/plugin-commonjs': 22.0.2_rollup@2.78.1 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.78.1 + '@rollup/plugin-typescript': 8.3.4_5zsqiitiqqdgwm4iemtywlnhku + aws-sdk: 2.1199.0 models: link:../models - next: 12.2.4_biqbaboplfbrettd7655fr4n2y - rollup: 2.77.2 - rollup-plugin-dts: 4.2.2_oo3i3f3qmqiztdz5qgxrrjmd5e - rollup-plugin-peer-deps-external: 2.2.4_rollup@2.77.2 + next: 12.2.5_biqbaboplfbrettd7655fr4n2y + rollup: 2.78.1 + rollup-plugin-dts: 4.2.2_accrhai6qopda76wnqb3pkewpq + rollup-plugin-peer-deps-external: 2.2.4_rollup@2.78.1 tslib: 2.4.0 typescript: 4.7.4 @@ -847,15 +851,13 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.9 - dev: false /@babel/helper-builder-binary-assignment-operator-visitor/7.18.6: resolution: {integrity: sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.18.9 - dev: false + '@babel/types': 7.18.10 /@babel/helper-compilation-targets/7.18.9_@babel+core@7.18.10: resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} @@ -897,7 +899,6 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color - dev: false /@babel/helper-create-class-features-plugin/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==} @@ -926,7 +927,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.1.0 - dev: false /@babel/helper-create-regexp-features-plugin/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} @@ -975,6 +975,21 @@ packages: - supports-color dev: false + /@babel/helper-define-polyfill-provider/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-r9QJJ+uDWrd+94BSPcP6/de67ygLtvVy6cK4luE6MOuDsZIdoaPBnfSpbO/+LTifjPckbKXRuI9BB/Z2/y3iTg==} + peerDependencies: + '@babel/core': ^7.4.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /@babel/helper-environment-visitor/7.18.6: resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==} engines: {node: '>=6.9.0'} @@ -988,8 +1003,7 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.18.9 - dev: false + '@babel/types': 7.18.10 /@babel/helper-function-name/7.18.6: resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==} @@ -1017,7 +1031,12 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.9 - dev: false + + /@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.18.10 /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} @@ -1045,7 +1064,6 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.18.9 - dev: false /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} @@ -1070,7 +1088,7 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.18.6 - '@babel/types': 7.18.9 + '@babel/types': 7.18.10 transitivePeerDependencies: - supports-color dev: false @@ -1085,7 +1103,36 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.18.6 - '@babel/types': 7.18.9 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + dev: false + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.18.9: + resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-wrap-function': 7.18.11 + '@babel/types': 7.18.10 transitivePeerDependencies: - supports-color dev: false @@ -1101,7 +1148,18 @@ packages: '@babel/types': 7.18.9 transitivePeerDependencies: - supports-color - dev: false + + /@babel/helper-replace-supers/7.18.9: + resolution: {integrity: sha512-dNsWibVI4lNT6HiuOIBr1oyxo40HvIVmbwPUm3XZ7wMh4k2WxrxTqZwSqw/eEmXDS9np0ey5M2bz9tBmO9c+YQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color /@babel/helper-simple-access/7.18.6: resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} @@ -1116,6 +1174,12 @@ packages: '@babel/types': 7.18.9 dev: false + /@babel/helper-skip-transparent-expression-wrappers/7.18.9: + resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.10 + /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} @@ -1134,14 +1198,25 @@ packages: resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} engines: {node: '>=6.9.0'} + /@babel/helper-wrap-function/7.18.11: + resolution: {integrity: sha512-oBUlbv+rjZLh2Ks9SKi4aL7eKaAXBWleHzU89mP0G6BMUlRxSckk9tSIkgDGydhgFxHuGSlBQZfnaD47oBEB7w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-function-name': 7.18.9 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 + transitivePeerDependencies: + - supports-color + /@babel/helper-wrap-function/7.18.6: resolution: {integrity: sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.18.9 - '@babel/template': 7.18.6 - '@babel/traverse': 7.18.9 - '@babel/types': 7.18.9 + '@babel/template': 7.18.10 + '@babel/traverse': 7.18.11 + '@babel/types': 7.18.10 transitivePeerDependencies: - supports-color dev: false @@ -1194,7 +1269,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} @@ -1230,6 +1304,31 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.9 dev: false + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + + /@babel/plugin-proposal-async-generator-functions/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-1mFuY2TOsR1hxbjCo4QL+qlIjV07p4H4EUYw2J/WCqsvFV6V9X9z9YhXbWndc/4fw+hYGlDT7egYxliMp5O6Ew==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-async-generator-functions/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==} engines: {node: '>=6.9.0'} @@ -1271,7 +1370,6 @@ packages: '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} @@ -1298,7 +1396,6 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} @@ -1323,7 +1420,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 - dev: false /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} @@ -1358,6 +1454,16 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} @@ -1367,7 +1473,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 - dev: false /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} @@ -1402,6 +1507,16 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -1411,7 +1526,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 - dev: false /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -1433,7 +1547,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 - dev: false /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -1485,6 +1598,19 @@ packages: '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -1494,7 +1620,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 - dev: false /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} @@ -1531,6 +1656,17 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.9 dev: false + /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} @@ -1542,7 +1678,6 @@ packages: '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} @@ -1570,7 +1705,6 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} @@ -1596,7 +1730,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} @@ -1616,7 +1749,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.9: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -1642,7 +1774,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.9: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} @@ -1660,7 +1791,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.9: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} @@ -1678,8 +1808,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.10 - '@babel/helper-plugin-utils': 7.18.6 - dev: false + '@babel/helper-plugin-utils': 7.18.9 /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -1687,7 +1816,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 dev: false /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.10: @@ -1697,7 +1826,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} @@ -1708,6 +1836,16 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + dev: false + /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} engines: {node: '>=6.9.0'} @@ -1716,7 +1854,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} @@ -1744,7 +1881,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} @@ -1790,7 +1926,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.9: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -1807,7 +1942,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -1824,7 +1958,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.9: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -1850,7 +1983,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -1867,7 +1999,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -1884,7 +2015,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.9: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -1902,7 +2032,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.9: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} @@ -1922,7 +2051,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.9: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} @@ -1960,7 +2088,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} @@ -1981,10 +2108,9 @@ packages: '@babel/core': 7.18.10 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.10 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} @@ -1995,7 +2121,7 @@ packages: '@babel/core': 7.18.9 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-remap-async-to-generator': 7.18.6_@babel+core@7.18.9 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.18.9 transitivePeerDependencies: - supports-color dev: false @@ -2008,7 +2134,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} @@ -2040,6 +2165,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-classes/7.18.8_@babel+core@7.18.10: resolution: {integrity: sha512-RySDoXdF6hgHSHuAW4aLGyVQdmvEX/iJtjVre52k0pxRq4hzqze+rAVP++NmNv596brBpYmaiKgTZby7ziBnVg==} engines: {node: '>=6.9.0'} @@ -2078,6 +2212,24 @@ packages: - supports-color dev: false + /@babel/plugin-transform-classes/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-replace-supers': 7.18.9 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-computed-properties/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==} engines: {node: '>=6.9.0'} @@ -2098,6 +2250,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-destructuring/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==} engines: {node: '>=6.9.0'} @@ -2118,6 +2279,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-destructuring/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -2127,7 +2297,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} @@ -2160,6 +2329,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} @@ -2169,7 +2347,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.6 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} @@ -2182,6 +2359,17 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-flow-strip-types/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.18.10 + dev: false + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.10: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} @@ -2190,7 +2378,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.18.9: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} @@ -2226,6 +2413,17 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-function-name': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-literals/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==} engines: {node: '>=6.9.0'} @@ -2246,6 +2444,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} @@ -2254,7 +2461,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} @@ -2278,7 +2484,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} @@ -2307,7 +2512,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} @@ -2356,6 +2560,21 @@ packages: - supports-color dev: false + /@babel/plugin-transform-modules-systemjs/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.18.9 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-identifier': 7.18.6 + babel-plugin-dynamic-import-node: 2.3.3 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -2367,7 +2586,6 @@ packages: '@babel/helper-plugin-utils': 7.18.9 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} @@ -2391,7 +2609,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-named-capturing-groups-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} @@ -2412,7 +2629,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} @@ -2432,10 +2648,9 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-replace-supers': 7.18.6 + '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color - dev: false /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} @@ -2445,7 +2660,7 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.18.9 - '@babel/helper-replace-supers': 7.18.6 + '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color dev: false @@ -2468,7 +2683,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.18.9: resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} @@ -2488,7 +2702,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} @@ -2609,7 +2822,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 regenerator-transform: 0.15.0 - dev: false /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} @@ -2630,7 +2842,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} @@ -2667,7 +2878,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} @@ -2701,6 +2911,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.18.6 dev: false + /@babel/plugin-transform-spread/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -2709,7 +2929,6 @@ packages: dependencies: '@babel/core': 7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} @@ -2741,6 +2960,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-typeof-symbol/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==} engines: {node: '>=6.9.0'} @@ -2761,6 +2989,15 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-typescript/7.18.8_@babel+core@7.18.10: resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==} engines: {node: '>=6.9.0'} @@ -2789,6 +3026,15 @@ packages: - supports-color dev: false + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.18.10: + 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.18.10 + '@babel/helper-plugin-utils': 7.18.9 + /@babel/plugin-transform-unicode-escapes/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==} engines: {node: '>=6.9.0'} @@ -2818,7 +3064,6 @@ packages: '@babel/core': 7.18.10 '@babel/helper-create-regexp-features-plugin': 7.18.6_@babel+core@7.18.10 '@babel/helper-plugin-utils': 7.18.9 - dev: false /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.18.9: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} @@ -2831,6 +3076,91 @@ packages: '@babel/helper-plugin-utils': 7.18.9 dev: false + /@babel/preset-env/7.18.10_@babel+core@7.18.10: + resolution: {integrity: sha512-wVxs1yjFdW3Z/XkNfXKoblxoHgbtUF7/l3PvvP4m02Qz9TZ6uZGxRVYjSQeR87oQmHco9zWitW5J82DJ7sCjvA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-compilation-targets': 7.18.9_@babel+core@7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-async-generator-functions': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.10 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.10 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.10 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.10 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.10 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-classes': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-destructuring': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-systemjs': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.18.10 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-spread': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.18.10 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.18.10 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.10 + '@babel/types': 7.18.10 + babel-plugin-polyfill-corejs2: 0.3.2_@babel+core@7.18.10 + babel-plugin-polyfill-corejs3: 0.5.3_@babel+core@7.18.10 + babel-plugin-polyfill-regenerator: 0.4.0_@babel+core@7.18.10 + core-js-compat: 3.23.4 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /@babel/preset-env/7.18.6_@babel+core@7.18.10: resolution: {integrity: sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==} engines: {node: '>=6.9.0'} @@ -3003,6 +3333,18 @@ packages: - supports-color dev: false + /@babel/preset-flow/7.18.6_@babel+core@7.18.10: + resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-plugin-utils': 7.18.9 + '@babel/helper-validator-option': 7.18.6 + '@babel/plugin-transform-flow-strip-types': 7.18.9_@babel+core@7.18.10 + dev: false + /@babel/preset-modules/0.1.5_@babel+core@7.18.10: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: @@ -3012,9 +3354,8 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.10 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.10 - '@babel/types': 7.18.9 + '@babel/types': 7.18.10 esutils: 2.0.3 - dev: false /@babel/preset-modules/0.1.5_@babel+core@7.18.9: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -3025,7 +3366,7 @@ packages: '@babel/helper-plugin-utils': 7.18.9 '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.18.9 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.18.9 - '@babel/types': 7.18.9 + '@babel/types': 7.18.10 esutils: 2.0.3 dev: false @@ -3087,6 +3428,20 @@ packages: - supports-color dev: false + /@babel/register/7.18.9_@babel+core@7.18.10: + resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + clone-deep: 4.0.1 + find-cache-dir: 2.1.0 + make-dir: 2.1.0 + pirates: 4.0.5 + source-map-support: 0.5.21 + dev: false + /@babel/runtime-corejs3/7.18.6: resolution: {integrity: sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==} engines: {node: '>=6.9.0'} @@ -3195,149 +3550,147 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/2.0.8_g53vxbe534pczvfxm6p453kz4e: - resolution: {integrity: sha512-KpZbVwPwoYuLUrWsxE85SsBv5c/jXLUEVTginR+7Z3bqjvLfP5cI0BlzzTq0KJgikdmhXoLnscookyZAKv1ixA==} + /@chakra-ui/accordion/2.0.10_ww6d7e3rfzhiohgpyxb4ijo6ci: + resolution: {integrity: sha512-HD3yJ4LV3S5vMH7DwcwSOPrZ+R6+qzTd7LXYKiUphl1RiUM5h97dbGqpqI+ULjIo0xoOvHTyhvO4ENCRDEYkRg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/descendant': 3.0.5_react@18.2.0 - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/transition': 2.0.6_6dchco232wlvtcqfc73clb5upq - '@chakra-ui/utils': 2.0.6 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/descendant': 3.0.7_react@18.2.0 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-context': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/transition': 2.0.8_o35jr3ogmpc5um7nrkcrhxg2xa + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/alert/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-Y0bWgLAOGPn/x2SGr3oVMUy1nhdH+x7EuBO6FW8YpFIMukumfeZf9v2rr5MmqagrevSjHrGsSH9BnoaSDUK4gQ==} + /@chakra-ui/alert/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-giBBbAPlSw33Ua838c35ClCVmmrfn+pvZgA92Ogcz2fwkUFa+Elcq/nyVQ3XHxLzzmPE/vACcS8wXoCXQl4i/Q==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/spinner': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-context': 2.0.2_react@18.2.0 + '@chakra-ui/spinner': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy react: 18.2.0 dev: false - /@chakra-ui/anatomy/2.0.3: - resolution: {integrity: sha512-3XiloxwYROE0c38SOJGEESBzYu/9MWFOp5Owi8mEYq+IpO8babtr1tMhDGqJQxa8K0/uVaCaiZz4iZLTJkX7eA==} + /@chakra-ui/anatomy/2.0.4: + resolution: {integrity: sha512-wWLvPrLOCO+nDb+cMcEJ/iDxgWEizRXOlIZCinCzkeEYhcWibINx6wh49uVUyMT/dIs/JTHQ4mUb9IzqJ1RY+g==} dev: false - /@chakra-ui/avatar/2.0.7_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-BCTRWlydewCeQmMSOT/9VfOl7lfsWljhUF+wDTsPAKclgWOgwcWNQErNPAVVp1PAI45DTuVcrXz8uvXFsnywZQ==} + /@chakra-ui/avatar/2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-kx77nTL9h8451lgAMZkD8UWGoxTjHKzeW55Ls4e7muqj3fl+hS3eNQ1zw66DDEFuYxBVyxZi1YgWFI7/Lgnx4w==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/image': 2.0.7_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/image': 2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-context': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy react: 18.2.0 dev: false - /@chakra-ui/breadcrumb/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-cSA0aB5v2dQNicUEg7QSMNofCIUbVMNsr06ZXc0wWBz1hSY3qDpghhyIrJMPcWbUxxq9yk568jraCkExvMCtjg==} + /@chakra-ui/breadcrumb/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-kTwNZqOMjVLm9smZMGZnkw8zChzwx1ycu8ZGSCYkwJxgO2yeztIcqpa9OjxhTkro6ZS9dels35+FbtyQCtz1wA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/button/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-pPGj5uAdB37HAHZ4AACiY2F/Yl4p/vmw6ArXlr1FYsbK0dXXWk4E0ZwSELGKudRS6ylYP1ck6/UhT0SGMu6kUg==} + /@chakra-ui/button/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-sFAdPRZNGeIawEN60V/6Zhqt1DOkFosYeG83QkwkIEgOlTNQsqlxgKV9bGfn6b4Qb2HUoqMzmN+rk8kHKvHOrQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/spinner': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/spinner': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/checkbox/2.1.5_g53vxbe534pczvfxm6p453kz4e: - resolution: {integrity: sha512-E3FcEcjc3WQqbRB1SJ1Qozt+JHh8RpDXHFu8p2iwZ1V04n/uEx4VPIMEVSkXufC/rfV3oG+/+qsRbqw5eIOX4g==} + /@chakra-ui/checkbox/2.1.7_ww6d7e3rfzhiohgpyxb4ijo6ci: + resolution: {integrity: sha512-84NyP8hXLrcv1GtgloPcBs4Ypzxa/jSEkWzH69+J/rSDNz/ff23fCSNayMPXadWXmAMSBmsKY8gdpfcJioCf/g==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - '@chakra-ui/visually-hidden': 2.0.6_2ceav2ty4h5gkpnoesr62job6y + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + '@chakra-ui/visually-hidden': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu '@zag-js/focus-visible': 0.1.0 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/clickable/2.0.6_react@18.2.0: - resolution: {integrity: sha512-5efH3whvbLk7XH8CeO9IbGa1rTUuH2nsXRXExbG1PF1uBOxLv+bsMaY25+Hnfh894atavgbeLUPBCAfuyxeImA==} + /@chakra-ui/clickable/2.0.8_react@18.2.0: + resolution: {integrity: sha512-GlmSYfDd/E09fJKu6iFoKjQHHFDJFaESenVYQ0PuTHaKD9Ro8o70jBRKP9hxTSqZN1QPzgfexmkQKsI9aOuc9g==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/close-button/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-ocXD453uD2tLft1vKStBN/HcZc9ZHxthodyA/BIJx8gf88EgJi1vUbiERNoloww8Vv/8hBIIdNmv2Fwoj0jQQA==} + /@chakra-ui/close-button/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-UbsxusyGExuopIircNKbSw0kvA6KbIwd3zvoedzcH91pLlK5na+AThiANDnsQBU0uV78w8I9L0zjlrEcn30uBw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/color-mode/2.1.4_react@18.2.0: - resolution: {integrity: sha512-AoWZgKO1MSw9lb5+lURdaqi/NwaCNo50lOo1neCOVqxln8ntZzJHL4dHfYYlj6nIR6246LkRppkMeeceEg/W+A==} + /@chakra-ui/color-mode/2.1.6_react@18.2.0: + resolution: {integrity: sha512-YtVoyYAe6kxoNDwB5Sv03Tz0dCIlo1JM57VfhKZTPxXmp3/FFvFe38+N5piNimuAl/xIDp6doFArnco3Bb7qFw==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/control-box/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-Vd89wKQCD+c0WDSaB5PFHRs133qm+vOB7Ay12h6tVCirnyk7nKEDNjBmmURK1v3WfSVMK3/IF2+2B+SSt+sHOQ==} + /@chakra-ui/control-box/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-Q7JTjJG4uErpVsUAr3271NqafCcpYfgXsyk9RJWgSvGXT6wT3W1znYbRf4+oBeQFCRfGYEI7Dk+JHvI5Owm4CQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/counter/2.0.6_react@18.2.0: - resolution: {integrity: sha512-tScL92j+D4dgkXQvMLqEwgz3PC2YSh6LcUr9eWjerPTVBsSPDmKSEKrMd9wrw6fwy+QmOBEZ7LF9kwqweCqllA==} + /@chakra-ui/counter/2.0.8_react@18.2.0: + resolution: {integrity: sha512-23YLtZA4Wh/dMfgumeYwAifYoNvq5y5q59FMSX9PHEffYxxKeN/J081zyvTvsWSY1Dl4t0BXMT2nStuBEKsvWA==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false @@ -3351,175 +3704,189 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/descendant/3.0.5_react@18.2.0: - resolution: {integrity: sha512-Vd47q3Y+/ZmdTJnkvm9IssEozP8Ig1ug46kzxP4BMqY9xO1+Reuj/yur95eiyVlTn0hGVQM7p5yIA1+uL0Z7lw==} + /@chakra-ui/css-reset/2.0.4_g566eayvhbit5eqxocdac5mhdm: + resolution: {integrity: sha512-XJ8AcTHrxwHYqWmMR1b5WUWv+D3i6GKvXiw5M104Azny+VT3ZUTzzo/Yze0mCvudbePf6zMoMrFLIBWGKSj/0Q==} peerDependencies: + '@emotion/react': '>=10.0.35' react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 + '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema react: 18.2.0 dev: false - /@chakra-ui/editable/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-On4fBkQojrBSjQI6EQcBeOCqAxYZFdgCbc7EaVwl96fWB+Aw97u/P/a+y2OvEc7ZQ1A61lGLpNoVSYCNNy4wWA==} + /@chakra-ui/descendant/3.0.7_react@18.2.0: + resolution: {integrity: sha512-C58jkUox54Y2sFn6H29QXkAyyalTMn3uYeeVNAftzL4SRFE9KyRAbMtOujZHH3GRr2sEykawiXh9BkqWpZuhiA==} + peerDependencies: + react: '>=18' + dependencies: + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/editable/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-SgwsaRnEgHtlGL+Ie9U5AYn4FjYp22IMvtW6hU4Y0X0A51uvzKyi4NTUXsckogI79c6svvNoRWMTuymiiy9GLw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/focus-lock/2.0.7_ug65io7jkbhmo4fihdmbrh3ina: - resolution: {integrity: sha512-HQ1IMIDYM4PIHSh19ydU27WLRGnWNUjm6VYRGogDyWlRYG8wkEaQH6njVAG3KeIOAk/Dfj2/q80TJPob+3YYmQ==} + /@chakra-ui/event-utils/2.0.2: + resolution: {integrity: sha512-v2zZBfbXEN0MooPEunjUUFcLZe+NeFyE0K+hnsW7aVQbDccz2UAsAwgPIMt1EhZ5+Xai4+eyrLB4pfIBwrdPyg==} + dev: false + + /@chakra-ui/focus-lock/2.0.9_ug65io7jkbhmo4fihdmbrh3ina: + resolution: {integrity: sha512-6MxgY6WJ46gndt4dAGzjBToxkAVoi4ke/FT998g7mcnl5VXbnO700iPRIks9lo0J9evFI9Afp7lpgElU1AzkHg==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/utils': 2.0.8 react: 18.2.0 react-focus-lock: 2.9.1_ug65io7jkbhmo4fihdmbrh3ina transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/form-control/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-NTrHD0mvRUtDW1IyoaEixLpyyfRgK0iDWTt34BVIx0RPVGqn1HWdUDm204sgBHaWQzK25zkqmnWbkz09Y0ECFg==} + /@chakra-ui/form-control/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-W7yDHucTfFUu/PhkL8CVtB/Eph9DrsVGIy4VnYFWmfgIWcum0PaR20gNY3acSICV81pPr5R8veZ20oP1lXesLA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/hooks/2.0.6_react@18.2.0: - resolution: {integrity: sha512-Oix7y24cEUoGoQW+2u7nNCQcssbzS4wUhQhWOdbhc2kLHwdaInSru6vUqOPU66JHCP2TWn2fwlgzInL57oCAiA==} + /@chakra-ui/hooks/2.0.8_react@18.2.0: + resolution: {integrity: sha512-GXubX+BRP1UsbPZovgPH/TFBLAOvtHeIGAqdz9SwI2rmQ9UfF2lV9mSN3N2XXj9kKj9akN+pyHwW29UeATojnw==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/utils': 2.0.8 compute-scroll-into-view: 1.0.14 copy-to-clipboard: 3.3.1 react: 18.2.0 dev: false - /@chakra-ui/icon/3.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-H2vE6pmpCcnlM1ASDTjlkLiOaqDgCdRDIo4hWBCPbL68d26a6ftvQBu5RmbDbeZa2mNrN3EESA8/BSa970H1Fw==} + /@chakra-ui/icon/3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-avd6mthBoG9R8cLLAROi/FItgk7wHy1YpeAXOrGdK/U/ECVWZev64RmI1UduKuVOLlSZldXWzFJmLdw6dAMG7A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/image/2.0.7_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-ctQku96p6KFxYQRcJfxDnr3A5pRPqNCUBkdDvbX/312eD+riVpitCV4wo5tamD3HZiWMaw0tnU+VjjCdiGLzHg==} + /@chakra-ui/image/2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-06+Mud+7fkKQok5ukZjea3eVxOL5kIPAjT5bD9LmuuhKXOSJkManx17CRgUjG06JKXUbaJzZfxxKuIzvTdQ/Xw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/input/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-uJoDRVqKxClON+zEFLd7p/5FJC6yFzkq/lmx3Wk5BWfTlw/eMbpC6ucQkL/h1mz94i9TP9VXlfHVp/791uGEDw==} + /@chakra-ui/input/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-Cc1bYO2ee36MgTSmlREPrqF3D2Vh/RCbsLRjmwxOlSfitp8A9PkA04Kn7tz2bKrJ9TQsYzRXwioJRrYr7f0jfw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/layout/2.1.3_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-QD1s8fG+pmER3s9hugy0BHM/67YKk2+OOmUojvVrPITOdN04q81K0NKMrNLUolajm1tQQh498KPI/curltGloQ==} + /@chakra-ui/layout/2.1.5_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-8qZwqgmY3itr+DfCXCxgEIwdy8GHKgAxojhIo7Exnu7GLHZhCcQ9Le4lVlHW3pK8Wy2wg3dPUX+APoMGkUcBsg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/live-region/2.0.6_react@18.2.0: - resolution: {integrity: sha512-RWKBRdjJt96A+ztWsf8047nUXwX8ITUhtpM8Igf6zC9slU2Qh94uYmWtd/pwaU1b+gXct/FHm0HlxWVMtfjYoA==} + /@chakra-ui/live-region/2.0.8_react@18.2.0: + resolution: {integrity: sha512-1BPolMacPoxLVtE8hB+cdxN60CVVu1wzOOUnwJhJtKbfeXNPAsnV2U31/uR2kZ8sX0YPVtQpsB8xzTITD50JaQ==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/media-query/3.2.2_kkuqvtmz3jcfsircm63ulfo47a: - resolution: {integrity: sha512-/X2iCYuUBykAaIvHbg1fqSIRPSPiLolvPOghd2jI2QZht0YitcEecKV1CuNm4a1ANguIO3mXdlhpVuQ9jepVAA==} + /@chakra-ui/media-query/3.2.4_u46v4yvuercdceniwwj6zljkiu: + resolution: {integrity: sha512-Woke/7peH/4aceMytVhhMyhlhada51eCzCOSKfLmhgD4lYqZ9wncigor5phIdeTAYyNClbQL3Cm4E6yEWJxqyg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' '@chakra-ui/theme': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-env': 2.0.6_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme': 2.1.5_r56oxewql32lblvauqybun6z4e - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/react-env': 2.0.8_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/theme': 2.1.7_jymh7qwbtg2qca3scalvdmkcti + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/menu/2.0.8_g53vxbe534pczvfxm6p453kz4e: - resolution: {integrity: sha512-UFEfm9wl9PjcBa57Gx9ozEHtGJnZz+xIL33FYJJwFEPeKjrt8KOAY1kQMSbAyL+WelR+F4uFCEJO1mvkexV8Ag==} + /@chakra-ui/menu/2.0.10_ww6d7e3rfzhiohgpyxb4ijo6ci: + resolution: {integrity: sha512-qqdST2un/9qhO4mGec5XMwyexH+Xf3wFGHSrG7O+J0q2yaAGfLyq6tvuisLx2KHQiByiFQ2rs9ozfBkTfL+OYg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/clickable': 2.0.6_react@18.2.0 - '@chakra-ui/descendant': 3.0.5_react@18.2.0 - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/popper': 3.0.4_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/transition': 2.0.6_6dchco232wlvtcqfc73clb5upq - '@chakra-ui/utils': 2.0.6 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/clickable': 2.0.8_react@18.2.0 + '@chakra-ui/descendant': 3.0.7_react@18.2.0 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/popper': 3.0.6_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/transition': 2.0.8_o35jr3ogmpc5um7nrkcrhxg2xa + '@chakra-ui/utils': 2.0.8 + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/modal/2.1.4_nhm3a7by4ecl4ho3uutsbrub6i: - resolution: {integrity: sha512-qFcCA7DKk1wOjEDjRD9LklK4d1kM8xuHH+xMceOS90tgK6mMbLVNBHQWb3TPuKtxOPN4qp1Wyz/NA1Lr8ShlhA==} + /@chakra-ui/modal/2.1.6_l2pggy4dxcvpenogpgmmeeuwxm: + resolution: {integrity: sha512-uIQtD/XCS4YfPIsqBfMusDeUCSWvbT46wUcbyTNduldN5SXLOwqPZMGwX5BbyOMHUM6rRjc6RW4AeSj0rawo9w==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/close-button': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/focus-lock': 2.0.7_ug65io7jkbhmo4fihdmbrh3ina - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/portal': 2.0.6_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/transition': 2.0.6_6dchco232wlvtcqfc73clb5upq - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/close-button': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/focus-lock': 2.0.9_ug65io7jkbhmo4fihdmbrh3ina + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/portal': 2.0.8_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/transition': 2.0.8_o35jr3ogmpc5um7nrkcrhxg2xa + '@chakra-ui/utils': 2.0.8 aria-hidden: 1.1.3 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-remove-scroll: 2.5.5_ug65io7jkbhmo4fihdmbrh3ina @@ -3527,146 +3894,217 @@ packages: - '@types/react' dev: false - /@chakra-ui/number-input/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-Ba+bp5vbZXyBFT1sdfrghzwYDieizFwFsp9iWzbI8mPfFZJzHn/TpU1r0k9gXptpVFmaQQXklaYNderFu4R0fQ==} + /@chakra-ui/number-input/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-sltl67JFaYOxpibj/ioOEj4zLf/sF5rWKEH7Rl7XuPFJMJDNW/vjlFCDO31s1aHXtwAeKN5O0zCyC2snPXvXKA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/counter': 2.0.6_react@18.2.0 - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/counter': 2.0.8_react@18.2.0 + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/pin-input/2.0.8_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-eUTdFgpA0xc7sGf2iHLHw3TpWIjYrpnkXjakRq1NLFhX78r+wAvQZzcqm8dXX7CNkH1tRboZHMBJBJ8SM1KTZg==} + /@chakra-ui/number-utils/2.0.2: + resolution: {integrity: sha512-tAD8lWjmmCd8UfiELA7dlylEH7kv3KxQmLqLQifklH7hBaFIzJDc5PmZbmgMDG2UEzoBgGWepsSsjrD1HLATVw==} + dev: false + + /@chakra-ui/pin-input/2.0.10_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-AO8lZdhdM9iv5iVZuTPj6ODPUpYsVR/bAbym95BJy1lmXHW0ZD7mtHeJQn0mdfz+j8ckjczg2kCG1ajNjVpjpA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/descendant': 3.0.5_react@18.2.0 - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/descendant': 3.0.7_react@18.2.0 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/popover/2.0.6_g53vxbe534pczvfxm6p453kz4e: - resolution: {integrity: sha512-v4P15wVSgvTalz0VU4K7pDtoqLm8FQEZ/+rUP03M+FTz9/XCJggjnfnx/eLuTr9l17PYGw7xivwHa8qG5j+zvQ==} + /@chakra-ui/popover/2.0.8_ww6d7e3rfzhiohgpyxb4ijo6ci: + resolution: {integrity: sha512-Qe2HMXGYXS+XEYtJg3Gd8JrX32fygjTDyhXHJeuBXZFqogayvdY+q7V7KfFRvTcER4cQeHDiZy6ZjVdoNH7Cmg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/close-button': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/popper': 3.0.4_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/close-button': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/popper': 3.0.6_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/popper/3.0.4_react@18.2.0: - resolution: {integrity: sha512-RU36E0h6y500d1oWjjJKQVnxWfWhDGvfzL2ml4baFk3m3u717GcfEdPaajzroQ6gwmf6wwGWR1+OWTpKysfOvw==} + /@chakra-ui/popper/3.0.6_react@18.2.0: + resolution: {integrity: sha512-QKRzSgOsp2nmL8HXcN5DVujqV+TsECnKfMwzI++SgkIJUL5wj8w6VNqDJ4iym84Sgqw5qNVoOss1ZpgGKAriOg==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 '@popperjs/core': 2.11.5 react: 18.2.0 dev: false - /@chakra-ui/portal/2.0.6_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-XDrr8m+oXiyNpAJo2Qcw0rD6Q3FR7TK/6iWcfOrUguDIlSvu/vqBFQut8BRIy9WfcT7aJsZBQ+JcykOi20Rvzw==} + /@chakra-ui/portal/2.0.8_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-ReBfeln+9n00Si/jOXJ0eO8+fOlmwqxGm5rIe0YnuLFxjTAIWH9Z9ZVZFzn458r2wbV9Q0TdeX/wj4fTeL+Urg==} peerDependencies: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/utils': 2.0.8 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/progress/2.0.7_4aa7s7iaru26sz64kwmhm5q66m: - resolution: {integrity: sha512-1r05btz7gU93D2PDZeKjlEwE+IvanFl0+42dDeXkha4OIc9dgMxlnfIxgqfr4dnWl9+oYHS+wWDcObjxDPmPwA==} + /@chakra-ui/progress/2.0.9_ttdyvlztcaqggfgnqobzizk3ia: + resolution: {integrity: sha512-e6RaNMU+/Jk8OsKna7eE/oTGm3/Rvzy3LsbVhQxP9aYhl29+JrqT2DKVUvfQq/8gSDTyatRcKwYTPjQQdzd2DQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme-tools': 2.0.7_r56oxewql32lblvauqybun6z4e - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/theme-tools': 2.0.9_jymh7qwbtg2qca3scalvdmkcti + '@chakra-ui/utils': 2.0.8 react: 18.2.0 transitivePeerDependencies: - '@chakra-ui/styled-system' dev: false - /@chakra-ui/provider/2.0.11_tyh4ta3a3jg5wknldy4g2a7uiy: - resolution: {integrity: sha512-zaRpMQwuBCFxzgqPdFyXj8wrgyI18iOuysEgP41rbBRoSLOwKcwz87muExUN80ZSRv6k3/WkEeLcKC1C1vQAZQ==} + /@chakra-ui/provider/2.0.13_tyh4ta3a3jg5wknldy4g2a7uiy: + resolution: {integrity: sha512-AOZv4XEVip1wBmH7zcKQ5jWi7B1jCZm9Lt+6K9OUPozehTAuGGoPfFutr7JnO9zgGjovYFHk0GzNHE7MYOVEGg==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/css-reset': 2.0.3_g566eayvhbit5eqxocdac5mhdm - '@chakra-ui/portal': 2.0.6_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-env': 2.0.6_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/css-reset': 2.0.4_g566eayvhbit5eqxocdac5mhdm + '@chakra-ui/portal': 2.0.8_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-env': 2.0.8_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/radio/2.0.7_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-0znhldCKQY9NriwTgumilSv3BlzMdOg0iXxLshhMRnI3XcqqKVCZ0Juf4NjGOblcLtafYFnmMDOJ/xvI9PT8DA==} + /@chakra-ui/radio/2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-6MQZLRF0oex2wgfMSeovIi0bXtr64DR3+2RK2WKeHz7JJssB+bGbhjmZCD6TFvqb9ItYizwTj+v270ZA+Ee8BA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - '@chakra-ui/visually-hidden': 2.0.6_2ceav2ty4h5gkpnoesr62job6y + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + '@chakra-ui/visually-hidden': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu '@zag-js/focus-visible': 0.1.0 react: 18.2.0 dev: false - /@chakra-ui/react-env/2.0.6_react@18.2.0: - resolution: {integrity: sha512-gr+2oxQ/Hqh4h2Segk0lPexSJ5AE8sm7djYjaOg2d6CdfqJTk2fEkjQGGO0UnrJZWjBctl9NhhhhOXSLN/H6jQ==} + /@chakra-ui/react-context/2.0.2_react@18.2.0: + resolution: {integrity: sha512-xi9bGjE0eT7odgfuQHizO+AsXB6m9OOpsUKQiSgN7WTe6e10gkpeVbXtx7wF4RbaneMcmdrxkjAyj9rkuJMpkA==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/utils': 2.0.6 react: 18.2.0 dev: false - /@chakra-ui/react-utils/2.0.3_react@18.2.0: - resolution: {integrity: sha512-8noaFkqtUFrrd1oGE91/E1JBB0NG/wlFSCGKqZG1rZfF5VUtCDOIuvJBmj/Pq0oLTq2qJd+tGj82Muj1JeGSZg==} + /@chakra-ui/react-env/2.0.8_react@18.2.0: + resolution: {integrity: sha512-DmRxJkw2mhk26FRKqvTk1RnZJK4mPc+dMWELo2oY2e2i2QvzvHw0ggvkAeyibyorsIJ2fFlrhHzPxMiNwL1SkA==} peerDependencies: react: '>=18' dependencies: - '@chakra-ui/utils': 2.0.6 react: 18.2.0 dev: false - /@chakra-ui/react/2.2.6_4kylzkmxqzeuwi4n5q2ftjtep4: - resolution: {integrity: sha512-WKzSqc6VTOKEPBabZnGzBf1SYcO/b5/an0+LT4icuPddlraXHvgYM5SmwYI0z5N/jNqbspWlyDda6zoLW6JVxA==} + /@chakra-ui/react-types/2.0.2_react@18.2.0: + resolution: {integrity: sha512-UWm4yg+RUz93wSF6TSGuFd3okefYghpWgZ2qCjpZHWiHFyw2qjXrJ9Iuz0H583ulsugdKPk72B0e6TOrmS4CLg==} + peerDependencies: + react: '>=18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-callback-ref/2.0.2_react@18.2.0: + resolution: {integrity: sha512-PWQk0pNkIUjLmj55yBNEIKfGd9dRXWIqeyXQtXnvBTUVxJ+r/KgtVP3hOx40Zn2mjB52jBJPF2CZO6lteLOJ9g==} + peerDependencies: + react: '>=18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-controllable-state/2.0.2_react@18.2.0: + resolution: {integrity: sha512-JdVLIlh7V8kJ0h8Fl9pbf82PeSpkMrNuaQJKPOUgye3X0tjbD1JGeTegYvNsccxrZl09pSwy/LU+lkY0u2Gl2g==} + peerDependencies: + react: '>=18' + dependencies: + '@chakra-ui/react-use-callback-ref': 2.0.2_react@18.2.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-merge-refs/2.0.2_react@18.2.0: + resolution: {integrity: sha512-SX4wv/YxMSif6Az3p8SKVgTUHZZmK77QbnFMAZcxVr4arQnRoEAwsjpsNrcvvc7mxczSM/BJB+lQ5YO8ePAu3g==} + peerDependencies: + react: '>=18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-pan-event/2.0.2_react@18.2.0: + resolution: {integrity: sha512-DGPyDPT7HP/UJ7d7xt3VdYUo7Wa3MpyYkMimGbWGTpP/Dl0z7mYfz75G6MoKDzTDGdZkT/D7mx68zYI1LZsAog==} + peerDependencies: + react: '>=18' + dependencies: + '@chakra-ui/event-utils': 2.0.2 + framesync: 5.3.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-size/2.0.2_react@18.2.0: + resolution: {integrity: sha512-KYyu5sCdWNEC8Qo6MTmnpJQsThLAwLbdW11IrrW0yhieJgOy6xnwIiEyULKxtygHQzaNbhayYV9p4vJuN2BpeQ==} + peerDependencies: + react: '>=18' + dependencies: + '@zag-js/element-size': 0.1.0 + react: 18.2.0 + dev: false + + /@chakra-ui/react-use-update-effect/2.0.2_react@18.2.0: + resolution: {integrity: sha512-loDqsfIdg8X8ClzScIBY0fp2oVN3YOgad50koHRPVi2pVkkpaZKAcpjazm2MRZDPp22SvFgXrl39DL2xZN579Q==} + peerDependencies: + react: '>=18' + dependencies: + react: 18.2.0 + dev: false + + /@chakra-ui/react-utils/2.0.5_react@18.2.0: + resolution: {integrity: sha512-YTkDtyqZcI+l6O41og8P0Gd2z4MUKUQWu10VrcSF26izJg3lphU04VlPf+fB4wFJ97OGJBgtNxKuToe4Aqzg6A==} + peerDependencies: + react: '>=18' + dependencies: + '@chakra-ui/utils': 2.0.8 + react: 18.2.0 + dev: false + + /@chakra-ui/react/2.2.8_4tepo34aiwxoce74yrvdsfmsmq: + resolution: {integrity: sha512-yLHoE6NpDu3UORtv/drzYl+d/ngjLkEPuUggJd6gu+kv0lHLAmTkoNL8yNGPxuY/StiQEyCSjwFXmknklRr+BA==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -3674,56 +4112,56 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/accordion': 2.0.8_g53vxbe534pczvfxm6p453kz4e - '@chakra-ui/alert': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/avatar': 2.0.7_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/breadcrumb': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/button': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/checkbox': 2.1.5_g53vxbe534pczvfxm6p453kz4e - '@chakra-ui/close-button': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/control-box': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/counter': 2.0.6_react@18.2.0 - '@chakra-ui/css-reset': 2.0.3_g566eayvhbit5eqxocdac5mhdm - '@chakra-ui/editable': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/image': 2.0.7_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/input': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/layout': 2.1.3_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/live-region': 2.0.6_react@18.2.0 - '@chakra-ui/media-query': 3.2.2_kkuqvtmz3jcfsircm63ulfo47a - '@chakra-ui/menu': 2.0.8_g53vxbe534pczvfxm6p453kz4e - '@chakra-ui/modal': 2.1.4_nhm3a7by4ecl4ho3uutsbrub6i - '@chakra-ui/number-input': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/pin-input': 2.0.8_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/popover': 2.0.6_g53vxbe534pczvfxm6p453kz4e - '@chakra-ui/popper': 3.0.4_react@18.2.0 - '@chakra-ui/portal': 2.0.6_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/progress': 2.0.7_4aa7s7iaru26sz64kwmhm5q66m - '@chakra-ui/provider': 2.0.11_tyh4ta3a3jg5wknldy4g2a7uiy - '@chakra-ui/radio': 2.0.7_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-env': 2.0.6_react@18.2.0 - '@chakra-ui/select': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/skeleton': 2.0.11_txe52a2ljj3hi65f5oyi46xlgq - '@chakra-ui/slider': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/spinner': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/stat': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/switch': 2.0.8_g53vxbe534pczvfxm6p453kz4e - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/table': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/tabs': 2.0.8_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/tag': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/textarea': 2.0.7_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/theme': 2.1.5_r56oxewql32lblvauqybun6z4e - '@chakra-ui/toast': 3.0.4_cctmh66peoxukhyjvr5atz2cee - '@chakra-ui/tooltip': 2.0.7_mkn3mf4lnufcw7w2xjebw44jmu - '@chakra-ui/transition': 2.0.6_6dchco232wlvtcqfc73clb5upq - '@chakra-ui/utils': 2.0.6 - '@chakra-ui/visually-hidden': 2.0.6_2ceav2ty4h5gkpnoesr62job6y + '@chakra-ui/accordion': 2.0.10_ww6d7e3rfzhiohgpyxb4ijo6ci + '@chakra-ui/alert': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/avatar': 2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/breadcrumb': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/button': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/checkbox': 2.1.7_ww6d7e3rfzhiohgpyxb4ijo6ci + '@chakra-ui/close-button': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/control-box': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/counter': 2.0.8_react@18.2.0 + '@chakra-ui/css-reset': 2.0.4_g566eayvhbit5eqxocdac5mhdm + '@chakra-ui/editable': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/image': 2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/input': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/layout': 2.1.5_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/live-region': 2.0.8_react@18.2.0 + '@chakra-ui/media-query': 3.2.4_u46v4yvuercdceniwwj6zljkiu + '@chakra-ui/menu': 2.0.10_ww6d7e3rfzhiohgpyxb4ijo6ci + '@chakra-ui/modal': 2.1.6_l2pggy4dxcvpenogpgmmeeuwxm + '@chakra-ui/number-input': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/pin-input': 2.0.10_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/popover': 2.0.8_ww6d7e3rfzhiohgpyxb4ijo6ci + '@chakra-ui/popper': 3.0.6_react@18.2.0 + '@chakra-ui/portal': 2.0.8_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/progress': 2.0.9_ttdyvlztcaqggfgnqobzizk3ia + '@chakra-ui/provider': 2.0.13_tyh4ta3a3jg5wknldy4g2a7uiy + '@chakra-ui/radio': 2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-env': 2.0.8_react@18.2.0 + '@chakra-ui/select': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/skeleton': 2.0.13_niyjvjpuordzbrl23r4an6z6ym + '@chakra-ui/slider': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/spinner': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/stat': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/switch': 2.0.10_ww6d7e3rfzhiohgpyxb4ijo6ci + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/table': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/tabs': 2.0.10_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/tag': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/textarea': 2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/theme': 2.1.7_jymh7qwbtg2qca3scalvdmkcti + '@chakra-ui/toast': 3.0.6_i2histwdpw2oikyyak6xlgsbf4 + '@chakra-ui/tooltip': 2.0.9_zkxeaxowwyh4xs6mcqbccpccsy + '@chakra-ui/transition': 2.0.8_o35jr3ogmpc5um7nrkcrhxg2xa + '@chakra-ui/utils': 2.0.8 + '@chakra-ui/visually-hidden': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: @@ -3731,262 +4169,273 @@ packages: - '@types/react' dev: false - /@chakra-ui/select/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-aBsJiFSrv3sWMKCc0Jv8DyoKB0uNMRAjkGmoiyRKoZcPvZyU3oRu09VwIHwJTmE340UO385oSVif2x8DOlWyOg==} + /@chakra-ui/select/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-GiKw/t1+1hoa4K2BTJ5rJX/1iQ01QkSf3PfFuv+SOlhbb8XSwqd3tVFtmlVVLt+nOcICpcEFaTcBsuOdTvjRKw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/skeleton/2.0.11_txe52a2ljj3hi65f5oyi46xlgq: - resolution: {integrity: sha512-fzqGDWfZ3LkoaEvn+F6zNzT2HQ/d8y8tctO8vHnQ02HvBIZsrdY+0nmZIwkaS6oGasUZyuvrUAC+h+3MBoeXpA==} + /@chakra-ui/skeleton/2.0.13_niyjvjpuordzbrl23r4an6z6ym: + resolution: {integrity: sha512-YZeWZIVt6TKtrF3jQ9j6zcXN3VUmHiXGF2CkLLsJlbB4HocMCp7/eWsSy3BXQ7rrZvaZJhN36GUP3W3t1rHZCA==} peerDependencies: '@chakra-ui/theme': '>=2.0.0' '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/media-query': 3.2.2_kkuqvtmz3jcfsircm63ulfo47a - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme': 2.1.5_r56oxewql32lblvauqybun6z4e - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/media-query': 3.2.4_u46v4yvuercdceniwwj6zljkiu + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/theme': 2.1.7_jymh7qwbtg2qca3scalvdmkcti + '@chakra-ui/utils': 2.0.8 '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly react: 18.2.0 dev: false - /@chakra-ui/slider/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-V8gcKqZGm5VDFCuR9XAxEhWpYm1daXHiNC2808ilNEFYgQ2nAbOoTIPLHgSZVYHpaC3rceThkjZPy3Z2EQ5fyg==} + /@chakra-ui/slider/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-nUHQ1YcRDfELMR6n9tfko3Rn82j9JCEtSDy3F+HumUeg0YXYXaaHLijsUpRRUa8ew8jwVuooAcUWW1MYCYekhQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/number-utils': 2.0.2 + '@chakra-ui/react-context': 2.0.2_react@18.2.0 + '@chakra-ui/react-types': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-callback-ref': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-controllable-state': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-merge-refs': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-pan-event': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-size': 2.0.2_react@18.2.0 + '@chakra-ui/react-use-update-effect': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy react: 18.2.0 dev: false - /@chakra-ui/spinner/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-4EP3+zUnri7NHn8We67apZMSM0+hyIkWvqDIBldHHxDt78doXmahDcAIFzpkIY3fwOq7/yvXrOoOxGOjhyKjoQ==} + /@chakra-ui/spinner/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-hRyUO6/qiP2qqeZIOJuPn7furrA1+72/mX7BfWuEifVgCcMJuGayHyFvhVwiEfnRZXLHMgZ8bxK2rycGr5xAYA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - '@chakra-ui/visually-hidden': 2.0.6_2ceav2ty4h5gkpnoesr62job6y + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + '@chakra-ui/visually-hidden': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu react: 18.2.0 dev: false - /@chakra-ui/stat/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-qJtW6XtQ59pU8S7JhLAQwXlogn4hvD4SrztDaZsEdpqRPzT6BiEEe7Ygk9VATRBQAT4MdxLlnTfUYaVc1PAu4A==} + /@chakra-ui/stat/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-aKMxI/qpSXCAMS8TD8kHhT3cTJDvKT75K1r+azZDb3NHOMjIzjl2pFI7XgPmgizz/BS8ADByLipK9bEV97GIsw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - '@chakra-ui/visually-hidden': 2.0.6_2ceav2ty4h5gkpnoesr62job6y + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + '@chakra-ui/visually-hidden': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu react: 18.2.0 dev: false - /@chakra-ui/styled-system/2.2.5: - resolution: {integrity: sha512-ksCkkMXDXyyAIbHMbiaAad8e3TpC0UgWH3Fd1FRMsGxbI4cv7pUHDaQsqSIZP0RGbYEBB9JfCV7LvwzkB3l9mw==} + /@chakra-ui/styled-system/2.2.7: + resolution: {integrity: sha512-8kG4ItrQ26IB9B6+yfrslPUvOGxquaOCBg15mofsEIlwFHhBtcJ26hu2ByDGG3LRGHLStbcJcSPeg+sebkGiPw==} dependencies: - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/utils': 2.0.8 csstype: 3.1.0 - /@chakra-ui/switch/2.0.8_g53vxbe534pczvfxm6p453kz4e: - resolution: {integrity: sha512-2hme6MgeKkqz+LBJwi3RODPPcQPZ5T8pDdxLqPWW29OvjWg+nDwZNXDqp3tFG+Lt4LQScG+rIijLhuiT+eTuhQ==} + /@chakra-ui/switch/2.0.10_ww6d7e3rfzhiohgpyxb4ijo6ci: + resolution: {integrity: sha512-t7MYTuVWYovlgw1uh1aSzIwn5vwpyysBYMc71kx6rrC11aHwZWs5+agH05agUmYRXHXHSwDdWUjtbp4OoFctUA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/checkbox': 2.1.5_g53vxbe534pczvfxm6p453kz4e - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/checkbox': 2.1.7_ww6d7e3rfzhiohgpyxb4ijo6ci + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/system/2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy: - resolution: {integrity: sha512-KAqnxW0MaiVYd28SJKYJ6x4qzlzEJZKOKZk/QtUb6UKPBWluusWVVRfXQc9KDhKwy3r0DLWP9pzfnDrp+D3Hpg==} + /@chakra-ui/system/2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy: + resolution: {integrity: sha512-I5q38ObqCrGXmLsxkc56F+1RONbpIIFJvOgq1upXMPOJWHqkzmdqaoJtpANhoE2LvB0GH/gRniiWN17WBCsOIQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18' dependencies: - '@chakra-ui/color-mode': 2.1.4_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/styled-system': 2.2.5 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/color-mode': 2.1.6_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/styled-system': 2.2.7 + '@chakra-ui/utils': 2.0.8 '@emotion/react': 11.10.0_msmmgljd7hl2w2irtggflhmema '@emotion/styled': 11.10.0_5sec57kzpgkzooe4crua5kfcly react: 18.2.0 react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-rzDNoDv/q1llfkWXQbR+XI9glLCJNqK0Aqvk1lbyk5cO3tvZMn1X3HRoxsU1Cm/bFcQKjk/e2CjR4ff5sSAyUg==} + /@chakra-ui/table/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-V2fOKUsZT/wJp1GfYVf8jl1em8grCmp45hBhwEZu6U4579ihzddxFvg++YLNCzFJn2NOocm5gGMQGO/HLq4mkQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/tabs/2.0.8_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-7ce8ie/+zF+qyQRo+CcfeSreXLaQ3oJJ4Dn4Hkeg4mNcP1JMdajNWa4F8tpmBxyUcnrPTLu2KpYSia92bS8cUQ==} + /@chakra-ui/tabs/2.0.10_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-+qrpQjb8l8nbPjG9WhnANgXFFhsKEUKX+lkVqdB8gpOalPHo67d0vBBpgwBK31sY0X0JNErBT2td9lWuyrQsIg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/clickable': 2.0.6_react@18.2.0 - '@chakra-ui/descendant': 3.0.5_react@18.2.0 - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/clickable': 2.0.8_react@18.2.0 + '@chakra-ui/descendant': 3.0.7_react@18.2.0 + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/tag/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-bet5mMllbDq2xgHAYxM6Rj5V/E8010F9Z4ZeeYDHCzgqowFl6yU0EwxfKO480CGe0SiGmMyogildJyt9BStQ1A==} + /@chakra-ui/tag/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-TfAehlhq+peluH2xsj5KS43IggFRHX8m7FyewdRuacL6ZOCQW3qDtJpTP/hF2maqavIgdzdWN87Y6gbtnS4Kqw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/icon': 3.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/icon': 3.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/textarea/2.0.7_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-Ym3aHEawscvcgfun2StDK/oOBtmPnakm3ECQIvTd0caK0UpV3LP6XhCNyVT90SyLZ4WSPsoTof1G+y+AGBMWKA==} + /@chakra-ui/textarea/2.0.9_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-5GSxqb5UPvMu/EUHnkUUJd8msYXR6v325RM1Bhf+xSCmt/JX6ImKi0KF36tHQLhWWbqZUBukF9A3INy2VdSMgA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/form-control': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/form-control': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@chakra-ui/theme-tools/2.0.7_r56oxewql32lblvauqybun6z4e: - resolution: {integrity: sha512-8brW2F/LbkSTYpCUAs49RnVw65Exbs+bDo3Kv/Q7TBrUO+peNPtwSdzZlK/NwSwk9mx1W19l4VEtPkSl86LFjg==} + /@chakra-ui/theme-tools/2.0.9_jymh7qwbtg2qca3scalvdmkcti: + resolution: {integrity: sha512-mdLONajdFWaXzEKvuod7ikioWTrAIAlZnXt55XfBOU3htJgRls49y/DltirN8+EUz6RlZ7oZfCYNf6aRMJH+rg==} peerDependencies: '@chakra-ui/styled-system': '>=2.0.0' dependencies: - '@chakra-ui/anatomy': 2.0.3 - '@chakra-ui/styled-system': 2.2.5 - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/anatomy': 2.0.4 + '@chakra-ui/styled-system': 2.2.7 + '@chakra-ui/utils': 2.0.8 '@ctrl/tinycolor': 3.4.1 dev: false - /@chakra-ui/theme/2.1.5_r56oxewql32lblvauqybun6z4e: - resolution: {integrity: sha512-wUeXQLUrEgHuOLQi13r5ZP5Z348yVdIYfe7Ky7xXJ572pXc1ahNvJIJsTeDYmLrsRS2Knrv6DftCIYLWFiz4mw==} + /@chakra-ui/theme/2.1.7_jymh7qwbtg2qca3scalvdmkcti: + resolution: {integrity: sha512-p4UQPPTHhgAS0ieMS5xUnMY6rHizdvM7vLUrpz+bljvfaR+TX4aHFnUihAfEtaCmqMUxR2tgkRcvAFtlbTAezA==} peerDependencies: '@chakra-ui/styled-system': '>=2.0.0' dependencies: - '@chakra-ui/anatomy': 2.0.3 - '@chakra-ui/styled-system': 2.2.5 - '@chakra-ui/theme-tools': 2.0.7_r56oxewql32lblvauqybun6z4e - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/anatomy': 2.0.4 + '@chakra-ui/styled-system': 2.2.7 + '@chakra-ui/theme-tools': 2.0.9_jymh7qwbtg2qca3scalvdmkcti + '@chakra-ui/utils': 2.0.8 dev: false - /@chakra-ui/toast/3.0.4_cctmh66peoxukhyjvr5atz2cee: - resolution: {integrity: sha512-q3h8mbG+4K3BIXd6I5UxWJCVhqjLr8lFJCc6rTtUB1UwW3JeYiKnSnG9iuKiqOlC3S9aAUnTaFpwJcWKKUVWug==} + /@chakra-ui/toast/3.0.6_i2histwdpw2oikyyak6xlgsbf4: + resolution: {integrity: sha512-4e3RmpUxyvb0tt1pmezh/IiKEKMqrjsfMPNCMCJzN7gY/yuZAH1OrsqbgpZZ2WSzA8bAjlrpl8J0rXNlj9qHaQ==} peerDependencies: - '@chakra-ui/system': 2.2.4 + '@chakra-ui/system': 2.2.6 framer-motion: '>=4.0.0' react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/alert': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/close-button': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/portal': 2.0.6_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/theme': 2.1.5_r56oxewql32lblvauqybun6z4e - '@chakra-ui/transition': 2.0.6_6dchco232wlvtcqfc73clb5upq - '@chakra-ui/utils': 2.0.6 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/alert': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/close-button': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/portal': 2.0.8_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/theme': 2.1.7_jymh7qwbtg2qca3scalvdmkcti + '@chakra-ui/transition': 2.0.8_o35jr3ogmpc5um7nrkcrhxg2xa + '@chakra-ui/utils': 2.0.8 + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: - '@chakra-ui/styled-system' dev: false - /@chakra-ui/tooltip/2.0.7_mkn3mf4lnufcw7w2xjebw44jmu: - resolution: {integrity: sha512-+WRffUg3kmCLeg8CNbLX6IbWyEHoslyrxs1SOWGN1sHAn6ZWljHVdczDENTRsozEoz/7zZz5b21Z9lehUZ9Bcg==} + /@chakra-ui/tooltip/2.0.9_zkxeaxowwyh4xs6mcqbccpccsy: + resolution: {integrity: sha512-woJl145UdVPrkIn/oSLTNZxtQnhgSINo6RXZlC4gA2Y+4DTdEd1whvVFhpVATXbnyTwLR44yytByTLuglt/z8A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' react-dom: '>=18' dependencies: - '@chakra-ui/hooks': 2.0.6_react@18.2.0 - '@chakra-ui/popper': 3.0.4_react@18.2.0 - '@chakra-ui/portal': 2.0.6_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/react-utils': 2.0.3_react@18.2.0 - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 - '@chakra-ui/visually-hidden': 2.0.6_2ceav2ty4h5gkpnoesr62job6y - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/hooks': 2.0.8_react@18.2.0 + '@chakra-ui/popper': 3.0.6_react@18.2.0 + '@chakra-ui/portal': 2.0.8_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.5_react@18.2.0 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 + '@chakra-ui/visually-hidden': 2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/transition/2.0.6_6dchco232wlvtcqfc73clb5upq: - resolution: {integrity: sha512-6zDZzYiCKZvZVkjOOCiFw8j56SSTMuVfmRT/yUfWzYNhZn6grS1yliNJLQ5UL2GW4SQb4Rp7GeMRVz3TCubnrg==} + /@chakra-ui/transition/2.0.8_o35jr3ogmpc5um7nrkcrhxg2xa: + resolution: {integrity: sha512-XBXYvynMkY1hju4BV8R+URo3OszmqeE4JwMtKond3QH9x6nMOJItGbdJKCng2hHIS2hm+jXMqFAVc29PZEiqeA==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18' dependencies: - '@chakra-ui/utils': 2.0.6 - framer-motion: 7.0.0_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/utils': 2.0.8 + framer-motion: 7.2.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/utils/2.0.6: - resolution: {integrity: sha512-ZjrHZo9GXZeAU1uvn/ZLU37avUz/3wsoqulRDSL//Kc/RrcmP1Ru6pmQ746qN3An+O29RFTQ4lj8M0R2T+I2uA==} + /@chakra-ui/utils/2.0.8: + resolution: {integrity: sha512-5xSzOYSYbJEh+myY1mC6rOX+mzM/F2fiDqAw0zybHhfUab4zPHCO5RlgYVJ0L1DlGZUogVgRP6szH1xoBCcWQg==} dependencies: '@types/lodash.mergewith': 4.6.6 css-box-model: 1.2.1 framesync: 5.3.0 lodash.mergewith: 4.6.2 - /@chakra-ui/visually-hidden/2.0.6_2ceav2ty4h5gkpnoesr62job6y: - resolution: {integrity: sha512-Gd5j4Q/VbOhiA7jKAEH7p/TIVIlkC6KdzSGPoSnevpXoy0pcZtzvTyvOYvd8WCjgLoATv+dDTK9hy6bWURO60w==} + /@chakra-ui/visually-hidden/2.0.8_hsmxbru7kh4m4fkmapdkd6vvgu: + resolution: {integrity: sha512-BIFtNYNgYWAa40csnAqi+NCiMorD0JQg9pm43pmbgqgiX2GJTR3UYnx7JI9bOiQc6HQZnlV0/opJFDdWpQlHvg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' dependencies: - '@chakra-ui/system': 2.2.4_rq3l25qc4qpq3j4w6o4x7hatzy - '@chakra-ui/utils': 2.0.6 + '@chakra-ui/system': 2.2.6_rq3l25qc4qpq3j4w6o4x7hatzy + '@chakra-ui/utils': 2.0.8 react: 18.2.0 dev: false - /@codemirror/autocomplete/6.1.0: + /@codemirror/autocomplete/6.1.0_cb7ocycrcgpxsqrosocw3o7ksu: resolution: {integrity: sha512-wtO4O5WDyXhhCd4q4utDIDZxnQfmJ++3dGBCG9LMtI79+92OcA1DVk/n7BEupKmjIr8AzvptDz7YQ9ud6OkU+A==} + peerDependencies: + '@codemirror/language': ^6.0.0 + '@codemirror/state': ^6.0.0 + '@codemirror/view': ^6.0.0 + '@lezer/common': ^1.0.0 dependencies: '@codemirror/language': 6.2.0 '@codemirror/state': 6.1.1 @@ -4003,31 +4452,36 @@ packages: '@lezer/common': 1.0.0 dev: false - /@codemirror/lang-css/6.0.0: + /@codemirror/lang-css/6.0.0_5iuszxvunsfdgagvpwnubh4wt4: resolution: {integrity: sha512-jBqc+BTuwhNOTlrimFghLlSrN6iFuE44HULKWoR4qKYObhOIl9Lci1iYj6zMIte1XTQmZguNvjXMyr43LUKwSw==} dependencies: - '@codemirror/autocomplete': 6.1.0 + '@codemirror/autocomplete': 6.1.0_cb7ocycrcgpxsqrosocw3o7ksu '@codemirror/language': 6.2.0 '@codemirror/state': 6.1.1 '@lezer/css': 1.0.0 + transitivePeerDependencies: + - '@codemirror/view' + - '@lezer/common' dev: false - /@codemirror/lang-html/6.1.0: + /@codemirror/lang-html/6.1.0_@codemirror+view@6.1.0: resolution: {integrity: sha512-gA7NmJxqvnhwza05CvR7W/39Ap9r/4Vs9uiC0IeFYo1hSlJzc/8N6Evviz6vTW1x8SpHcRYyqKOf6rpl6LfWtg==} dependencies: - '@codemirror/autocomplete': 6.1.0 - '@codemirror/lang-css': 6.0.0 + '@codemirror/autocomplete': 6.1.0_cb7ocycrcgpxsqrosocw3o7ksu + '@codemirror/lang-css': 6.0.0_5iuszxvunsfdgagvpwnubh4wt4 '@codemirror/lang-javascript': 6.0.2 '@codemirror/language': 6.2.0 '@codemirror/state': 6.1.1 '@lezer/common': 1.0.0 '@lezer/html': 1.0.0 + transitivePeerDependencies: + - '@codemirror/view' dev: false /@codemirror/lang-javascript/6.0.2: resolution: {integrity: sha512-BZRJ9u/zl16hLkSpDAWm73mrfIR7HJrr0lvnhoSOCQVea5BglguWI/slxexhvUb0CB5cXgKWuo2bM+N9EhIaZw==} dependencies: - '@codemirror/autocomplete': 6.1.0 + '@codemirror/autocomplete': 6.1.0_cb7ocycrcgpxsqrosocw3o7ksu '@codemirror/language': 6.2.0 '@codemirror/lint': 6.0.0 '@codemirror/state': 6.1.1 @@ -5181,8 +5635,8 @@ packages: uuid: 8.3.2 dev: false - /@giphy/react-components/6.0.0_dvp6wxm7rs4sirs67lhxth6k7q: - resolution: {integrity: sha512-LVHEC/hlNprvME43vm4i71p1WBWLW6dKOarIwsGhA8kd11aD5aphxffRYk752pCP7b8uqa41gMPoDOB1kSlUIQ==} + /@giphy/react-components/6.1.1_dvp6wxm7rs4sirs67lhxth6k7q: + resolution: {integrity: sha512-6ladgVwRkzsk1Sp63GcuTi39nvviNuHBOCnhWxleSlMETDx/QF5wNWIgstioBIFfba8a78pAjfOQHCgZyR4fpQ==} peerDependencies: react: 16.10.2 - 18 dependencies: @@ -5646,8 +6100,8 @@ packages: tslib: 2.4.0 dev: false - /@next/bundle-analyzer/12.2.4: - resolution: {integrity: sha512-7kyv8UBSq85wODeqemHJrvc1eg7He+oyA04XTKL8gUvE50uKlIpCh5PXP4ko4yphhWADGq8LeFOZXLIfbc7Fdg==} + /@next/bundle-analyzer/12.2.5: + resolution: {integrity: sha512-lj7ese4GnfbO8tCc9/g1O3/hzgb+pVkrsNgfF929CgZHCFQxplqxY++MIO4aCFwzt0vDx0KL78LOVxzjDDKjlA==} dependencies: webpack-bundle-analyzer: 4.3.0 transitivePeerDependencies: @@ -5655,113 +6109,113 @@ packages: - utf-8-validate dev: true - /@next/env/12.2.4: - resolution: {integrity: sha512-/gApFXWk5CCLFQJL5IYJXxPQuG5tz5nPX4l27A9Zm/+wJxiwFrRSP54AopDxIv4JRp/rGwcgk/lZS/0Clw8jYA==} + /@next/env/12.2.5: + resolution: {integrity: sha512-vLPLV3cpPGjUPT3PjgRj7e3nio9t6USkuew3JE/jMeon/9Mvp1WyR18v3iwnCuX7eUAm1HmAbJHHLAbcu/EJcw==} - /@next/eslint-plugin-next/12.2.4: - resolution: {integrity: sha512-ChDkUIkJeYWKRx+FdF+EhUgvKtK1wF+Xew4Os7ef3iAjMch5GGBiezw2zGXTa/C0E6potz4j11EpX89mngffug==} + /@next/eslint-plugin-next/12.2.5: + resolution: {integrity: sha512-VBjVbmqEzGiOTBq4+wpeVXt/KgknnGB6ahvC/AxiIGnN93/RCSyXhFRI4uSfftM2Ba3w7ZO7076bfKasZsA0fw==} dependencies: glob: 7.1.7 dev: true - /@next/swc-android-arm-eabi/12.2.4: - resolution: {integrity: sha512-P4YSFNpmXXSnn3P1qsOAqz+MX3On9fHrlc8ovb/CFJJoU+YLCR53iCEwfw39e0IZEgDA7ttgr108plF8mxaX0g==} + /@next/swc-android-arm-eabi/12.2.5: + resolution: {integrity: sha512-cPWClKxGhgn2dLWnspW+7psl3MoLQUcNqJqOHk2BhNcou9ARDtC0IjQkKe5qcn9qg7I7U83Gp1yh2aesZfZJMA==} engines: {node: '>= 10'} cpu: [arm] os: [android] requiresBuild: true optional: true - /@next/swc-android-arm64/12.2.4: - resolution: {integrity: sha512-4o2n14E18O+8xHlf6dgJsWPXN9gmSmfIe2Z0EqKDIPBBkFt/2CyrH0+vwHnL2l7xkDHhOGfZYcYIWVUR5aNu0A==} + /@next/swc-android-arm64/12.2.5: + resolution: {integrity: sha512-vMj0efliXmC5b7p+wfcQCX0AfU8IypjkzT64GiKJD9PgiA3IILNiGJr1fw2lyUDHkjeWx/5HMlMEpLnTsQslwg==} engines: {node: '>= 10'} cpu: [arm64] os: [android] requiresBuild: true optional: true - /@next/swc-darwin-arm64/12.2.4: - resolution: {integrity: sha512-DcUO6MGBL9E3jj5o86MUnTOy4WawIJJhyCcFYO4f51sbl7+uPIYIx40eo98A6NwJEXazCqq1hLeqOaNTAIvDiQ==} + /@next/swc-darwin-arm64/12.2.5: + resolution: {integrity: sha512-VOPWbO5EFr6snla/WcxUKtvzGVShfs302TEMOtzYyWni6f9zuOetijJvVh9CCTzInnXAZMtHyNhefijA4HMYLg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] requiresBuild: true optional: true - /@next/swc-darwin-x64/12.2.4: - resolution: {integrity: sha512-IUlFMqeLjdIzDorrGC2Dt+2Ae3DbKQbRzCzmDq4/CP1+jJGeDXo/2AHnlE+WYnwQAC4KtAz6pbVnd3KstZWsVA==} + /@next/swc-darwin-x64/12.2.5: + resolution: {integrity: sha512-5o8bTCgAmtYOgauO/Xd27vW52G2/m3i5PX7MUYePquxXAnX73AAtqA3WgPXBRitEB60plSKZgOTkcpqrsh546A==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] requiresBuild: true optional: true - /@next/swc-freebsd-x64/12.2.4: - resolution: {integrity: sha512-475vwyWcjnyDVDWLgAATP0HI8W1rwByc+uXk1B6KkAVFhkoDgH387LW0uNqxavK+VxCzj3avQXX/58XDvxtSlg==} + /@next/swc-freebsd-x64/12.2.5: + resolution: {integrity: sha512-yYUbyup1JnznMtEBRkK4LT56N0lfK5qNTzr6/DEyDw5TbFVwnuy2hhLBzwCBkScFVjpFdfiC6SQAX3FrAZzuuw==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] requiresBuild: true optional: true - /@next/swc-linux-arm-gnueabihf/12.2.4: - resolution: {integrity: sha512-qZW+L3iG3XSGtlOPmD5RRWXyk6ZNdscLV0BQjuDvP+exTg+uixqHXOHz0/GVATIJEBQOF0Kew7jAXVXEP+iRTQ==} + /@next/swc-linux-arm-gnueabihf/12.2.5: + resolution: {integrity: sha512-2ZE2/G921Acks7UopJZVMgKLdm4vN4U0yuzvAMJ6KBavPzqESA2yHJlm85TV/K9gIjKhSk5BVtauIUntFRP8cg==} engines: {node: '>= 10'} cpu: [arm] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-gnu/12.2.4: - resolution: {integrity: sha512-fEPRjItWYaKyyG9N+2HIA59OBHIhk7WC+Rh+LwXsh0pQe870Ykpek3KQs0umjsrEGe57NyMomq3f80/N8taDvA==} + /@next/swc-linux-arm64-gnu/12.2.5: + resolution: {integrity: sha512-/I6+PWVlz2wkTdWqhlSYYJ1pWWgUVva6SgX353oqTh8njNQp1SdFQuWDqk8LnM6ulheVfSsgkDzxrDaAQZnzjQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-arm64-musl/12.2.4: - resolution: {integrity: sha512-rnCTzXII0EBCcFn9P5s/Dho2kPUMSX/bP0iOAj8wEI/IxUEfEElbin89zJoNW30cycHu19xY8YP4K2+hzciPzQ==} + /@next/swc-linux-arm64-musl/12.2.5: + resolution: {integrity: sha512-LPQRelfX6asXyVr59p5sTpx5l+0yh2Vjp/R8Wi4X9pnqcayqT4CUJLiHqCvZuLin3IsFdisJL0rKHMoaZLRfmg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-gnu/12.2.4: - resolution: {integrity: sha512-PhXX6NSuIuhHInxPY2VkG2Bl7VllsD3Cjx+pQcS1wTym7Zt7UoLvn05PkRrkiyIkvR+UXnqPUM3TYiSbnemXEw==} + /@next/swc-linux-x64-gnu/12.2.5: + resolution: {integrity: sha512-0szyAo8jMCClkjNK0hknjhmAngUppoRekW6OAezbEYwHXN/VNtsXbfzgYOqjKWxEx3OoAzrT3jLwAF0HdX2MEw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-linux-x64-musl/12.2.4: - resolution: {integrity: sha512-GmC/QROiUZpFirHRfPQqMyCXZ+5+ndbBZrMvL74HtQB/CKXB8K1VM+rvy9Gp/5OaU8Rxp48IcX79NOfI2LiXlA==} + /@next/swc-linux-x64-musl/12.2.5: + resolution: {integrity: sha512-zg/Y6oBar1yVnW6Il1I/08/2ukWtOG6s3acdJdEyIdsCzyQi4RLxbbhkD/EGQyhqBvd3QrC6ZXQEXighQUAZ0g==} engines: {node: '>= 10'} cpu: [x64] os: [linux] requiresBuild: true optional: true - /@next/swc-win32-arm64-msvc/12.2.4: - resolution: {integrity: sha512-9XKoCXbNZuaMRPtcKQz3+hgVpkMosaLlcxHFXT8/j4w61k7/qvEbrkMDS9WHNrD/xVcLycwhPRgXcns2K1BdBQ==} + /@next/swc-win32-arm64-msvc/12.2.5: + resolution: {integrity: sha512-3/90DRNSqeeSRMMEhj4gHHQlLhhKg5SCCoYfE3kBjGpE63EfnblYUqsszGGZ9ekpKL/R4/SGB40iCQr8tR5Jiw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-ia32-msvc/12.2.4: - resolution: {integrity: sha512-hEyRieZKH9iw4AzvXaQ+Fyb98k0G/o9QcRGxA1/O/O/elf1+Qvuwb15phT8GbVtIeNziy66XTPOhKKfdr8KyUg==} + /@next/swc-win32-ia32-msvc/12.2.5: + resolution: {integrity: sha512-hGLc0ZRAwnaPL4ulwpp4D2RxmkHQLuI8CFOEEHdzZpS63/hMVzv81g8jzYA0UXbb9pus/iTc3VRbVbAM03SRrw==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] requiresBuild: true optional: true - /@next/swc-win32-x64-msvc/12.2.4: - resolution: {integrity: sha512-5Pl1tdMJWLy4rvzU1ecx0nHWgDPqoYuvYoXE/5X0Clu9si/yOuBIj573F2kOTY7mu0LX2wgCJVSnyK0abHBxIw==} + /@next/swc-win32-x64-msvc/12.2.5: + resolution: {integrity: sha512-7h5/ahY7NeaO2xygqVrSG/Y8Vs4cdjxIjowTZ5W6CKoTKn7tmnuxlUc2h74x06FKmbhAd9agOjr/AOKyxYYm9Q==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -5795,7 +6249,7 @@ packages: engines: {node: '>=14'} hasBin: true dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 playwright-core: 1.25.0 dev: true @@ -5817,8 +6271,8 @@ packages: prettier: 2.7.1 dev: true - /@prisma/client/4.1.1_prisma@4.1.1: - resolution: {integrity: sha512-2pXuIUYxHv5H9o6QTa1VIsl4yMgsAjKQOitlo8WVTB+vo73rmMJITBPavdGUZSWUc7adMkFzEV3y5rVTUQr77Q==} + /@prisma/client/4.2.1_prisma@4.2.1: + resolution: {integrity: sha512-PZBkY60+k5oix+e6IUfl3ub8TbRLNsPLdfWrdy2eh80WcHTaT+/UfvXf/B7gXedH7FRtbPFHZXk1hZenJiJZFQ==} engines: {node: '>=14.17'} requiresBuild: true peerDependencies: @@ -5827,16 +6281,16 @@ packages: prisma: optional: true dependencies: - '@prisma/engines-version': 4.1.0-48.8d8414deb360336e4698a65aa45a1fbaf1ce13d8 - prisma: 4.1.1 + '@prisma/engines-version': 4.2.0-33.2920a97877e12e055c1333079b8d19cee7f33826 + prisma: 4.2.1 dev: false - /@prisma/engines-version/4.1.0-48.8d8414deb360336e4698a65aa45a1fbaf1ce13d8: - resolution: {integrity: sha512-cRRJwpHFGFJZvtHbY3GZjMffNBEjjZk68ztn+S2hDgPCGB4H66IK26roK94GJxBodSehwRJ0wGyebC2GoIH1JQ==} + /@prisma/engines-version/4.2.0-33.2920a97877e12e055c1333079b8d19cee7f33826: + resolution: {integrity: sha512-tktkqdiwqE4QhmE088boPt+FwPj1Jub/zk+5F6sEfcRHzO5yz9jyMD5HFVtiwxZPLx/8Xg9ElnuTi8E5lWVQFQ==} dev: false - /@prisma/engines/4.1.1: - resolution: {integrity: sha512-DCw8L/SS0IXqmj5IW/fMxOXiifnsfjBzDfRhf0j3NFWqvMCh9OtfjmXQZxVgI2mwvJLc/5jzXhkiWT39qS09dA==} + /@prisma/engines/4.2.1: + resolution: {integrity: sha512-0KqBwREUOjBiHwITsQzw2DWfLHjntvbqzGRawj4sBMnIiL5CXwyDUKeHOwXzKMtNr1rEjxEsypM14g0CzLRK3g==} requiresBuild: true /@radix-ui/react-compose-refs/0.1.0_react@18.2.0: @@ -5887,47 +6341,47 @@ packages: tslib: 2.4.0 dev: false - /@rollup/plugin-commonjs/22.0.2_rollup@2.77.2: + /@rollup/plugin-commonjs/22.0.2_rollup@2.78.1: resolution: {integrity: sha512-//NdP6iIwPbMTcazYsiBMbJW7gfmpHom33u1beiIoHDEM0Q9clvtQB1T0efvMqHeKsGohiHo97BCPCkBXdscwg==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.2 + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 commondir: 1.0.1 estree-walker: 2.0.2 glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 resolve: 1.22.1 - rollup: 2.77.2 + rollup: 2.78.1 dev: true - /@rollup/plugin-json/4.1.0_rollup@2.77.2: + /@rollup/plugin-json/4.1.0_rollup@2.78.1: resolution: {integrity: sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.2 - rollup: 2.77.2 + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 + rollup: 2.78.1 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.77.2: + /@rollup/plugin-node-resolve/13.3.0_rollup@2.78.1: resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.2 + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 '@types/resolve': 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.77.2 + rollup: 2.78.1 dev: true - /@rollup/plugin-typescript/8.3.4_mad6iryzja5sfcvlsiy3osqulq: + /@rollup/plugin-typescript/8.3.4_5zsqiitiqqdgwm4iemtywlnhku: resolution: {integrity: sha512-wt7JnYE9antX6BOXtsxGoeVSu4dZfw0dU3xykfOQ4hC3EddxRbVG/K0xiY1Wup7QOHJcjLYXWAn0Kx9Z1SBHHg==} engines: {node: '>=8.0.0'} peerDependencies: @@ -5938,14 +6392,14 @@ packages: tslib: optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.2 + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 resolve: 1.22.1 - rollup: 2.77.2 + rollup: 2.78.1 tslib: 2.4.0 typescript: 4.7.4 dev: true - /@rollup/plugin-typescript/8.3.4_oo3i3f3qmqiztdz5qgxrrjmd5e: + /@rollup/plugin-typescript/8.3.4_accrhai6qopda76wnqb3pkewpq: resolution: {integrity: sha512-wt7JnYE9antX6BOXtsxGoeVSu4dZfw0dU3xykfOQ4hC3EddxRbVG/K0xiY1Wup7QOHJcjLYXWAn0Kx9Z1SBHHg==} engines: {node: '>=8.0.0'} peerDependencies: @@ -5956,13 +6410,13 @@ packages: tslib: optional: true dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.77.2 + '@rollup/pluginutils': 3.1.0_rollup@2.78.1 resolve: 1.22.1 - rollup: 2.77.2 + rollup: 2.78.1 typescript: 4.7.4 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.77.2: + /@rollup/pluginutils/3.1.0_rollup@2.78.1: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -5971,7 +6425,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.77.2 + rollup: 2.78.1 dev: true /@rollup/pluginutils/4.2.1: @@ -5986,13 +6440,13 @@ packages: resolution: {integrity: sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==} dev: true - /@sentry/browser/7.9.0: - resolution: {integrity: sha512-R0/EatdSBPZ+orsD5Mu/Gq8XmEfr/KCzJv05S35GVPDkIgczIJ2AYlHgchnEO0m63jDFyWLzUteQmPZ3pao9PQ==} + /@sentry/browser/7.11.1: + resolution: {integrity: sha512-k2XHuzPfnm8VJPK5eWd1+Y5VCgN42sLveb8Qxc3prb5PSL416NWMLZaoB7RMIhy430fKrSFiosnm6QDk2M6pbA==} engines: {node: '>=8'} dependencies: - '@sentry/core': 7.9.0 - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/core': 7.11.1 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 tslib: 1.14.1 dev: false @@ -6014,37 +6468,37 @@ packages: - supports-color dev: false - /@sentry/core/7.9.0: - resolution: {integrity: sha512-WVGd2hV7Clcpl7/GL8LsRr4Zk9o/7o4rZHfs1Qed5lMRNYcxiMwucC1CYILVpJqVfY+8vIRP9v9Ss9ta2VUikw==} + /@sentry/core/7.11.1: + resolution: {integrity: sha512-kaDSZ6VNuO4ZZdqUOOX6XM6x+kjo2bMnDQ3IJG51FPvVjr8lXYhXj1Ccxcot3pBYAIWPPby2+vNDOXllmXqoBA==} engines: {node: '>=8'} dependencies: - '@sentry/hub': 7.9.0 - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/hub': 7.11.1 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 tslib: 1.14.1 dev: false - /@sentry/hub/7.9.0: - resolution: {integrity: sha512-KzPbGCB5mONgsXEzqHy6uOaOuqLnhmFmSpGg+M03J6UJnJaNM7nrNp80MhStmjLMq6whEYVE07DrMAn3+iaQdg==} + /@sentry/hub/7.11.1: + resolution: {integrity: sha512-M6ClgdXdptS0lUBKB5KpXXe2qMQhsoiEN2pEGRI6+auqhfHCUQB1ZXsfjiOYexKC9fwx7TyFyZ9Jcaf2DTxEhw==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 tslib: 1.14.1 dev: false - /@sentry/integrations/7.9.0: - resolution: {integrity: sha512-HQX7Fxj9Kjobp8AVipPPusjpogRJuMYdCYtCJMUHpmGB9BVOZpKcnr5tUR39GNpTxlb0+L9/4ET6Bg+2HfIrRg==} + /@sentry/integrations/7.11.1: + resolution: {integrity: sha512-G4aw9X2WdRGwLk/2pAj+5LuZnLM4u1GG3o8bOWNASR9E7IiQQ9ERYlnfW7jas+08B1Q61WLwJPXZhJxvQfxLQw==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 localforage: 1.10.0 tslib: 1.14.1 dev: false - /@sentry/nextjs/7.9.0_next@12.2.4+react@18.2.0: - resolution: {integrity: sha512-yToPcsoMwfFyUS7STmJdwbE6JxlUHaxxnO8Qwpu9jFF2dH925r3MBWkwR1H2wfR1GbOLVwGUmQIdL1LAR8novw==} + /@sentry/nextjs/7.11.1_xhgugymgk3ncoadul5ja7muiri: + resolution: {integrity: sha512-/Xvllpaqho9YOWt2NrvlwdydAaRo+3Dz5SbvVNSUbQCyA1dg9NqWOI+5b6EzOBfyQVIGVYUIz5MT8fkF+0kzqg==} engines: {node: '>=8'} peerDependencies: next: ^10.0.8 || ^11.0 || ^12.0 @@ -6054,31 +6508,34 @@ packages: webpack: optional: true dependencies: - '@sentry/core': 7.9.0 - '@sentry/hub': 7.9.0 - '@sentry/integrations': 7.9.0 - '@sentry/node': 7.9.0 - '@sentry/react': 7.9.0_react@18.2.0 - '@sentry/tracing': 7.9.0 - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@babel/parser': 7.18.11 + '@sentry/core': 7.11.1 + '@sentry/hub': 7.11.1 + '@sentry/integrations': 7.11.1 + '@sentry/node': 7.11.1 + '@sentry/react': 7.11.1_react@18.2.0 + '@sentry/tracing': 7.11.1 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 '@sentry/webpack-plugin': 1.19.0 - next: 12.2.4_twoewwu6sg7cdf3ao6njtbftne + jscodeshift: 0.13.1_@babel+preset-env@7.18.10 + next: 12.2.5_twoewwu6sg7cdf3ao6njtbftne react: 18.2.0 tslib: 1.14.1 transitivePeerDependencies: + - '@babel/preset-env' - encoding - supports-color dev: false - /@sentry/node/7.9.0: - resolution: {integrity: sha512-MeggSCLyhUhsX3gRRvDhTADKYshuWjTRO/dUv3Jw+2xToSDvSWXJXDkIg5mCdlyOhh9/G+5xdWY58CfomzPZgg==} + /@sentry/node/7.11.1: + resolution: {integrity: sha512-EAAHou/eHSzwRK0Z5qnQiwXNbkpnjWjloaG979gftA+MS/kM0AxQHdOrSJQbOEaqRf3F7/eC4Hj+1tfglAuaLQ==} engines: {node: '>=8'} dependencies: - '@sentry/core': 7.9.0 - '@sentry/hub': 7.9.0 - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/core': 7.11.1 + '@sentry/hub': 7.11.1 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 cookie: 0.4.2 https-proxy-agent: 5.0.1 lru_map: 0.3.3 @@ -6087,40 +6544,40 @@ packages: - supports-color dev: false - /@sentry/react/7.9.0_react@18.2.0: - resolution: {integrity: sha512-T3jHDH0AYmbyyufvKEOCFnIeLTU/bHUZM+e3eTevcq/eXFHS7JTK/8qsRnK0sYUT7/JolbpG/iq7QDkeGvSxpQ==} + /@sentry/react/7.11.1_react@18.2.0: + resolution: {integrity: sha512-kp/vBgwNrlFEtW3e6DY9T4s3di9peL66n5UIY5n6dYkiN7A7D6/Kz1WJ/ZCL82DvaCMEY577wNyr2C+442l7fw==} engines: {node: '>=8'} peerDependencies: react: 15.x || 16.x || 17.x || 18.x dependencies: - '@sentry/browser': 7.9.0 - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/browser': 7.11.1 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 hoist-non-react-statics: 3.3.2 react: 18.2.0 tslib: 1.14.1 dev: false - /@sentry/tracing/7.9.0: - resolution: {integrity: sha512-X4HQ7jjP7qyc4saCtq31kLqQzcBpRNifE9KccgEbNXAkKoMrg5F22oUlfN2EcEWy0vm1C23juseDsOSSMXAM+A==} + /@sentry/tracing/7.11.1: + resolution: {integrity: sha512-ilgnHfpdYUWKG/5yAXIfIbPVsCfrC4ONFBR/wN25/hdAyVfXMa3AJx7NCCXxZBOPDWH3hMW8rl4La5yuDbXofg==} engines: {node: '>=8'} dependencies: - '@sentry/hub': 7.9.0 - '@sentry/types': 7.9.0 - '@sentry/utils': 7.9.0 + '@sentry/hub': 7.11.1 + '@sentry/types': 7.11.1 + '@sentry/utils': 7.11.1 tslib: 1.14.1 dev: false - /@sentry/types/7.9.0: - resolution: {integrity: sha512-VGnUgELVMpGJCYW1triO+5XSyaPjB2Zu6esUgbb8iJ5bi+OWtxklixXgwhdaTb0FDzmRL/T/pckmrIuBTLySHQ==} + /@sentry/types/7.11.1: + resolution: {integrity: sha512-gIEhOPxC2cjrxQ0+K2SFJ1P6e/an5osSxVc9OOtekN28eHtVsXFCLB8XVWeNQnS7N2VkrVrkqORMBz1kvIcvVQ==} engines: {node: '>=8'} dev: false - /@sentry/utils/7.9.0: - resolution: {integrity: sha512-4f9TZvAVopgG7Lp1TcPSekSX1Ashk68Et4T8Y+60EVX5se19i0hpytbHWWwrXSrb3w0KpGANk0byoZkdaTgkYA==} + /@sentry/utils/7.11.1: + resolution: {integrity: sha512-tRVXNT5O9ilkV31pyHeTqA1PcPQfMV/2OR6yUYM4ah+QVISovC0f0ybhByuH5nYg6x/Gsnx1o7pc8L1GE3+O7A==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.9.0 + '@sentry/types': 7.11.1 tslib: 1.14.1 dev: false @@ -6471,7 +6928,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 - '@types/node': 18.6.5 + '@types/node': 18.7.8 '@types/responselike': 1.0.0 dev: false @@ -6595,10 +7052,10 @@ packages: dependencies: '@types/istanbul-lib-report': 3.0.0 - /@types/jest/28.1.6: - resolution: {integrity: sha512-0RbGAFMfcBJKOmqRazM8L98uokwuwD5F8rHrv/ZMbrZBwVOWZUyPG6VFNscjYr/vjM3Vu4fRrCPbOs42AfemaQ==} + /@types/jest/28.1.7: + resolution: {integrity: sha512-acDN4VHD40V24tgu0iC44jchXavRNVFXQ/E6Z5XNsswgoSO/4NgsXoEYmPUGookKldlZQyIpmrEXsHI9cA3ZTA==} dependencies: - jest-matcher-utils: 28.1.3 + expect: 28.1.3 pretty-format: 28.1.3 dev: true @@ -6628,7 +7085,7 @@ packages: /@types/jsonwebtoken/8.5.8: resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 dev: true /@types/keyv/3.1.4: @@ -6660,7 +7117,7 @@ packages: /@types/micro/7.3.7: resolution: {integrity: sha512-MFsX7eCj0Tg3TtphOQvANNvNtFpya+s/rYOCdV6o+DFjOQPFi2EVRbBALjbbgZTXUaJP1Q281MJiJOD40d0UxQ==} dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 dev: true /@types/mime/1.3.2: @@ -6670,7 +7127,7 @@ packages: /@types/minio/7.0.13: resolution: {integrity: sha512-Warrx6uN4KEpBCAWiTh7ngrPoaNIckawtBXqWbFzaatG/NPRZToAv/fa9yAPA7a2FHAGhe154KqaVIqacIn2pQ==} dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 dev: true /@types/node/17.0.45: @@ -6689,11 +7146,15 @@ packages: /@types/node/18.6.5: resolution: {integrity: sha512-Xjt5ZGUa5WusGZJ4WJPbOT8QOqp6nDynVFRKcUt32bOgvXEoc6o085WNkYTMO7ifAj2isEfQQ2cseE+wT6jsRw==} + dev: false + + /@types/node/18.7.8: + resolution: {integrity: sha512-/YP55EMK2341JkODUb8DM9O0x1SIz2aBvyF33Uf1c76St3VpsMXEIW0nxuKkq/5cxnbz0RD9cfwNZHEAZQD3ag==} /@types/nodemailer/6.4.5: resolution: {integrity: sha512-zuP3nBRQHI6M2PkXnGGy1Ww4VB+MyYHGgnfV2T+JR9KLkeWqPJuyVUgLpKXuFnA/b7pZaIDFh2sV4759B7jK1g==} dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 dev: true /@types/nprogress/0.2.0: @@ -6703,7 +7164,7 @@ packages: /@types/papaparse/5.3.3: resolution: {integrity: sha512-i7fV8u843vb7nIGpcwdCsG3WjfBONeytRHK1mQL9d5KQAvFeAK2rRisDHicreYpoQ0MXocUDEqunKHTeXdvibg==} dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 dev: true /@types/parse-json/4.0.0: @@ -6868,7 +7329,7 @@ packages: dependencies: '@types/yargs-parser': 21.0.0 - /@typescript-eslint/eslint-plugin/5.32.0_iosr3hrei2tubxveewluhu5lhy: + /@typescript-eslint/eslint-plugin/5.32.0_vsoshirnpb7xw6mr7xomgfas2i: resolution: {integrity: sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6879,12 +7340,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/type-utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/type-utils': 5.32.0_4rv7y5c6xz3vfxwhbrcxxi73bq + '@typescript-eslint/utils': 5.32.0_4rv7y5c6xz3vfxwhbrcxxi73bq debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.22.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 @@ -6895,7 +7356,7 @@ packages: - supports-color dev: true - /@typescript-eslint/eslint-plugin/5.33.0_njno5y7ry2l2lcmiu4tywxkwnq: + /@typescript-eslint/eslint-plugin/5.33.0_vsoshirnpb7xw6mr7xomgfas2i: resolution: {integrity: sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6906,12 +7367,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq '@typescript-eslint/scope-manager': 5.33.0 - '@typescript-eslint/type-utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/type-utils': 5.33.0_4rv7y5c6xz3vfxwhbrcxxi73bq + '@typescript-eslint/utils': 5.33.0_4rv7y5c6xz3vfxwhbrcxxi73bq debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.22.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 @@ -6922,28 +7383,35 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==} + /@typescript-eslint/eslint-plugin/5.33.1_vsoshirnpb7xw6mr7xomgfas2i: + resolution: {integrity: sha512-S1iZIxrTvKkU3+m63YUOxYPKaP+yWDQrdhxTglVDVEVBf+aCSw85+BmJnyUaQQsk5TXFG/LpBu9fa+LrAQ91fQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: + '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.32.0 - '@typescript-eslint/types': 5.32.0 - '@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4 + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq + '@typescript-eslint/scope-manager': 5.33.1 + '@typescript-eslint/type-utils': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq + '@typescript-eslint/utils': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.22.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==} + /@typescript-eslint/parser/5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq: + resolution: {integrity: sha512-IgLLtW7FOzoDlmaMoXdxG8HOCByTBXrB1V2ZQYSEV1ggMmJfAkMWTwUjjzagS6OkfpySyhKFkBw7A9jYmcHpZA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -6952,11 +7420,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.33.0 - '@typescript-eslint/types': 5.33.0 - '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4 + '@typescript-eslint/scope-manager': 5.33.1 + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.7.4 debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.22.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color @@ -6986,7 +7454,15 @@ packages: '@typescript-eslint/visitor-keys': 5.33.0 dev: true - /@typescript-eslint/type-utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: + /@typescript-eslint/scope-manager/5.33.1: + resolution: {integrity: sha512-8ibcZSqy4c5m69QpzJn8XQq9NnqAToC8OdH/W6IXPXv83vRyEDPYLdjAlUx8h/rbusq6MkW4YdQzURGOqsn3CA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/visitor-keys': 5.33.1 + dev: true + + /@typescript-eslint/type-utils/5.32.0_4rv7y5c6xz3vfxwhbrcxxi73bq: resolution: {integrity: sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -6996,16 +7472,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/utils': 5.32.0_4rv7y5c6xz3vfxwhbrcxxi73bq debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.22.0 tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/type-utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: + /@typescript-eslint/type-utils/5.33.0_4rv7y5c6xz3vfxwhbrcxxi73bq: resolution: {integrity: sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7015,9 +7491,28 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/utils': 5.33.0_4rv7y5c6xz3vfxwhbrcxxi73bq debug: 4.3.4 - eslint: 8.21.0 + eslint: 8.22.0 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/type-utils/5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq: + resolution: {integrity: sha512-X3pGsJsD8OiqhNa5fim41YtlnyiWMF/eKsEZGsHID2HcDqeSC5yr/uLOeph8rNF2/utwuI0IQoAK3fpoxcLl2g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/utils': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq + debug: 4.3.4 + eslint: 8.22.0 tsutils: 3.21.0_typescript@4.7.4 typescript: 4.7.4 transitivePeerDependencies: @@ -7039,6 +7534,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true + /@typescript-eslint/types/5.33.1: + resolution: {integrity: sha512-7K6MoQPQh6WVEkMrMW5QOA5FO+BOwzHSNd0j3+BlBwd6vtzfZceJ8xJ7Um2XDi/O3umS8/qDX6jdy2i7CijkwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + /@typescript-eslint/typescript-estree/5.30.7_typescript@4.7.4: resolution: {integrity: sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7102,7 +7602,28 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.30.7_qugx7qdu5zevzvxaiqyxfiwquq: + /@typescript-eslint/typescript-estree/5.33.1_typescript@4.7.4: + resolution: {integrity: sha512-JOAzJ4pJ+tHzA2pgsWQi4804XisPHOtbvwUyqsuuq8+y5B5GMZs7lI1xDWs6V2d7gE/Ez5bTGojSK12+IIPtXA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/visitor-keys': 5.33.1 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.30.7_4rv7y5c6xz3vfxwhbrcxxi73bq: resolution: {integrity: sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7112,15 +7633,15 @@ packages: '@typescript-eslint/scope-manager': 5.30.7 '@typescript-eslint/types': 5.30.7 '@typescript-eslint/typescript-estree': 5.30.7_typescript@4.7.4 - eslint: 8.21.0 + eslint: 8.22.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.22.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq: + /@typescript-eslint/utils/5.32.0_4rv7y5c6xz3vfxwhbrcxxi73bq: resolution: {integrity: sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7130,15 +7651,15 @@ packages: '@typescript-eslint/scope-manager': 5.32.0 '@typescript-eslint/types': 5.32.0 '@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4 - eslint: 8.21.0 + eslint: 8.22.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.22.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils/5.33.0_qugx7qdu5zevzvxaiqyxfiwquq: + /@typescript-eslint/utils/5.33.0_4rv7y5c6xz3vfxwhbrcxxi73bq: resolution: {integrity: sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7148,9 +7669,27 @@ packages: '@typescript-eslint/scope-manager': 5.33.0 '@typescript-eslint/types': 5.33.0 '@typescript-eslint/typescript-estree': 5.33.0_typescript@4.7.4 - eslint: 8.21.0 + eslint: 8.22.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.22.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/utils/5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq: + resolution: {integrity: sha512-uphZjkMaZ4fE8CR4dU7BquOV6u0doeQAr8n6cQenl/poMaIyJtBu8eys5uk6u5HiDH01Mj5lzbJ5SfeDz7oqMQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.33.1 + '@typescript-eslint/types': 5.33.1 + '@typescript-eslint/typescript-estree': 5.33.1_typescript@4.7.4 + eslint: 8.22.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.22.0 transitivePeerDependencies: - supports-color - typescript @@ -7180,8 +7719,16 @@ packages: eslint-visitor-keys: 3.3.0 dev: true - /@udecode/plate-basic-marks/16.0.0_k5ohzyl4tohpc3wmac6aalzisq: - resolution: {integrity: sha512-rGIr79SnVR1d29j9K9HHcCkpHUgaTqduvtGejbEoIDXG+h9NlAlFq8xhOVblDq7RvVKL+sMUNWIlS1QNa54ndQ==} + /@typescript-eslint/visitor-keys/5.33.1: + resolution: {integrity: sha512-nwIxOK8Z2MPWltLKMLOEZwmfBZReqUdbEoHQXeCpa+sRVARe5twpJGHCB4dk9903Yaf0nMAlGbQfaAH92F60eg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.33.1 + eslint-visitor-keys: 3.3.0 + dev: true + + /@udecode/plate-basic-marks/16.3.0_k5ohzyl4tohpc3wmac6aalzisq: + resolution: {integrity: sha512-G3Owj9I8J+b8lyhQI2Z29qPjvDJPNNthsanzg6fe34OXe+FtUjwJG7IjDKQ56AlvOVJ/n5uZJKEyhHLokc5mGA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7189,7 +7736,7 @@ packages: slate-history: '>=0.66.0' slate-react: '>=0.79.0' dependencies: - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7209,8 +7756,8 @@ packages: - xstate dev: false - /@udecode/plate-button/16.0.0_k5ohzyl4tohpc3wmac6aalzisq: - resolution: {integrity: sha512-swvDiJekkqQK9VUwQh3yVDOW3UgYV1DsJ3kxSQKlP+4i/ZcpCFk4xkOq4IPL5f/ELGmZXnm35rs4W///AYAQGA==} + /@udecode/plate-button/16.3.0_k5ohzyl4tohpc3wmac6aalzisq: + resolution: {integrity: sha512-qiKFL5dg4tNplXpUnNpXnd9pwUzSLW4wIAOOIcbwNXebRBwYr54j5iEMP6nyLzxJNr8/WZYE280Bey0aQrLaXQ==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7218,7 +7765,7 @@ packages: slate-history: '>=0.66.0' slate-react: '>=0.79.0' dependencies: - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7256,8 +7803,8 @@ packages: slate-react: 0.82.0_bg222ifi7it6hblyfyz26virpa dev: false - /@udecode/plate-core/16.0.0_k5ohzyl4tohpc3wmac6aalzisq: - resolution: {integrity: sha512-RtHjArWxE4WiBhUp8CXin8OQreyFtCJ+77sDPHC2kb861pVajg8x4qToYe2KiMSEMVL6NQgOsknV7U3NGsWD5A==} + /@udecode/plate-core/16.3.0_k5ohzyl4tohpc3wmac6aalzisq: + resolution: {integrity: sha512-QkJWkaV8sMkA0fKvzezgoOMiplt2zblK6zbG9EcSUWBUjfoGcASYZzdFz330hNLtwyH7f6DFPySeRWXNF6V9lA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7311,8 +7858,8 @@ packages: zustand: 3.7.2_react@18.2.0 dev: false - /@udecode/plate-floating/16.0.0_2ja233utpm5z6audgbkoimbh3u: - resolution: {integrity: sha512-8RcvXQadOgY/zr0CQSxKSrCdpwkmSvOHxTpcmQSSE2Xf9MVe8j9cvUilAWA98PBVaRlpsDg/Z77XSn2r8cceqg==} + /@udecode/plate-floating/16.3.0_2ja233utpm5z6audgbkoimbh3u: + resolution: {integrity: sha512-J48aNPEsWZ8O1PyHAg1hRnFXkl70DoGq/1cxcckMwKpAgLcPgMlK7j45E5xIo61BBbduzsBYYCmbwZusuJORYg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7321,7 +7868,7 @@ packages: slate-react: '>=0.79.0' dependencies: '@floating-ui/react-dom-interactions': 0.6.6_zxljzmqdrxwnuenbkrz77w74uy - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7342,8 +7889,8 @@ packages: - xstate dev: false - /@udecode/plate-link/16.0.0_k5ohzyl4tohpc3wmac6aalzisq: - resolution: {integrity: sha512-xmboPICmcpoDKOTRFH9cvHvyyn00EImHP9AG4sL0qQqvYUpdkDQtlcUQFmciYwHGoGAGeV8iiQbgeTH026E49g==} + /@udecode/plate-link/16.3.0_k5ohzyl4tohpc3wmac6aalzisq: + resolution: {integrity: sha512-+KtbNEezcf7rSXwU8DuYWMWDrvI+e4h6NwmxeQdm2k+YVjps3yuoyAtvdlvEfCFjJ8c7zO48tR6sAHsCetosWg==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7351,9 +7898,9 @@ packages: slate-history: '>=0.66.0' slate-react: '>=0.79.0' dependencies: - '@udecode/plate-button': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-normalizers': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-button': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-normalizers': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7373,8 +7920,8 @@ packages: - xstate dev: false - /@udecode/plate-normalizers/16.0.0_k5ohzyl4tohpc3wmac6aalzisq: - resolution: {integrity: sha512-gINq/bKqYtz+8JJUiiC02XSjj5+IOa33Yl/30T9WRRIgtbtfuRBIUcXOvwYhDIdGVWsqtEqyA7fqV4YciZ1DHw==} + /@udecode/plate-normalizers/16.3.0_k5ohzyl4tohpc3wmac6aalzisq: + resolution: {integrity: sha512-54gH2OwQdWOrb4ayj00XEqil0tPCMGl6nQsZa+Z2q+rtHGZmuX+HYlAOdnDXyBuzweRPz1W4ESqs69daU+Gm+g==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7382,7 +7929,7 @@ packages: slate-history: '>=0.66.0' slate-react: '>=0.79.0' dependencies: - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7402,8 +7949,8 @@ packages: - xstate dev: false - /@udecode/plate-serializer-html/16.0.0_am3zbczju7xetfufwa2asgwf3m: - resolution: {integrity: sha512-MCeTWGHmtuGf7i+RixNYFF0GklRSfJd8xumpAWqFjFq4my1EqT5pR/65WmBeco5lBxfhdePjnKvyJ7Cxt2vHUw==} + /@udecode/plate-serializer-html/16.3.0_am3zbczju7xetfufwa2asgwf3m: + resolution: {integrity: sha512-Lpv5v3N6Aymt9xcnpz6neS5IuZNwtg11Q9HHGXZJKWproTzbkSxSUqAyTkuNh7JaQ7fM9U6fdlVlxtNtBsVUNw==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7411,7 +7958,7 @@ packages: slate-hyperscript: '>=0.66.0' slate-react: '>=0.79.0' dependencies: - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq html-entities: 2.3.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -7433,8 +7980,8 @@ packages: - xstate dev: false - /@udecode/plate-styled-components/16.0.0_ixyq4su4nzhel5k7tvzkf7ibde: - resolution: {integrity: sha512-vl/RivNnOhh73I4BylewLkL3yzzlvmDrWAWk1tBHjgAIvewORmf7gFZvUpbaVtxKbpJmxCYZah8WiUTx1UqLqg==} + /@udecode/plate-styled-components/16.3.0_ixyq4su4nzhel5k7tvzkf7ibde: + resolution: {integrity: sha512-yKadIlxtYrdJrXgNPZ89MaC75NHNq85pdUdthdHdEgwGNNebh1rlBT/ajEnz10V3XLhat2RjfRzhqKH3iM5HWA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7444,7 +7991,7 @@ packages: slate-react: '>=0.79.0' styled-components: '>=5.0.0' dependencies: - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq clsx: 1.2.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -7467,8 +8014,8 @@ packages: - xstate dev: false - /@udecode/plate-ui-button/16.0.0_ixyq4su4nzhel5k7tvzkf7ibde: - resolution: {integrity: sha512-TjRPmoDL9y+MROiuD/DVrmnuWI/j7jW+tRzZf6o2D4ivRNR/ABaS2wrTJ6oAPmvLARoRuoPskGSwppfSTJ0X3A==} + /@udecode/plate-ui-button/16.3.0_ixyq4su4nzhel5k7tvzkf7ibde: + resolution: {integrity: sha512-QH11zKfpJTZLAOIdZDcET8AihWaX1F8MHLDuWNQ7lBkr8h1nW7KWPJCav8QE/xPBysuhtNkd8BKBj22WUkjoaw==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7477,9 +8024,9 @@ packages: slate-react: '>=0.79.0' styled-components: '>=5.0.0' dependencies: - '@udecode/plate-button': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-styled-components': 16.0.0_ixyq4su4nzhel5k7tvzkf7ibde + '@udecode/plate-button': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-styled-components': 16.3.0_ixyq4su4nzhel5k7tvzkf7ibde react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7501,8 +8048,8 @@ packages: - xstate dev: false - /@udecode/plate-ui-link/16.0.0_fh3nb6nmkkor47kq743xqw3oc4: - resolution: {integrity: sha512-pyFkDEbdg5RYV5hdxt/5MG7bq/XIc6vRd9mO9ckgRXLgYAF72S8ltdYGEnTTsbWLIUDwjohr6LXidLNOpfaVBA==} + /@udecode/plate-ui-link/16.3.0_fh3nb6nmkkor47kq743xqw3oc4: + resolution: {integrity: sha512-wtYox9kGLDCcDUK0goGTRwJrgig/EtQrBOCp6/i5GxHPLc+X1y3cAjvwfbC6RfMd2wSTosi30C6qmkCipp6tBA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7511,11 +8058,11 @@ packages: slate-react: '>=0.79.0' styled-components: '>=5.0.0' dependencies: - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-link': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-styled-components': 16.0.0_ixyq4su4nzhel5k7tvzkf7ibde - '@udecode/plate-ui-button': 16.0.0_ixyq4su4nzhel5k7tvzkf7ibde - '@udecode/plate-ui-toolbar': 16.0.0_fh3nb6nmkkor47kq743xqw3oc4 + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-link': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-styled-components': 16.3.0_ixyq4su4nzhel5k7tvzkf7ibde + '@udecode/plate-ui-button': 16.3.0_ixyq4su4nzhel5k7tvzkf7ibde + '@udecode/plate-ui-toolbar': 16.3.0_fh3nb6nmkkor47kq743xqw3oc4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 slate: 0.82.0 @@ -7538,8 +8085,8 @@ packages: - xstate dev: false - /@udecode/plate-ui-toolbar/16.0.0_fh3nb6nmkkor47kq743xqw3oc4: - resolution: {integrity: sha512-DshEaneDyDKEU544/pSjTKAARqa/NvNJocthlnmtwIsWFJMh6WT6QXvdiTQzpy6kFeu85XFIPgzhil1wpskEvQ==} + /@udecode/plate-ui-toolbar/16.3.0_fh3nb6nmkkor47kq743xqw3oc4: + resolution: {integrity: sha512-1LWkFGF8hLANVAlo3M80x/tcOSsv+f2o/vVysVXewllOWerlo20ncrnw8Cx7kJNSw5daFK+79/YfhlfEOEJSAA==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -7549,10 +8096,10 @@ packages: styled-components: '>=5.0.0' dependencies: '@tippyjs/react': 4.2.6_biqbaboplfbrettd7655fr4n2y - '@udecode/plate-core': 16.0.0_k5ohzyl4tohpc3wmac6aalzisq - '@udecode/plate-floating': 16.0.0_2ja233utpm5z6audgbkoimbh3u - '@udecode/plate-styled-components': 16.0.0_ixyq4su4nzhel5k7tvzkf7ibde - '@udecode/plate-ui-button': 16.0.0_ixyq4su4nzhel5k7tvzkf7ibde + '@udecode/plate-core': 16.3.0_k5ohzyl4tohpc3wmac6aalzisq + '@udecode/plate-floating': 16.3.0_2ja233utpm5z6audgbkoimbh3u + '@udecode/plate-styled-components': 16.3.0_ixyq4su4nzhel5k7tvzkf7ibde + '@udecode/plate-ui-button': 16.3.0_ixyq4su4nzhel5k7tvzkf7ibde react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-use: 17.4.0_biqbaboplfbrettd7655fr4n2y @@ -7692,6 +8239,10 @@ packages: /@xtuc/long/4.2.2: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + /@zag-js/element-size/0.1.0: + resolution: {integrity: sha512-QF8wp0+V8++z+FHXiIw93+zudtubYszOtYbNgK39fg3pi+nCZtuSm4L1jC5QZMatNZ83MfOzyNCfgUubapagJQ==} + dev: false + /@zag-js/focus-visible/0.1.0: resolution: {integrity: sha512-PeaBcTmdZWcFf7n1aM+oiOdZc+sy14qi0emPIeUuGMTjbP0xLGrZu43kdpHnWSXy7/r4Ubp/vlg50MCV8+9Isg==} dev: false @@ -7794,8 +8345,10 @@ packages: indent-string: 4.0.0 dev: false - /ajv-formats/2.1.1: + /ajv-formats/2.1.1_ajv@8.11.0: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + peerDependencies: + ajv: ^8.0.0 peerDependenciesMeta: ajv: optional: true @@ -7984,6 +8537,21 @@ packages: '@babel/runtime-corejs3': 7.18.6 dev: true + /arr-diff/4.0.0: + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} + engines: {node: '>=0.10.0'} + dev: false + + /arr-flatten/1.1.0: + resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} + engines: {node: '>=0.10.0'} + dev: false + + /arr-union/3.1.0: + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} + engines: {node: '>=0.10.0'} + dev: false + /array-flatten/1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} dev: false @@ -8007,6 +8575,11 @@ packages: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} engines: {node: '>=8'} + /array-unique/0.3.2: + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} + engines: {node: '>=0.10.0'} + dev: false + /array.prototype.flat/1.3.0: resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} engines: {node: '>= 0.4'} @@ -8044,10 +8617,22 @@ packages: safer-buffer: 2.1.2 dev: false + /assign-symbols/1.0.0: + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} + engines: {node: '>=0.10.0'} + dev: false + /ast-types-flow/0.0.7: resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} dev: true + /ast-types/0.14.2: + resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} + engines: {node: '>=4'} + dependencies: + tslib: 2.4.0 + dev: false + /async/3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} dev: false @@ -8061,6 +8646,12 @@ packages: engines: {node: '>= 4.0.0'} dev: false + /atob/2.1.2: + resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} + engines: {node: '>= 4.5.0'} + hasBin: true + dev: false + /autoprefixer/10.4.8_postcss@8.4.16: resolution: {integrity: sha512-75Jr6Q/XpTqEf6D2ltS5uMewJIx5irCU1oBYJrWjFenq/m12WRRrz6g15L1EIoYvPLXTbEry7rDOwrcYNj77xw==} engines: {node: ^10 || ^12 || >=14} @@ -8080,24 +8671,8 @@ packages: resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} engines: {node: '>= 0.4'} - /aws-sdk/2.1189.0: - resolution: {integrity: sha512-EqluXSo8XAR086nF9UAtPYwUm82ZIRqg8OmHBRQyftcrD1Z0pqMmiuvacXoEAJ/4UU8KKafbpYarxx8rH/pZjQ==} - engines: {node: '>= 10.0.0'} - dependencies: - buffer: 4.9.2 - events: 1.1.1 - ieee754: 1.1.13 - jmespath: 0.16.0 - querystring: 0.2.0 - sax: 1.2.1 - url: 0.10.3 - util: 0.12.4 - uuid: 8.0.0 - xml2js: 0.4.19 - dev: false - - /aws-sdk/2.1190.0: - resolution: {integrity: sha512-VJ3kpqjqww3u2OUOpvDA4EWU2HYetk0/5PQONqXR9N4dAvs8BP/Rv4BoYM/9m4rfhdBEMWizdye7epbBNxb4ZQ==} + /aws-sdk/2.1199.0: + resolution: {integrity: sha512-N51EMTCMsiVAJDSKCDTMUheLBlPZ7/c/qyCMGirdoF64/JU+gvZ/u+UqkYPhK7XE80b0GqTj676rtp9OkU1kyg==} engines: {node: '>= 10.0.0'} dependencies: buffer: 4.9.2 @@ -8136,6 +8711,14 @@ packages: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true + /babel-core/7.0.0-bridge.0_@babel+core@7.18.10: + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + dev: false + /babel-jest/28.1.3_@babel+core@7.18.9: resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -8183,7 +8766,6 @@ packages: resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==} dependencies: object.assign: 4.1.2 - dev: false /babel-plugin-emotion/10.2.2: resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} @@ -8272,6 +8854,18 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs2/0.3.2_@babel+core@7.18.10: + resolution: {integrity: sha512-LPnodUl3lS0/4wN3Rb+m+UK8s7lj2jcLRrjho4gLw+OJs+I4bvGXshINesY5xx/apM+biTnQ9reDI8yj+0M5+Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.18.8 + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.10: resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} peerDependencies: @@ -8296,6 +8890,17 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-corejs3/0.5.3_@babel+core@7.18.10: + resolution: {integrity: sha512-zKsXDh0XjnrUEW0mxIHLfjBfnXSMr5Q/goMe/fxpQnLm07mcOZiIZHBNWCMx60HmdvjxfXcalac0tfFg0wqxyw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + core-js-compat: 3.23.4 + transitivePeerDependencies: + - supports-color + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.10: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: @@ -8318,6 +8923,16 @@ packages: - supports-color dev: false + /babel-plugin-polyfill-regenerator/0.4.0_@babel+core@7.18.10: + resolution: {integrity: sha512-RW1cnryiADFeHmfLS+WW/G431p1PsW5qdRdz0SDRi7TKcUgc7Oh/uXkT7MZ/+tGsT1BkczEAmD5XjUyJ5SWDTw==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.10 + '@babel/helper-define-polyfill-provider': 0.3.2_@babel+core@7.18.10 + transitivePeerDependencies: + - supports-color + /babel-plugin-styled-components/2.0.7_styled-components@5.3.5: resolution: {integrity: sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==} peerDependencies: @@ -8373,6 +8988,19 @@ packages: /balanced-match/1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + /base/0.11.2: + resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} + engines: {node: '>=0.10.0'} + dependencies: + cache-base: 1.0.1 + class-utils: 0.3.6 + component-emitter: 1.3.0 + define-property: 1.0.0 + isobject: 3.0.1 + mixin-deep: 1.3.2 + pascalcase: 0.1.1 + dev: false + /base16/1.0.0: resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==} dev: false @@ -8475,6 +9103,24 @@ packages: balanced-match: 1.0.2 concat-map: 0.0.1 + /braces/2.3.2: + resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} + engines: {node: '>=0.10.0'} + dependencies: + arr-flatten: 1.1.0 + array-unique: 0.3.2 + extend-shallow: 2.0.1 + fill-range: 4.0.0 + isobject: 3.0.1 + repeat-element: 1.1.4 + snapdragon: 0.8.2 + snapdragon-node: 2.1.1 + split-string: 3.1.0 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /braces/3.0.2: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} @@ -8622,6 +9268,21 @@ packages: engines: {node: '>= 0.8'} dev: false + /cache-base/1.0.1: + resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} + engines: {node: '>=0.10.0'} + dependencies: + collection-visit: 1.0.0 + component-emitter: 1.3.0 + get-value: 2.0.6 + has-value: 1.0.0 + isobject: 3.0.1 + set-value: 2.0.1 + to-object-path: 0.3.0 + union-value: 1.0.1 + unset-value: 1.0.0 + dev: false + /cacheable-lookup/6.0.4: resolution: {integrity: sha512-mbcDEZCkv2CZF4G01kr8eBd/5agkt9oCqz75tJMSIsquvRZ2sL6Hi5zGVKi/0OSC9oO1GHfJ2AV0ZIOY9vye0A==} engines: {node: '>=10.6.0'} @@ -8801,6 +9462,16 @@ packages: resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} dev: true + /class-utils/0.3.6: + resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + define-property: 0.2.5 + isobject: 3.0.1 + static-extend: 0.1.2 + dev: false + /classlist-polyfill/1.2.0: resolution: {integrity: sha512-GzIjNdcEtH4ieA2S8NmrSxv7DfEV5fmixQeyTmqmRmRJPGpRBaSnA2a0VrCjyT8iW8JjEdMbKzDotAJf+ajgaQ==} dev: false @@ -8878,16 +9549,18 @@ packages: engines: {node: '>=0.10.0'} dev: false - /codemirror/6.0.1: + /codemirror/6.0.1_@lezer+common@1.0.0: resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==} dependencies: - '@codemirror/autocomplete': 6.1.0 + '@codemirror/autocomplete': 6.1.0_cb7ocycrcgpxsqrosocw3o7ksu '@codemirror/commands': 6.0.1 '@codemirror/language': 6.2.0 '@codemirror/lint': 6.0.0 '@codemirror/search': 6.0.0 '@codemirror/state': 6.1.1 '@codemirror/view': 6.1.0 + transitivePeerDependencies: + - '@lezer/common' dev: false /collapse-white-space/1.0.6: @@ -8898,6 +9571,14 @@ packages: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} dev: true + /collection-visit/1.0.0: + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} + engines: {node: '>=0.10.0'} + dependencies: + map-visit: 1.0.0 + object-visit: 1.0.1 + dev: false + /color-convert/1.9.3: resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} dependencies: @@ -8967,6 +9648,10 @@ packages: /commondir/1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + /component-emitter/1.3.0: + resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + dev: false + /compress-brotli/1.3.8: resolution: {integrity: sha512-lVcQsjhxhIXsuupfy9fmZUFtAIdBmXA7EGY6GBdgZ++qkM9zG4YFT8iU7FoBxzryNDMOpD1HIFHUSX4D87oqhQ==} engines: {node: '>= 12'} @@ -9075,6 +9760,11 @@ packages: engines: {node: '>= 0.6'} dev: false + /copy-descriptor/0.1.1: + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} + engines: {node: '>=0.10.0'} + dev: false + /copy-text-to-clipboard/3.0.1: resolution: {integrity: sha512-rvVsHrpFcL4F2P8ihsoLdFHmd404+CMg71S756oRSeQgqk51U3kicGdnvfkrxva0xXH92SjGS62B0XIJsbh+9Q==} engines: {node: '>=12'} @@ -9104,9 +9794,8 @@ packages: /core-js-compat/3.23.4: resolution: {integrity: sha512-RkSRPe+JYEoflcsuxJWaiMPhnZoFS51FcIxm53k4KzhISCBTmaGlto9dTIrYuk0hnJc3G6pKufAKepHnBq6B6Q==} dependencies: - browserslist: 4.21.2 + browserslist: 4.21.3 semver: 7.0.0 - dev: false /core-js-pure/3.23.4: resolution: {integrity: sha512-lizxkcgj3XDmi7TUBFe+bQ1vNpD5E4t76BrBWI3HdUxdw/Mq1VF4CkiHzIKyieECKtcODK2asJttoofEeUKICQ==} @@ -9662,6 +10351,28 @@ packages: has-property-descriptors: 1.0.0 object-keys: 1.1.1 + /define-property/0.2.5: + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 0.1.6 + dev: false + + /define-property/1.0.0: + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + dev: false + + /define-property/2.0.2: + resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-descriptor: 1.0.2 + isobject: 3.0.1 + dev: false + /defined/1.0.0: resolution: {integrity: sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==} dev: true @@ -10131,8 +10842,8 @@ packages: source-map: 0.6.1 dev: false - /eslint-config-next/12.2.4_qugx7qdu5zevzvxaiqyxfiwquq: - resolution: {integrity: sha512-r3keSLY1Z+rN+ASN8nmWwZ+AsMl6IrPGRWgbQhKHcop4/fk1hJGxE9Xf/mYMkV07+1Q/catchw25lu525HFy5Q==} + /eslint-config-next/12.2.5_4rv7y5c6xz3vfxwhbrcxxi73bq: + resolution: {integrity: sha512-SOowilkqPzW6DxKp3a3SYlrfPi5Ajs9MIzp9gVfUDxxH9QFM5ElkR1hX5m/iICJuvCbWgQqFBiA3mCMozluniw==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -10140,29 +10851,29 @@ packages: typescript: optional: true dependencies: - '@next/eslint-plugin-next': 12.2.4 + '@next/eslint-plugin-next': 12.2.5 '@rushstack/eslint-patch': 1.1.4 - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint: 8.22.0 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_jatgrcxl4x7ywe7ak6cnjca2ae - eslint-plugin-import: 2.26.0_kaovueczjnxqno6jq2wxve7si4 - eslint-plugin-jsx-a11y: 6.6.0_eslint@8.21.0 - eslint-plugin-react: 7.30.1_eslint@8.21.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.21.0 + eslint-import-resolver-typescript: 2.7.1_2iahngt3u2tkbdlu6s4gkur3pu + eslint-plugin-import: 2.26.0_2gqszymjwfeyh2k33jicxz5f4y + eslint-plugin-jsx-a11y: 6.6.0_eslint@8.22.0 + eslint-plugin-react: 7.30.1_eslint@8.22.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.22.0 typescript: 4.7.4 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-prettier/8.5.0_eslint@8.21.0: + /eslint-config-prettier/8.5.0_eslint@8.22.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.21.0 + eslint: 8.22.0 dev: true /eslint-import-resolver-node/0.3.6: @@ -10174,7 +10885,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/2.7.1_jatgrcxl4x7ywe7ak6cnjca2ae: + /eslint-import-resolver-typescript/2.7.1_2iahngt3u2tkbdlu6s4gkur3pu: resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==} engines: {node: '>=4'} peerDependencies: @@ -10182,8 +10893,8 @@ packages: eslint-plugin-import: '*' dependencies: debug: 4.3.4 - eslint: 8.21.0 - eslint-plugin-import: 2.26.0_kaovueczjnxqno6jq2wxve7si4 + eslint: 8.22.0 + eslint-plugin-import: 2.26.0_2gqszymjwfeyh2k33jicxz5f4y glob: 7.2.3 is-glob: 4.0.3 resolve: 1.22.1 @@ -10192,7 +10903,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.3_rtbhofbsy3gzv73dx4xodd3q4u: + /eslint-module-utils/2.7.3_lbnl7zduuensokipdxxjx5jhim: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -10210,16 +10921,16 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq debug: 3.2.7 eslint-import-resolver-node: 0.3.6 - eslint-import-resolver-typescript: 2.7.1_jatgrcxl4x7ywe7ak6cnjca2ae + eslint-import-resolver-typescript: 2.7.1_2iahngt3u2tkbdlu6s4gkur3pu find-up: 2.1.0 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-functional/4.2.2_qugx7qdu5zevzvxaiqyxfiwquq: + /eslint-plugin-functional/4.2.2_4rv7y5c6xz3vfxwhbrcxxi73bq: resolution: {integrity: sha512-sDz61AoXnR5dIipurwqoxvZ/CHzF1FHVGR5bUR+vJjqYiRNp+Y/m2SXEpyDqYwv8zSdZpBP77g8WR3+ZiJdZpw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -10232,16 +10943,16 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.30.7_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/utils': 5.30.7_4rv7y5c6xz3vfxwhbrcxxi73bq deepmerge-ts: 4.2.1 escape-string-regexp: 4.0.0 - eslint: 8.21.0 + eslint: 8.22.0 typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import/2.26.0_kaovueczjnxqno6jq2wxve7si4: + /eslint-plugin-import/2.26.0_2gqszymjwfeyh2k33jicxz5f4y: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -10251,14 +10962,14 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.33.0_qugx7qdu5zevzvxaiqyxfiwquq + '@typescript-eslint/parser': 5.33.1_4rv7y5c6xz3vfxwhbrcxxi73bq array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.21.0 + eslint: 8.22.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_rtbhofbsy3gzv73dx4xodd3q4u + eslint-module-utils: 2.7.3_lbnl7zduuensokipdxxjx5jhim has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 @@ -10272,8 +10983,8 @@ packages: - supports-color dev: true - /eslint-plugin-jest/26.7.0_4gzxb4ijm7tr3yx5zzwnpgdkem: - resolution: {integrity: sha512-/YNitdfG3o3cC6juZziAdkk6nfJt01jXVfj4AgaYVLs7bupHzRDL5K+eipdzhDXtQsiqaX1TzfwSuRlEgeln1A==} + /eslint-plugin-jest/26.8.5_wsnumsk3aw5ugktnxyzyce5y3q: + resolution: {integrity: sha512-DEaimuVhah/fx6jDkaP4oEPhH6VLr9skpZxYqbbmfeYvXzjos3AX61NpyMvq4aB4x6XJ3rsu/zcJfg0z0nytfw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 @@ -10285,16 +10996,16 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy - '@typescript-eslint/utils': 5.30.7_qugx7qdu5zevzvxaiqyxfiwquq - eslint: 8.21.0 + '@typescript-eslint/eslint-plugin': 5.32.0_vsoshirnpb7xw6mr7xomgfas2i + '@typescript-eslint/utils': 5.33.0_4rv7y5c6xz3vfxwhbrcxxi73bq + eslint: 8.22.0 jest: 28.1.3 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsx-a11y/6.6.0_eslint@8.21.0: + /eslint-plugin-jsx-a11y/6.6.0_eslint@8.22.0: resolution: {integrity: sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==} engines: {node: '>=4.0'} peerDependencies: @@ -10308,7 +11019,7 @@ packages: axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.21.0 + eslint: 8.22.0 has: 1.0.3 jsx-ast-utils: 3.3.2 language-tags: 1.0.5 @@ -10316,7 +11027,7 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-prettier/4.2.1_h62lvancfh4b7r6zn2dgodrh5e: + /eslint-plugin-prettier/4.2.1_2xd4q2tc5cqa5as7uugqhp6oue: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -10327,13 +11038,12 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.21.0 - eslint-config-prettier: 8.5.0_eslint@8.21.0 + eslint: 8.22.0 prettier: 2.7.1 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-prettier/4.2.1_po3yoeeutu52wwqsoi2mwzccke: + /eslint-plugin-prettier/4.2.1_i2cojdczqdiurzgttlwdgf764e: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -10344,21 +11054,22 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.21.0 + eslint: 8.22.0 + eslint-config-prettier: 8.5.0_eslint@8.22.0 prettier: 2.7.1 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.21.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.22.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.21.0 + eslint: 8.22.0 dev: true - /eslint-plugin-react/7.30.1_eslint@8.21.0: + /eslint-plugin-react/7.30.1_eslint@8.22.0: resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} engines: {node: '>=4'} peerDependencies: @@ -10367,7 +11078,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.21.0 + eslint: 8.22.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.2 minimatch: 3.1.2 @@ -10396,13 +11107,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.21.0: + /eslint-utils/3.0.0_eslint@8.22.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.21.0 + eslint: 8.22.0 eslint-visitor-keys: 2.1.0 dev: true @@ -10416,8 +11127,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.21.0: - resolution: {integrity: sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==} + /eslint/8.22.0: + resolution: {integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: @@ -10431,7 +11142,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.21.0 + eslint-utils: 3.0.0_eslint@8.22.0 eslint-visitor-keys: 3.3.0 espree: 9.3.3 esquery: 1.4.0 @@ -10574,6 +11285,21 @@ packages: engines: {node: '>= 0.8.0'} dev: true + /expand-brackets/2.1.4: + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} + engines: {node: '>=0.10.0'} + dependencies: + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + posix-character-classes: 0.1.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /expect/28.1.3: resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} @@ -10631,9 +11357,33 @@ packages: is-extendable: 0.1.1 dev: false + /extend-shallow/3.0.2: + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} + engines: {node: '>=0.10.0'} + dependencies: + assign-symbols: 1.0.0 + is-extendable: 1.0.1 + dev: false + /extend/3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + /extglob/2.0.4: + resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} + engines: {node: '>=0.10.0'} + dependencies: + array-unique: 0.3.2 + define-property: 1.0.0 + expand-brackets: 2.1.4 + extend-shallow: 2.0.1 + fragment-cache: 0.2.1 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /fast-deep-equal/3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -10759,6 +11509,16 @@ packages: engines: {node: '>= 0.4.0'} dev: false + /fill-range/4.0.0: + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-number: 3.0.0 + repeat-string: 1.6.1 + to-regex-range: 2.1.1 + dev: false + /fill-range/7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} @@ -10784,6 +11544,15 @@ packages: - supports-color dev: false + /find-cache-dir/2.1.0: + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} + dependencies: + commondir: 1.0.1 + make-dir: 2.1.0 + pkg-dir: 3.0.0 + dev: false + /find-cache-dir/3.3.2: resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} engines: {node: '>=8'} @@ -10837,6 +11606,11 @@ packages: resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==} dev: true + /flow-parser/0.185.1: + resolution: {integrity: sha512-nbtJZFMGgJVCRBlE/66p7L6IWF+wy6Nbd65sVwyrH7WsnZgeef8m263uxN4xah+8BZwuGndU8HKlt8cHIpTwew==} + engines: {node: '>=0.4.0'} + dev: false + /flux/4.0.3_react@17.0.2: resolution: {integrity: sha512-yKAbrp7JhZhj6uiT1FTuVMlIAT1J4jqEyBpFApi1kxpGZCvacMVc/t1pMQyotqHhAgvoE3bNvAykhCo2CLjnYw==} peerDependencies: @@ -10875,6 +11649,11 @@ packages: dependencies: is-callable: 1.2.4 + /for-in/1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + dev: false + /fork-ts-checker-webpack-plugin/6.5.2_xnp4kzegbjokq62cajex2ovgkm: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} @@ -10928,19 +11707,26 @@ packages: /fraction.js/4.2.0: resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} - /framer-motion/7.0.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-mOUKle6LouYVP4KLz+cMiNI6fL3qP9hQY4PBaN3E1FyPhcvuAgvs/JPgYktvK5zdRbIRU0gpBsr0CW5hP2KzKA==} + /fragment-cache/0.2.1: + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} + engines: {node: '>=0.10.0'} + dependencies: + map-cache: 0.2.2 + dev: false + + /framer-motion/7.2.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-D24ZHtbtdpiaByamNYiVXafVU6JfBxjrVlR1beyNupJL80haaDE23xS4dR0b/Qb64frtw/Mpdd9VYwSCv+UtSw==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: '@motionone/dom': 10.13.1 - framesync: 6.0.1 + framesync: 6.1.2 hey-listen: 1.0.8 - popmotion: 11.0.3 + popmotion: 11.0.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - style-value-types: 5.1.0 + style-value-types: 5.1.2 tslib: 2.4.0 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 @@ -10951,8 +11737,8 @@ packages: dependencies: tslib: 2.4.0 - /framesync/6.0.1: - resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==} + /framesync/6.1.2: + resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==} dependencies: tslib: 2.4.0 dev: false @@ -11133,6 +11919,11 @@ packages: call-bind: 1.0.2 get-intrinsic: 1.1.2 + /get-value/2.0.6: + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} + dev: false + /github-slugger/1.4.0: resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} dev: false @@ -11265,8 +12056,8 @@ packages: - supports-color dev: false - /google-auth-library/8.1.1: - resolution: {integrity: sha512-eG3pCfrLgVJe19KhAeZwW0m1LplNEo0FX1GboWf3hu18zD2jq8TUH2K8900AB2YRAuJ7A+1aSXDp1BODjwwRzg==} + /google-auth-library/8.3.0: + resolution: {integrity: sha512-rXasaUScggvyD5ELpQC7SIOUOdqyOIifCK9TRDOLFEcuw1JxuyewKAwDs2QiKzMf8uLa0L360W0bVlV+sJDc8g==} engines: {node: '>=12'} dependencies: arrify: 2.0.1 @@ -11443,6 +12234,37 @@ packages: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: false + /has-value/0.3.1: + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 0.1.4 + isobject: 2.1.0 + dev: false + + /has-value/1.0.0: + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} + engines: {node: '>=0.10.0'} + dependencies: + get-value: 2.0.6 + has-values: 1.0.0 + isobject: 3.0.1 + dev: false + + /has-values/0.1.4: + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} + engines: {node: '>=0.10.0'} + dev: false + + /has-values/1.0.0: + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + kind-of: 4.0.0 + dev: false + /has-yarn/2.1.0: resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} engines: {node: '>=8'} @@ -11939,6 +12761,20 @@ packages: engines: {node: '>= 10'} dev: false + /is-accessor-descriptor/0.1.6: + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: false + + /is-accessor-descriptor/1.0.0: + resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: false + /is-alphabetical/1.0.4: resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} dev: false @@ -11978,6 +12814,10 @@ packages: call-bind: 1.0.2 has-tostringtag: 1.0.0 + /is-buffer/1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + dev: false + /is-buffer/2.0.5: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} engines: {node: '>=4'} @@ -12006,6 +12846,20 @@ packages: dependencies: has: 1.0.3 + /is-data-descriptor/0.1.4: + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: false + + /is-data-descriptor/1.0.0: + resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: false + /is-date-object/1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -12016,6 +12870,24 @@ packages: resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} dev: false + /is-descriptor/0.1.6: + resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 0.1.6 + is-data-descriptor: 0.1.4 + kind-of: 5.1.0 + dev: false + + /is-descriptor/1.0.2: + resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} + engines: {node: '>=0.10.0'} + dependencies: + is-accessor-descriptor: 1.0.0 + is-data-descriptor: 1.0.0 + kind-of: 6.0.3 + dev: false + /is-docker/2.2.1: resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} engines: {node: '>=8'} @@ -12027,6 +12899,13 @@ packages: engines: {node: '>=0.10.0'} dev: false + /is-extendable/1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + dependencies: + is-plain-object: 2.0.4 + dev: false + /is-extglob/2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -12094,6 +12973,13 @@ packages: dependencies: has-tostringtag: 1.0.0 + /is-number/3.0.0: + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: false + /is-number/7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -12211,6 +13097,11 @@ packages: resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} dev: false + /is-windows/1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + dev: false + /is-word-character/1.0.4: resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} dev: false @@ -12236,6 +13127,13 @@ packages: /isexe/2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + /isobject/2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + dependencies: + isarray: 1.0.0 + dev: false + /isobject/3.0.1: resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} @@ -12845,6 +13743,36 @@ packages: dependencies: argparse: 2.0.1 + /jscodeshift/0.13.1_@babel+preset-env@7.18.10: + resolution: {integrity: sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==} + hasBin: true + peerDependencies: + '@babel/preset-env': ^7.1.6 + dependencies: + '@babel/core': 7.18.10 + '@babel/parser': 7.18.11 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-proposal-optional-chaining': 7.18.6_@babel+core@7.18.10 + '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.18.10 + '@babel/preset-env': 7.18.10_@babel+core@7.18.10 + '@babel/preset-flow': 7.18.6_@babel+core@7.18.10 + '@babel/preset-typescript': 7.18.6_@babel+core@7.18.10 + '@babel/register': 7.18.9_@babel+core@7.18.10 + babel-core: 7.0.0-bridge.0_@babel+core@7.18.10 + chalk: 4.1.2 + flow-parser: 0.185.1 + graceful-fs: 4.2.10 + micromatch: 3.1.10 + neo-async: 2.6.2 + node-dir: 0.1.17 + recast: 0.20.5 + temp: 0.8.4 + write-file-atomic: 2.4.3 + transitivePeerDependencies: + - supports-color + dev: false + /jsdom/19.0.0: resolution: {integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==} engines: {node: '>=12'} @@ -12890,7 +13818,6 @@ packages: /jsesc/0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true - dev: false /jsesc/2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} @@ -13027,6 +13954,25 @@ packages: json-buffer: 3.0.1 dev: false + /kind-of/3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + dev: false + + /kind-of/4.0.0: + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} + engines: {node: '>=0.10.0'} + dependencies: + is-buffer: 1.1.6 + dev: false + + /kind-of/5.1.0: + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} + dev: false + /kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} @@ -13078,8 +14024,8 @@ packages: type-check: 0.4.0 dev: true - /libphonenumber-js/1.10.11: - resolution: {integrity: sha512-ehoihx4HpRXO6FH/uJ0EnaEV4dVU+FDny+jv0S6k9JPyPsAIr0eXDAFvGRMBKE1daCtyHAaFSKCiuCxrOjVAzQ==} + /libphonenumber-js/1.10.13: + resolution: {integrity: sha512-b74iyWmwb4GprAUPjPkJ11GTC7KX4Pd3onpJfKxYyY8y9Rbb4ERY47LvCMEDM09WD3thiLDMXtkfDK/AX+zT7Q==} dev: false /lie/3.1.1: @@ -13164,7 +14110,6 @@ packages: /lodash.debounce/4.0.8: resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} - dev: false /lodash.flow/3.5.0: resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==} @@ -13268,6 +14213,14 @@ packages: sourcemap-codec: 1.4.8 dev: true + /make-dir/2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + dependencies: + pify: 4.0.1 + semver: 5.7.1 + dev: false + /make-dir/3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} @@ -13291,6 +14244,18 @@ packages: p-defer: 1.0.0 dev: true + /map-cache/0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + dev: false + + /map-visit/1.0.0: + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} + engines: {node: '>=0.10.0'} + dependencies: + object-visit: 1.0.1 + dev: false + /markdown-escapes/1.0.4: resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} dev: false @@ -13390,6 +14355,27 @@ packages: raw-body: 2.4.1 dev: false + /micromatch/3.1.10: + resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + braces: 2.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + extglob: 2.0.4 + fragment-cache: 0.2.1 + kind-of: 6.0.3 + nanomatch: 1.2.13 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /micromatch/4.0.5: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} @@ -13519,6 +14505,14 @@ packages: xml2js: 0.4.23 dev: false + /mixin-deep/1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + dev: false + /mkdirp/0.5.6: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true @@ -13570,6 +14564,25 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + /nanomatch/1.2.13: + resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} + engines: {node: '>=0.10.0'} + dependencies: + arr-diff: 4.0.0 + array-unique: 0.3.2 + define-property: 2.0.2 + extend-shallow: 3.0.2 + fragment-cache: 0.2.1 + is-windows: 1.0.2 + kind-of: 6.0.3 + object.pick: 1.3.0 + regex-not: 1.0.2 + snapdragon: 0.8.2 + to-regex: 3.0.2 + transitivePeerDependencies: + - supports-color + dev: false + /natural-compare/1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -13582,7 +14595,7 @@ packages: /neo-async/2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - /next-auth/4.10.3_mnimnj2pdeccz5uivmdmoly3tq: + /next-auth/4.10.3_br325yun545l5vwdnneu6tztxq: resolution: {integrity: sha512-7zc4aXYc/EEln7Pkcsn21V1IevaTZsMLJwapfbnKA4+JY0+jFzWbt5p/ljugesGIrN4VOZhpZIw50EaFZyghJQ==} engines: {node: ^12.19.0 || ^14.15.0 || ^16.13.0} peerDependencies: @@ -13597,7 +14610,7 @@ packages: '@panva/hkdf': 1.0.2 cookie: 0.4.2 jose: 4.8.3 - nodemailer: 6.7.7 + nodemailer: 6.7.8 oauth: 0.9.15 openid-client: 5.1.8 preact: 10.10.0 @@ -13614,8 +14627,8 @@ packages: escalade: 3.1.1 dev: true - /next/12.2.4_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-b1xlxEozmAWokAXzXsi5vlmU/IfJcFNIJA8dpU5UdkFbyDPio8wwb8mAQ/Y7rGtfTgG/t/u49BiyEA+xAgFvow==} + /next/12.2.5_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-tBdjqX5XC/oFs/6gxrZhjmiq90YWizUYU6qOWAfat7zJwrwapJ+BYgX2PmiacunXMaRpeVT4vz5MSPSLgNkrpA==} engines: {node: '>=12.22.0'} hasBin: true peerDependencies: @@ -13632,34 +14645,35 @@ packages: sass: optional: true dependencies: - '@next/env': 12.2.4 + '@next/env': 12.2.5 '@swc/helpers': 0.4.3 - caniuse-lite: 1.0.30001367 + caniuse-lite: 1.0.30001374 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.0.2_react@18.2.0 + styled-jsx: 5.0.4_react@18.2.0 use-sync-external-store: 1.2.0_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 12.2.4 - '@next/swc-android-arm64': 12.2.4 - '@next/swc-darwin-arm64': 12.2.4 - '@next/swc-darwin-x64': 12.2.4 - '@next/swc-freebsd-x64': 12.2.4 - '@next/swc-linux-arm-gnueabihf': 12.2.4 - '@next/swc-linux-arm64-gnu': 12.2.4 - '@next/swc-linux-arm64-musl': 12.2.4 - '@next/swc-linux-x64-gnu': 12.2.4 - '@next/swc-linux-x64-musl': 12.2.4 - '@next/swc-win32-arm64-msvc': 12.2.4 - '@next/swc-win32-ia32-msvc': 12.2.4 - '@next/swc-win32-x64-msvc': 12.2.4 + '@next/swc-android-arm-eabi': 12.2.5 + '@next/swc-android-arm64': 12.2.5 + '@next/swc-darwin-arm64': 12.2.5 + '@next/swc-darwin-x64': 12.2.5 + '@next/swc-freebsd-x64': 12.2.5 + '@next/swc-linux-arm-gnueabihf': 12.2.5 + '@next/swc-linux-arm64-gnu': 12.2.5 + '@next/swc-linux-arm64-musl': 12.2.5 + '@next/swc-linux-x64-gnu': 12.2.5 + '@next/swc-linux-x64-musl': 12.2.5 + '@next/swc-win32-arm64-msvc': 12.2.5 + '@next/swc-win32-ia32-msvc': 12.2.5 + '@next/swc-win32-x64-msvc': 12.2.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros + dev: true - /next/12.2.4_twoewwu6sg7cdf3ao6njtbftne: - resolution: {integrity: sha512-b1xlxEozmAWokAXzXsi5vlmU/IfJcFNIJA8dpU5UdkFbyDPio8wwb8mAQ/Y7rGtfTgG/t/u49BiyEA+xAgFvow==} + /next/12.2.5_twoewwu6sg7cdf3ao6njtbftne: + resolution: {integrity: sha512-tBdjqX5XC/oFs/6gxrZhjmiq90YWizUYU6qOWAfat7zJwrwapJ+BYgX2PmiacunXMaRpeVT4vz5MSPSLgNkrpA==} engines: {node: '>=12.22.0'} hasBin: true peerDependencies: @@ -13676,28 +14690,28 @@ packages: sass: optional: true dependencies: - '@next/env': 12.2.4 + '@next/env': 12.2.5 '@swc/helpers': 0.4.3 - caniuse-lite: 1.0.30001367 + caniuse-lite: 1.0.30001374 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - styled-jsx: 5.0.2_byq7oc57qftat37gkdlgphtura + styled-jsx: 5.0.4_byq7oc57qftat37gkdlgphtura use-sync-external-store: 1.2.0_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 12.2.4 - '@next/swc-android-arm64': 12.2.4 - '@next/swc-darwin-arm64': 12.2.4 - '@next/swc-darwin-x64': 12.2.4 - '@next/swc-freebsd-x64': 12.2.4 - '@next/swc-linux-arm-gnueabihf': 12.2.4 - '@next/swc-linux-arm64-gnu': 12.2.4 - '@next/swc-linux-arm64-musl': 12.2.4 - '@next/swc-linux-x64-gnu': 12.2.4 - '@next/swc-linux-x64-musl': 12.2.4 - '@next/swc-win32-arm64-msvc': 12.2.4 - '@next/swc-win32-ia32-msvc': 12.2.4 - '@next/swc-win32-x64-msvc': 12.2.4 + '@next/swc-android-arm-eabi': 12.2.5 + '@next/swc-android-arm64': 12.2.5 + '@next/swc-darwin-arm64': 12.2.5 + '@next/swc-darwin-x64': 12.2.5 + '@next/swc-freebsd-x64': 12.2.5 + '@next/swc-linux-arm-gnueabihf': 12.2.5 + '@next/swc-linux-arm64-gnu': 12.2.5 + '@next/swc-linux-arm64-musl': 12.2.5 + '@next/swc-linux-x64-gnu': 12.2.5 + '@next/swc-linux-x64-musl': 12.2.5 + '@next/swc-win32-arm64-msvc': 12.2.5 + '@next/swc-win32-ia32-msvc': 12.2.5 + '@next/swc-win32-x64-msvc': 12.2.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -13710,6 +14724,13 @@ packages: tslib: 2.4.0 dev: false + /node-dir/0.1.17: + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} + dependencies: + minimatch: 3.1.2 + dev: false + /node-emoji/1.11.0: resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==} dependencies: @@ -13738,8 +14759,8 @@ packages: /node-releases/2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} - /nodemailer/6.7.7: - resolution: {integrity: sha512-pOLC/s+2I1EXuSqO5Wa34i3kXZG3gugDssH+ZNCevHad65tc8vQlCQpOLaUjopvkRQKm2Cki2aME7fEOPRy3bA==} + /nodemailer/6.7.8: + resolution: {integrity: sha512-2zaTFGqZixVmTxpJRCFC+Vk5eGRd/fYtvIR+dl5u9QXLTQWGIf48x/JXvo58g9sa0bU6To04XUv554Paykum3g==} engines: {node: '>=6.0.0'} dev: false @@ -13801,6 +14822,15 @@ packages: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} + /object-copy/0.1.0: + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} + engines: {node: '>=0.10.0'} + dependencies: + copy-descriptor: 0.1.1 + define-property: 0.2.5 + kind-of: 3.2.2 + dev: false + /object-hash/2.2.0: resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} engines: {node: '>= 6'} @@ -13818,6 +14848,13 @@ packages: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} + /object-visit/1.0.1: + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: false + /object.assign/4.1.2: resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} engines: {node: '>= 0.4'} @@ -13852,6 +14889,13 @@ packages: es-abstract: 1.20.1 dev: true + /object.pick/1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: false + /object.values/1.1.5: resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} engines: {node: '>= 0.4'} @@ -14137,6 +15181,11 @@ packages: tslib: 2.4.0 dev: false + /pascalcase/0.1.1: + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} + engines: {node: '>=0.10.0'} + dev: false + /path-exists/3.0.0: resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} @@ -14205,6 +15254,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /pify/4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + dev: false + /pify/5.0.0: resolution: {integrity: sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==} engines: {node: '>=10'} @@ -14213,7 +15267,13 @@ packages: /pirates/4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} - dev: true + + /pkg-dir/3.0.0: + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} + dependencies: + find-up: 3.0.0 + dev: false /pkg-dir/4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} @@ -14234,15 +15294,20 @@ packages: hasBin: true dev: true - /popmotion/11.0.3: - resolution: {integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==} + /popmotion/11.0.5: + resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==} dependencies: - framesync: 6.0.1 + framesync: 6.1.2 hey-listen: 1.0.8 - style-value-types: 5.0.0 + style-value-types: 5.1.2 tslib: 2.4.0 dev: false + /posix-character-classes/0.1.1: + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} + engines: {node: '>=0.10.0'} + dev: false + /postcss-calc/8.2.4_postcss@8.4.14: resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: @@ -15086,13 +16151,13 @@ packages: react: 17.0.2 dev: false - /prisma/4.1.1: - resolution: {integrity: sha512-yw50J8If2dKP4wYIi695zthsCASQFHiogGvUHHWd3falx/rpsD6Sb1LMLRV9nO3iGG3lozxNJ2PSINxK7xwdpg==} + /prisma/4.2.1: + resolution: {integrity: sha512-HuYqnTDgH8atjPGtYmY0Ql9XrrJnfW7daG1PtAJRW0E6gJxc50lY3vrIDn0yjMR3TvRlypjTcspQX8DT+xD4Sg==} engines: {node: '>=14.17'} hasBin: true requiresBuild: true dependencies: - '@prisma/engines': 4.1.1 + '@prisma/engines': 4.2.1 /prismjs/1.28.0: resolution: {integrity: sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw==} @@ -15313,6 +16378,12 @@ packages: /react-dev-utils/12.0.1_xnp4kzegbjokq62cajex2ovgkm: resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} engines: {node: '>=14'} + peerDependencies: + typescript: '>=2.7' + webpack: '>=4' + peerDependenciesMeta: + typescript: + optional: true dependencies: '@babel/code-frame': 7.18.6 address: 1.2.0 @@ -15338,12 +16409,12 @@ packages: shell-quote: 1.7.3 strip-ansi: 6.0.1 text-table: 0.2.0 + typescript: 4.7.4 + webpack: 5.74.0 transitivePeerDependencies: - eslint - supports-color - - typescript - vue-template-compiler - - webpack dev: false /react-dom/17.0.2_react@17.0.2: @@ -15482,8 +16553,8 @@ packages: webpack: 5.74.0 dev: false - /react-phone-number-input/3.2.6_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-XQo8fAhNYq8YrZickTnizGtxM7c8tMlS60k3kUhqEYEbx0pScPAFudchhttvfY0OssdvTW7VZj4isTzFGbCCfg==} + /react-phone-number-input/3.2.8_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-cqN5sn9Lk2eHlyVb+H3E2usTZv9c3P+8bI09BlMVSWUW6jUfQUvGP5CLJwOHQ1Ml+e5/rQcoHO/yMCuSRkv4rA==} peerDependencies: react: '>=16.8' react-dom: '>=16.8' @@ -15491,7 +16562,7 @@ packages: classnames: 2.3.1 country-flag-icons: 1.5.5 input-format: 0.3.8 - libphonenumber-js: 1.10.11 + libphonenumber-js: 1.10.13 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -15747,6 +16818,16 @@ packages: resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} dev: false + /recast/0.20.5: + resolution: {integrity: sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==} + engines: {node: '>= 4'} + dependencies: + ast-types: 0.14.2 + esprima: 4.0.1 + source-map: 0.6.1 + tslib: 2.4.0 + dev: false + /rechoir/0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} engines: {node: '>= 0.10'} @@ -15766,11 +16847,9 @@ packages: engines: {node: '>=4'} dependencies: regenerate: 1.4.2 - dev: false /regenerate/1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} - dev: false /regenerator-runtime/0.13.9: resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} @@ -15779,6 +16858,13 @@ packages: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: '@babel/runtime': 7.18.6 + + /regex-not/1.0.2: + resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + safe-regex: 1.1.0 dev: false /regexp.prototype.flags/1.4.3: @@ -15804,7 +16890,6 @@ packages: regjsparser: 0.8.4 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.0.0 - dev: false /registry-auth-token/4.2.2: resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} @@ -15822,14 +16907,12 @@ packages: /regjsgen/0.6.0: resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} - dev: false /regjsparser/0.8.4: resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} hasBin: true dependencies: jsesc: 0.5.0 - dev: false /relateurl/0.2.7: resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} @@ -15900,6 +16983,11 @@ packages: strip-ansi: 6.0.1 dev: false + /repeat-element/1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + dev: false + /repeat-string/1.6.1: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} @@ -15955,6 +17043,11 @@ packages: resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} dev: false + /resolve-url/0.2.1: + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + deprecated: https://github.com/lydell/resolve-url#deprecated + dev: false + /resolve.exports/1.1.0: resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} engines: {node: '>=10'} @@ -15989,6 +17082,11 @@ packages: lowercase-keys: 2.0.0 dev: false + /ret/0.1.15: + resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} + engines: {node: '>=0.12'} + dev: false + /retry/0.13.1: resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} engines: {node: '>= 4'} @@ -15998,6 +17096,13 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + /rimraf/2.6.3: + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: false + /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true @@ -16011,7 +17116,7 @@ packages: inherits: 2.0.4 dev: false - /rollup-plugin-dts/4.2.2_oo3i3f3qmqiztdz5qgxrrjmd5e: + /rollup-plugin-dts/4.2.2_accrhai6qopda76wnqb3pkewpq: resolution: {integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==} engines: {node: '>=v12.22.11'} peerDependencies: @@ -16019,18 +17124,18 @@ packages: typescript: ^4.1 dependencies: magic-string: 0.26.2 - rollup: 2.77.2 + rollup: 2.78.1 typescript: 4.7.4 optionalDependencies: '@babel/code-frame': 7.18.6 dev: true - /rollup-plugin-peer-deps-external/2.2.4_rollup@2.77.2: + /rollup-plugin-peer-deps-external/2.2.4_rollup@2.78.1: resolution: {integrity: sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g==} peerDependencies: rollup: '*' dependencies: - rollup: 2.77.2 + rollup: 2.78.1 dev: true /rollup-plugin-postcss/4.0.2_postcss@8.4.16: @@ -16057,7 +17162,7 @@ packages: - ts-node dev: true - /rollup-plugin-styles/4.0.0_rollup@2.77.2: + /rollup-plugin-styles/4.0.0_rollup@2.78.1: resolution: {integrity: sha512-A2K2sao84OsTmDxXG83JTCdXWrmgvQkkI38XDat46rdtpGMRm9tSYqeCdlwwGDJF4kKIafhV1mUidqu8MxUGig==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: @@ -16079,19 +17184,19 @@ packages: postcss-value-parser: 4.2.0 query-string: 7.1.1 resolve: 1.22.1 - rollup: 2.77.2 + rollup: 2.78.1 source-map-js: 1.0.2 tslib: 2.4.0 dev: true - /rollup-plugin-terser/7.0.2_rollup@2.77.2: + /rollup-plugin-terser/7.0.2_rollup@2.78.1: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.18.6 jest-worker: 26.6.2 - rollup: 2.77.2 + rollup: 2.78.1 serialize-javascript: 4.0.0 terser: 5.14.2 dev: true @@ -16102,8 +17207,8 @@ packages: estree-walker: 0.6.1 dev: true - /rollup/2.77.2: - resolution: {integrity: sha512-m/4YzYgLcpMQbxX3NmAqDvwLATZzxt8bIegO78FZLl+lAgKJBd1DRAOeEiZcKOIOPjxE6ewHWHNgGEalFXuz1g==} + /rollup/2.78.1: + resolution: {integrity: sha512-VeeCgtGi4P+o9hIg+xz4qQpRl6R401LWEXBmxYKOV4zlF82lyhgh2hTZnheFUbANE8l2A41F458iwj2vEYaXJg==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -16151,6 +17256,12 @@ packages: resolution: {integrity: sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==} dev: true + /safe-regex/1.1.0: + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + dependencies: + ret: 0.1.15 + dev: false + /safer-buffer/2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} dev: false @@ -16223,7 +17334,7 @@ packages: dependencies: '@types/json-schema': 7.0.11 ajv: 8.11.0 - ajv-formats: 2.1.1 + ajv-formats: 2.1.1_ajv@8.11.0 ajv-keywords: 5.1.0_ajv@8.11.0 dev: false @@ -16276,7 +17387,6 @@ packages: /semver/7.0.0: resolution: {integrity: sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==} hasBin: true - dev: false /semver/7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} @@ -16366,6 +17476,16 @@ packages: engines: {node: '>=6.9'} dev: false + /set-value/2.0.1: + resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 2.0.1 + is-extendable: 0.1.1 + is-plain-object: 2.0.4 + split-string: 3.1.0 + dev: false + /setimmediate/1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} dev: false @@ -16512,6 +17632,38 @@ packages: tiny-warning: 1.0.3 dev: false + /snapdragon-node/2.1.1: + resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 1.0.0 + isobject: 3.0.1 + snapdragon-util: 3.0.1 + dev: false + + /snapdragon-util/3.0.1: + resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: false + + /snapdragon/0.8.2: + resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} + engines: {node: '>=0.10.0'} + dependencies: + base: 0.11.2 + debug: 2.6.9 + define-property: 0.2.5 + extend-shallow: 2.0.1 + map-cache: 0.2.2 + source-map: 0.5.7 + source-map-resolve: 0.5.3 + use: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: false + /sockjs/0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} dependencies: @@ -16529,6 +17681,17 @@ packages: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} + /source-map-resolve/0.5.3: + resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + deprecated: See https://github.com/lydell/source-map-resolve#deprecated + dependencies: + atob: 2.1.2 + decode-uri-component: 0.2.0 + resolve-url: 0.2.1 + source-map-url: 0.4.1 + urix: 0.1.0 + dev: false + /source-map-support/0.5.13: resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} dependencies: @@ -16542,6 +17705,11 @@ packages: buffer-from: 1.1.2 source-map: 0.6.1 + /source-map-url/0.4.1: + resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + deprecated: See https://github.com/lydell/source-map-url#deprecated + dev: false + /source-map/0.5.6: resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} engines: {node: '>=0.10.0'} @@ -16593,6 +17761,13 @@ packages: resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} engines: {node: '>=6'} + /split-string/3.1.0: + resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} + engines: {node: '>=0.10.0'} + dependencies: + extend-shallow: 3.0.2 + dev: false + /sprintf-js/1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} @@ -16635,6 +17810,14 @@ packages: resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} dev: false + /static-extend/0.1.2: + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 0.2.5 + object-copy: 0.1.0 + dev: false + /statuses/1.5.0: resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} @@ -16787,11 +17970,11 @@ packages: resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} engines: {node: '>=8'} - /stripe/10.0.0: - resolution: {integrity: sha512-Tk40Q6eZVQbghG6RVhT6oTiL95MZR58QA1/de+q94pfKxaMHiuLE1p1SGHqfPzAZEFAXoxiPVkGVLTfPKlXDLA==} + /stripe/10.3.0: + resolution: {integrity: sha512-pNVu7RXttHdFWOOi0e6IVUy0YmrTdPuQ8SQDcGJZgE4cb2C16S+hQf7o2UlQONCvvuQc46uDqU4z5ANThsGqNw==} engines: {node: ^8.1 || >=10.*} dependencies: - '@types/node': 18.6.5 + '@types/node': 18.7.8 qs: 6.11.0 dev: false @@ -16813,15 +17996,8 @@ packages: inline-style-parser: 0.1.1 dev: false - /style-value-types/5.0.0: - resolution: {integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==} - dependencies: - hey-listen: 1.0.8 - tslib: 2.4.0 - dev: false - - /style-value-types/5.1.0: - resolution: {integrity: sha512-DRIfBtjxQ4ztBZpexkFcI+UR7pODC5qLMf2Syt+bH98PAHHRH2tQnzxBuDQlqcAoYar6GzWnj8iAfqfwnEzCiQ==} + /style-value-types/5.1.2: + resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==} dependencies: hey-listen: 1.0.8 tslib: 2.4.0 @@ -16851,8 +18027,8 @@ packages: supports-color: 5.5.0 dev: false - /styled-jsx/5.0.2_byq7oc57qftat37gkdlgphtura: - resolution: {integrity: sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==} + /styled-jsx/5.0.4_byq7oc57qftat37gkdlgphtura: + resolution: {integrity: sha512-sDFWLbg4zR+UkNzfk5lPilyIgtpddfxXEULxhujorr5jtePTUqiPDc5BC0v1NRqTr/WaFBGQQUoYToGlF4B2KQ==} engines: {node: '>= 12.0.0'} peerDependencies: '@babel/core': '*' @@ -16868,8 +18044,8 @@ packages: react: 18.2.0 dev: false - /styled-jsx/5.0.2_react@18.2.0: - resolution: {integrity: sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==} + /styled-jsx/5.0.4_react@18.2.0: + resolution: {integrity: sha512-sDFWLbg4zR+UkNzfk5lPilyIgtpddfxXEULxhujorr5jtePTUqiPDc5BC0v1NRqTr/WaFBGQQUoYToGlF4B2KQ==} engines: {node: '>= 12.0.0'} peerDependencies: '@babel/core': '*' @@ -16882,6 +18058,7 @@ packages: optional: true dependencies: react: 18.2.0 + dev: true /stylehacks/5.1.0_postcss@8.4.14: resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==} @@ -16977,10 +18154,12 @@ packages: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: false - /tailwindcss/3.1.8: + /tailwindcss/3.1.8_postcss@8.4.16: resolution: {integrity: sha512-YSneUCZSFDYMwk+TGq8qYFdCA3yfBRdBlS7txSq0LUmzyeqRe3a8fBQzbz9M3WS/iFT4BNf/nmw9mEzrnSaC0g==} engines: {node: '>=12.13.0'} hasBin: true + peerDependencies: + postcss: ^8.0.9 dependencies: arg: 5.0.2 chokidar: 3.5.3 @@ -17017,6 +18196,13 @@ packages: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} + /temp/0.8.4: + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} + dependencies: + rimraf: 2.6.3 + dev: false + /terminal-link/2.1.1: resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} engines: {node: '>=8'} @@ -17115,17 +18301,42 @@ packages: resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} + /to-object-path/0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 3.2.2 + dev: false + /to-readable-stream/1.0.0: resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} engines: {node: '>=6'} dev: false + /to-regex-range/2.1.1: + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} + engines: {node: '>=0.10.0'} + dependencies: + is-number: 3.0.0 + repeat-string: 1.6.1 + dev: false + /to-regex-range/5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} dependencies: is-number: 7.0.0 + /to-regex/3.0.2: + resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} + engines: {node: '>=0.10.0'} + dependencies: + define-property: 2.0.2 + extend-shallow: 3.0.2 + regex-not: 1.0.2 + safe-regex: 1.1.0 + dev: false + /toggle-selection/1.0.6: resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} dev: false @@ -17179,8 +18390,8 @@ packages: resolution: {integrity: sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==} dev: false - /ts-jest/28.0.7_m5noci3hdgjcbp5i3skppiufvq: - resolution: {integrity: sha512-wWXCSmTwBVmdvWrOpYhal79bDpioDy4rTT+0vyUnE3ZzM7LOAAGG9NXwzkEL/a516rQEgnMmS/WKP9jBPCVJyA==} + /ts-jest/28.0.8_m5noci3hdgjcbp5i3skppiufvq: + resolution: {integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: @@ -17466,7 +18677,6 @@ packages: /unicode-canonical-property-names-ecmascript/2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} engines: {node: '>=4'} - dev: false /unicode-match-property-ecmascript/2.0.0: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} @@ -17474,21 +18684,19 @@ packages: dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.0.0 - dev: false /unicode-match-property-value-ecmascript/2.0.0: resolution: {integrity: sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==} engines: {node: '>=4'} - dev: false /unicode-property-aliases-ecmascript/2.0.0: resolution: {integrity: sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==} engines: {node: '>=4'} - dev: false /unified/9.2.0: resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} dependencies: + '@types/unist': 2.0.6 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -17500,6 +18708,7 @@ packages: /unified/9.2.2: resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} dependencies: + '@types/unist': 2.0.6 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -17508,6 +18717,16 @@ packages: vfile: 4.2.1 dev: false + /union-value/1.0.1: + resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} + engines: {node: '>=0.10.0'} + dependencies: + arr-union: 3.1.0 + get-value: 2.0.6 + is-extendable: 0.1.1 + set-value: 2.0.1 + dev: false + /unique-string/2.0.0: resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} engines: {node: '>=8'} @@ -17578,6 +18797,14 @@ packages: engines: {node: '>= 0.8'} dev: false + /unset-value/1.0.0: + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} + engines: {node: '>=0.10.0'} + dependencies: + has-value: 0.3.1 + isobject: 3.0.1 + dev: false + /update-browserslist-db/1.0.5_browserslist@4.21.2: resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} hasBin: true @@ -17623,6 +18850,11 @@ packages: dependencies: punycode: 2.1.1 + /urix/0.1.0: + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + deprecated: Please see https://github.com/lydell/urix#deprecated + dev: false + /url-loader/4.1.1_u4acmn7fe6yqgbrqzialkgh5lu: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} @@ -17779,6 +19011,11 @@ packages: dependencies: react: 18.2.0 + /use/3.1.1: + resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} + engines: {node: '>=0.10.0'} + dev: false + /util-deprecate/1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -18229,6 +19466,14 @@ packages: /wrappy/1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + /write-file-atomic/2.4.3: + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + dependencies: + graceful-fs: 4.2.10 + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: false + /write-file-atomic/3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} dependencies: @@ -18362,8 +19607,8 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - /zod/3.17.10: - resolution: {integrity: sha512-IHXnQYQuOOOL/XgHhgl8YjNxBHi3xX0mVcHmqsvJgcxKkEczPshoWdxqyFwsARpf41E0v9U95WUROqsHHxt0UQ==} + /zod/3.18.0: + resolution: {integrity: sha512-gwTm8RfUCe8l9rDwN5r2A17DkAa8Ez4Yl4yXqc5VqeGaXaJahzYYXbTwvhroZi0SNBqTwh/bKm2N0mpCzuw4bA==} dev: false /zustand/3.7.2_react@18.2.0: