From cf52b42e2649791654031c0746cf58b5feb56498 Mon Sep 17 00:00:00 2001 From: Thomas Shellberg <6723003+tommyshellberg@users.noreply.github.com> Date: Thu, 21 Dec 2023 12:25:08 +0100 Subject: [PATCH] Add React Testing Library to the Woo AI plugin. (#42993) * Add React Testing Library and the simplest of tests to verify tests can be run successfully. --- plugins/woo-ai/babel.config.js | 13 + plugins/woo-ai/changelog/try-woo-ai-rtl | 4 + plugins/woo-ai/package.json | 12 +- .../magic-button/magic-button.test.js | 31 + plugins/woo-ai/tests/js/jest-file-mock.js | 1 + plugins/woo-ai/tests/js/jest-setup.js | 19 + plugins/woo-ai/tests/js/jest.config.js | 38 + plugins/woo-ai/tests/js/jestPreprocess.js | 10 + pnpm-lock.yaml | 1475 ++++++++++------- 9 files changed, 975 insertions(+), 628 deletions(-) create mode 100644 plugins/woo-ai/babel.config.js create mode 100644 plugins/woo-ai/changelog/try-woo-ai-rtl create mode 100644 plugins/woo-ai/src/components/magic-button/magic-button.test.js create mode 100644 plugins/woo-ai/tests/js/jest-file-mock.js create mode 100644 plugins/woo-ai/tests/js/jest-setup.js create mode 100644 plugins/woo-ai/tests/js/jest.config.js create mode 100644 plugins/woo-ai/tests/js/jestPreprocess.js diff --git a/plugins/woo-ai/babel.config.js b/plugins/woo-ai/babel.config.js new file mode 100644 index 00000000000..b29d0e9e10a --- /dev/null +++ b/plugins/woo-ai/babel.config.js @@ -0,0 +1,13 @@ +module.exports = { + presets: [ + [ + '@wordpress/babel-preset-default', + { + targets: { + node: 'current', + }, + }, + ], + [ '@babel/preset-typescript' ], + ], +}; diff --git a/plugins/woo-ai/changelog/try-woo-ai-rtl b/plugins/woo-ai/changelog/try-woo-ai-rtl new file mode 100644 index 00000000000..76289a2141e --- /dev/null +++ b/plugins/woo-ai/changelog/try-woo-ai-rtl @@ -0,0 +1,4 @@ +Significance: minor +Type: dev + +Add React Testing Library and a basic test to the Woo AI plugin. diff --git a/plugins/woo-ai/package.json b/plugins/woo-ai/package.json index 3df4705e24a..9eec5ea83b6 100644 --- a/plugins/woo-ai/package.json +++ b/plugins/woo-ai/package.json @@ -11,11 +11,18 @@ "version": "0.5.0", "homepage": "http://github.com/woocommerce/woo-ai", "devDependencies": { + "@babel/preset-react": "7.23.3", "@svgr/webpack": "^8.1.0", + "@testing-library/react": "12.1.5", + "@testing-library/dom": "9.3.3", + "@testing-library/jest-dom": "5.16.5", + "@testing-library/react-hooks": "7.0.2", + "@testing-library/user-event": "13.5.0", "@types/debug": "^4.1.12", "@types/jquery": "^3.5.29", "@types/react": "^17.0.71", "@types/react-dom": "^17.0.25", + "@babel/preset-typescript": "7.23.2", "@types/wordpress__components": "^19.10.5", "@woocommerce/dependency-extraction-webpack-plugin": "workspace:*", "@woocommerce/eslint-plugin": "workspace:*", @@ -23,6 +30,7 @@ "@wordpress/env": "^8.13.0", "@wordpress/prettier-config": "2.17.0", "@wordpress/scripts": "^19.2.4", + "babel-jest": "~27.5.1", "eslint": "^8.55.0", "prettier": "npm:wp-prettier@^2.8.5", "ts-loader": "^9.5.1", @@ -50,7 +58,7 @@ "packages-update": "wp-scripts packages-update", "start": "wp-scripts start", "test:e2e": "wp-scripts test-e2e", - "test:unit": "wp-scripts test-unit-js", + "test:unit": "wp-scripts test-unit-js --config tests/js/jest.config.js", "uglify": "rm -f $npm_package_assets_js_min && for f in $npm_package_assets_js_js; do file=${f%.js}; node_modules/.bin/uglifyjs $f -c -m > $file.min.js; done" }, "dependencies": { @@ -75,8 +83,6 @@ "react-query": "^3.39.3" }, "peerDependencies": { - "@types/react": "^17.0.71", - "@types/react-dom": "^17.0.25", "react": "^17.0.2", "react-dom": "^17.0.2" }, diff --git a/plugins/woo-ai/src/components/magic-button/magic-button.test.js b/plugins/woo-ai/src/components/magic-button/magic-button.test.js new file mode 100644 index 00000000000..60b475ac6ab --- /dev/null +++ b/plugins/woo-ai/src/components/magic-button/magic-button.test.js @@ -0,0 +1,31 @@ +/** + * External dependencies + */ +import { render, fireEvent } from '@testing-library/react'; + +/** + * Internal dependencies + */ +import { MagicButton } from './magic-button'; + +describe( 'MagicButton', () => { + it( 'renders correctly', () => { + const { getByText } = render( + {} } label="Test Button" /> + ); + + expect( getByText( 'Test Button' ) ).toBeInTheDocument(); + } ); + + it( 'calls onClick prop when clicked', () => { + const handleClick = jest.fn(); + + const { getByText } = render( + + ); + + fireEvent.click( getByText( 'Test Button' ) ); + + expect( handleClick ).toHaveBeenCalledTimes( 1 ); + } ); +} ); diff --git a/plugins/woo-ai/tests/js/jest-file-mock.js b/plugins/woo-ai/tests/js/jest-file-mock.js new file mode 100644 index 00000000000..86059f36292 --- /dev/null +++ b/plugins/woo-ai/tests/js/jest-file-mock.js @@ -0,0 +1 @@ +module.exports = 'test-file-stub'; diff --git a/plugins/woo-ai/tests/js/jest-setup.js b/plugins/woo-ai/tests/js/jest-setup.js new file mode 100644 index 00000000000..f43a5d222ec --- /dev/null +++ b/plugins/woo-ai/tests/js/jest-setup.js @@ -0,0 +1,19 @@ +/** + * External dependencies + */ +import '@testing-library/jest-dom'; + +beforeEach( () => { + // Mock fetch + global.fetch = jest.fn( () => + Promise.resolve( { + json: () => Promise.resolve( {} ), + } ) + ); +} ); + +afterEach( () => { + jest.clearAllTimers(); +} ); + +global.ResizeObserver = require( 'resize-observer-polyfill' ); diff --git a/plugins/woo-ai/tests/js/jest.config.js b/plugins/woo-ai/tests/js/jest.config.js new file mode 100644 index 00000000000..5314da3e1d7 --- /dev/null +++ b/plugins/woo-ai/tests/js/jest.config.js @@ -0,0 +1,38 @@ +module.exports = { + preset: '@wordpress/jest-preset-default', + rootDir: '../../', + verbose: true, + moduleDirectories: [ 'node_modules', '/src' ], + restoreMocks: true, + transform: { + '^.+\\.jsx?$': 'babel-jest', + }, + moduleNameMapper: { + '\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': + '/tests/js/jest-file-mock.js', + '^react$': '/node_modules/react', + '^react-dom$': '/node_modules/react-dom', + }, + testPathIgnorePatterns: [ + '/node_modules/', + '/build/', + '/.*/build/', + '/tests', + ], + transformIgnorePatterns: [ + 'node_modules/?!(simple-html-tokenizer|is-plain-obj|is-plain-object|memize)', + ], + testEnvironment: 'jsdom', + + setupFiles: [ + require.resolve( + '@wordpress/jest-preset-default/scripts/setup-globals.js' + ), + ], + setupFilesAfterEnv: [ + require.resolve( + '@wordpress/jest-preset-default/scripts/setup-test-framework.js' + ), + '/tests/js/jest-setup.js', + ], +}; diff --git a/plugins/woo-ai/tests/js/jestPreprocess.js b/plugins/woo-ai/tests/js/jestPreprocess.js new file mode 100644 index 00000000000..9baa877eae3 --- /dev/null +++ b/plugins/woo-ai/tests/js/jestPreprocess.js @@ -0,0 +1,10 @@ +const babelOptions = { + presets: [ '@babel/preset-typescript', '@wordpress/babel-preset-default' ], + plugins: [ + 'explicit-exports-references', + '@babel/plugin-proposal-class-properties', + ], +}; + +module.exports = + require( 'babel-jest' ).default.createTransformer( babelOptions ); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e7a909f1a25..fd5512355f3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -2891,9 +2891,30 @@ importers: specifier: ^3.39.3 version: 3.39.3(react-dom@17.0.2)(react@17.0.2) devDependencies: + '@babel/preset-react': + specifier: 7.23.3 + version: 7.23.3(@babel/core@7.23.6) + '@babel/preset-typescript': + specifier: 7.23.2 + version: 7.23.2(@babel/core@7.23.6) '@svgr/webpack': specifier: ^8.1.0 version: 8.1.0(typescript@5.3.3) + '@testing-library/dom': + specifier: 9.3.3 + version: 9.3.3 + '@testing-library/jest-dom': + specifier: 5.16.5 + version: 5.16.5 + '@testing-library/react': + specifier: 12.1.5 + version: 12.1.5(react-dom@17.0.2)(react@17.0.2) + '@testing-library/react-hooks': + specifier: 7.0.2 + version: 7.0.2(react-dom@17.0.2)(react-test-renderer@17.0.2)(react@17.0.2) + '@testing-library/user-event': + specifier: 13.5.0 + version: 13.5.0(@testing-library/dom@9.3.3) '@types/debug': specifier: ^4.1.12 version: 4.1.12 @@ -2927,6 +2948,9 @@ importers: '@wordpress/scripts': specifier: ^19.2.4 version: 19.2.4(@babel/core@7.23.6)(debug@4.3.4)(react-dom@17.0.2)(react@17.0.2)(typescript@5.3.3)(uglify-js@3.17.4) + babel-jest: + specifier: ~27.5.1 + version: 27.5.1(@babel/core@7.23.6) eslint: specifier: ^8.55.0 version: 8.55.0 @@ -5545,11 +5569,25 @@ packages: semver: 6.3.1 dev: true + /@babel/eslint-parser@7.23.3(@babel/core@7.23.6)(eslint@8.55.0): + resolution: {integrity: sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': ^7.11.0 + eslint: ^7.5.0 || ^8.0.0 + dependencies: + '@babel/core': 7.23.6 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 + eslint: 8.55.0 + eslint-visitor-keys: 2.1.0 + semver: 6.3.1 + dev: true + /@babel/generator@7.23.5: resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 @@ -5573,7 +5611,7 @@ packages: resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-compilation-targets@7.22.15: resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} @@ -5681,6 +5719,58 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 + /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.2): + resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + dev: true + + /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.5): + resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + + /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.6): + resolution: {integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.12.9): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} @@ -5713,18 +5803,17 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 - dev: true - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.23.5): + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.23.6): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/core': 7.23.6 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.23.5 + '@babel/traverse': 7.23.6 debug: 4.3.4(supports-color@9.4.0) lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -5739,7 +5828,7 @@ packages: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@9.4.0) lodash.debounce: 4.0.8 @@ -5754,7 +5843,7 @@ packages: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@9.4.0) lodash.debounce: 4.0.8 @@ -5768,14 +5857,13 @@ packages: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.23.6 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@9.4.0) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.12.9): resolution: {integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==} @@ -5815,19 +5903,19 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-member-expression-to-functions@7.23.0: resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} @@ -5892,7 +5980,7 @@ packages: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} @@ -5934,7 +6022,6 @@ packages: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - dev: true /@babel/helper-replace-supers@7.22.20(@babel/core@7.12.9): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} @@ -5985,7 +6072,7 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} @@ -5997,7 +6084,7 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helper-string-parser@7.23.4: resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} @@ -6017,7 +6104,7 @@ packages: dependencies: '@babel/helper-function-name': 7.23.0 '@babel/template': 7.22.15 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/helpers@7.23.5: resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==} @@ -6025,7 +6112,7 @@ packages: dependencies: '@babel/template': 7.22.15 '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 transitivePeerDependencies: - supports-color @@ -6052,7 +6139,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/parser@7.23.6: resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} @@ -6088,7 +6175,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} @@ -6123,7 +6209,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6) - dev: true /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} @@ -6155,7 +6240,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.12.9): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} @@ -6178,7 +6262,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.12.9) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.12.9) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2): @@ -6201,7 +6285,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.5) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6213,21 +6297,21 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.6 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-proposal-decorators@7.23.5(@babel/core@7.23.5): + /@babel/plugin-proposal-decorators@7.23.5(@babel/core@7.23.6): resolution: {integrity: sha512-6IsY8jOeWibsengGlWIezp7cuZEFzNlAghFpzh9wiZwhQ42/hRcPnY/QV9HJoKTlujupinSlnQPiEy/u2C1ZfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.5) + '@babel/plugin-syntax-decorators': 7.23.3(@babel/core@7.23.6) dev: true /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.12.9): @@ -6251,15 +6335,15 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.12.9) - /@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.23.5): + /@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.5) + '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.6) dev: true /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.12.9): @@ -6347,7 +6431,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.12.9) dev: true @@ -6366,7 +6450,7 @@ packages: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.12.9) - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.5): + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.6): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. @@ -6374,11 +6458,11 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6) dev: true /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.12.9): @@ -6465,6 +6549,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true + /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.23.6): + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.12.9): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} @@ -6489,7 +6585,6 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.6 - dev: true /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.5): resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} @@ -6505,6 +6600,20 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) dev: true + /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.6): + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6) + dev: true + /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.12.9): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} @@ -6548,7 +6657,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} @@ -6575,6 +6683,7 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.6): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} @@ -6583,7 +6692,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.12.9): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} @@ -6617,7 +6725,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.12.9): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} @@ -6646,15 +6753,14 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true - /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.5): + /@babel/plugin-syntax-decorators@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6681,7 +6787,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==} @@ -6692,13 +6797,13 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.23.5): + /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6725,7 +6830,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} @@ -6792,7 +6896,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} @@ -6821,7 +6924,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.9): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} @@ -6855,7 +6957,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} @@ -6889,7 +6990,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==} @@ -6919,13 +7019,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.6): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.12.9): @@ -6997,7 +7097,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -7064,7 +7163,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -7098,7 +7196,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -7132,7 +7229,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.9): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -7193,7 +7289,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.9): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} @@ -7231,7 +7326,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} @@ -7300,7 +7394,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} @@ -7328,7 +7421,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} @@ -7366,7 +7458,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} @@ -7400,7 +7491,6 @@ packages: '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} @@ -7428,7 +7518,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} @@ -7456,7 +7545,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} @@ -7488,7 +7576,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} @@ -7497,7 +7584,7 @@ packages: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.12.9) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.12.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9) dev: true @@ -7509,7 +7596,7 @@ packages: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) @@ -7523,7 +7610,6 @@ packages: '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-classes@7.23.5(@babel/core@7.12.9): resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} @@ -7533,7 +7619,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -7550,7 +7636,7 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -7567,7 +7653,7 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -7575,7 +7661,6 @@ packages: '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - dev: true /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} @@ -7606,7 +7691,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 - dev: true /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} @@ -7634,7 +7718,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} @@ -7665,7 +7748,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} @@ -7693,7 +7775,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} @@ -7725,7 +7806,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} @@ -7756,7 +7836,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} @@ -7788,7 +7867,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} @@ -7858,7 +7936,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.12.9): resolution: {integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==} @@ -7888,7 +7965,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 @@ -7899,7 +7976,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 @@ -7910,10 +7987,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.6 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} @@ -7945,7 +8021,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-literals@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} @@ -7973,7 +8048,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} @@ -8005,7 +8079,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} @@ -8033,7 +8106,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} @@ -8064,7 +8136,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} @@ -8146,7 +8217,6 @@ packages: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 - dev: true /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} @@ -8177,7 +8247,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.12.9): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} @@ -8208,7 +8277,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} @@ -8236,7 +8304,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} @@ -8268,7 +8335,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} @@ -8300,7 +8366,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} @@ -8310,7 +8375,7 @@ packages: dependencies: '@babel/compat-data': 7.23.5 '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.12.9) @@ -8324,7 +8389,7 @@ packages: dependencies: '@babel/compat-data': 7.23.5 '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) @@ -8337,11 +8402,10 @@ packages: dependencies: '@babel/compat-data': 7.23.5 '@babel/core': 7.23.6 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} @@ -8372,7 +8436,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} @@ -8404,7 +8467,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} @@ -8439,7 +8501,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} @@ -8467,7 +8528,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} @@ -8476,7 +8536,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.12.9) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.12.9) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.5): @@ -8486,7 +8546,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.5) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.6): @@ -8498,7 +8558,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} @@ -8508,7 +8567,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.12.9) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.12.9) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9) @@ -8520,7 +8579,7 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) @@ -8535,7 +8594,6 @@ packages: '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.6) - dev: true /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} @@ -8563,7 +8621,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-react-constant-elements@7.23.3(@babel/core@7.23.5): resolution: {integrity: sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==} @@ -8714,7 +8771,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.6) '@babel/types': 7.23.5 - dev: true /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.2): resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} @@ -8778,7 +8834,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 - dev: true /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} @@ -8806,7 +8861,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-runtime@7.23.4(@babel/core@7.12.9): resolution: {integrity: sha512-ITwqpb6V4btwUG0YJR82o2QvmWrLgDnx/p2A3CTPYGaRgULkDiC0DRA2C4jlRB9uXGUEfaSS/IGHfVW+ohzYDw==} @@ -8841,6 +8895,22 @@ packages: transitivePeerDependencies: - supports-color + /@babel/plugin-transform-runtime@7.23.4(@babel/core@7.23.6): + resolution: {integrity: sha512-ITwqpb6V4btwUG0YJR82o2QvmWrLgDnx/p2A3CTPYGaRgULkDiC0DRA2C4jlRB9uXGUEfaSS/IGHfVW+ohzYDw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.6) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.6) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.6) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-runtime@7.23.6(@babel/core@7.12.9): resolution: {integrity: sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg==} engines: {node: '>=6.9.0'} @@ -8883,7 +8953,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-spread@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} @@ -8914,7 +8983,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - dev: true /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} @@ -8942,7 +9010,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} @@ -8970,7 +9037,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} @@ -8998,32 +9064,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.2): - resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.2 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.2) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.2) - dev: true - - /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) /@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.6): resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==} @@ -9049,6 +9089,44 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.12.9) + /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.2): + resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.2 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.2) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.2) + dev: true + + /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.5): + resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.5) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) + + /@babel/plugin-transform-typescript@7.23.6(@babel/core@7.23.6): + resolution: {integrity: sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.23.6(@babel/core@7.23.6) + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6) + dev: true + /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} @@ -9075,7 +9153,6 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} @@ -9107,7 +9184,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} @@ -9138,7 +9214,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.12.9): resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} @@ -9170,7 +9245,6 @@ packages: '@babel/core': 7.23.6 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.6) '@babel/helper-plugin-utils': 7.22.5 - dev: true /@babel/polyfill@7.12.1: resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} @@ -9261,7 +9335,7 @@ packages: dependencies: '@babel/compat-data': 7.23.5 '@babel/core': 7.12.9 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.12.9) @@ -9352,7 +9426,7 @@ packages: dependencies: '@babel/compat-data': 7.23.5 '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.23.5 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.5) @@ -9523,7 +9597,6 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true /@babel/preset-env@7.23.6(@babel/core@7.23.5): resolution: {integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==} @@ -9660,7 +9733,7 @@ packages: '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.12.9) '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.12.9) - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 esutils: 2.0.3 /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.12.9): @@ -9670,7 +9743,7 @@ packages: dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 esutils: 2.0.3 dev: true @@ -9681,7 +9754,7 @@ packages: dependencies: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 esutils: 2.0.3 /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6): @@ -9691,9 +9764,8 @@ packages: dependencies: '@babel/core': 7.23.6 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 esutils: 2.0.3 - dev: true /@babel/preset-react@7.23.3(@babel/core@7.23.2): resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==} @@ -9751,7 +9823,21 @@ packages: '@babel/helper-validator-option': 7.23.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.2) - '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.2) + dev: true + + /@babel/preset-typescript@7.23.2(@babel/core@7.23.6): + resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.6) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6) dev: true /@babel/preset-typescript@7.23.3(@babel/core@7.23.5): @@ -9765,7 +9851,7 @@ packages: '@babel/helper-validator-option': 7.23.5 '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.5) '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5) + '@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.5) /@babel/preset-typescript@7.23.3(@babel/core@7.23.6): resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} @@ -9793,12 +9879,12 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/register@7.12.1(@babel/core@7.23.5): + /@babel/register@7.12.1(@babel/core@7.23.6): resolution: {integrity: sha512-XWcmseMIncOjoydKZnWvWi0/5CUCD+ZYKhRwgYlWOrA8fGZ/FjuLRpqtIhLOVD/fvR1b9DQHtZPn68VvhpYf+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 find-cache-dir: 2.1.0 lodash: 4.17.21 make-dir: 2.1.0 @@ -9861,20 +9947,20 @@ packages: dependencies: '@babel/code-frame': 7.23.5 '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@babel/traverse@7.23.5: resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 + '@babel/generator': 7.23.6 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 debug: 4.3.4(supports-color@9.4.0) globals: 11.12.0 transitivePeerDependencies: @@ -10080,7 +10166,7 @@ packages: resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} dependencies: '@babel/helper-module-imports': 7.22.15 - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 '@emotion/serialize': 1.1.2 @@ -10114,7 +10200,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -10785,7 +10871,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 20.10.4 + '@types/node': 16.18.68 chalk: 4.1.2 jest-message-util: 26.6.2 jest-util: 26.6.2 @@ -11519,7 +11605,7 @@ packages: resolution: {integrity: sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==} engines: {node: '>= 6'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/types': 24.9.0 babel-plugin-istanbul: 5.2.0 chalk: 2.4.2 @@ -11543,7 +11629,7 @@ packages: resolution: {integrity: sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==} engines: {node: '>= 8.3'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/types': 25.5.0 babel-plugin-istanbul: 6.1.1 chalk: 3.0.0 @@ -11567,7 +11653,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -11589,7 +11675,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -11611,7 +11697,7 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 @@ -12931,18 +13017,18 @@ packages: /@radix-ui/number@1.0.1: resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dev: true /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@radix-ui/primitive@1.0.1: resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dev: true /@radix-ui/react-arrow@1.0.2(react-dom@17.0.2)(react@17.0.2): @@ -12951,7 +13037,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -12969,7 +13055,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.71 '@types/react-dom': 18.0.10 @@ -12990,7 +13076,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -13003,7 +13089,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-context': 1.0.0(react@17.0.2) '@radix-ui/react-primitive': 1.0.2(react-dom@17.0.2)(react@17.0.2) @@ -13024,7 +13110,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-context': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) @@ -13048,7 +13134,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-context': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) @@ -13063,7 +13149,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 /@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.71)(react@17.0.2): @@ -13075,7 +13161,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -13085,7 +13171,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 /@radix-ui/react-context@1.0.1(@types/react@17.0.71)(react@17.0.2): @@ -13097,7 +13183,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -13108,7 +13194,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-context': 1.0.0(react@17.0.2) @@ -13133,7 +13219,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 /@radix-ui/react-direction@1.0.1(@types/react@17.0.71)(react@17.0.2): @@ -13145,7 +13231,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -13156,7 +13242,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-primitive': 1.0.0(react-dom@17.0.2)(react@17.0.2) @@ -13171,7 +13257,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-primitive': 1.0.2(react-dom@17.0.2)(react@17.0.2) @@ -13193,7 +13279,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) @@ -13218,7 +13304,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) @@ -13235,7 +13321,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-context': 1.0.0(react@17.0.2) @@ -13253,7 +13339,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 /@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.71)(react@17.0.2): @@ -13265,7 +13351,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -13276,7 +13362,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-primitive': 1.0.0(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) @@ -13289,7 +13375,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-primitive': 1.0.2(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) @@ -13309,7 +13395,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13332,7 +13418,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13346,7 +13432,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 @@ -13359,7 +13445,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -13371,7 +13457,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.2(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) @@ -13401,7 +13487,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@floating-ui/react-dom': 0.7.2(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-arrow': 1.0.2(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) @@ -13430,7 +13516,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@floating-ui/react-dom': 2.0.4(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13460,7 +13546,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@floating-ui/react-dom': 2.0.4(react-dom@16.14.0)(react@17.0.2) '@radix-ui/react-arrow': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13482,7 +13568,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -13493,7 +13579,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -13511,7 +13597,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.71 '@types/react-dom': 18.0.10 @@ -13532,7 +13618,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -13545,7 +13631,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 @@ -13557,7 +13643,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-slot': 1.0.0(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -13568,7 +13654,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-slot': 1.0.1(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -13586,7 +13672,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-slot': 1.0.2(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 '@types/react-dom': 18.0.10 @@ -13607,7 +13693,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-slot': 1.0.2(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -13620,7 +13706,7 @@ packages: react: ^17.0.2 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.2(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) @@ -13646,7 +13732,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13675,7 +13761,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13703,7 +13789,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) @@ -13744,7 +13830,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-collection': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) @@ -13784,7 +13870,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.71 '@types/react-dom': 18.0.10 @@ -13805,7 +13891,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -13817,7 +13903,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) react: 17.0.2 @@ -13826,7 +13912,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) react: 17.0.2 @@ -13839,7 +13925,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -13858,7 +13944,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-context': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-direction': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13885,7 +13971,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-context': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-direction': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13911,7 +13997,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13934,7 +14020,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13956,7 +14042,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-context': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-direction': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -13983,7 +14069,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-context': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@radix-ui/react-direction': 1.0.1(@types/react@17.0.71)(react@17.0.2) @@ -14001,7 +14087,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 /@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.71)(react@17.0.2): @@ -14013,7 +14099,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -14023,7 +14109,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) react: 17.0.2 @@ -14036,7 +14122,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -14047,7 +14133,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) react: 17.0.2 @@ -14056,7 +14142,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) react: 17.0.2 @@ -14069,7 +14155,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -14080,7 +14166,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 /@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.71)(react@17.0.2): @@ -14092,7 +14178,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -14106,7 +14192,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 react: 17.0.2 dev: true @@ -14116,7 +14202,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/rect': 1.0.0 react: 17.0.2 @@ -14129,7 +14215,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/rect': 1.0.1 '@types/react': 17.0.71 react: 17.0.2 @@ -14140,7 +14226,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) react: 17.0.2 @@ -14153,7 +14239,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.71)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -14172,7 +14258,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.10)(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@types/react': 17.0.71 '@types/react-dom': 18.0.10 @@ -14193,7 +14279,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@radix-ui/react-primitive': 1.0.3(@types/react@17.0.71)(react-dom@16.14.0)(react@17.0.2) '@types/react': 17.0.71 react: 17.0.2 @@ -14203,12 +14289,12 @@ packages: /@radix-ui/rect@1.0.0: resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@radix-ui/rect@1.0.1: resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dev: true /@react-native-community/cli-clean@12.1.1: @@ -15755,7 +15841,7 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2) '@storybook/api': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2) '@storybook/channel-postmessage': 6.5.17-alpha.0 @@ -15775,7 +15861,7 @@ packages: '@types/node': 16.18.68 '@types/webpack': 4.41.38 autoprefixer: 9.8.6 - babel-loader: 8.3.0(@babel/core@7.23.5)(webpack@4.47.0) + babel-loader: 8.3.0(@babel/core@7.23.6)(webpack@4.47.0) case-sensitive-paths-webpack-plugin: 2.4.0 core-js: 3.34.0 css-loader: 3.6.0(webpack@4.47.0) @@ -15987,9 +16073,9 @@ packages: resolution: {integrity: sha512-GqvaFdkkBMJOdnrVe82XY0V3b+qFMhRNyVoTv2nqB87iMUXZHqh4Pu4LqwaJBsBpuNregvCvVOPe9LGgoOzy4A==} hasBin: true dependencies: - '@babel/core': 7.23.5 - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/types': 7.23.5 + '@babel/core': 7.23.6 + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/types': 7.23.6 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.6.4 '@storybook/core-common': 7.6.4 @@ -16094,9 +16180,9 @@ packages: /@storybook/codemod@7.6.4: resolution: {integrity: sha512-q4rZVOfozxzbDRH/LzuFDoIGBdXs+orAm18fi6iAx8PeMHe8J/MOXKccNV1zdkm/h7mTQowuRo45KwJHw8vX+g==} dependencies: - '@babel/core': 7.23.5 - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/types': 7.23.5 + '@babel/core': 7.23.6 + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/types': 7.23.6 '@storybook/csf': 0.1.2 '@storybook/csf-tools': 7.6.4 '@storybook/node-logger': 7.6.4 @@ -16297,35 +16383,35 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.5) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.5) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/preset-react': 7.23.3(@babel/core@7.23.5) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/register': 7.12.1(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-decorators': 7.23.5(@babel/core@7.23.6) + '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.6) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.6) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.23.6) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.23.6) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.6) + '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.6) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.6) + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/preset-react': 7.23.3(@babel/core@7.23.6) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6) + '@babel/register': 7.12.1(@babel/core@7.23.6) '@storybook/node-logger': 6.5.17-alpha.0 '@storybook/semver': 7.3.2 '@types/node': 16.18.68 '@types/pretty-hrtime': 1.0.3 - babel-loader: 8.3.0(@babel/core@7.23.5)(webpack@4.47.0) + babel-loader: 8.3.0(@babel/core@7.23.6)(webpack@4.47.0) babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.23.5) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.23.6) chalk: 4.1.2 core-js: 3.34.0 express: 4.18.2 @@ -16758,15 +16844,15 @@ packages: '@storybook/mdx2-csf': optional: true dependencies: - '@babel/core': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/core': 7.23.6 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.6 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.6) + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/mdx1-csf': 0.0.1(@babel/core@7.23.5) + '@storybook/mdx1-csf': 0.0.1(@babel/core@7.23.6) core-js: 3.34.0 fs-extra: 9.1.0 global: 4.4.0 @@ -16779,10 +16865,10 @@ packages: /@storybook/csf-tools@7.5.2: resolution: {integrity: sha512-yXaEDREc2wvkjYkQqDMatJw23f0fEFhMIf/zBNF7YljeYw0j8jAg/7XI5WJJSN2KTxD/feD/yD+6eaLUXvrneQ==} dependencies: - '@babel/generator': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.6 + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 '@storybook/csf': 0.1.2 '@storybook/types': 7.5.2 fs-extra: 11.1.1 @@ -16798,7 +16884,7 @@ packages: '@babel/generator': 7.23.5 '@babel/parser': 7.23.5 '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@storybook/csf': 0.1.2 '@storybook/types': 7.6.4 fs-extra: 11.1.1 @@ -16833,7 +16919,7 @@ packages: /@storybook/docs-tools@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-zhRwBRytPZ2unWxQIZDhyiRZ9Bb0+WGO0eTC6wyq7VZioxCa47PxWTmbRPh5BGD/LygEVn9J2qL8ySZaf/bJAA==} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/store': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2) core-js: 3.34.0 @@ -16985,9 +17071,9 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.5) - '@babel/preset-react': 7.23.3(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.6) + '@babel/preset-react': 7.23.3(@babel/core@7.23.6) '@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2) '@storybook/core-client': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.3.3)(webpack@4.47.0) '@storybook/core-common': 6.5.17-alpha.0(eslint@8.55.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.3.3)(webpack-cli@3.3.12) @@ -16996,7 +17082,7 @@ packages: '@storybook/ui': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2) '@types/node': 16.18.68 '@types/webpack': 4.41.38 - babel-loader: 8.3.0(@babel/core@7.23.5)(webpack@4.47.0) + babel-loader: 8.3.0(@babel/core@7.23.6)(webpack@4.47.0) case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 core-js: 3.34.0 @@ -17097,10 +17183,10 @@ packages: /@storybook/mdx1-csf@0.0.1(@babel/core@7.23.5): resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.23.5 - '@babel/parser': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.6 '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.202 js-string-escape: 1.0.1 @@ -17951,13 +18037,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.5): + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.5): @@ -17983,6 +18069,15 @@ packages: '@babel/core': 7.23.5 dev: true + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.6): + resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + dev: true + /@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1: resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} engines: {node: '>=10'} @@ -17997,18 +18092,27 @@ packages: '@babel/core': 7.23.5 dev: true + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.6): + resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.6 + dev: true + /@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1: resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.5): + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.5): @@ -18025,13 +18129,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.5): + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.5): @@ -18048,13 +18152,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.5): + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.5): @@ -18071,13 +18175,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.5): + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.5): @@ -18094,13 +18198,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.5): + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.5): @@ -18126,21 +18230,21 @@ packages: '@svgr/babel-plugin-transform-svg-component': 5.5.0 dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.23.5): + /@svgr/babel-preset@6.5.1(@babel/core@7.23.6): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.5) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.5) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.5) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.5) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.5) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.5) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.5) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.6) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.6) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.6) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.6) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.6) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.6) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.6) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.6) dev: true /@svgr/babel-preset@8.1.0(@babel/core@7.23.5): @@ -18175,8 +18279,8 @@ packages: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.23.5 - '@svgr/babel-preset': 6.5.1(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@svgr/babel-preset': 6.5.1(@babel/core@7.23.6) '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -18202,14 +18306,14 @@ packages: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 dev: true /@svgr/hast-util-to-babel-ast@6.5.1: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 entities: 4.5.0 dev: true @@ -18217,7 +18321,7 @@ packages: resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} engines: {node: '>=14'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 entities: 4.5.0 dev: true @@ -18225,7 +18329,7 @@ packages: resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@svgr/babel-preset': 5.5.0 '@svgr/hast-util-to-babel-ast': 5.5.0 svg-parser: 2.0.4 @@ -18239,8 +18343,8 @@ packages: peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.23.5 - '@svgr/babel-preset': 6.5.1(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@svgr/babel-preset': 6.5.1(@babel/core@7.23.6) '@svgr/core': 6.5.1 '@svgr/hast-util-to-babel-ast': 6.5.1 svg-parser: 2.0.4 @@ -18511,7 +18615,7 @@ packages: engines: {node: '>=14'} dependencies: '@babel/code-frame': 7.23.5 - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/aria-query': 5.0.4 aria-query: 5.1.3 chalk: 4.1.2 @@ -18539,7 +18643,7 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.3.2 - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/testing-library__jest-dom': 5.14.9 aria-query: 5.3.0 chalk: 3.0.0 @@ -18562,9 +18666,9 @@ packages: react-test-renderer: optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 - '@types/react-dom': 18.0.10 + '@types/react-dom': 17.0.25 '@types/react-test-renderer': 18.0.7 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -18604,7 +18708,7 @@ packages: dependencies: '@babel/runtime': 7.23.5 '@testing-library/dom': 8.11.3 - '@types/react-dom': 18.0.10 + '@types/react-dom': 17.0.25 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) dev: true @@ -18618,7 +18722,7 @@ packages: dependencies: '@babel/runtime': 7.23.5 '@testing-library/dom': 8.11.3 - '@types/react-dom': 18.0.10 + '@types/react-dom': 17.0.25 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -18629,7 +18733,7 @@ packages: react: ^17.0.2 react-dom: <18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@testing-library/dom': 8.11.3 '@types/react-dom': 17.0.25 react: 17.0.2 @@ -18642,7 +18746,7 @@ packages: peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@testing-library/dom': 8.11.3 dev: true @@ -18652,7 +18756,7 @@ packages: peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@testing-library/dom': 9.3.3 dev: true @@ -18716,8 +18820,8 @@ packages: /@types/babel__core@7.20.5: resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} dependencies: - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 '@types/babel__generator': 7.6.7 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.4 @@ -18725,18 +18829,18 @@ packages: /@types/babel__generator@7.6.7: resolution: {integrity: sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@types/babel__template@7.4.4: resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: - '@babel/parser': 7.23.5 - '@babel/types': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/types': 7.23.6 /@types/babel__traverse@7.20.4: resolution: {integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 /@types/body-parser@1.19.5: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} @@ -18764,7 +18868,7 @@ packages: /@types/cheerio@0.22.35: resolution: {integrity: sha512-yD57BchKRvTV+JD53UZ6PD8KWY5g5rvvMLRnZR3EQBCZXiDT/HR+pKpMzFGlWNhFrXlo7VPZXtKvIEwZkAWOIA==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 /@types/classnames@2.3.0: resolution: {integrity: sha512-3GsbOoDYteFShlrBTKzI2Eii4vPg/jAf7LXRIn0WQePKlmhpkV0KoTMuawA7gZJkrbPrZGwv9IEAfIWaOaQK8w==} @@ -18809,7 +18913,7 @@ packages: /@types/cross-spawn@6.0.6: resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 dev: true /@types/d3-time-format@2.3.4: @@ -18928,7 +19032,7 @@ packages: /@types/graceful-fs@4.1.9: resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 /@types/gradient-parser@0.1.3: resolution: {integrity: sha512-XDbrTSBlQV9nxE1GiDL3FaOPy4G/KaJkhDutBX48Kg8CYZMBARyyDFGCWfWJn4pobmInmwud1xxH7VJMAr0CKQ==} @@ -18967,7 +19071,7 @@ packages: /@types/http-proxy@1.17.14: resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 /@types/is-function@1.0.3: resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} @@ -19051,7 +19155,7 @@ packages: /@types/keyv@3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 /@types/lodash.shuffle@4.2.9: resolution: {integrity: sha512-4siLZ4/vQH4T7Bm4254sG4n6hh9k7vd/bqfDVoeIwSha4Itu3MuoTxPX2I2Tue2JN94y7Y2I27QzwHZLdMlrBg==} @@ -19122,7 +19226,7 @@ packages: /@types/node-forge@1.3.10: resolution: {integrity: sha512-y6PJDYN4xYBxwd22l+OVH35N+1fCYWiuC3aiP2SlXVE6Lo7SS+rSx9r89hLxrP4pn6n1lBGhHJ12pj3F3Mpttw==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 /@types/node@10.17.60: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} @@ -19153,7 +19257,7 @@ packages: /@types/npmlog@4.1.6: resolution: {integrity: sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 dev: true /@types/parse-json@4.0.2: @@ -19298,7 +19402,7 @@ packages: /@types/simple-peer@9.11.8: resolution: {integrity: sha512-rvqefdp2rvIA6wiomMgKWd2UZNPe6LM2EV5AuY3CPQJF+8TbdrL5TjYdMf0VAjGczzlkH4l1NjDkihwbj3Xodw==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 /@types/sizzle@2.3.8: resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} @@ -19383,7 +19487,7 @@ packages: /@types/webpack-sources@3.2.3: resolution: {integrity: sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 '@types/source-list-map': 0.1.6 source-map: 0.7.4 dev: true @@ -19696,7 +19800,7 @@ packages: resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} requiresBuild: true dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 optional: true /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@5.3.3): @@ -20908,7 +21012,7 @@ packages: resolution: {integrity: sha512-4Tnv0D2vJictPtg9nrga0iuliOUSxRrnLYK9Q49CHN4AVr9hE30ndZwn4zy/MYh3K+Oz6YgLBlJrpvL62L0b5w==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/dom-ready': 3.47.0 '@wordpress/i18n': 4.47.0 @@ -20923,7 +21027,7 @@ packages: /@wordpress/api-fetch@3.23.1(react-native@0.73.0): resolution: {integrity: sha512-dmeigLuvqYAzpQ2hWUQT1P5VQAjkj9hS1z7PgNi1CcULFPbY8BWW+KiBETUu6Wm+rlSbUL2dC8qrA4JDv9ja5A==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/i18n': 3.20.0 '@wordpress/url': 2.22.2(react-native@0.73.0) transitivePeerDependencies: @@ -20933,7 +21037,7 @@ packages: /@wordpress/api-fetch@4.0.0(react-native@0.73.0): resolution: {integrity: sha512-4nWH/gEpG7/VnEJbjbOWS0AWBnX5snPc3ZaKcXNZsLQlv9YgsS8idL/BNkUl9/ylZeez/UX4lJLVkOR5clvg8A==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/i18n': 3.20.0 '@wordpress/url': 2.22.2(react-native@0.73.0) transitivePeerDependencies: @@ -20944,7 +21048,7 @@ packages: resolution: {integrity: sha512-r8dxJ8ScyKJ9yqHqwybJe2ANAyEZTKcjalp8bdMIZc7lJXgRa5f9kTvulE6hItkSVgBe38u6rx0T7UrlXNrUTw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/i18n': 4.47.0 '@wordpress/url': 3.13.0 dev: true @@ -20970,7 +21074,7 @@ packages: resolution: {integrity: sha512-d8ouvBiKDFu67O9Y8MtlUR2YojCAjmLf0LuBKsSOS5r3MOiwte1tQwsLdzFmGYkdCK09mZhT3UVKdOOiAC3kKA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/i18n': 4.47.0 '@wordpress/url': 3.48.0 @@ -20984,7 +21088,7 @@ packages: resolution: {integrity: sha512-fd9ubAnC5LWYBWv4OS6OOCjBJwDgpQU1Q2hbV5d4oxWh7mq5SiLEaR8OvyElI5+Yl3snYWNE9QHPX19VTlosLQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/babel-plugin-import-jsx-pragma@1.1.3(@babel/core@7.12.9): resolution: {integrity: sha512-WkVeFZpM5yuHigWe8llZDeMRa4bhMQoHu9dzs1s3cmB1do2mhk341Iw34FidWto14Dzd+383K71vxJejqjKOwQ==} @@ -20995,13 +21099,13 @@ packages: '@babel/runtime': 7.23.5 dev: true - /@wordpress/babel-plugin-import-jsx-pragma@2.7.0(@babel/core@7.23.5): + /@wordpress/babel-plugin-import-jsx-pragma@2.7.0(@babel/core@7.23.6): resolution: {integrity: sha512-yR+rSyfHKfevW84vKBOERpjEslD/o00CaYMftywVYOjsOQ8GLS6xv/VgDcpQ8JomJ9eRRInLRpeGKTM3lOa4xQ==} engines: {node: '>=8'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 dev: true /@wordpress/babel-plugin-import-jsx-pragma@3.2.0(@babel/core@7.12.9): @@ -21028,6 +21132,15 @@ packages: '@babel/core': ^7.12.9 dependencies: '@babel/core': 7.23.5 + dev: true + + /@wordpress/babel-plugin-import-jsx-pragma@4.30.0(@babel/core@7.23.6): + resolution: {integrity: sha512-UKkyFmEYk1UTO0ZPun6Kw5dNflTEDpDK/6RxAqxbVrsIWUVSkVahwBnqfS0v5LuvVU8y+5vJSR/WjlnKEmS3Sg==} + engines: {node: '>=14'} + peerDependencies: + '@babel/core': ^7.12.9 + dependencies: + '@babel/core': 7.23.6 /@wordpress/babel-preset-default@3.0.2(@babel/core@7.12.9): resolution: {integrity: sha512-bsa4piS4GU02isj2XJNUgSEC7MpzdYNy9wOFySrp8G6IHAvwrlwcPEXJf5EuwE8ZqTMmFAzPyKOHFEAx/j+J1A==} @@ -21052,12 +21165,12 @@ packages: resolution: {integrity: sha512-VKPoC5We2GNxon5umOeZ7NIP4CfP7X5gqslSnNrLW4kD1XgmbVaCs2ISFF8+mObVVb6KAzbaUjI6OWljcUb5UA==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/runtime': 7.23.5 - '@wordpress/babel-plugin-import-jsx-pragma': 2.7.0(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.6) + '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.6) + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/runtime': 7.23.6 + '@wordpress/babel-plugin-import-jsx-pragma': 2.7.0(@babel/core@7.23.6) '@wordpress/browserslist-config': 2.7.0 '@wordpress/element': 2.20.3 '@wordpress/warning': 1.4.2 @@ -21109,13 +21222,13 @@ packages: resolution: {integrity: sha512-LAiTOlolFvKW6xmL6qRkdbPG09LPwAsmDepz4zWrFXJZHSImDeO2QXHecF1GnFyzLLKr1myHR5MbN3K5MSzpqQ==} engines: {node: '>=14'} dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/runtime': 7.23.5 - '@wordpress/babel-plugin-import-jsx-pragma': 4.30.0(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.6) + '@babel/plugin-transform-runtime': 7.23.4(@babel/core@7.23.6) + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6) + '@babel/runtime': 7.23.6 + '@wordpress/babel-plugin-import-jsx-pragma': 4.30.0(@babel/core@7.23.6) '@wordpress/browserslist-config': 5.30.0 '@wordpress/warning': 2.47.0 browserslist: 4.22.2 @@ -21142,7 +21255,7 @@ packages: resolution: {integrity: sha512-ABwo431Kr1MuipU3mmNbujRToicZAmpIW9hED/3T0NEmtcvKFjVhzYmSFRm9v1VuEbLjBdX7N5pI6Jm//Iq71w==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/blob@3.6.1: resolution: {integrity: sha512-p0n49LESfOv1Jx9BOzpWa1iUHekBrYoKcUHz6P7Xe2L8NgnZiZay3B+Ak5OFOwd1VimQ49yeClNjG/qjaFH6gA==} @@ -21157,7 +21270,7 @@ packages: react: ^17.0.2 react-dom: ^17.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@react-spring/web': 9.7.3(react-dom@17.0.2)(react@17.0.2) '@wordpress/a11y': 3.47.0 '@wordpress/api-fetch': 6.21.0 @@ -21210,7 +21323,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/react': 11.11.1(@types/react@17.0.71)(react@17.0.2) '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@17.0.71)(react@17.0.2) '@react-spring/web': 9.7.3(react-dom@17.0.2)(react@17.0.2) @@ -21326,7 +21439,7 @@ packages: react: ^17.0.2 react-dom: ^17.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@react-spring/web': 9.7.3(react-dom@17.0.2)(react@17.0.2) '@wordpress/a11y': 3.47.0 '@wordpress/api-fetch': 6.21.0 @@ -21479,7 +21592,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/api-fetch': 6.44.0 '@wordpress/autop': 3.47.0 @@ -21539,7 +21652,7 @@ packages: resolution: {integrity: sha512-4y8Gb+m1CDNlfflbpxrFPHeug94NFQABlbFOJZfo2/XOzMuG31mijskk8H1SlTrqwVgoUs6rejFEMXKagdcI0w==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/blocks@11.1.5(react@17.0.2): resolution: {integrity: sha512-r4xNTQPpUqJ7vqsJqH4D5+GeRQVOLF+9dkeNxkKQnJSFZ5y6POd28d0gMsOcTdGtAzXN6sak104DaKry2SWQNA==} @@ -21576,7 +21689,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/autop': 3.47.0 '@wordpress/blob': 3.47.0 '@wordpress/block-serialization-default-parser': 4.47.0 @@ -21662,7 +21775,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/components': 25.13.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/data': 9.17.0(react@17.0.2) '@wordpress/element': 5.24.0 @@ -21689,7 +21802,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/components': 25.13.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/data': 9.17.0(react@17.0.2) '@wordpress/element': 5.22.0 @@ -21928,7 +22041,7 @@ packages: react: ^17.0.2 react-dom: ^17.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/cache': 11.11.0 '@emotion/css': 11.11.2 '@emotion/react': 11.11.1(@types/react@17.0.71)(react@17.0.2) @@ -21981,7 +22094,7 @@ packages: react: ^17.0.2 react-dom: ^17.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/cache': 11.11.0 '@emotion/css': 11.11.2 '@emotion/react': 11.11.1(@types/react@17.0.71)(react@17.0.2) @@ -22037,7 +22150,7 @@ packages: react-dom: ^18.0.0 dependencies: '@ariakit/react': 0.3.9(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/cache': 11.11.0 '@emotion/css': 11.11.2 '@emotion/react': 11.11.1(@types/react@17.0.71)(react@17.0.2) @@ -22100,7 +22213,7 @@ packages: /@wordpress/compose@3.25.3(react@17.0.2): resolution: {integrity: sha512-tCO2EnJCkCH548OqA0uU8V1k/1skz2QwBlHs8ZQSpimqUS4OWWsAlndCEFe4U4vDTqFt2ow7tzAir+05Cw8MAg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/deprecated': 2.12.3 '@wordpress/dom': 2.18.0 '@wordpress/element': 2.20.3 @@ -22120,7 +22233,7 @@ packages: resolution: {integrity: sha512-8CJ4wzTXT9ZP+uIvN1d2cPBv06ZmhUh+UKzSf7v1o7T28SaYRcoZbsvDD2dnXbS2ZwWPIYAD9waNLWjCBq/izA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/lodash': 4.14.149 '@types/mousetrap': 1.6.15 '@wordpress/deprecated': 3.41.0 @@ -22144,7 +22257,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/mousetrap': 1.6.15 '@wordpress/deprecated': 3.47.0 '@wordpress/dom': 3.47.0 @@ -22164,7 +22277,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/lodash': 4.14.202 '@types/mousetrap': 1.6.15 '@wordpress/deprecated': 3.6.1 @@ -22187,7 +22300,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/lodash': 4.14.202 '@types/mousetrap': 1.6.15 '@wordpress/deprecated': 3.41.0 @@ -22209,7 +22322,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/mousetrap': 1.6.15 '@wordpress/deprecated': 3.47.0 '@wordpress/dom': 3.47.0 @@ -22230,7 +22343,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/commands': 0.9.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/core-data': 6.24.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/data': 9.17.0(react@17.0.2) @@ -22310,7 +22423,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.44.0 '@wordpress/block-editor': 12.15.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/blocks': 12.24.0(react@17.0.2) @@ -22379,7 +22492,7 @@ packages: /@wordpress/data-controls@1.21.3(react-native@0.73.0)(react@17.0.2): resolution: {integrity: sha512-aLpx/HvKaxCQfWSLGIz699SB9Guyq8Yoq5XLlH8eNWnf/8HkQg8hQ6yagDY8BinV/t8HScc5A7a6n6pvZNGtjg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 4.0.0(react-native@0.73.0) '@wordpress/data': 4.27.3(react@17.0.2) '@wordpress/deprecated': 2.12.3 @@ -22404,7 +22517,7 @@ packages: resolution: {integrity: sha512-O6bdBW0OrInV9jEH6LF4Cp52M11RdN68NjZmSTWYSSZB95kO+wGBYYcjYB7yXXv/woBvcKpsBLXcCl2bMfICVA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.44.0 '@wordpress/data': 9.17.0(react@17.0.2) '@wordpress/deprecated': 3.41.0 @@ -22428,7 +22541,7 @@ packages: /@wordpress/data@4.27.3(react@17.0.2): resolution: {integrity: sha512-5763NgNV9IIa1CC3Q80dAvrH6108tJtj3IrHfUCZmUk1atSNsOMBCkLdQ7tGTTi2JFejeGEMg1LJI22JD5zM6Q==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 3.25.3(react@17.0.2) '@wordpress/deprecated': 2.12.3 '@wordpress/element': 2.20.3 @@ -22452,7 +22565,7 @@ packages: peerDependencies: redux: ^4.1.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 4.2.0(react@17.0.2) '@wordpress/deprecated': 3.41.0 '@wordpress/element': 3.2.0 @@ -22476,7 +22589,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 5.20.0(react@17.0.2) '@wordpress/deprecated': 3.41.0 '@wordpress/element': 4.20.0 @@ -22519,7 +22632,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 5.20.0(react@17.0.2) '@wordpress/deprecated': 3.41.0 '@wordpress/element': 4.20.0 @@ -22541,7 +22654,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 6.24.0(react@17.0.2) '@wordpress/deprecated': 3.47.0 '@wordpress/element': 5.24.0 @@ -22571,7 +22684,7 @@ packages: resolution: {integrity: sha512-HIruX+wMaQWKYLCFIu6JeEEoqRYkhpL4cWfZ1lJG78wNsgq3vRiHzXQaXHcbmJQCq0PZOxtmeSzldPiUMFVNpg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/deprecated': 3.47.0 moment: 2.29.4 moment-timezone: 0.5.43 @@ -22641,7 +22754,7 @@ packages: /@wordpress/deprecated@2.12.3: resolution: {integrity: sha512-qr+yDfTQfI3M4h6oY6IeHWwoHr4jxbILjSlV+Ht6Jjto9Owap6OuzSqR13Ev4xqIoG4C7b5B3gZXVfwVDae1zg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/hooks': 2.12.3 /@wordpress/deprecated@3.41.0: @@ -22655,7 +22768,7 @@ packages: resolution: {integrity: sha512-Vq4h6LHGPUc/pqmLOANcPpiMrOVoTeZRDvKxE+ioR9ldEFo+uquMKrEmJZxXVXl0GZdMKQ4jGKx34z8S8VRwQw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/hooks': 3.47.0 /@wordpress/deprecated@3.6.1: @@ -22676,7 +22789,7 @@ packages: resolution: {integrity: sha512-VsqaTQJ5Z7Qa3Doi5qk4LMnW0K78JEKLYRcg3ohapgBrQ2tKTS67oWgJx2VgWz8ky6j9UosecSISP3zJHXfEeA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/dom-ready@3.6.1: resolution: {integrity: sha512-G6OnfLLC0MIWi9efTW6DMNEtEoy7tCoV0MxD19gUuG3/rDOi8RgHYwuNCvt6ieQMISiLiHnsg4tZc4D45zdfZA==} @@ -22688,7 +22801,7 @@ packages: /@wordpress/dom@2.18.0: resolution: {integrity: sha512-tM2WeQuSObl3nzWjUTF0/dyLnA7sdl/MXaSe32D64OF89bjSyJvjUipI7gjKzI3kJ7ddGhwcTggGvSB06MOoCQ==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 lodash: 4.17.21 /@wordpress/dom@3.27.0: @@ -22702,7 +22815,7 @@ packages: resolution: {integrity: sha512-SY6wfAc4yrXYil8fm/uyeKQnPjGuc0G9Q1/5pUKO6dssst8fClsrxy+hXNl0FYFGWnAZBqg5ccrwYydrFt5k/g==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/deprecated': 3.47.0 /@wordpress/dom@3.6.1: @@ -22810,7 +22923,7 @@ packages: jest: '>=24' puppeteer: '>=1.19.0' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/keycodes': 2.19.3 '@wordpress/url': 2.22.2(react-native@0.73.0) jest: 24.9.0 @@ -22847,7 +22960,7 @@ packages: jest: '>=24' puppeteer: '>=1.19.0' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/keycodes': 2.19.3 '@wordpress/url': 2.22.2(react-native@0.73.0) jest: 29.7.0(@types/node@16.18.68)(ts-node@10.9.2) @@ -22866,7 +22979,7 @@ packages: jest: '>=27' puppeteer-core: '>=11' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.21.0 '@wordpress/keycodes': 3.47.0 '@wordpress/url': 3.48.0 @@ -23123,7 +23236,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/api-fetch': 6.44.0 '@wordpress/blob': 3.47.0 @@ -23176,7 +23289,7 @@ packages: /@wordpress/element@2.20.3: resolution: {integrity: sha512-f4ZPTDf9CxiiOXiMxc4v1K7jcBMT4dsiehVOpkKzCDKboNXp4qVf8oe5PE23VGZNEjcOj5Mkg9hB57R0nqvMTw==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 '@types/react-dom': 16.9.24 '@wordpress/escape-html': 1.12.2 @@ -23188,7 +23301,7 @@ packages: resolution: {integrity: sha512-YXJhtBF8FnFYwA9X6Dvs4k6yJf5wy1lhU04VNJVzoUDwCt/pK747RGePIPDdUWVd3X/TlyNH2yLRtcCyOC/SzQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 '@types/react-dom': 16.9.24 '@wordpress/escape-html': 2.47.0 @@ -23238,7 +23351,7 @@ packages: resolution: {integrity: sha512-El1E5jlZitrDouvde0dUF2yVRiPsxPnjxB9TU43EhahQ9eT8pwfUaH3I4NT8kUj2LD76WwU8fN7CEmBNBW+ofA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/react': 17.0.71 '@types/react-dom': 18.0.10 '@wordpress/escape-html': 2.47.0 @@ -23289,15 +23402,15 @@ packages: /@wordpress/escape-html@1.12.2: resolution: {integrity: sha512-FabgSwznhdaUwe6hr1CsGpgxQbzqEoGevv73WIL1B9GvlZ6csRWodgHfWh4P6fYqpzxFL4WYB8wPJ1PdO32XFA==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/escape-html@2.47.0: resolution: {integrity: sha512-bBGcTE5chneQJ3yETJyT2suyVtEJNfOiMVBV5qm606TyEzIDm18Sw2mPfOagiB1nOwDkAVfpSVD2NeGpit2alA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 - /@wordpress/eslint-plugin@12.9.0(@babel/core@7.23.5)(eslint-import-resolver-typescript@3.2.4)(eslint-import-resolver-webpack@0.13.2)(eslint@8.55.0)(jest@27.5.1)(typescript@5.3.2)(wp-prettier@2.6.2): + /@wordpress/eslint-plugin@12.9.0(@babel/core@7.23.6)(eslint-import-resolver-typescript@3.2.4)(eslint-import-resolver-webpack@0.13.2)(eslint@8.55.0)(jest@27.5.1)(typescript@5.3.2)(wp-prettier@2.6.2): resolution: {integrity: sha512-R6dTvD4uFYeoUJFZNUhm1CSwthC0Pl0RIY057Y9oUvGSqjjm7RqRIwKrMlw3dO0P9KoBGGHUox8NUj6EciRXww==} engines: {node: '>=12', npm: '>=6.9'} peerDependencies: @@ -23311,8 +23424,8 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.23.5 - '@babel/eslint-parser': 7.23.3(@babel/core@7.23.5)(eslint@8.55.0) + '@babel/core': 7.23.6 + '@babel/eslint-parser': 7.23.3(@babel/core@7.23.6)(eslint@8.55.0) '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.3.2) '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.3.2) '@wordpress/babel-preset-default': 6.17.0 @@ -23567,13 +23680,13 @@ packages: /@wordpress/hooks@2.12.3: resolution: {integrity: sha512-LmKiwKldZt6UYqOxV/a6+eUFXdvALFnB/pQx3RmrMvO64sgFhfR6dhrlv+uVbuuezSuv8dce1jx8lUWAT0krMA==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/hooks@3.47.0: resolution: {integrity: sha512-a0mZ+lSUBrmacJGXDnFTaz1O47sQgTCZi3LrY445WNc7cmiSlscTfeBxrUXaTF0ninzHJnE7evCIeKLbQC3dLQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/hooks@3.6.1: resolution: {integrity: sha512-4sIngmH64M1jzcprfkffo1GHsQbd/QNbTweq6cSPIJNorKfE63Inf59NQ6r0pq6+Nz+cuq64eMz5v4eyngjZ/A==} @@ -23591,7 +23704,7 @@ packages: resolution: {integrity: sha512-3wGxzlTNFRnw80jv5ckREDTwNq8FCU+HqdbhwXZWjiIDv2J8GwH1sgD8VbMzlB1Bi9V/3yqteYtv0V/RpC2VfQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/html-entities@3.6.1: resolution: {integrity: sha512-Nb0nCYIdTEehWJ6HoA76bxpseKDY/12rYZ10eqf5OSr6oMvtyJ5j4fkNMKuHFQ00Mhppl9fkYWp2c8ZzBcp5Vw==} @@ -23604,7 +23717,7 @@ packages: resolution: {integrity: sha512-SIoOJFB4UrrYAScS4H91CYCLW9dX3Ghv8pBKc/yHGculb1AdGr6gRMlmJxZV62Cn3CZ4Ga86c+FfR+GiBu0JPg==} hasBin: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/hooks': 2.12.3 gettext-parser: 1.4.0 lodash: 4.17.21 @@ -23654,7 +23767,7 @@ packages: resolution: {integrity: sha512-1FpEjT9kJbr0cWbgdgIwd2DoeerWijcVx3qCZ/WMFKNElBH9lfZLuWPI1hpX102HGWFcEi3VlbVpdBGeCeYQWg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/element': 3.2.0 '@wordpress/primitives': 2.2.0 dev: false @@ -23663,7 +23776,7 @@ packages: resolution: {integrity: sha512-BkKiEzWejlIEuEZp0pNEPSMyMBXCP7a1ZlfBaGXAGyzdQNO4CKVxYVwGZ00cnrlQIlBv2Rp7ujPRiVwd+r81ag==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/element': 4.20.0 '@wordpress/primitives': 3.4.1 dev: true @@ -23698,7 +23811,7 @@ packages: resolution: {integrity: sha512-K+rSZM1eKuWh+rXeMWNLj4dT0a3RJSzoUUh9UDQZCSdnThyAyZECGEKfHSCfd28/yabxLKaziXrb5/MVBrPjZw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/element': 5.24.0 '@wordpress/primitives': 3.45.0 @@ -23776,7 +23889,7 @@ packages: /@wordpress/is-shallow-equal@3.1.3: resolution: {integrity: sha512-eDLhfC4aaSgklzqwc6F/F4zmJVpTVTAvhqX+q0SP/8LPcP2HuKErPHVrEc75PMWqIutja2wJg98YSNPdewrj1w==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/is-shallow-equal@4.24.0: resolution: {integrity: sha512-Y61kXn4g3zy5u20EtstvifOjznPCC08Pb1SjJ8QZajGhE4ghy/1q8xpalIkrsCaA+GEVYyq1q5D5rApNnyxKLw==} @@ -23788,7 +23901,7 @@ packages: resolution: {integrity: sha512-mfrw/GXtCzm5jciuXumabfJhJLzGU0EpGgXU9tDHw6CwDrtUMcM05qrvrXFk4IlE2hYFwuTkWryValMt3FFdoQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/jest-console@3.10.0(jest@25.5.4): resolution: {integrity: sha512-iS1GSO+o7+p2PhvScOquD+IK7WqmVxa2s9uTUQyNEo06f9EUv6KNw0B1iZ00DpbgLqDCiczfdCNapC816UXIIA==} @@ -23796,7 +23909,7 @@ packages: peerDependencies: jest: '>=24' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 jest: 25.5.4 jest-matcher-utils: 25.5.0 lodash: 4.17.21 @@ -23808,7 +23921,7 @@ packages: peerDependencies: jest: '>=26' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 jest: 26.6.3 jest-matcher-utils: 26.6.2 lodash: 4.17.21 @@ -23820,7 +23933,7 @@ packages: peerDependencies: jest: '>=26' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 jest: 27.5.1(ts-node@10.9.2) jest-matcher-utils: 26.6.2 lodash: 4.17.21 @@ -23853,7 +23966,7 @@ packages: peerDependencies: jest: '>=27' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 jest: 27.5.1(ts-node@10.9.2) jest-matcher-utils: 27.5.1 dev: true @@ -23864,7 +23977,7 @@ packages: peerDependencies: jest: '>=29' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 jest: 29.7.0(@types/node@16.18.68)(ts-node@10.9.2) jest-matcher-utils: 29.7.0 dev: true @@ -23979,6 +24092,28 @@ packages: - supports-color dev: true + /@wordpress/jest-preset-default@8.5.2(@babel/core@7.23.6)(jest@27.5.1)(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-xlo8LNDcjuXbb1OVI9SFDm2u6JeWXu945Jo8LtPtWbRgCfgBZfQh4Y/csMbkiiIRq/Hpi5/VK2WWJJXSe5EsRQ==} + engines: {node: '>=12'} + peerDependencies: + '@babel/core': '>=7' + jest: '>=27' + react: ^17.0.2 + react-dom: ^17.0.0 + dependencies: + '@babel/core': 7.23.6 + '@wojtekmaj/enzyme-adapter-react-17': 0.6.7(enzyme@3.11.0)(react-dom@17.0.2)(react@17.0.2) + '@wordpress/jest-console': 5.4.0(jest@27.5.1) + babel-jest: 27.5.1(@babel/core@7.23.6) + enzyme: 3.11.0 + enzyme-to-json: 3.6.2(enzyme@3.11.0) + jest: 27.5.1(ts-node@10.9.2) + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + transitivePeerDependencies: + - supports-color + dev: true + /@wordpress/jest-puppeteer-axe@4.1.0(jest@29.7.0)(puppeteer@17.1.3): resolution: {integrity: sha512-3pY44XS+DR3fRMFJeyVed8Hcqctpx0GQDMezHivfM3DBcjn88jh1Hd70UNR7I29wh7hWjIlXgDVBS1hLnpnfow==} engines: {node: '>=12'} @@ -23990,7 +24125,7 @@ packages: optional: true dependencies: '@axe-core/puppeteer': 4.8.2(puppeteer@17.1.3) - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 jest: 29.7.0(@types/node@16.18.68)(ts-node@10.9.2) puppeteer: 17.1.3 dev: true @@ -24001,7 +24136,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/data': 7.6.0(react@17.0.2) '@wordpress/element': 4.20.0 '@wordpress/keycodes': 3.47.0 @@ -24028,7 +24163,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/data': 9.17.0(react@17.0.2) '@wordpress/element': 5.24.0 '@wordpress/keycodes': 3.47.0 @@ -24038,7 +24173,7 @@ packages: /@wordpress/keycodes@2.19.3: resolution: {integrity: sha512-8rNdmP5M1ifTgLIL0dt/N1uTGsq/Rx1ydCXy+gg24WdxBRhyu5sudNVCtascVXo26aIfOH9OJRdqRZZTEORhog==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/i18n': 3.20.0 lodash: 4.17.21 @@ -24083,7 +24218,7 @@ packages: resolution: {integrity: sha512-ydNcdUBK5/mlAkXqxv/jJYk8GqGifz5Az7altVyMNT8FxmG8X2gfHbLthEO3ByRYvKBn/7qzfLE8MsG/KcGcVQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.44.0 '@wordpress/blob': 3.47.0 '@wordpress/element': 5.24.0 @@ -24096,7 +24231,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/data': 6.15.0(react@17.0.2) react: 17.0.2 @@ -24105,7 +24240,7 @@ packages: resolution: {integrity: sha512-9WyaFaSr/vQc1K7cZLyPw1xBKqWfjpAKMJzWMzHYjwk1ldibhBWVLukicuolD6Y+9l+97IZHCoESBQwUeFo79Q==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/data': 9.17.0(react@17.0.2) transitivePeerDependencies: @@ -24130,7 +24265,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/data': 9.17.0(react@17.0.2) react: 17.0.2 @@ -24169,7 +24304,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/block-editor': 12.15.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/blocks': 12.24.0(react@17.0.2) @@ -24236,7 +24371,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/components': 25.13.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/compose': 6.24.0(react@17.0.2) '@wordpress/element': 5.24.0 @@ -24343,7 +24478,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/components': 25.13.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/data': 9.17.0(react@17.0.2) @@ -24414,7 +24549,7 @@ packages: resolution: {integrity: sha512-WupgR+tt6fKGZE1UKy2gz3wDdpRL9MWQbVuetXv/7TPAz2ofOS2fZIsXNrl4D0HkA82gYh8w8s2TXK0XNyAAow==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/element': 3.2.0 classnames: 2.3.2 dev: false @@ -24440,40 +24575,40 @@ packages: resolution: {integrity: sha512-8nSRklcrUFIOD/A8gpDrNmf2GTa3x0kuc8EHpra0FBVAwUaacp+HeeP7281tSSIt/yKg3BYhzFnYTB2OQIguGQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/element': 5.24.0 classnames: 2.3.2 /@wordpress/priority-queue@1.11.2: resolution: {integrity: sha512-ulwmUOklY3orn1xXpcPnTyGWV5B/oycxI+cHZ6EevBVgM5sq+BW3xo0PKLR/MMm6UNBtFTu/71QAJrNZcD6V1g==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/priority-queue@2.47.0: resolution: {integrity: sha512-ZA6BDYkEC3mY1UrEXYnihdb0GoJooxZ9ADPEDEnqY88EuUT8/eeIDOge7OzgatDa9ivzV8TP3Fs4C/mHg/s6dQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 requestidlecallback: 0.3.0 /@wordpress/private-apis@0.20.0: resolution: {integrity: sha512-byyPRUNAD8/ca9N8gP2rUr8DHuMbzSoXO03nP8g3cecTN6iCOWqFDm6adkrbiAX527N9Ip+GOrRJd7Tta4kRIg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dev: false /@wordpress/private-apis@0.29.0: resolution: {integrity: sha512-8t4au9+IXXgJlxxOuYVYi8PKp0uWajNYILNfqCLB65jQEClzGNMQhU6MeJ9+kHN3gdOltMk7UzG28X+FTDlmkQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/react-i18n@3.45.0: resolution: {integrity: sha512-nmbUOA1l0Y5DcFd2rJ0Gsesouz+iG1JwDMUdde5qRbyiSyiufaOV+NsE/D9IpcrWFp3qvrIesoeZ8u0AuOe2qA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/element': 5.24.0 '@wordpress/i18n': 4.47.0 utility-types: 3.10.0 @@ -24482,7 +24617,7 @@ packages: /@wordpress/redux-routine@3.14.2: resolution: {integrity: sha512-aqi4UtvMP/+NhULxyCR8ktG0v4BJVTRcMpByAqDg7Oabq2sz2LPuShxd5UY8vxQYQY9t1uUJbslhom4ytcohWg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 is-promise: 4.0.0 lodash: 4.17.21 rungen: 0.3.2 @@ -24494,7 +24629,7 @@ packages: peerDependencies: redux: '>=4' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 is-plain-object: 5.0.0 is-promise: 4.0.0 redux: 4.2.1 @@ -24530,7 +24665,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/block-editor': 12.15.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/blocks': 12.24.0(react@17.0.2) '@wordpress/components': 25.13.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) @@ -24560,7 +24695,7 @@ packages: resolution: {integrity: sha512-e+wfrkKtZIcFZJZLxkrikiXbxlr6nuGg+V94uKMLrzJEWdw7w/8l3dNhWHRGPkldXIEGrF/mV40ibjUa2p3Sfg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 4.2.0(react@17.0.2) '@wordpress/data': 5.2.0(react@17.0.2)(redux@4.2.1) '@wordpress/dom': 3.27.0 @@ -24583,7 +24718,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/compose': 5.20.0(react@17.0.2) '@wordpress/data': 7.6.0(react@17.0.2) @@ -24602,7 +24737,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.6.1 '@wordpress/compose': 5.5.0(react@17.0.2) '@wordpress/data': 6.15.0(react@17.0.2) @@ -24621,7 +24756,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/a11y': 3.47.0 '@wordpress/compose': 6.24.0(react@17.0.2) '@wordpress/data': 9.17.0(react@17.0.2) @@ -24805,21 +24940,21 @@ packages: react: ^17.0.2 react-dom: ^17.0.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.1)(webpack@5.89.0) '@svgr/webpack': 6.5.1 '@wordpress/babel-preset-default': 6.17.0 '@wordpress/browserslist-config': 4.1.3 '@wordpress/dependency-extraction-webpack-plugin': 3.7.0(webpack@5.89.0) - '@wordpress/eslint-plugin': 12.9.0(@babel/core@7.23.5)(eslint-import-resolver-typescript@3.2.4)(eslint-import-resolver-webpack@0.13.2)(eslint@8.55.0)(jest@27.5.1)(typescript@5.3.2)(wp-prettier@2.6.2) - '@wordpress/jest-preset-default': 8.5.2(@babel/core@7.23.5)(jest@27.5.1)(react-dom@17.0.2)(react@17.0.2) + '@wordpress/eslint-plugin': 12.9.0(@babel/core@7.23.6)(eslint-import-resolver-typescript@3.2.4)(eslint-import-resolver-webpack@0.13.2)(eslint@8.55.0)(jest@27.5.1)(typescript@5.3.2)(wp-prettier@2.6.2) + '@wordpress/jest-preset-default': 8.5.2(@babel/core@7.23.6)(jest@27.5.1)(react-dom@17.0.2)(react@17.0.2) '@wordpress/npm-package-json-lint-config': 4.32.0(npm-package-json-lint@5.4.2) '@wordpress/postcss-plugins-preset': 3.10.0(postcss@8.4.32) '@wordpress/prettier-config': 1.4.0(wp-prettier@2.6.2) '@wordpress/stylelint-config': 20.0.3(postcss@8.4.32)(stylelint@14.16.1) adm-zip: 0.5.10 - babel-jest: 27.5.1(@babel/core@7.23.5) - babel-loader: 8.3.0(@babel/core@7.23.5)(webpack@5.89.0) + babel-jest: 27.5.1(@babel/core@7.23.6) + babel-loader: 8.3.0(@babel/core@7.23.6)(webpack@5.89.0) browserslist: 4.19.3 chalk: 4.1.2 check-node-version: 4.2.1 @@ -25115,7 +25250,7 @@ packages: react: ^17.0.2 react-dom: ^17.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.21.0 '@wordpress/blocks': 11.21.0(react@17.0.2) '@wordpress/components': 22.1.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) @@ -25139,7 +25274,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.44.0 '@wordpress/blocks': 12.24.0(react@17.0.2) '@wordpress/components': 25.13.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) @@ -25165,21 +25300,21 @@ packages: resolution: {integrity: sha512-5BqZ2MavyhyiOfJm7RycqxN6bvH2sYHgg2TBYNPuKuvUIN0Ul2k6IVZdH/WEUexHBSp01LKdGVhXfTk4OGCTuw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 memize: 2.1.0 /@wordpress/style-engine@0.15.0: resolution: {integrity: sha512-F6wt4g8xnli6bOR0Syd4iz4r5jFha7DZLzi2krmgH3cSTK4DDPj2g1YOJrRIEqXX4aPmdZDurTqQZoJvt9qaqQ==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 lodash: 4.17.21 /@wordpress/style-engine@0.2.0: resolution: {integrity: sha512-Xc1LZxZgkPiqaBT3xaHPS8fa0F3jkhcYYlVCOPjuQ8qZeF7nOxqJD2b/WEqtvsV5kiCHEtcdrhwAjdV6Kkr4vw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 lodash: 4.17.21 dev: true @@ -25187,7 +25322,7 @@ packages: resolution: {integrity: sha512-HIHIhlR1ZulA9j7Z5519/bRAo5v9HSJJFx8CBz+b02XhTUWSgYkUerkHL+UhCTWJpnyBNcPeNDrc0xR1xj7HMA==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 lodash: 4.17.21 dev: false @@ -25252,7 +25387,7 @@ packages: resolution: {integrity: sha512-KR5l/w1H+0PSphDQmq+oGdLzUAifYbK4GKvDdjFN9JXeIN2vOdow+wKTcNdWOH6S3UXqjup/0utUPfYPe3GtTw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@types/simple-peer': 9.11.8 '@wordpress/url': 3.48.0 import-locals: 2.0.0 @@ -25271,19 +25406,19 @@ packages: resolution: {integrity: sha512-PsPE2QZtie691Fk7LpOnwJcCnXm6jiLt0eQ5MtR8lxCFofOKfkmI5Oo7GlQjBSQXOdsY0zeDsOODs3gZVCnpmw==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /@wordpress/undo-manager@0.7.0: resolution: {integrity: sha512-WhMKX/ETGUJr2GkaPgGwFF8gTU/PgikfvE2b2ZDjUglxIPYnujBa9S6w+kQPzwGniGJutHL1DFK+TmAaxoci9A==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/is-shallow-equal': 4.47.0 /@wordpress/url@2.22.2(react-native@0.73.0): resolution: {integrity: sha512-aqpYKQXzyzkCOm+GzZRYlLb+wh58g0cwR1PaKAl0UXaBS4mdS+X6biMriylb4P8CVC/RR7CSw5XI20JC24KDwQ==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 lodash: 4.17.21 react-native-url-polyfill: 1.3.0(react-native@0.73.0) transitivePeerDependencies: @@ -25300,7 +25435,7 @@ packages: resolution: {integrity: sha512-12bjIBBGcA5X8RPvUURLJZzpB60O5DI3WxQVIBBKPF4Mv8nUmgT4uemGzf5/ble8lqzJVntyEhEWKPOxEbUbJg==} engines: {node: '>=12'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 remove-accents: 0.5.0 /@wordpress/url@3.7.1: @@ -25317,7 +25452,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 5.20.0(react@17.0.2) '@wordpress/data': 7.6.0(react@17.0.2) react: 17.0.2 @@ -25342,7 +25477,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/compose': 6.24.0(react@17.0.2) '@wordpress/data': 9.17.0(react@17.0.2) '@wordpress/element': 5.24.0 @@ -25367,7 +25502,7 @@ packages: react: ^17.0.2 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@wordpress/api-fetch': 6.44.0 '@wordpress/block-editor': 12.15.0(@types/react@17.0.71)(react-dom@17.0.2)(react@17.0.2) '@wordpress/blocks': 12.24.0(react@17.0.2) @@ -26502,9 +26637,9 @@ packages: eslint: '>= 4.12.1' dependencies: '@babel/code-frame': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/parser': 7.23.6 + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 eslint: 7.32.0 eslint-visitor-keys: 1.3.0 resolve: 1.22.8 @@ -26562,18 +26697,18 @@ packages: babel-types: 6.26.0 dev: true - /babel-jest@24.9.0(@babel/core@7.23.5): + /babel-jest@24.9.0(@babel/core@7.23.6): resolution: {integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==} engines: {node: '>= 6'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/transform': 24.9.0 '@jest/types': 24.9.0 '@types/babel__core': 7.20.5 babel-plugin-istanbul: 5.2.0 - babel-preset-jest: 24.9.0(@babel/core@7.23.5) + babel-preset-jest: 24.9.0(@babel/core@7.23.6) chalk: 2.4.2 slash: 2.0.0 transitivePeerDependencies: @@ -26599,6 +26734,25 @@ packages: - supports-color dev: true + /babel-jest@25.5.1(@babel/core@7.23.6): + resolution: {integrity: sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==} + engines: {node: '>= 8.3'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.6 + '@jest/transform': 25.5.1 + '@jest/types': 25.5.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 25.5.0(@babel/core@7.23.6) + chalk: 3.0.0 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + /babel-jest@26.6.3(@babel/core@7.12.9): resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} engines: {node: '>= 10.14.2'} @@ -26618,25 +26772,6 @@ packages: - supports-color dev: false - /babel-jest@26.6.3(@babel/core@7.23.5): - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.5 - '@jest/transform': 26.6.2 - '@jest/types': 26.6.2 - '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 26.6.2(@babel/core@7.23.5) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - dev: true - /babel-jest@26.6.3(@babel/core@7.23.6): resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} engines: {node: '>= 10.14.2'} @@ -26673,6 +26808,25 @@ packages: slash: 3.0.0 transitivePeerDependencies: - supports-color + dev: true + + /babel-jest@27.5.1(@babel/core@7.23.6): + resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.23.6 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 27.5.1(@babel/core@7.23.6) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color /babel-jest@29.7.0(@babel/core@7.23.2): resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} @@ -26708,6 +26862,24 @@ packages: slash: 3.0.0 transitivePeerDependencies: - supports-color + dev: true + + /babel-jest@29.7.0(@babel/core@7.23.6): + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.23.6 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 29.6.3(@babel/core@7.23.6) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color /babel-loader@8.3.0(@babel/core@7.12.9)(webpack@5.89.0): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} @@ -26754,6 +26926,21 @@ packages: webpack: 5.89.0(webpack-cli@4.10.0) dev: true + /babel-loader@8.3.0(@babel/core@7.23.6)(webpack@4.47.0): + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.23.6 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 4.47.0(webpack-cli@3.3.12) + dev: true + /babel-loader@8.3.0(@babel/core@7.23.6)(webpack@5.89.0): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} @@ -26871,7 +27058,7 @@ packages: engines: {node: '>= 8.3'} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@types/babel__traverse': 7.20.4 dev: true @@ -26880,7 +27067,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.4 @@ -26889,7 +27076,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.4 @@ -26898,14 +27085,14 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.4 /babel-plugin-macros@2.8.0: resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 cosmiconfig: 6.0.0 resolve: 1.22.8 dev: true @@ -26914,7 +27101,7 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 cosmiconfig: 7.1.0 resolve: 1.22.8 @@ -26958,7 +27145,6 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.12.9): resolution: {integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==} @@ -26985,13 +27171,13 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.23.5): + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.23.6): resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.23.6) core-js-compat: 3.34.0 transitivePeerDependencies: - supports-color @@ -27030,7 +27216,6 @@ packages: core-js-compat: 3.34.0 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.12.9): resolution: {integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==} @@ -27085,7 +27270,6 @@ packages: '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.6) transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.12.9): resolution: {integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==} @@ -27176,6 +27360,25 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) dev: true + /babel-preset-current-node-syntax@0.1.4(@babel/core@7.23.6): + resolution: {integrity: sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.6 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.6) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.6) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.6) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) + dev: true + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.12.9): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: @@ -27234,6 +27437,7 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) + dev: true /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.6): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} @@ -27253,7 +27457,6 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.6) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.6) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.6) - dev: true /babel-preset-fbjs@3.4.0(@babel/core@7.12.9): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} @@ -27289,14 +27492,14 @@ packages: '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.12.9) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 - /babel-preset-jest@24.9.0(@babel/core@7.23.5): + /babel-preset-jest@24.9.0(@babel/core@7.23.6): resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==} engines: {node: '>= 6'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.6) babel-plugin-jest-hoist: 24.9.0 dev: false @@ -27311,6 +27514,17 @@ packages: babel-preset-current-node-syntax: 0.1.4(@babel/core@7.23.5) dev: true + /babel-preset-jest@25.5.0(@babel/core@7.23.6): + resolution: {integrity: sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==} + engines: {node: '>= 8.3'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.6 + babel-plugin-jest-hoist: 25.5.0 + babel-preset-current-node-syntax: 0.1.4(@babel/core@7.23.6) + dev: true + /babel-preset-jest@26.6.2(@babel/core@7.12.9): resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} engines: {node: '>= 10.14.2'} @@ -27322,17 +27536,6 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.12.9) dev: false - /babel-preset-jest@26.6.2(@babel/core@7.23.5): - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.23.5 - babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) - dev: true - /babel-preset-jest@26.6.2(@babel/core@7.23.6): resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} engines: {node: '>= 10.14.2'} @@ -27353,6 +27556,17 @@ packages: '@babel/core': 7.23.5 babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + dev: true + + /babel-preset-jest@27.5.1(@babel/core@7.23.6): + resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.6 + babel-plugin-jest-hoist: 27.5.1 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.6) /babel-preset-jest@29.6.3(@babel/core@7.23.2): resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} @@ -27374,6 +27588,17 @@ packages: '@babel/core': 7.23.5 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + dev: true + + /babel-preset-jest@29.6.3(@babel/core@7.23.6): + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.6 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.6) /babel-runtime@6.26.0: resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} @@ -27707,7 +27932,7 @@ packages: /broadcast-channel@3.7.0: resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 detect-node: 2.1.0 js-sha3: 0.8.0 microseconds: 0.2.0 @@ -28192,7 +28417,7 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.22.2 + browserslist: 4.19.3 caniuse-lite: 1.0.30001146 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 @@ -28500,7 +28725,7 @@ packages: engines: {node: '>=12.13.0'} hasBin: true dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -30181,7 +30406,7 @@ packages: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} @@ -30829,7 +31054,7 @@ packages: /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 csstype: 3.1.3 /dom-scroll-into-view@1.2.1: @@ -30997,7 +31222,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 compute-scroll-into-view: 1.0.20 prop-types: 15.8.1 react: 17.0.2 @@ -32278,7 +32503,7 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 aria-query: 5.3.0 array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 @@ -32303,7 +32528,7 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 aria-query: 5.3.0 array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 @@ -32895,7 +33120,7 @@ packages: engines: {node: '>=8.3.0'} dependencies: '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 c8: 7.14.0 transitivePeerDependencies: - supports-color @@ -35887,7 +36112,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@tannin/sprintf': 1.2.0 '@wordpress/compose': 3.25.3(react@17.0.2) debug: 4.3.4(supports-color@9.4.0) @@ -35909,7 +36134,7 @@ packages: react: ^17.0.2 dependencies: '@automattic/interpolate-components': 1.2.1(@types/react@17.0.71)(react@17.0.2) - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@tannin/sprintf': 1.2.0 '@wordpress/compose': 5.4.1(react@17.0.2) debug: 4.3.4(supports-color@9.4.0) @@ -36957,11 +37182,11 @@ packages: resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==} engines: {node: '>=6'} dependencies: - '@babel/generator': 7.23.5 - '@babel/parser': 7.23.5 + '@babel/generator': 7.23.6 + '@babel/parser': 7.23.6 '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 istanbul-lib-coverage: 2.0.5 semver: 6.3.1 transitivePeerDependencies: @@ -36972,7 +37197,7 @@ packages: resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 @@ -36984,8 +37209,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.23.5 - '@babel/parser': 7.23.5 + '@babel/core': 7.23.6 + '@babel/parser': 7.23.6 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 @@ -36996,8 +37221,8 @@ packages: resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.23.5 - '@babel/parser': 7.23.5 + '@babel/core': 7.23.6 + '@babel/parser': 7.23.6 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.5.4 @@ -37416,10 +37641,10 @@ packages: resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==} engines: {node: '>= 6'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/test-sequencer': 24.9.0 '@jest/types': 24.9.0 - babel-jest: 24.9.0(@babel/core@7.23.5) + babel-jest: 24.9.0(@babel/core@7.23.6) chalk: 2.4.2 glob: 7.2.3 jest-environment-jsdom: 24.9.0 @@ -37443,10 +37668,10 @@ packages: resolution: {integrity: sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==} engines: {node: '>= 8.3'} dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/test-sequencer': 25.5.4 '@jest/types': 25.5.0 - babel-jest: 25.5.1(@babel/core@7.23.5) + babel-jest: 25.5.1(@babel/core@7.23.6) chalk: 3.0.0 deepmerge: 4.3.1 glob: 7.2.3 @@ -37478,10 +37703,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 - babel-jest: 26.6.3(@babel/core@7.23.5) + babel-jest: 26.6.3(@babel/core@7.23.6) chalk: 4.1.2 deepmerge: 4.3.1 glob: 7.2.3 @@ -37512,10 +37737,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1(@babel/core@7.23.5) + babel-jest: 27.5.1(@babel/core@7.23.6) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -37555,11 +37780,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 '@types/node': 16.18.68 - babel-jest: 29.7.0(@babel/core@7.23.5) + babel-jest: 29.7.0(@babel/core@7.23.6) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -37816,7 +38041,7 @@ packages: '@jest/environment': 26.6.2 '@jest/fake-timers': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 20.10.4 + '@types/node': 16.18.68 jest-mock: 26.6.2 jest-util: 26.6.2 jsdom: 16.7.0 @@ -38107,7 +38332,7 @@ packages: resolution: {integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==} engines: {node: '>= 6'} dependencies: - '@babel/traverse': 7.23.5 + '@babel/traverse': 7.23.6 '@jest/environment': 24.9.0 '@jest/test-result': 24.9.0 '@jest/types': 24.9.0 @@ -38131,7 +38356,7 @@ packages: resolution: {integrity: sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==} engines: {node: '>= 8.3'} dependencies: - '@babel/traverse': 7.23.5 + '@babel/traverse': 7.23.6 '@jest/environment': 25.5.0 '@jest/source-map': 25.5.0 '@jest/test-result': 25.5.0 @@ -38159,12 +38384,12 @@ packages: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/traverse': 7.23.5 + '@babel/traverse': 7.23.6 '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 20.10.4 + '@types/node': 16.18.68 chalk: 4.1.2 co: 4.6.0 expect: 26.6.2 @@ -38986,7 +39211,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 graceful-fs: 4.2.11 /jest-serializer@27.5.1: @@ -39000,7 +39225,7 @@ packages: resolution: {integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==} engines: {node: '>= 6'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@jest/types': 24.9.0 chalk: 2.4.2 expect: 24.9.0 @@ -39021,7 +39246,7 @@ packages: resolution: {integrity: sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==} engines: {node: '>= 8.3'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@jest/types': 25.5.0 '@types/prettier': 1.19.1 chalk: 3.0.0 @@ -39042,7 +39267,7 @@ packages: resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.23.6 '@jest/types': 26.6.2 '@types/babel__traverse': 7.20.4 '@types/prettier': 2.7.3 @@ -39066,16 +39291,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/core': 7.23.6 + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6) + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.20.4 '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.6) chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.11 @@ -39095,15 +39320,15 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.5) - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/types': 7.23.5 + '@babel/core': 7.23.6 + '@babel/generator': 7.23.6 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.6) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.6) + '@babel/types': 7.23.6 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.6) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -39273,7 +39498,7 @@ packages: dependencies: '@jest/test-result': 26.6.2 '@jest/types': 26.6.2 - '@types/node': 20.10.4 + '@types/node': 16.18.68 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 26.6.2 @@ -39325,7 +39550,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 merge-stream: 2.0.0 supports-color: 7.2.0 @@ -39584,18 +39809,18 @@ packages: '@babel/preset-env': optional: true dependencies: - '@babel/core': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/preset-flow': 7.23.3(@babel/core@7.23.5) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/register': 7.22.15(@babel/core@7.23.5) - babel-core: 7.0.0-bridge.0(@babel/core@7.23.5) + '@babel/core': 7.23.6 + '@babel/parser': 7.23.6 + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.6) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.6) + '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.6) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.6) + '@babel/preset-env': 7.23.5(@babel/core@7.23.6) + '@babel/preset-flow': 7.23.3(@babel/core@7.23.6) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.6) + '@babel/register': 7.22.15(@babel/core@7.23.6) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.6) chalk: 4.1.2 flow-parser: 0.223.3 graceful-fs: 4.2.11 @@ -40053,7 +40278,7 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 app-root-dir: 1.0.2 core-js: 3.34.0 dotenv: 8.6.0 @@ -41089,7 +41314,7 @@ packages: /match-sorter@6.3.1: resolution: {integrity: sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 remove-accents: 0.4.2 dev: false @@ -43756,7 +43981,7 @@ packages: /photon@4.0.0: resolution: {integrity: sha512-RD3buB17jW9B+OOPjIqv/cE9imCyR+WJ4ALWtb1Q1mVg8OfYnHAyvdVTxa/+bZFNI2FWaQBKry3i1mItmW3H3A==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 crc32: 0.2.2 debug: 4.3.4(supports-color@9.4.0) seed-random: 2.2.0 @@ -43905,7 +44130,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dev: true /popmotion@11.0.3: @@ -46091,9 +46316,9 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.23.6 '@babel/generator': 7.23.5 - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -46109,9 +46334,9 @@ packages: resolution: {integrity: sha512-rCz0HBIT0LWbIM+///LfRrJoTKftIzzwsYDf0ns5KwaEjejMHQRtphcns+IXFHDNY9pnz6G8l/JbbI6pD4EAIA==} engines: {node: '>=16.14.0'} dependencies: - '@babel/core': 7.23.5 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@babel/core': 7.23.6 + '@babel/traverse': 7.23.6 + '@babel/types': 7.23.6 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.4 '@types/doctrine': 0.0.9 @@ -46207,7 +46432,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 react: 17.0.2 dev: true @@ -46229,7 +46454,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 is-dom: 1.1.0 prop-types: 15.8.1 react: 17.0.2 @@ -46433,7 +46658,7 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 broadcast-channel: 3.7.0 match-sorter: 6.3.1 react: 17.0.2 @@ -46562,7 +46787,7 @@ packages: react: ^17.0.2 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/cache': 10.0.29 '@emotion/core': 10.3.1(react@17.0.2) '@emotion/css': 10.0.27 @@ -46580,7 +46805,7 @@ packages: react: ^17.0.2 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 '@emotion/cache': 11.11.0 '@emotion/react': 11.11.1(@types/react@17.0.71)(react@17.0.2) '@floating-ui/dom': 1.5.3 @@ -46619,7 +46844,7 @@ packages: react: ^17.0.2 react-dom: '>= 16.8.0' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -46646,7 +46871,7 @@ packages: peerDependencies: react: ^17.0.2 dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.29.0 @@ -46683,7 +46908,7 @@ packages: react: ^17.0.2 react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -46697,7 +46922,7 @@ packages: react: ^17.0.2 react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -47147,7 +47372,7 @@ packages: /redux@4.2.1: resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /reflect.getprototypeof@1.0.4: resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} @@ -47193,7 +47418,7 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 /regex-not@1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} @@ -48833,7 +49058,7 @@ packages: resolution: {integrity: sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==} engines: {node: '>=8.0'} dependencies: - '@types/node': 20.10.4 + '@types/node': 16.18.68 image-ssim: 0.2.0 jpeg-js: 0.4.4 dev: true @@ -49360,7 +49585,7 @@ packages: resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.22.2 + browserslist: 4.19.3 postcss: 7.0.39 postcss-selector-parser: 3.1.2 @@ -51374,7 +51599,7 @@ packages: /unload@2.2.0: resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 detect-node: 2.1.0 dev: false @@ -53457,7 +53682,7 @@ packages: /wpcom-proxy-request@6.0.0: resolution: {integrity: sha512-NMp0YsBM40CuI5vWtHpjWOuf96rPfbpGkamlJpVwYvgenIh1ynRzqVnGfsnjofgz13T2qcKkdwJY0Y2X7z+W+w==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.23.6 debug: 4.3.4(supports-color@9.4.0) progress-event: 1.0.0 uuid: 7.0.3