diff --git a/changelog.txt b/changelog.txt
index 8d4a7b71421..30d4a66ac9e 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,5 +1,13 @@
== Changelog ==
+= 7.5.1 2023-03-21 =
+
+**WooCommerce**
+
+* Fix - Fix no enforcing of min/max limits in quantity selector of variable products. [#36871](https://github.com/woocommerce/woocommerce/pull/36871)
+* Dev - Update column definitions with synonymous types to prevent dbDelta from trying to ALTER them on each install. [#37277](https://github.com/woocommerce/woocommerce/pull/37277)
+* Update - Update WooCommerce Blocks to 9.6.6. [#37298](https://github.com/woocommerce/woocommerce/pull/37298)
+
= 7.5.0 2023-03-14 =
**WooCommerce**
diff --git a/packages/js/components/changelog/add-toggle-content-block-37253 b/packages/js/components/changelog/add-toggle-content-block-37253
new file mode 100644
index 00000000000..38395751212
--- /dev/null
+++ b/packages/js/components/changelog/add-toggle-content-block-37253
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Adding simple DisplayState wrapper and modifying Collapsible component to allow rendering hidden content.
diff --git a/packages/js/components/src/collapsible-content/collapsible-content.tsx b/packages/js/components/src/collapsible-content/collapsible-content.tsx
index 0bacc92dbe5..e839de2b450 100644
--- a/packages/js/components/src/collapsible-content/collapsible-content.tsx
+++ b/packages/js/components/src/collapsible-content/collapsible-content.tsx
@@ -7,10 +7,12 @@ import { Icon, chevronDown, chevronUp } from '@wordpress/icons';
/**
* Internal dependencies
*/
+import { DisplayState } from '../display-state';
export type CollapsedProps = {
initialCollapsed?: boolean;
toggleText: string;
+ persistRender?: boolean;
children: React.ReactNode;
} & React.HTMLAttributes< HTMLDivElement >;
@@ -18,9 +20,19 @@ export const CollapsibleContent: React.FC< CollapsedProps > = ( {
initialCollapsed = true,
toggleText,
children,
+ persistRender = false,
...props
}: CollapsedProps ) => {
const [ collapsed, setCollapsed ] = useState( initialCollapsed );
+
+ const getState = () => {
+ if ( ! collapsed ) {
+ return 'visible';
+ }
+
+ return persistRender ? 'visually-hidden' : 'hidden';
+ };
+
return (
= ( {
/>
- { ! collapsed && (
+
{ children }
- ) }
+
);
};
diff --git a/packages/js/components/src/display-state/display-state.tsx b/packages/js/components/src/display-state/display-state.tsx
new file mode 100644
index 00000000000..a6f88084c3e
--- /dev/null
+++ b/packages/js/components/src/display-state/display-state.tsx
@@ -0,0 +1,28 @@
+/**
+ * External dependencies
+ */
+import { createElement, Fragment } from '@wordpress/element';
+
+/**
+ * Internal dependencies
+ */
+
+export type DisplayStateProps = {
+ state?: 'visible' | 'visually-hidden' | 'hidden';
+ children: React.ReactNode;
+} & React.HTMLAttributes< HTMLDivElement >;
+
+export const DisplayState: React.FC< DisplayStateProps > = ( {
+ state = 'visible',
+ children,
+} ) => {
+ if ( state === 'visible' ) {
+ return <>{ children }>;
+ }
+
+ if ( state === 'visually-hidden' ) {
+ return { children }
;
+ }
+
+ return null;
+};
diff --git a/packages/js/components/src/display-state/index.ts b/packages/js/components/src/display-state/index.ts
new file mode 100644
index 00000000000..16d59fea698
--- /dev/null
+++ b/packages/js/components/src/display-state/index.ts
@@ -0,0 +1 @@
+export * from './display-state';
diff --git a/packages/js/components/src/index.ts b/packages/js/components/src/index.ts
index c0dc21b62b1..95a5c069817 100644
--- a/packages/js/components/src/index.ts
+++ b/packages/js/components/src/index.ts
@@ -103,3 +103,4 @@ export {
ProductSectionLayout as __experimentalProductSectionLayout,
ProductFieldSection as __experimentalProductFieldSection,
} from './product-section-layout';
+export { DisplayState } from './display-state';
diff --git a/packages/js/customer-effort-score/changelog/update-move-remaining-ces-to-package b/packages/js/customer-effort-score/changelog/update-move-remaining-ces-to-package
new file mode 100644
index 00000000000..9795fb06a03
--- /dev/null
+++ b/packages/js/customer-effort-score/changelog/update-move-remaining-ces-to-package
@@ -0,0 +1,4 @@
+Significance: minor
+Type: dev
+
+Move additional components to @woocommerce/customer-effort-score.
diff --git a/packages/js/customer-effort-score/package.json b/packages/js/customer-effort-score/package.json
index c40f56aed5a..3dae30da83b 100644
--- a/packages/js/customer-effort-score/package.json
+++ b/packages/js/customer-effort-score/package.json
@@ -51,6 +51,7 @@
"@woocommerce/eslint-plugin": "workspace:*",
"@woocommerce/internal-style-build": "workspace:*",
"@woocommerce/navigation": "workspace:*",
+ "@woocommerce/tracks": "workspace:*",
"@wordpress/browserslist-config": "wp-6.0",
"concurrently": "^7.0.0",
"css-loader": "^3.6.0",
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-modal-container.tsx b/packages/js/customer-effort-score/src/components/customer-effort-score-modal-container/index.tsx
similarity index 90%
rename from plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-modal-container.tsx
rename to packages/js/customer-effort-score/src/components/customer-effort-score-modal-container/index.tsx
index 33b3c9f009c..042b868b481 100644
--- a/plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-modal-container.tsx
+++ b/packages/js/customer-effort-score/src/components/customer-effort-score-modal-container/index.tsx
@@ -3,18 +3,17 @@
*/
import { __ } from '@wordpress/i18n';
import { useDispatch, useSelect } from '@wordpress/data';
-import {
- CustomerFeedbackModal,
- STORE_KEY,
-} from '@woocommerce/customer-effort-score';
-import { recordEvent } from '@woocommerce/tracks';
import { OPTIONS_STORE_NAME } from '@woocommerce/data';
+import { createElement } from '@wordpress/element';
+import { recordEvent } from '@woocommerce/tracks';
/**
* Internal dependencies
*/
-import { getStoreAgeInWeeks } from './utils';
-import { ADMIN_INSTALL_TIMESTAMP_OPTION_NAME } from './constants';
+import { CustomerFeedbackModal } from '../';
+import { getStoreAgeInWeeks } from '../../utils';
+import { STORE_KEY } from '../../store';
+import { ADMIN_INSTALL_TIMESTAMP_OPTION_NAME } from '../../constants';
export const PRODUCT_MVP_CES_ACTION_OPTION_NAME =
'woocommerce_ces_product_mvp_ces_action';
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-tracks-container.js b/packages/js/customer-effort-score/src/components/customer-effort-score-tracks-container/index.js
similarity index 87%
rename from plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-tracks-container.js
rename to packages/js/customer-effort-score/src/components/customer-effort-score-tracks-container/index.js
index b1b2b84e297..46c8ce38afd 100644
--- a/plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-tracks-container.js
+++ b/packages/js/customer-effort-score/src/components/customer-effort-score-tracks-container/index.js
@@ -4,17 +4,15 @@
import { useEffect } from 'react';
import { compose } from '@wordpress/compose';
import { withDispatch, withSelect } from '@wordpress/data';
-import {
- QUEUE_OPTION_NAME,
- STORE_KEY,
-} from '@woocommerce/customer-effort-score';
+import { createElement, Fragment } from '@wordpress/element';
import { OPTIONS_STORE_NAME } from '@woocommerce/data';
import PropTypes from 'prop-types';
/**
* Internal dependencies
*/
-import CustomerEffortScoreTracks from './customer-effort-score-tracks';
+import { CustomerEffortScoreTracks } from '../';
+import { QUEUE_OPTION_NAME, STORE_KEY } from '../../store';
/**
* Maps the queue of CES tracks surveys to CustomerEffortScoreTracks
@@ -27,7 +25,7 @@ import CustomerEffortScoreTracks from './customer-effort-score-tracks';
* @param {boolean} props.resolving Whether the queue is resolving.
* @param {Function} props.clearQueue Sets up clearing of the queue on the next page load.
*/
-function CustomerEffortScoreTracksContainer( {
+function _CustomerEffortScoreTracksContainer( {
queue,
resolving,
clearQueue,
@@ -67,7 +65,7 @@ function CustomerEffortScoreTracksContainer( {
);
}
-CustomerEffortScoreTracksContainer.propTypes = {
+_CustomerEffortScoreTracksContainer.propTypes = {
/**
* The queue of CES tracks surveys to display.
*/
@@ -82,7 +80,7 @@ CustomerEffortScoreTracksContainer.propTypes = {
clearQueue: PropTypes.func,
};
-export default compose(
+export const CustomerEffortScoreTracksContainer = compose(
withSelect( ( select ) => {
const { getCesSurveyQueue, isResolving } = select( STORE_KEY );
const queue = getCesSurveyQueue();
@@ -109,4 +107,4 @@ export default compose(
},
};
} )
-)( CustomerEffortScoreTracksContainer );
+)( _CustomerEffortScoreTracksContainer );
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-tracks.js b/packages/js/customer-effort-score/src/components/customer-effort-score-tracks/index.js
similarity index 95%
rename from plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-tracks.js
rename to packages/js/customer-effort-score/src/components/customer-effort-score-tracks/index.js
index 295f32c3a53..b1506ffb5e1 100644
--- a/plugins/woocommerce-admin/client/customer-effort-score-tracks/customer-effort-score-tracks.js
+++ b/packages/js/customer-effort-score/src/components/customer-effort-score-tracks/index.js
@@ -1,26 +1,24 @@
/**
* External dependencies
*/
-import { useState } from '@wordpress/element';
import PropTypes from 'prop-types';
-import { recordEvent } from '@woocommerce/tracks';
-import {
- ALLOW_TRACKING_OPTION_NAME,
- CustomerEffortScore,
-} from '@woocommerce/customer-effort-score';
import { compose } from '@wordpress/compose';
import { withSelect, withDispatch } from '@wordpress/data';
+import { createElement, useState } from '@wordpress/element';
import { OPTIONS_STORE_NAME } from '@woocommerce/data';
import { __ } from '@wordpress/i18n';
+import { recordEvent } from '@woocommerce/tracks';
/**
* Internal dependencies
*/
+import { CustomerEffortScore } from '../';
import {
- SHOWN_FOR_ACTIONS_OPTION_NAME,
ADMIN_INSTALL_TIMESTAMP_OPTION_NAME,
-} from './constants';
-import { getStoreAgeInWeeks } from './utils';
+ ALLOW_TRACKING_OPTION_NAME,
+ SHOWN_FOR_ACTIONS_OPTION_NAME,
+} from '../../constants';
+import { getStoreAgeInWeeks } from '../../utils';
/**
* A CustomerEffortScore wrapper that uses tracks to track the selected
@@ -43,7 +41,7 @@ import { getStoreAgeInWeeks } from './utils';
* @param {Function} props.updateOptions Function to update options.
* @param {Function} props.createNotice Function to create a snackbar.
*/
-function CustomerEffortScoreTracks( {
+function _CustomerEffortScoreTracks( {
action,
trackProps,
title,
@@ -176,7 +174,7 @@ function CustomerEffortScoreTracks( {
);
}
-CustomerEffortScoreTracks.propTypes = {
+_CustomerEffortScoreTracks.propTypes = {
/**
* The action name sent to Tracks.
*/
@@ -219,7 +217,7 @@ CustomerEffortScoreTracks.propTypes = {
createNotice: PropTypes.func,
};
-export default compose(
+export const CustomerEffortScoreTracks = compose(
withSelect( ( select ) => {
const { getOption, hasFinishedResolution } =
select( OPTIONS_STORE_NAME );
@@ -262,4 +260,4 @@ export default compose(
createNotice,
};
} )
-)( CustomerEffortScoreTracks );
+)( _CustomerEffortScoreTracks );
diff --git a/packages/js/customer-effort-score/src/components/index.ts b/packages/js/customer-effort-score/src/components/index.ts
new file mode 100644
index 00000000000..81ae0d67dfe
--- /dev/null
+++ b/packages/js/customer-effort-score/src/components/index.ts
@@ -0,0 +1,8 @@
+export * from './customer-effort-score';
+export * from './customer-effort-score-modal-container';
+export * from './customer-effort-score-tracks';
+export * from './customer-effort-score-tracks-container';
+export * from './customer-feedback-simple';
+export * from './customer-feedback-modal';
+export * from './product-mvp-feedback-modal';
+export * from './feedback-modal';
diff --git a/packages/js/customer-effort-score/src/constants.js b/packages/js/customer-effort-score/src/constants.js
index 498d982940a..d2914cd46ca 100644
--- a/packages/js/customer-effort-score/src/constants.js
+++ b/packages/js/customer-effort-score/src/constants.js
@@ -1 +1,7 @@
+export const ADMIN_INSTALL_TIMESTAMP_OPTION_NAME =
+ 'woocommerce_admin_install_timestamp';
+
export const ALLOW_TRACKING_OPTION_NAME = 'woocommerce_allow_tracking';
+
+export const SHOWN_FOR_ACTIONS_OPTION_NAME =
+ 'woocommerce_ces_shown_for_actions';
diff --git a/packages/js/customer-effort-score/src/hooks/index.ts b/packages/js/customer-effort-score/src/hooks/index.ts
new file mode 100644
index 00000000000..e65c8eb7746
--- /dev/null
+++ b/packages/js/customer-effort-score/src/hooks/index.ts
@@ -0,0 +1 @@
+export * from './use-customer-effort-score-exit-page-tracker';
diff --git a/packages/js/customer-effort-score/src/index.ts b/packages/js/customer-effort-score/src/index.ts
index d6ef2e56087..de54752495a 100644
--- a/packages/js/customer-effort-score/src/index.ts
+++ b/packages/js/customer-effort-score/src/index.ts
@@ -1,9 +1,5 @@
-export * from './components/customer-effort-score';
-export * from './components/customer-feedback-simple';
-export * from './components/customer-feedback-modal';
-export * from './components/product-mvp-feedback-modal';
-export * from './components/feedback-modal';
-export * from './hooks/use-customer-effort-score-exit-page-tracker';
-export * from './store';
-export * from './utils/customer-effort-score-exit-page';
+export * from './components';
export * from './constants';
+export * from './hooks';
+export * from './store';
+export * from './utils';
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/utils.ts b/packages/js/customer-effort-score/src/utils/get-store-age-in-weeks.ts
similarity index 100%
rename from plugins/woocommerce-admin/client/customer-effort-score-tracks/utils.ts
rename to packages/js/customer-effort-score/src/utils/get-store-age-in-weeks.ts
diff --git a/packages/js/customer-effort-score/src/utils/index.ts b/packages/js/customer-effort-score/src/utils/index.ts
new file mode 100644
index 00000000000..db394918df5
--- /dev/null
+++ b/packages/js/customer-effort-score/src/utils/index.ts
@@ -0,0 +1,2 @@
+export * from './customer-effort-score-exit-page';
+export * from './get-store-age-in-weeks';
diff --git a/packages/js/data/changelog/add-37004 b/packages/js/data/changelog/add-37004
new file mode 100644
index 00000000000..78dee2bbd8a
--- /dev/null
+++ b/packages/js/data/changelog/add-37004
@@ -0,0 +1,4 @@
+Significance: minor
+Type: fix
+
+Fix linter errors
diff --git a/packages/js/product-editor/babel.config.js b/packages/js/product-editor/babel.config.js
new file mode 100644
index 00000000000..f73e04467aa
--- /dev/null
+++ b/packages/js/product-editor/babel.config.js
@@ -0,0 +1,3 @@
+module.exports = {
+ extends: '../internal-js-tests/babel.config.js',
+};
diff --git a/packages/js/product-editor/changelog/add-37004 b/packages/js/product-editor/changelog/add-37004
new file mode 100644
index 00000000000..f2086db98d3
--- /dev/null
+++ b/packages/js/product-editor/changelog/add-37004
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Add custom validation hook
diff --git a/packages/js/product-editor/changelog/add-37103 b/packages/js/product-editor/changelog/add-37103
new file mode 100644
index 00000000000..b555a67c8ae
--- /dev/null
+++ b/packages/js/product-editor/changelog/add-37103
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Add summary block
diff --git a/packages/js/product-editor/changelog/add-toggle-content-block-37253 b/packages/js/product-editor/changelog/add-toggle-content-block-37253
new file mode 100644
index 00000000000..f39042fffd4
--- /dev/null
+++ b/packages/js/product-editor/changelog/add-toggle-content-block-37253
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Adding Collapsible block with support for flexible rendering.
diff --git a/packages/js/product-editor/jest.config.json b/packages/js/product-editor/jest.config.json
new file mode 100644
index 00000000000..91c0faef97f
--- /dev/null
+++ b/packages/js/product-editor/jest.config.json
@@ -0,0 +1,4 @@
+{
+ "rootDir": "./src",
+ "preset": "../../internal-js-tests/jest.config.js"
+}
diff --git a/packages/js/product-editor/package.json b/packages/js/product-editor/package.json
index ee99b501d5b..cf58e1f8a63 100644
--- a/packages/js/product-editor/package.json
+++ b/packages/js/product-editor/package.json
@@ -58,8 +58,15 @@
"react-router-dom": "^6.3.0"
},
"devDependencies": {
+ "@babel/core": "^7.21.3",
+ "@babel/runtime": "^7.17.2",
+ "@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
+ "@testing-library/react-hooks": "^8.0.1",
+ "@testing-library/user-event": "^13.5.0",
+ "@types/jest": "^27.4.1",
"@types/react": "^17.0.2",
+ "@types/testing-library__jest-dom": "^5.14.3",
"@types/wordpress__block-editor": "^7.0.0",
"@types/wordpress__block-library": "^2.6.1",
"@types/wordpress__blocks": "^11.0.7",
@@ -91,10 +98,12 @@
},
"scripts": {
"turbo:build": "pnpm run build:js && pnpm run build:css",
+ "turbo:test": "jest --config ./jest.config.json",
"prepare": "composer install",
"changelog": "composer exec -- changelogger",
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
"build": "pnpm -w exec turbo run turbo:build --filter=$npm_package_name",
+ "test": "pnpm -w exec turbo run turbo:test --filter=$npm_package_name",
"lint": "eslint src",
"build:js": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
"build:css": "webpack",
diff --git a/packages/js/product-editor/src/components/collapsible-block/block.json b/packages/js/product-editor/src/components/collapsible-block/block.json
new file mode 100644
index 00000000000..d0a6e6deac5
--- /dev/null
+++ b/packages/js/product-editor/src/components/collapsible-block/block.json
@@ -0,0 +1,28 @@
+{
+ "$schema": "https://schemas.wp.org/trunk/block.json",
+ "apiVersion": 2,
+ "name": "woocommerce/collapsible",
+ "title": "Collapsible",
+ "category": "widgets",
+ "description": "Container with collapsible inner blocks.",
+ "textdomain": "default",
+ "attributes": {
+ "toggleText": {
+ "type": "string"
+ },
+ "initialCollapsed": {
+ "type": "boolean"
+ },
+ "persistRender": {
+ "type": "boolean"
+ }
+ },
+ "supports": {
+ "align": false,
+ "html": false,
+ "multiple": true,
+ "reusable": false,
+ "inserter": false,
+ "lock": false
+ }
+}
diff --git a/packages/js/product-editor/src/components/collapsible-block/edit.tsx b/packages/js/product-editor/src/components/collapsible-block/edit.tsx
new file mode 100644
index 00000000000..d4d0f743bf1
--- /dev/null
+++ b/packages/js/product-editor/src/components/collapsible-block/edit.tsx
@@ -0,0 +1,24 @@
+/**
+ * External dependencies
+ */
+import { CollapsibleContent } from '@woocommerce/components';
+import type { BlockAttributes } from '@wordpress/blocks';
+import { createElement } from '@wordpress/element';
+import { InnerBlocks, useBlockProps } from '@wordpress/block-editor';
+
+export function Edit( { attributes }: { attributes: BlockAttributes } ) {
+ const blockProps = useBlockProps();
+ const { toggleText, initialCollapsed, persistRender = true } = attributes;
+
+ return (
+
+
+
+
+
+ );
+}
diff --git a/packages/js/product-editor/src/components/collapsible-block/index.ts b/packages/js/product-editor/src/components/collapsible-block/index.ts
new file mode 100644
index 00000000000..43b3aabdc22
--- /dev/null
+++ b/packages/js/product-editor/src/components/collapsible-block/index.ts
@@ -0,0 +1,18 @@
+/**
+ * Internal dependencies
+ */
+import { initBlock } from '../../utils';
+import metadata from './block.json';
+import { Edit } from './edit';
+
+const { name } = metadata;
+
+export { metadata, name };
+
+export const settings = {
+ example: {},
+ edit: Edit,
+};
+
+export const init = () =>
+ initBlock( { name, metadata: metadata as never, settings } );
diff --git a/packages/js/product-editor/src/components/details-name-block/index.ts b/packages/js/product-editor/src/components/details-name-block/index.ts
index f0c73e48b2b..59d35906a12 100644
--- a/packages/js/product-editor/src/components/details-name-block/index.ts
+++ b/packages/js/product-editor/src/components/details-name-block/index.ts
@@ -14,4 +14,9 @@ export const settings = {
edit: Edit,
};
-export const init = () => initBlock( { name, metadata, settings } );
+export const init = () =>
+ initBlock( {
+ name,
+ metadata: metadata as never,
+ settings,
+ } );
diff --git a/packages/js/product-editor/src/components/details-summary-block/block.json b/packages/js/product-editor/src/components/details-summary-block/block.json
new file mode 100644
index 00000000000..003cd6841e9
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/block.json
@@ -0,0 +1,30 @@
+{
+ "$schema": "https://schemas.wp.org/trunk/block.json",
+ "apiVersion": 2,
+ "name": "woocommerce/product-summary",
+ "title": "Product summary",
+ "category": "widgets",
+ "description": "The product summary.",
+ "keywords": [ "products", "summary", "excerpt" ],
+ "textdomain": "default",
+ "attributes": {
+ "align": {
+ "type": "string"
+ },
+ "direction": {
+ "type": "string",
+ "enum": [ "ltr", "rtl" ]
+ },
+ "label": {
+ "type": "string"
+ }
+ },
+ "supports": {
+ "align": false,
+ "html": false,
+ "multiple": false,
+ "reusable": false,
+ "inserter": false,
+ "lock": false
+ }
+}
diff --git a/packages/js/product-editor/src/components/details-summary-block/constants.ts b/packages/js/product-editor/src/components/details-summary-block/constants.ts
new file mode 100644
index 00000000000..68dcf773353
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/constants.ts
@@ -0,0 +1,33 @@
+/**
+ * External dependencies
+ */
+import { __ } from '@wordpress/i18n';
+import {
+ alignCenter,
+ alignJustify,
+ alignLeft,
+ alignRight,
+} from '@wordpress/icons';
+
+export const ALIGNMENT_CONTROLS = [
+ {
+ icon: alignLeft,
+ title: __( 'Align text left', 'woocommerce' ),
+ align: 'left',
+ },
+ {
+ icon: alignCenter,
+ title: __( 'Align text center', 'woocommerce' ),
+ align: 'center',
+ },
+ {
+ icon: alignRight,
+ title: __( 'Align text right', 'woocommerce' ),
+ align: 'right',
+ },
+ {
+ icon: alignJustify,
+ title: __( 'Align text justify', 'woocommerce' ),
+ align: 'justify',
+ },
+];
diff --git a/packages/js/product-editor/src/components/details-summary-block/edit.tsx b/packages/js/product-editor/src/components/details-summary-block/edit.tsx
new file mode 100644
index 00000000000..7490bbb4343
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/edit.tsx
@@ -0,0 +1,90 @@
+/**
+ * External dependencies
+ */
+import { __ } from '@wordpress/i18n';
+import { createElement } from '@wordpress/element';
+import { BlockEditProps } from '@wordpress/blocks';
+import { BaseControl } from '@wordpress/components';
+import { useEntityProp } from '@wordpress/core-data';
+import uniqueId from 'lodash/uniqueId';
+import classNames from 'classnames';
+import {
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
+ // @ts-ignore No types for this exist yet.
+ AlignmentControl,
+ BlockControls,
+ RichText,
+ useBlockProps,
+} from '@wordpress/block-editor';
+
+/**
+ * Internal dependencies
+ */
+import { ParagraphRTLControl } from './paragraph-rtl-control';
+import { SummaryAttributes } from './types';
+import { ALIGNMENT_CONTROLS } from './constants';
+
+export function Edit( {
+ attributes,
+ setAttributes,
+}: BlockEditProps< SummaryAttributes > ) {
+ const { align, direction, label } = attributes;
+ const blockProps = useBlockProps( {
+ style: { direction },
+ } );
+ const id = uniqueId();
+ const [ summary, setSummary ] = useEntityProp< string >(
+ 'postType',
+ 'product',
+ 'short_description'
+ );
+
+ function handleAlignmentChange( value: SummaryAttributes[ 'align' ] ) {
+ setAttributes( { align: value } );
+ }
+
+ function handleDirectionChange( value: SummaryAttributes[ 'direction' ] ) {
+ setAttributes( { direction: value } );
+ }
+
+ return (
+
+ { /* eslint-disable-next-line @typescript-eslint/ban-ts-comment */ }
+ { /* @ts-ignore No types for this exist yet. */ }
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/packages/js/product-editor/src/components/details-summary-block/index.ts b/packages/js/product-editor/src/components/details-summary-block/index.ts
new file mode 100644
index 00000000000..aa9e35a168c
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/index.ts
@@ -0,0 +1,30 @@
+/**
+ * External dependencies
+ */
+import { BlockConfiguration } from '@wordpress/blocks';
+
+/**
+ * Internal dependencies
+ */
+import { initBlock } from '../../utils';
+import blockConfiguration from './block.json';
+import { Edit } from './edit';
+import { SummaryAttributes } from './types';
+
+const { name, ...metadata } =
+ blockConfiguration as BlockConfiguration< SummaryAttributes >;
+
+export { name, metadata };
+
+export const settings = {
+ example: {},
+ edit: Edit,
+};
+
+export function init() {
+ return initBlock< SummaryAttributes >( {
+ name,
+ metadata,
+ settings,
+ } );
+}
diff --git a/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/index.ts b/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/index.ts
new file mode 100644
index 00000000000..122d0571e26
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/index.ts
@@ -0,0 +1,2 @@
+export * from './paragraph-rtl-control';
+export * from './types';
diff --git a/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/paragraph-rtl-control.tsx b/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/paragraph-rtl-control.tsx
new file mode 100644
index 00000000000..40a731244f4
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/paragraph-rtl-control.tsx
@@ -0,0 +1,40 @@
+/**
+ * External dependencies
+ */
+import { createElement, Fragment } from '@wordpress/element';
+import { ToolbarButton } from '@wordpress/components';
+import { _x, isRTL } from '@wordpress/i18n';
+import { formatLtr } from '@wordpress/icons';
+
+/**
+ * Internal dependencies
+ */
+import { ParagraphRTLControlProps } from './types';
+
+export function ParagraphRTLControl( {
+ direction,
+ onChange,
+}: ParagraphRTLControlProps ) {
+ function handleClick() {
+ if ( typeof onChange === 'function' ) {
+ onChange( direction === 'ltr' ? undefined : 'ltr' );
+ }
+ }
+
+ return (
+ <>
+ { isRTL() && (
+
+ ) }
+ >
+ );
+}
diff --git a/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/types.ts b/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/types.ts
new file mode 100644
index 00000000000..4a5f8bf0fa2
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/paragraph-rtl-control/types.ts
@@ -0,0 +1,11 @@
+/**
+ * Internal dependencies
+ */
+import { SummaryAttributes } from '../types';
+
+export type ParagraphRTLControlProps = Pick<
+ SummaryAttributes,
+ 'direction'
+> & {
+ onChange( direction?: SummaryAttributes[ 'direction' ] ): void;
+};
diff --git a/packages/js/product-editor/src/components/details-summary-block/style.scss b/packages/js/product-editor/src/components/details-summary-block/style.scss
new file mode 100644
index 00000000000..54ccfea0942
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/style.scss
@@ -0,0 +1,6 @@
+// This alignment class does not exists in
+// https://github.com/WordPress/gutenberg/blob/trunk/packages/block-library/src/common.scss
+.has-text-align-justify {
+ /*rtl:ignore*/
+ text-align: justify;
+}
diff --git a/packages/js/product-editor/src/components/details-summary-block/types.ts b/packages/js/product-editor/src/components/details-summary-block/types.ts
new file mode 100644
index 00000000000..9d20d494fb4
--- /dev/null
+++ b/packages/js/product-editor/src/components/details-summary-block/types.ts
@@ -0,0 +1,5 @@
+export type SummaryAttributes = {
+ align: 'left' | 'center' | 'right' | 'justify';
+ direction: 'ltr' | 'rtl';
+ label: string;
+};
diff --git a/packages/js/product-editor/src/components/edit-product-link-modal/test/edit-product-link-modal.test.tsx b/packages/js/product-editor/src/components/edit-product-link-modal/test/edit-product-link-modal.test.tsx
index d9b181ce7ad..d134dfddf8b 100644
--- a/packages/js/product-editor/src/components/edit-product-link-modal/test/edit-product-link-modal.test.tsx
+++ b/packages/js/product-editor/src/components/edit-product-link-modal/test/edit-product-link-modal.test.tsx
@@ -11,8 +11,8 @@ import { createElement } from '@wordpress/element';
*/
import { EditProductLinkModal } from '../';
-jest.mock( '@woocommerce/product-editor', () => ( {
- __experimentalUseProductHelper: jest.fn().mockReturnValue( {
+jest.mock( '../../../hooks/use-product-helper', () => ( {
+ useProductHelper: jest.fn().mockReturnValue( {
updateProductWithStatus: jest.fn(),
isUpdatingDraft: jest.fn(),
isUpdatingPublished: jest.fn(),
diff --git a/packages/js/product-editor/src/components/editor/editor.tsx b/packages/js/product-editor/src/components/editor/editor.tsx
index b789f2539bf..2f93b69b7b2 100644
--- a/packages/js/product-editor/src/components/editor/editor.tsx
+++ b/packages/js/product-editor/src/components/editor/editor.tsx
@@ -6,7 +6,7 @@ import {
EditorSettings,
EditorBlockListSettings,
} from '@wordpress/block-editor';
-import { SlotFillProvider } from '@wordpress/components';
+import { Popover, SlotFillProvider } from '@wordpress/components';
import { Product } from '@woocommerce/data';
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore No types for this exist yet.
@@ -60,6 +60,8 @@ export function Editor( { product, settings }: EditorProps ) {
/>
}
/>
+
+
diff --git a/packages/js/product-editor/src/components/editor/init-blocks.ts b/packages/js/product-editor/src/components/editor/init-blocks.ts
index 3072621d8ce..f55760f5fce 100644
--- a/packages/js/product-editor/src/components/editor/init-blocks.ts
+++ b/packages/js/product-editor/src/components/editor/init-blocks.ts
@@ -7,14 +7,18 @@ import { registerCoreBlocks } from '@wordpress/block-library';
* Internal dependencies
*/
import { init as initName } from '../details-name-block';
+import { init as initSummary } from '../details-summary-block';
import { init as initSection } from '../section';
import { init as initTab } from '../tab';
import { init as initPricing } from '../pricing-block';
+import { init as initCollapsible } from '../collapsible-block';
export const initBlocks = () => {
registerCoreBlocks();
initName();
+ initSummary();
initSection();
initTab();
initPricing();
+ initCollapsible();
};
diff --git a/packages/js/product-editor/src/components/pricing-block/index.ts b/packages/js/product-editor/src/components/pricing-block/index.ts
index f0c73e48b2b..59d35906a12 100644
--- a/packages/js/product-editor/src/components/pricing-block/index.ts
+++ b/packages/js/product-editor/src/components/pricing-block/index.ts
@@ -14,4 +14,9 @@ export const settings = {
edit: Edit,
};
-export const init = () => initBlock( { name, metadata, settings } );
+export const init = () =>
+ initBlock( {
+ name,
+ metadata: metadata as never,
+ settings,
+ } );
diff --git a/packages/js/product-editor/src/hooks/use-validation/README.md b/packages/js/product-editor/src/hooks/use-validation/README.md
new file mode 100644
index 00000000000..2c8b83977db
--- /dev/null
+++ b/packages/js/product-editor/src/hooks/use-validation/README.md
@@ -0,0 +1,41 @@
+# useValidation
+
+This custom hook uses the helper functions `const { lockPostSaving, unlockPostSaving } = useDispatch( 'core/editor' );` to lock/unlock the current editing product before saving it.
+
+## Usage
+
+Syncronous validation
+
+```typescript
+import { useCallback } from '@wordpress/element';
+import { useValidation } from '@woocommerce/product-editor';
+
+const product = ...;
+
+const validateTitle = useCallback( (): boolean => {
+ if ( product.title.length < 2 ) {
+ return false;
+ }
+ return true;
+}, [ product.title ] );
+
+const isTitleValid = useValidation( 'product/title', validateTitle );
+```
+
+Asyncronous validation
+
+```typescript
+import { useCallback } from '@wordpress/element';
+import { useValidation } from '@woocommerce/product-editor';
+
+const product = ...;
+
+const validateSlug = useCallback( async (): Promise< boolean > => {
+ return fetch( `.../validate-slug?slug=${ product.slug }` )
+ .then( ( response ) => response.json() )
+ .then( ( { isValid } ) => isValid )
+ .catch( () => false );
+}, [ product.slug ] );
+
+const isSlugValid = useValidation( 'product/slug', validateSlug );
+```
diff --git a/packages/js/product-editor/src/hooks/use-validation/index.ts b/packages/js/product-editor/src/hooks/use-validation/index.ts
new file mode 100644
index 00000000000..a6a64cadb31
--- /dev/null
+++ b/packages/js/product-editor/src/hooks/use-validation/index.ts
@@ -0,0 +1 @@
+export * from './use-validation';
diff --git a/packages/js/product-editor/src/hooks/use-validation/test/use-validation.test.ts b/packages/js/product-editor/src/hooks/use-validation/test/use-validation.test.ts
new file mode 100644
index 00000000000..1ea6903fea7
--- /dev/null
+++ b/packages/js/product-editor/src/hooks/use-validation/test/use-validation.test.ts
@@ -0,0 +1,95 @@
+/**
+ * External dependencies
+ */
+import { renderHook } from '@testing-library/react-hooks';
+import { useDispatch } from '@wordpress/data';
+
+/**
+ * Internal dependencies
+ */
+import { useValidation } from '../use-validation';
+
+jest.mock( '@wordpress/data', () => ( {
+ useDispatch: jest.fn(),
+} ) );
+
+describe( 'useValidation', () => {
+ const useDispatchMock = useDispatch as jest.Mock;
+ const lockPostSaving = jest.fn();
+ const unlockPostSaving = jest.fn();
+
+ beforeEach( () => {
+ useDispatchMock.mockReturnValue( {
+ lockPostSaving,
+ unlockPostSaving,
+ } );
+ } );
+
+ afterEach( () => {
+ jest.clearAllMocks();
+ } );
+
+ describe( 'sync', () => {
+ it( 'should lock the editor if validate returns false', async () => {
+ const { result, waitForNextUpdate } = renderHook( () =>
+ useValidation( 'product/name', () => false )
+ );
+
+ await waitForNextUpdate();
+
+ expect( result.current ).toBeFalsy();
+ expect( lockPostSaving ).toHaveBeenCalled();
+ expect( unlockPostSaving ).not.toHaveBeenCalled();
+ } );
+
+ it( 'should unlock the editor if validate returns true', async () => {
+ const { result, waitForNextUpdate } = renderHook( () =>
+ useValidation( 'product/name', () => true )
+ );
+
+ await waitForNextUpdate();
+
+ expect( result.current ).toBeTruthy();
+ expect( lockPostSaving ).not.toHaveBeenCalled();
+ expect( unlockPostSaving ).toHaveBeenCalled();
+ } );
+ } );
+
+ describe( 'async', () => {
+ it( 'should lock the editor if validate resolves false', async () => {
+ const { result, waitForNextUpdate } = renderHook( () =>
+ useValidation( 'product/name', () => Promise.resolve( false ) )
+ );
+
+ await waitForNextUpdate();
+
+ expect( result.current ).toBeFalsy();
+ expect( lockPostSaving ).toHaveBeenCalled();
+ expect( unlockPostSaving ).not.toHaveBeenCalled();
+ } );
+
+ it( 'should lock the editor if validate rejects', async () => {
+ const { result, waitForNextUpdate } = renderHook( () =>
+ useValidation( 'product/name', () => Promise.reject() )
+ );
+
+ await waitForNextUpdate();
+
+ expect( result.current ).toBeFalsy();
+ expect( lockPostSaving ).toHaveBeenCalled();
+ expect( unlockPostSaving ).not.toHaveBeenCalled();
+ } );
+
+ it( 'should unlock the editor if validate resolves true', async () => {
+ const { result, waitForNextUpdate } = renderHook( () =>
+ useValidation( 'product/name', () => Promise.resolve( true ) )
+ );
+
+ await waitForNextUpdate();
+
+ expect( result.current ).toBeTruthy();
+ expect( lockPostSaving ).not.toHaveBeenCalled();
+ expect( unlockPostSaving ).toHaveBeenCalled();
+ } );
+ } );
+} );
diff --git a/packages/js/product-editor/src/hooks/use-validation/use-validation.ts b/packages/js/product-editor/src/hooks/use-validation/use-validation.ts
new file mode 100644
index 00000000000..76478ff8e5d
--- /dev/null
+++ b/packages/js/product-editor/src/hooks/use-validation/use-validation.ts
@@ -0,0 +1,43 @@
+/**
+ * External dependencies
+ */
+import { useDispatch } from '@wordpress/data';
+import { useEffect, useState } from '@wordpress/element';
+
+/**
+ * Signals that product saving is locked.
+ *
+ * @param lockName The namespace used to lock the product saving if validation fails.
+ * @param validate The validator function.
+ */
+export function useValidation(
+ lockName: string,
+ validate: () => boolean | Promise< boolean >
+): boolean | undefined {
+ const [ isValid, setIsValid ] = useState< boolean | undefined >();
+ const { lockPostSaving, unlockPostSaving } = useDispatch( 'core/editor' );
+
+ useEffect( () => {
+ let validationResponse = validate();
+
+ if ( typeof validationResponse === 'boolean' ) {
+ validationResponse = Promise.resolve( validationResponse );
+ }
+
+ validationResponse
+ .then( ( isValidationValid ) => {
+ if ( isValidationValid ) {
+ unlockPostSaving( lockName );
+ } else {
+ lockPostSaving( lockName );
+ }
+ setIsValid( isValidationValid );
+ } )
+ .catch( () => {
+ lockPostSaving( lockName );
+ setIsValid( false );
+ } );
+ }, [ lockName, validate, lockPostSaving, unlockPostSaving ] );
+
+ return isValid;
+}
diff --git a/packages/js/product-editor/src/style.scss b/packages/js/product-editor/src/style.scss
index 99f2ce949ee..508d0edf477 100644
--- a/packages/js/product-editor/src/style.scss
+++ b/packages/js/product-editor/src/style.scss
@@ -8,3 +8,4 @@
@import 'components/section/style.scss';
@import 'components/tab/style.scss';
@import 'components/tabs/style.scss';
+@import 'components/details-summary-block/style.scss';
diff --git a/packages/js/product-editor/src/utils/init-blocks.ts b/packages/js/product-editor/src/utils/init-blocks.ts
index b8dc4118138..06404008120 100644
--- a/packages/js/product-editor/src/utils/init-blocks.ts
+++ b/packages/js/product-editor/src/utils/init-blocks.ts
@@ -1,26 +1,31 @@
/**
* External dependencies
*/
-import { BlockConfiguration, registerBlockType } from '@wordpress/blocks';
+import {
+ Block,
+ BlockConfiguration,
+ registerBlockType,
+} from '@wordpress/blocks';
-interface BlockRepresentation {
- name: string;
- metadata: BlockConfiguration;
- settings: Partial< BlockConfiguration >;
+interface BlockRepresentation< T extends Record< string, object > > {
+ name?: string;
+ metadata: BlockConfiguration< T >;
+ settings: Partial< BlockConfiguration< T > >;
}
/**
* Function to register an individual block.
*
- * @param {Object} block The block to be registered.
- *
- * @return {?WPBlockType} The block, if it has been successfully registered;
- * otherwise `undefined`.
+ * @param block The block to be registered.
+ * @return The block, if it has been successfully registered; otherwise `undefined`.
*/
-export const initBlock = ( block: BlockRepresentation ) => {
+export function initBlock<
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ T extends Record< string, any > = Record< string, any >
+>( block: BlockRepresentation< T > ): Block< T > | undefined {
if ( ! block ) {
return;
}
const { metadata, settings, name } = block;
- return registerBlockType( { name, ...metadata }, settings );
-};
+ return registerBlockType< T >( { name, ...metadata }, settings );
+}
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/constants.ts b/plugins/woocommerce-admin/client/customer-effort-score-tracks/constants.ts
deleted file mode 100644
index 4a7ee0b3609..00000000000
--- a/plugins/woocommerce-admin/client/customer-effort-score-tracks/constants.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-export const SHOWN_FOR_ACTIONS_OPTION_NAME =
- 'woocommerce_ces_shown_for_actions';
-export const ADMIN_INSTALL_TIMESTAMP_OPTION_NAME =
- 'woocommerce_admin_install_timestamp';
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/index.js b/plugins/woocommerce-admin/client/customer-effort-score-tracks/index.js
deleted file mode 100644
index bd9b84cbbe4..00000000000
--- a/plugins/woocommerce-admin/client/customer-effort-score-tracks/index.js
+++ /dev/null
@@ -1,3 +0,0 @@
-export { default as CustomerEffortScoreTracks } from './customer-effort-score-tracks';
-export { default as CustomerEffortScoreTracksContainer } from './customer-effort-score-tracks-container';
-export * from './customer-effort-score-modal-container.tsx';
diff --git a/plugins/woocommerce-admin/client/customer-effort-score-tracks/product-mvp-ces-footer.tsx b/plugins/woocommerce-admin/client/customer-effort-score-tracks/product-mvp-ces-footer.tsx
index c9814047216..453022a2ae8 100644
--- a/plugins/woocommerce-admin/client/customer-effort-score-tracks/product-mvp-ces-footer.tsx
+++ b/plugins/woocommerce-admin/client/customer-effort-score-tracks/product-mvp-ces-footer.tsx
@@ -9,6 +9,7 @@ import { WooFooterItem } from '@woocommerce/admin-layout';
import { Pill } from '@woocommerce/components';
import {
ALLOW_TRACKING_OPTION_NAME,
+ SHOWN_FOR_ACTIONS_OPTION_NAME,
STORE_KEY,
} from '@woocommerce/customer-effort-score';
import { OPTIONS_STORE_NAME } from '@woocommerce/data';
@@ -17,7 +18,6 @@ import { OPTIONS_STORE_NAME } from '@woocommerce/data';
* Internal dependencies
*/
import './product-mvp-ces-footer.scss';
-import { SHOWN_FOR_ACTIONS_OPTION_NAME } from './constants';
export const PRODUCT_MVP_CES_ACTION_OPTION_NAME =
'woocommerce_ces_product_mvp_ces_action';
diff --git a/plugins/woocommerce-admin/client/homescreen/constants.js b/plugins/woocommerce-admin/client/homescreen/constants.js
index b0b7575df8f..335e1bea6fe 100644
--- a/plugins/woocommerce-admin/client/homescreen/constants.js
+++ b/plugins/woocommerce-admin/client/homescreen/constants.js
@@ -9,9 +9,3 @@ export const WELCOME_MODAL_DISMISSED_OPTION_NAME =
*/
export const WELCOME_FROM_CALYPSO_MODAL_DISMISSED_OPTION_NAME =
'woocommerce_welcome_from_calypso_modal_dismissed';
-
-/**
- * WooCommerce Admin installation timestamp option name.
- */
-export const WOOCOMMERCE_ADMIN_INSTALL_TIMESTAMP_OPTION_NAME =
- 'woocommerce_admin_install_timestamp';
diff --git a/plugins/woocommerce-admin/client/index.js b/plugins/woocommerce-admin/client/index.js
index 41a0866a6d8..67173157a26 100644
--- a/plugins/woocommerce-admin/client/index.js
+++ b/plugins/woocommerce-admin/client/index.js
@@ -3,6 +3,7 @@
*/
import '@wordpress/notices';
import { render } from '@wordpress/element';
+import { CustomerEffortScoreTracksContainer } from '@woocommerce/customer-effort-score';
import {
withCurrentUserHydration,
withSettingsHydration,
@@ -14,7 +15,6 @@ import {
import './stylesheets/_index.scss';
import { getAdminSetting } from '~/utils/admin-settings';
import { PageLayout, EmbedLayout, PrimaryLayout as NoticeArea } from './layout';
-import { CustomerEffortScoreTracksContainer } from './customer-effort-score-tracks';
import { EmbeddedBodyLayout } from './embedded-body-layout';
import { WcAdminPaymentsGatewaysBannerSlot } from './payments/payments-settings-banner-slotfill';
import { WcAdminConflictErrorSlot } from './settings/conflict-error-slotfill.js';
diff --git a/plugins/woocommerce-admin/client/layout/index.js b/plugins/woocommerce-admin/client/layout/index.js
index b3321181ad3..9a6344e09b0 100644
--- a/plugins/woocommerce-admin/client/layout/index.js
+++ b/plugins/woocommerce-admin/client/layout/index.js
@@ -17,7 +17,10 @@ import { Children, cloneElement } from 'react';
import PropTypes from 'prop-types';
import { get, isFunction, identity, memoize } from 'lodash';
import { parse } from 'qs';
-import { triggerExitPageCesSurvey } from '@woocommerce/customer-effort-score';
+import {
+ CustomerEffortScoreModalContainer,
+ triggerExitPageCesSurvey,
+} from '@woocommerce/customer-effort-score';
import { getHistory, getQuery } from '@woocommerce/navigation';
import {
PLUGINS_STORE_NAME,
@@ -38,7 +41,6 @@ import { Header } from '../header';
import { Footer } from './footer';
import Notices from './notices';
import TransientNotices from './transient-notices';
-import { CustomerEffortScoreModalContainer } from '../customer-effort-score-tracks';
import { getAdminSetting } from '~/utils/admin-settings';
import '~/activity-panel';
import '~/mobile-banner';
diff --git a/plugins/woocommerce-admin/client/products/product-block-page.scss b/plugins/woocommerce-admin/client/products/product-block-page.scss
index 9dc12e60198..f24be5be5e1 100644
--- a/plugins/woocommerce-admin/client/products/product-block-page.scss
+++ b/plugins/woocommerce-admin/client/products/product-block-page.scss
@@ -19,6 +19,25 @@
}
}
+ .components-summary-control {
+ width: 100%;
+ min-height: calc($gap-larger * 3);
+ background-color: $white;
+ box-sizing: border-box;
+ border: 1px solid #757575;
+ border-radius: 2px;
+ padding: $gap-smaller;
+ margin: 0;
+ appearance: textarea;
+ resize: vertical;
+ overflow: hidden;
+
+ &:focus {
+ box-shadow: inset 0 0 0 1px var(--wp-admin-theme-color-darker-10, --wp-admin-theme-color);
+ border-color: var(--wp-admin-theme-color-darker-10, --wp-admin-theme-color);
+ }
+ }
+
.woocommerce-product-form {
&__custom-label-input {
display: flex;
diff --git a/plugins/woocommerce-admin/client/two-column-tasks/completed-header.tsx b/plugins/woocommerce-admin/client/two-column-tasks/completed-header.tsx
index 91e7623b723..a3e94b33d2c 100644
--- a/plugins/woocommerce-admin/client/two-column-tasks/completed-header.tsx
+++ b/plugins/woocommerce-admin/client/two-column-tasks/completed-header.tsx
@@ -10,8 +10,11 @@ import { OPTIONS_STORE_NAME, WCDataSelector, WEEK } from '@woocommerce/data';
import { Button, Card, CardHeader } from '@wordpress/components';
import { Text } from '@woocommerce/experimental';
import {
+ ADMIN_INSTALL_TIMESTAMP_OPTION_NAME,
+ ALLOW_TRACKING_OPTION_NAME,
CustomerFeedbackModal,
CustomerFeedbackSimple,
+ SHOWN_FOR_ACTIONS_OPTION_NAME,
} from '@woocommerce/customer-effort-score';
import { __ } from '@wordpress/i18n';
@@ -27,11 +30,7 @@ type TaskListCompletedHeaderProps = {
customerEffortScore: boolean;
};
-const ADMIN_INSTALL_TIMESTAMP_OPTION_NAME =
- 'woocommerce_admin_install_timestamp';
-const SHOWN_FOR_ACTIONS_OPTION_NAME = 'woocommerce_ces_shown_for_actions';
const CUSTOMER_EFFORT_SCORE_ACTION = 'store_setup';
-const ALLOW_TRACKING_OPTION_NAME = 'woocommerce_allow_tracking';
function getStoreAgeInWeeks( adminInstallTimestamp: number ) {
if ( adminInstallTimestamp === 0 ) {
diff --git a/plugins/woocommerce/changelog/36257-redux b/plugins/woocommerce/changelog/36257-redux
deleted file mode 100644
index 84a77791f36..00000000000
--- a/plugins/woocommerce/changelog/36257-redux
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Allow sorting by menu_order in products widget.
diff --git a/plugins/woocommerce/changelog/add-35851-tree-control-selection b/plugins/woocommerce/changelog/add-35851-tree-control-selection
deleted file mode 100644
index 8ec6ebea260..00000000000
--- a/plugins/woocommerce/changelog/add-35851-tree-control-selection
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix unit test snapshots due to a dependency version change
diff --git a/plugins/woocommerce/changelog/add-36281-shipping-partners-suggestion-api b/plugins/woocommerce/changelog/add-36281-shipping-partners-suggestion-api
deleted file mode 100644
index c4cf04442d7..00000000000
--- a/plugins/woocommerce/changelog/add-36281-shipping-partners-suggestion-api
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add wp-json/wc-admin/shipping-partner-suggestions API endpoint
diff --git a/plugins/woocommerce/changelog/add-36413-support-for-cart-checkout-in-declare-compatibility b/plugins/woocommerce/changelog/add-36413-support-for-cart-checkout-in-declare-compatibility
deleted file mode 100644
index 7724faa14f5..00000000000
--- a/plugins/woocommerce/changelog/add-36413-support-for-cart-checkout-in-declare-compatibility
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: enhancement
-
-Add the support for the C&C Blocks in declaring compatibility feature
diff --git a/plugins/woocommerce/changelog/add-36661_existing_attribute_layout b/plugins/woocommerce/changelog/add-36661_existing_attribute_layout
deleted file mode 100644
index 7ea6d84a2e2..00000000000
--- a/plugins/woocommerce/changelog/add-36661_existing_attribute_layout
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Add existing global attribute layout #36944
diff --git a/plugins/woocommerce/changelog/add-36991 b/plugins/woocommerce/changelog/add-36991
deleted file mode 100644
index 710c3b98efc..00000000000
--- a/plugins/woocommerce/changelog/add-36991
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Create editor skeleton on add/edit product pages
diff --git a/plugins/woocommerce/changelog/add-37005 b/plugins/woocommerce/changelog/add-37005
deleted file mode 100644
index 3b84f6b28ff..00000000000
--- a/plugins/woocommerce/changelog/add-37005
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: tweak
-
-Add productId dependency when getting the product by id in ProductPage
diff --git a/plugins/woocommerce/changelog/add-37096 b/plugins/woocommerce/changelog/add-37096
deleted file mode 100644
index 9644a87c81e..00000000000
--- a/plugins/woocommerce/changelog/add-37096
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Add tabs and sections placeholders in product blocks template
diff --git a/plugins/woocommerce/changelog/add-37098_add_product_list_price_block b/plugins/woocommerce/changelog/add-37098_add_product_list_price_block
deleted file mode 100644
index 2a4844cfb48..00000000000
--- a/plugins/woocommerce/changelog/add-37098_add_product_list_price_block
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Update product template by adding the list price and sale price blocks.
diff --git a/plugins/woocommerce/changelog/add-37103 b/plugins/woocommerce/changelog/add-37103
new file mode 100644
index 00000000000..b555a67c8ae
--- /dev/null
+++ b/plugins/woocommerce/changelog/add-37103
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Add summary block
diff --git a/plugins/woocommerce/changelog/add-37120_hydrate_product_editor_settings b/plugins/woocommerce/changelog/add-37120_hydrate_product_editor_settings
deleted file mode 100644
index 8bf592e2794..00000000000
--- a/plugins/woocommerce/changelog/add-37120_hydrate_product_editor_settings
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add productBlockEditorSettings script to be used for the Product Block Editor.
diff --git a/plugins/woocommerce/changelog/add-37128 b/plugins/woocommerce/changelog/add-37128
deleted file mode 100644
index ad668d22778..00000000000
--- a/plugins/woocommerce/changelog/add-37128
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add new feature flag for the product edit blocks experience
diff --git a/plugins/woocommerce/changelog/add-admin-layout-package b/plugins/woocommerce/changelog/add-admin-layout-package
deleted file mode 100644
index ec1bd147634..00000000000
--- a/plugins/woocommerce/changelog/add-admin-layout-package
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Add @woocommerce/admin-layout package.
diff --git a/plugins/woocommerce/changelog/add-encoding-selector-to-product-importer b/plugins/woocommerce/changelog/add-encoding-selector-to-product-importer
deleted file mode 100644
index 7d2631b3da9..00000000000
--- a/plugins/woocommerce/changelog/add-encoding-selector-to-product-importer
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add an encoding selector to the product importer
diff --git a/plugins/woocommerce/changelog/add-initial-product-draft-37003 b/plugins/woocommerce/changelog/add-initial-product-draft-37003
deleted file mode 100644
index 5ac217f5914..00000000000
--- a/plugins/woocommerce/changelog/add-initial-product-draft-37003
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Creating product entity in auto-draft status, and adding support for retrieving preexisting products.
diff --git a/plugins/woocommerce/changelog/add-k6-regression-test b/plugins/woocommerce/changelog/add-k6-regression-test
deleted file mode 100644
index bec84721135..00000000000
--- a/plugins/woocommerce/changelog/add-k6-regression-test
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: add
-Comment: Perf test not included in release
-
-
diff --git a/plugins/woocommerce/changelog/add-marketing-trackers b/plugins/woocommerce/changelog/add-marketing-trackers
deleted file mode 100644
index 44debd914aa..00000000000
--- a/plugins/woocommerce/changelog/add-marketing-trackers
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: add
-
-Add marketplace suggestions and multichannel marketing information to WC Tracker.
diff --git a/plugins/woocommerce/changelog/add-name-block-37007 b/plugins/woocommerce/changelog/add-name-block-37007
deleted file mode 100644
index 8785c8ec87c..00000000000
--- a/plugins/woocommerce/changelog/add-name-block-37007
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Update template of product type to include product name block.
diff --git a/plugins/woocommerce/changelog/add-new-countries-for-wcpay b/plugins/woocommerce/changelog/add-new-countries-for-wcpay
deleted file mode 100644
index 31484387070..00000000000
--- a/plugins/woocommerce/changelog/add-new-countries-for-wcpay
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add support for new countries in WCPay
diff --git a/plugins/woocommerce/changelog/add-new-product-editor-e2e b/plugins/woocommerce/changelog/add-new-product-editor-e2e
deleted file mode 100644
index 04695b5933f..00000000000
--- a/plugins/woocommerce/changelog/add-new-product-editor-e2e
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Initial e2e tests for new product editor.
diff --git a/plugins/woocommerce/changelog/add-order_cache b/plugins/woocommerce/changelog/add-order_cache
deleted file mode 100644
index 1b800aff214..00000000000
--- a/plugins/woocommerce/changelog/add-order_cache
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add a cache for orders, to use when custom order tables are enabled
diff --git a/plugins/woocommerce/changelog/add-payment-recommendations-images b/plugins/woocommerce/changelog/add-payment-recommendations-images
deleted file mode 100644
index 69dce25d360..00000000000
--- a/plugins/woocommerce/changelog/add-payment-recommendations-images
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Added images support for the payment recommendations transaction processors
diff --git a/plugins/woocommerce/changelog/add-product-inventory-tracks b/plugins/woocommerce/changelog/add-product-inventory-tracks
deleted file mode 100644
index 3b17caa8cdd..00000000000
--- a/plugins/woocommerce/changelog/add-product-inventory-tracks
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: tweak
-
-Add Tracks events for product inventory tab interactions.
diff --git a/plugins/woocommerce/changelog/add-tracking-for-loca-pickup b/plugins/woocommerce/changelog/add-tracking-for-loca-pickup
deleted file mode 100644
index 20ccbdbeb1f..00000000000
--- a/plugins/woocommerce/changelog/add-tracking-for-loca-pickup
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: tweak
-
-Add tracking for local pickup method in Checkout
diff --git a/plugins/woocommerce/changelog/add-turn-get-tax-location-public b/plugins/woocommerce/changelog/add-turn-get-tax-location-public
deleted file mode 100644
index c15b487c25d..00000000000
--- a/plugins/woocommerce/changelog/add-turn-get-tax-location-public
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Make WC_Order::get_tax_location accessible publicly through a wrapper function.
diff --git a/plugins/woocommerce/changelog/dev-37116_show_stock_status_as_radio_buttons b/plugins/woocommerce/changelog/dev-37116_show_stock_status_as_radio_buttons
deleted file mode 100644
index 3d2554ce4db..00000000000
--- a/plugins/woocommerce/changelog/dev-37116_show_stock_status_as_radio_buttons
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Show "Stock status" as a collection of radio buttons
diff --git a/plugins/woocommerce/changelog/dev-37117_set_default_quantity_value b/plugins/woocommerce/changelog/dev-37117_set_default_quantity_value
new file mode 100644
index 00000000000..131462c4f1d
--- /dev/null
+++ b/plugins/woocommerce/changelog/dev-37117_set_default_quantity_value
@@ -0,0 +1,4 @@
+Significance: minor
+Type: dev
+
+Set quantity value when stock tracking is enabled
diff --git a/plugins/woocommerce/changelog/dev-37119_show_message_for_variable_products b/plugins/woocommerce/changelog/dev-37119_show_message_for_variable_products
deleted file mode 100644
index 859ac60349f..00000000000
--- a/plugins/woocommerce/changelog/dev-37119_show_message_for_variable_products
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Show a message for variable products
diff --git a/plugins/woocommerce/changelog/dev-clean-analytics-classes b/plugins/woocommerce/changelog/dev-clean-analytics-classes
deleted file mode 100644
index fdd8860a366..00000000000
--- a/plugins/woocommerce/changelog/dev-clean-analytics-classes
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: dev
-Comment: This is just a dev maintenance, removing duplicated code.
-
-
diff --git a/plugins/woocommerce/changelog/dev-pin-wp-deps-6 b/plugins/woocommerce/changelog/dev-pin-wp-deps-6
deleted file mode 100644
index 551e0919dac..00000000000
--- a/plugins/woocommerce/changelog/dev-pin-wp-deps-6
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Sync @wordpress package versions via syncpack.
diff --git a/plugins/woocommerce/changelog/dev-react-fast-fresh b/plugins/woocommerce/changelog/dev-react-fast-fresh
deleted file mode 100644
index 7c523caf634..00000000000
--- a/plugins/woocommerce/changelog/dev-react-fast-fresh
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Set up React Fast Refresh in woocommerce-admin
diff --git a/plugins/woocommerce/changelog/dev-update-eslint-plugin b/plugins/woocommerce/changelog/dev-update-eslint-plugin
deleted file mode 100644
index 47894ec9c6c..00000000000
--- a/plugins/woocommerce/changelog/dev-update-eslint-plugin
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Fix lint issues
diff --git a/plugins/woocommerce/changelog/dev-update-webpack-config b/plugins/woocommerce/changelog/dev-update-webpack-config
deleted file mode 100644
index d2f975eba32..00000000000
--- a/plugins/woocommerce/changelog/dev-update-webpack-config
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: dev
-Comment: Use React Fast Refresh for WooCommerce Admin "start:hot" command only; fix empty page issue with "start" command when SCRIPT_DEBUG is set to false.
-
-
diff --git a/plugins/woocommerce/changelog/e2e-fix-daily-k6-workflow-env-var b/plugins/woocommerce/changelog/e2e-fix-daily-k6-workflow-env-var
deleted file mode 100644
index 65522dd597d..00000000000
--- a/plugins/woocommerce/changelog/e2e-fix-daily-k6-workflow-env-var
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: dev
-
-Fix the value of `UPDATE_WC` environment variable in the daily k6 performance tests.
diff --git a/plugins/woocommerce/changelog/e2e-fix-failing-malta-test b/plugins/woocommerce/changelog/e2e-fix-failing-malta-test
new file mode 100644
index 00000000000..cc9f444a669
--- /dev/null
+++ b/plugins/woocommerce/changelog/e2e-fix-failing-malta-test
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Update OBW end to end test as WC Pay supports Malta now
diff --git a/plugins/woocommerce/changelog/e2e-release-include-drafts b/plugins/woocommerce/changelog/e2e-release-include-drafts
deleted file mode 100644
index a2a4d56118d..00000000000
--- a/plugins/woocommerce/changelog/e2e-release-include-drafts
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: dev
-
-Support E2E testing of draft releases.
diff --git a/plugins/woocommerce/changelog/e2e-update-release-e2e-testing b/plugins/woocommerce/changelog/e2e-update-release-e2e-testing
deleted file mode 100644
index 6f907635c94..00000000000
--- a/plugins/woocommerce/changelog/e2e-update-release-e2e-testing
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: update
-
-Updates automated release testing workflow to use Playwright
diff --git a/plugins/woocommerce/changelog/feature-34904-marketing-introduction-banner b/plugins/woocommerce/changelog/feature-34904-marketing-introduction-banner
deleted file mode 100644
index c4f05d3ddb9..00000000000
--- a/plugins/woocommerce/changelog/feature-34904-marketing-introduction-banner
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add introduction banner to multichannel marketing page.
diff --git a/plugins/woocommerce/changelog/feature-34905-marketing-campaigns-card b/plugins/woocommerce/changelog/feature-34905-marketing-campaigns-card
deleted file mode 100644
index d578a5a71e9..00000000000
--- a/plugins/woocommerce/changelog/feature-34905-marketing-campaigns-card
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add Campaigns card into Multichannel Marketing page.
diff --git a/plugins/woocommerce/changelog/feature-34909-marketing-create-campaign-modal b/plugins/woocommerce/changelog/feature-34909-marketing-create-campaign-modal
deleted file mode 100644
index 00be5a2596f..00000000000
--- a/plugins/woocommerce/changelog/feature-34909-marketing-create-campaign-modal
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Add "Create a new campaign" modal in Campaigns card in Multichannel Marketing page.
diff --git a/plugins/woocommerce/changelog/feature-37175-react-render-boolean-expression b/plugins/woocommerce/changelog/feature-37175-react-render-boolean-expression
deleted file mode 100644
index f0a0495b646..00000000000
--- a/plugins/woocommerce/changelog/feature-37175-react-render-boolean-expression
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix React rendering falsy value in marketing page.
diff --git a/plugins/woocommerce/changelog/feature-37176-specify-wp-data-resolution-args b/plugins/woocommerce/changelog/feature-37176-specify-wp-data-resolution-args
deleted file mode 100644
index 2224143fc8e..00000000000
--- a/plugins/woocommerce/changelog/feature-37176-specify-wp-data-resolution-args
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix WP data resolution (`invalidateResolution`) not working with WP 5.9 in marketing page.
diff --git a/plugins/woocommerce/changelog/fix-#34200-need-to-add-space-between-author-image-and-meta b/plugins/woocommerce/changelog/fix-#34200-need-to-add-space-between-author-image-and-meta
deleted file mode 100644
index 962ff56149f..00000000000
--- a/plugins/woocommerce/changelog/fix-#34200-need-to-add-space-between-author-image-and-meta
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: fix
-Comment: Make Reviews table CSS match other list tables.
-
-
diff --git a/plugins/woocommerce/changelog/fix-27012 b/plugins/woocommerce/changelog/fix-27012
deleted file mode 100644
index 7078b14ef61..00000000000
--- a/plugins/woocommerce/changelog/fix-27012
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix incorrect VAT exempt behaviour on shop page when prices are exclusive of tax.
diff --git a/plugins/woocommerce/changelog/fix-28969-modify-order-on-refund b/plugins/woocommerce/changelog/fix-28969-modify-order-on-refund
deleted file mode 100644
index 57a4c3c9806..00000000000
--- a/plugins/woocommerce/changelog/fix-28969-modify-order-on-refund
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Update the date modified field for an order when a refund for it is successfully processed.
diff --git a/plugins/woocommerce/changelog/fix-32717 b/plugins/woocommerce/changelog/fix-32717
deleted file mode 100644
index 7203612332a..00000000000
--- a/plugins/woocommerce/changelog/fix-32717
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: tweak
-
-Prevent 'woocommerce_ajax_order_items_removed' from generating PHP warnings.
diff --git a/plugins/woocommerce/changelog/fix-34391 b/plugins/woocommerce/changelog/fix-34391
deleted file mode 100644
index afbb07ece83..00000000000
--- a/plugins/woocommerce/changelog/fix-34391
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: tweak
-
-Make sure 'safe_text' settings are rendered as 'text' inputs for compatibility.
diff --git a/plugins/woocommerce/changelog/fix-35543 b/plugins/woocommerce/changelog/fix-35543
deleted file mode 100644
index a427c9577b6..00000000000
--- a/plugins/woocommerce/changelog/fix-35543
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Prevent possible warning arising from use of woocommerce_wp_* family of functions.
diff --git a/plugins/woocommerce/changelog/fix-36618-product-import b/plugins/woocommerce/changelog/fix-36618-product-import
deleted file mode 100644
index 67560ceed4c..00000000000
--- a/plugins/woocommerce/changelog/fix-36618-product-import
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Ensure product importer imports all lines in a CSV file.
diff --git a/plugins/woocommerce/changelog/fix-36678 b/plugins/woocommerce/changelog/fix-36678
deleted file mode 100644
index c784cf1db18..00000000000
--- a/plugins/woocommerce/changelog/fix-36678
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Add HPOS compat for admin report functions.
diff --git a/plugins/woocommerce/changelog/fix-36679 b/plugins/woocommerce/changelog/fix-36679
deleted file mode 100644
index ba4a88ad52d..00000000000
--- a/plugins/woocommerce/changelog/fix-36679
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Add support for `after`, `before`, `modified_after` and `modified_before` params in local timezone.
diff --git a/plugins/woocommerce/changelog/fix-36680 b/plugins/woocommerce/changelog/fix-36680
deleted file mode 100644
index 1f0244c8d51..00000000000
--- a/plugins/woocommerce/changelog/fix-36680
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: fix
-Comment: Changes are only in unit tests (for HPOS compat).
-
-
diff --git a/plugins/woocommerce/changelog/fix-36681 b/plugins/woocommerce/changelog/fix-36681
deleted file mode 100644
index 861800cd5f3..00000000000
--- a/plugins/woocommerce/changelog/fix-36681
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: fix
-Comment: Skipping unit test for legacy widgets when in HPOS context.
-
-
diff --git a/plugins/woocommerce/changelog/fix-36682 b/plugins/woocommerce/changelog/fix-36682
deleted file mode 100644
index 57e3e2c4011..00000000000
--- a/plugins/woocommerce/changelog/fix-36682
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: fix
-Comment: Changes are only in unit tests, no functionality is affected.
-
-
diff --git a/plugins/woocommerce/changelog/fix-36684 b/plugins/woocommerce/changelog/fix-36684
deleted file mode 100644
index 46751fa0216..00000000000
--- a/plugins/woocommerce/changelog/fix-36684
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Add HPOS compat for wc-user-functions.php.
diff --git a/plugins/woocommerce/changelog/fix-36685 b/plugins/woocommerce/changelog/fix-36685
deleted file mode 100644
index 6aba52e9087..00000000000
--- a/plugins/woocommerce/changelog/fix-36685
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Handle date arguments in OrderTableQuery correctly by adjusting their timezones before running.
diff --git a/plugins/woocommerce/changelog/fix-36685-2 b/plugins/woocommerce/changelog/fix-36685-2
deleted file mode 100644
index 9a8084aeee3..00000000000
--- a/plugins/woocommerce/changelog/fix-36685-2
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fetch order first to refresh cache before returning prop.
diff --git a/plugins/woocommerce/changelog/fix-36686 b/plugins/woocommerce/changelog/fix-36686
deleted file mode 100644
index 8ee9da198b9..00000000000
--- a/plugins/woocommerce/changelog/fix-36686
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Treat order as seperate resource when validating for webhook since it's not necessarily a CPT anymore.
diff --git a/plugins/woocommerce/changelog/fix-36711-obw-blank-screen-wp5_9 b/plugins/woocommerce/changelog/fix-36711-obw-blank-screen-wp5_9
deleted file mode 100644
index 4f39fe3029a..00000000000
--- a/plugins/woocommerce/changelog/fix-36711-obw-blank-screen-wp5_9
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix blank screen is displayed during OBW when using WP5.9
diff --git a/plugins/woocommerce/changelog/fix-36890_create_wc_extension_script b/plugins/woocommerce/changelog/fix-36890_create_wc_extension_script
deleted file mode 100644
index 253dcf4a315..00000000000
--- a/plugins/woocommerce/changelog/fix-36890_create_wc_extension_script
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Update create-wc-extension script within woocommerce-admin.
diff --git a/plugins/woocommerce/changelog/fix-37020_duplicated_global_attribute b/plugins/woocommerce/changelog/fix-37020_duplicated_global_attribute
deleted file mode 100644
index a698ac0c2d5..00000000000
--- a/plugins/woocommerce/changelog/fix-37020_duplicated_global_attribute
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: fix
-
-Fix duplicated global attribute
diff --git a/plugins/woocommerce/changelog/fix-37021_add_validation_when_saving_attributes b/plugins/woocommerce/changelog/fix-37021_add_validation_when_saving_attributes
deleted file mode 100644
index 81560990d51..00000000000
--- a/plugins/woocommerce/changelog/fix-37021_add_validation_when_saving_attributes
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Add validation when saving attributes and variations
diff --git a/plugins/woocommerce/changelog/fix-37083-page_displays_0_for_empty_recommended_channels b/plugins/woocommerce/changelog/fix-37083-page_displays_0_for_empty_recommended_channels
deleted file mode 100644
index 4e690c01a3a..00000000000
--- a/plugins/woocommerce/changelog/fix-37083-page_displays_0_for_empty_recommended_channels
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix 0 rendered on short-circuit evaluation.
diff --git a/plugins/woocommerce/changelog/fix-arrayutil_get_value_or_default b/plugins/woocommerce/changelog/fix-arrayutil_get_value_or_default
deleted file mode 100644
index 0c8dd965fab..00000000000
--- a/plugins/woocommerce/changelog/fix-arrayutil_get_value_or_default
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix ArrayUtil::get_value_or_default method not behaving as documented for null array values
diff --git a/plugins/woocommerce/changelog/fix-cant-apply-coupon-0 b/plugins/woocommerce/changelog/fix-cant-apply-coupon-0
deleted file mode 100644
index d9066b3f2a1..00000000000
--- a/plugins/woocommerce/changelog/fix-cant-apply-coupon-0
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix the inability to apply a coupon whose code is "0"
diff --git a/plugins/woocommerce/changelog/fix-delete_placeholder b/plugins/woocommerce/changelog/fix-delete_placeholder
deleted file mode 100644
index d9fd0ac2cc1..00000000000
--- a/plugins/woocommerce/changelog/fix-delete_placeholder
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Also delete when order type is placehoder, since it was created by HPOS.
diff --git a/plugins/woocommerce/changelog/fix-import-of-draft-variations b/plugins/woocommerce/changelog/fix-import-of-draft-variations
deleted file mode 100644
index 00f56b8dba5..00000000000
--- a/plugins/woocommerce/changelog/fix-import-of-draft-variations
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fix variations exported as draft being imported as draft (and thus remaining invisible)
diff --git a/plugins/woocommerce/changelog/fix-k6-baseline-imports b/plugins/woocommerce/changelog/fix-k6-baseline-imports
deleted file mode 100644
index c6a3c6e2630..00000000000
--- a/plugins/woocommerce/changelog/fix-k6-baseline-imports
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: dev
-
-add wpLogin import to wc-baseline-load.js
diff --git a/plugins/woocommerce/changelog/fix-load-theme-specific-stylesheet-in-site-editor b/plugins/woocommerce/changelog/fix-load-theme-specific-stylesheet-in-site-editor
deleted file mode 100644
index b8d8e0f9c99..00000000000
--- a/plugins/woocommerce/changelog/fix-load-theme-specific-stylesheet-in-site-editor
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: fix
-
-Load same stylesheets in the Site Editor as in the frontend
diff --git a/plugins/woocommerce/changelog/fix-mobile-app-connection-owner-bug b/plugins/woocommerce/changelog/fix-mobile-app-connection-owner-bug
deleted file mode 100644
index b3f987f0f3e..00000000000
--- a/plugins/woocommerce/changelog/fix-mobile-app-connection-owner-bug
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: fix
-
-fixed bug where jetpack connection owner field was assumed to be username when its actually display name
diff --git a/plugins/woocommerce/changelog/fix-order-caching b/plugins/woocommerce/changelog/fix-order-caching
deleted file mode 100644
index 4750dc0d5cb..00000000000
--- a/plugins/woocommerce/changelog/fix-order-caching
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Restore the sort order when orders are cached.
diff --git a/plugins/woocommerce/changelog/fix-payment-recommendations-wrong-image b/plugins/woocommerce/changelog/fix-payment-recommendations-wrong-image
deleted file mode 100644
index c13c27b0db3..00000000000
--- a/plugins/woocommerce/changelog/fix-payment-recommendations-wrong-image
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: fix
-
-Fixed payments recommendations pane in WooCommerce Payment Settings using the wrong image prop
diff --git a/plugins/woocommerce/changelog/fix-react-dependency-versions b/plugins/woocommerce/changelog/fix-react-dependency-versions
deleted file mode 100644
index 026a7cd5b70..00000000000
--- a/plugins/woocommerce/changelog/fix-react-dependency-versions
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: fix
-
-Override react version to 17.0.2
diff --git a/plugins/woocommerce/changelog/fix-skydropx-auto-install b/plugins/woocommerce/changelog/fix-skydropx-auto-install
deleted file mode 100644
index c499483a4d9..00000000000
--- a/plugins/woocommerce/changelog/fix-skydropx-auto-install
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Added skydropx slug back to shipping partners list so that it can be installed through the shipping task
diff --git a/plugins/woocommerce/changelog/fix-toggled_checkboxes_in_settings_tracks b/plugins/woocommerce/changelog/fix-toggled_checkboxes_in_settings_tracks
deleted file mode 100644
index a0ecd2eeb94..00000000000
--- a/plugins/woocommerce/changelog/fix-toggled_checkboxes_in_settings_tracks
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: fix
-
-Record values for toggled checkboxes/features in settings
diff --git a/plugins/woocommerce/changelog/fix-tt2-wp60-missing-padding-in-some-buttons b/plugins/woocommerce/changelog/fix-tt2-wp60-missing-padding-in-some-buttons
deleted file mode 100644
index e4e172c8cf5..00000000000
--- a/plugins/woocommerce/changelog/fix-tt2-wp60-missing-padding-in-some-buttons
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Add default button padding to TT2 stylesheet to fix some visual issues in WP 5.9 and 6.0
diff --git a/plugins/woocommerce/changelog/fix-update-customer-after-user-edit b/plugins/woocommerce/changelog/fix-update-customer-after-user-edit
deleted file mode 100644
index a03bc532599..00000000000
--- a/plugins/woocommerce/changelog/fix-update-customer-after-user-edit
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Update Customers report with latest user data after editing user.
diff --git a/plugins/woocommerce/changelog/fix-use-dbdelta-and-truncate-to-manage-attribute-lookup-tables b/plugins/woocommerce/changelog/fix-use-dbdelta-and-truncate-to-manage-attribute-lookup-tables
deleted file mode 100644
index 5401b5ad760..00000000000
--- a/plugins/woocommerce/changelog/fix-use-dbdelta-and-truncate-to-manage-attribute-lookup-tables
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: performance
-
-Switch wc_product_attributes_lookup table management to use truncate and dbDelta over drop table
diff --git a/plugins/woocommerce/changelog/fix-variations-dom-events b/plugins/woocommerce/changelog/fix-variations-dom-events
deleted file mode 100644
index 1545c761283..00000000000
--- a/plugins/woocommerce/changelog/fix-variations-dom-events
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: fix
-Comment: This fixes a bug which was introduced in a recent PR
-
-
diff --git a/plugins/woocommerce/changelog/fix-wc_add_number_precision-not-supporting-null b/plugins/woocommerce/changelog/fix-wc_add_number_precision-not-supporting-null
deleted file mode 100644
index e7b9ce5c13c..00000000000
--- a/plugins/woocommerce/changelog/fix-wc_add_number_precision-not-supporting-null
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Add support for null inputs to pnpm wc_add_number_precision
diff --git a/plugins/woocommerce/changelog/fix-wca-run-packages-cmd b/plugins/woocommerce/changelog/fix-wca-run-packages-cmd
deleted file mode 100644
index a8e2884b420..00000000000
--- a/plugins/woocommerce/changelog/fix-wca-run-packages-cmd
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: dev
-Comment: Fix woocommerce-admin run packages commands
-
-
diff --git a/plugins/woocommerce/changelog/hpos-unit-tests b/plugins/woocommerce/changelog/hpos-unit-tests
deleted file mode 100644
index d5b74c0f460..00000000000
--- a/plugins/woocommerce/changelog/hpos-unit-tests
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: dev
-Comment: Enabling HPOS based unit tests. No change to prod build.
-
-
diff --git a/plugins/woocommerce/changelog/improved_wc_price_to_display b/plugins/woocommerce/changelog/improved_wc_price_to_display
deleted file mode 100644
index eb6339b83ab..00000000000
--- a/plugins/woocommerce/changelog/improved_wc_price_to_display
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: enhancement
-
-Add 'display_context' argument to wc_get_price_to_display().
diff --git a/plugins/woocommerce/changelog/issue-30104 b/plugins/woocommerce/changelog/issue-30104
deleted file mode 100644
index ac9273945ad..00000000000
--- a/plugins/woocommerce/changelog/issue-30104
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Log to order notes when coupons are removed or applied.
diff --git a/plugins/woocommerce/changelog/issues-35004-attributes-saved-trigger b/plugins/woocommerce/changelog/issues-35004-attributes-saved-trigger
deleted file mode 100644
index 7e4e46cc8a5..00000000000
--- a/plugins/woocommerce/changelog/issues-35004-attributes-saved-trigger
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: tweak
-
-Trigger event `woocommerce_attributes_saved` following successful product meta box ajax update.
diff --git a/plugins/woocommerce/changelog/pr-36705 b/plugins/woocommerce/changelog/pr-36705
deleted file mode 100644
index c8308e99213..00000000000
--- a/plugins/woocommerce/changelog/pr-36705
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Added `woocommerce_widget_layered_nav_filters_start/end` hooks around layered nav filters widget
\ No newline at end of file
diff --git a/plugins/woocommerce/changelog/pr-36759 b/plugins/woocommerce/changelog/pr-36759
deleted file mode 100644
index 5e9cda49931..00000000000
--- a/plugins/woocommerce/changelog/pr-36759
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-fix typo in variable name
\ No newline at end of file
diff --git a/plugins/woocommerce/changelog/pr-37052 b/plugins/woocommerce/changelog/pr-37052
deleted file mode 100644
index c137f14ef99..00000000000
--- a/plugins/woocommerce/changelog/pr-37052
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Corrects a class reference in the ProductDownloadsServiceProvider.
\ No newline at end of file
diff --git a/plugins/woocommerce/changelog/pr-37056 b/plugins/woocommerce/changelog/pr-37056
deleted file mode 100644
index 569c062225f..00000000000
--- a/plugins/woocommerce/changelog/pr-37056
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Corrects class namespaces in Onboarding. It was missed during last restructuring.
diff --git a/plugins/woocommerce/changelog/pr-37057 b/plugins/woocommerce/changelog/pr-37057
deleted file mode 100644
index 29c071af96e..00000000000
--- a/plugins/woocommerce/changelog/pr-37057
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Corrects a variable name in Reports\Stock\Stats. It was missed during the last name change.
diff --git a/plugins/woocommerce/changelog/pr-37058 b/plugins/woocommerce/changelog/pr-37058
deleted file mode 100644
index 526d0042221..00000000000
--- a/plugins/woocommerce/changelog/pr-37058
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Corrects imported classes. Class names should not begin with a backslash.
diff --git a/plugins/woocommerce/changelog/remove-wcpay-accordion b/plugins/woocommerce/changelog/remove-wcpay-accordion
deleted file mode 100644
index f409fb94f29..00000000000
--- a/plugins/woocommerce/changelog/remove-wcpay-accordion
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: update
-
-Remove accordion from "Other payment providers" in payment task
diff --git a/plugins/woocommerce/changelog/try-fix-variations-report-filtering b/plugins/woocommerce/changelog/try-fix-variations-report-filtering
deleted file mode 100644
index 31750d25a32..00000000000
--- a/plugins/woocommerce/changelog/try-fix-variations-report-filtering
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: fix
-
-Fixes filtering by attributes in the Analytics Orders and Variations reports.
diff --git a/plugins/woocommerce/changelog/try-remove-e2e-waits b/plugins/woocommerce/changelog/try-remove-e2e-waits
new file mode 100644
index 00000000000..8e07a999db3
--- /dev/null
+++ b/plugins/woocommerce/changelog/try-remove-e2e-waits
@@ -0,0 +1,4 @@
+Significance: patch
+Type: tweak
+
+Remove timeouts in e2e tests for variable products and analytics.
diff --git a/plugins/woocommerce/changelog/update-35887_spotlight_on_analytics_revenue b/plugins/woocommerce/changelog/update-35887_spotlight_on_analytics_revenue
deleted file mode 100644
index 49596b65370..00000000000
--- a/plugins/woocommerce/changelog/update-35887_spotlight_on_analytics_revenue
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: major
-Type: update
-
-Change the default date used on Revenue and Orders report to 'date_paid' and create spotlight on both reports
diff --git a/plugins/woocommerce/changelog/update-36355_product_editor_package b/plugins/woocommerce/changelog/update-36355_product_editor_package
deleted file mode 100644
index f78ff8529ce..00000000000
--- a/plugins/woocommerce/changelog/update-36355_product_editor_package
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Update imports of product slot fills to new @woocommerce/product-editor library
diff --git a/plugins/woocommerce/changelog/update-36395-move-product-fields b/plugins/woocommerce/changelog/update-36395-move-product-fields
deleted file mode 100644
index 82ab9e78887..00000000000
--- a/plugins/woocommerce/changelog/update-36395-move-product-fields
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Moving some components out of core and into product-editor package.
diff --git a/plugins/woocommerce/changelog/update-36719 b/plugins/woocommerce/changelog/update-36719
deleted file mode 100644
index 896dc558a69..00000000000
--- a/plugins/woocommerce/changelog/update-36719
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Move product utils into product editor package
diff --git a/plugins/woocommerce/changelog/update-36723 b/plugins/woocommerce/changelog/update-36723
deleted file mode 100644
index c78abe8297a..00000000000
--- a/plugins/woocommerce/changelog/update-36723
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Move hook to confirm unsaved form changes to navigation package
diff --git a/plugins/woocommerce/changelog/update-36746-update-avalara-cta-copy b/plugins/woocommerce/changelog/update-36746-update-avalara-cta-copy
deleted file mode 100644
index 5d00e4f782b..00000000000
--- a/plugins/woocommerce/changelog/update-36746-update-avalara-cta-copy
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: tweak
-
-Change Avalara CTA copy in tax task to Download
diff --git a/plugins/woocommerce/changelog/update-36977-visual-tweaks-for-shipping-task-partners b/plugins/woocommerce/changelog/update-36977-visual-tweaks-for-shipping-task-partners
deleted file mode 100644
index 62342e6c96a..00000000000
--- a/plugins/woocommerce/changelog/update-36977-visual-tweaks-for-shipping-task-partners
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: tweak
-
-Visual tweaks for shipping partner banners
diff --git a/plugins/woocommerce/changelog/update-bypass-actions-for-customer-updates b/plugins/woocommerce/changelog/update-bypass-actions-for-customer-updates
deleted file mode 100644
index 51208715e95..00000000000
--- a/plugins/woocommerce/changelog/update-bypass-actions-for-customer-updates
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: performance
-
-Bypass Action Scheduler for customer updates.
diff --git a/plugins/woocommerce/changelog/update-ci-workflow-remove-wp-5-8 b/plugins/woocommerce/changelog/update-ci-workflow-remove-wp-5-8
deleted file mode 100644
index 49609065bb3..00000000000
--- a/plugins/woocommerce/changelog/update-ci-workflow-remove-wp-5-8
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: update
-Comment: workflow update. not part of release zip
-
-
diff --git a/plugins/woocommerce/changelog/update-entity-store-endpoint-36990 b/plugins/woocommerce/changelog/update-entity-store-endpoint-36990
deleted file mode 100644
index d6f53eea345..00000000000
--- a/plugins/woocommerce/changelog/update-entity-store-endpoint-36990
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Updating rest namespace for product posttype to version 3.
diff --git a/plugins/woocommerce/changelog/update-manage-stock-disabled b/plugins/woocommerce/changelog/update-manage-stock-disabled
deleted file mode 100644
index 54bbac5922e..00000000000
--- a/plugins/woocommerce/changelog/update-manage-stock-disabled
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Show link to store settings when stock management is disabled.
diff --git a/plugins/woocommerce/changelog/update-manage-stock-label b/plugins/woocommerce/changelog/update-manage-stock-label
deleted file mode 100644
index 046a681b500..00000000000
--- a/plugins/woocommerce/changelog/update-manage-stock-label
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: tweak
-
-Rename "Manage stock?" label to "Stock management".
diff --git a/plugins/woocommerce/changelog/update-move-ces-data-store b/plugins/woocommerce/changelog/update-move-ces-data-store
deleted file mode 100644
index b85fbb8d362..00000000000
--- a/plugins/woocommerce/changelog/update-move-ces-data-store
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Add CES data store to @woocommerce/customer-effort-score
diff --git a/plugins/woocommerce/changelog/update-move-ces-to-package b/plugins/woocommerce/changelog/update-move-ces-to-package
deleted file mode 100644
index ca5584e0fec..00000000000
--- a/plugins/woocommerce/changelog/update-move-ces-to-package
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: dev
-
-Move CES components and utilities to @woocommerce/customer-effort-score
diff --git a/plugins/woocommerce/changelog/update-move-product-hooks b/plugins/woocommerce/changelog/update-move-product-hooks
deleted file mode 100644
index 5dbc28e2162..00000000000
--- a/plugins/woocommerce/changelog/update-move-product-hooks
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Moving use-product-helper and related product hooks to product editor package.
diff --git a/plugins/woocommerce/changelog/update-move-remaining-ces-to-package b/plugins/woocommerce/changelog/update-move-remaining-ces-to-package
new file mode 100644
index 00000000000..7bd3509065d
--- /dev/null
+++ b/plugins/woocommerce/changelog/update-move-remaining-ces-to-package
@@ -0,0 +1,4 @@
+Significance: minor
+Type: dev
+
+Move additional CES-related components to @woocommerce/customer-effort-score.
diff --git a/plugins/woocommerce/changelog/update-payment-gateways b/plugins/woocommerce/changelog/update-payment-gateways
deleted file mode 100644
index 7bb1e74a1c5..00000000000
--- a/plugins/woocommerce/changelog/update-payment-gateways
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: update
-
-Update obw payment gateways
diff --git a/plugins/woocommerce/changelog/update-pr-labeler-solaris-focus b/plugins/woocommerce/changelog/update-pr-labeler-solaris-focus
deleted file mode 100644
index b7d4b3d5bc3..00000000000
--- a/plugins/woocommerce/changelog/update-pr-labeler-solaris-focus
+++ /dev/null
@@ -1,5 +0,0 @@
-Significance: patch
-Type: update
-Comment: workflow update not included in release zip
-
-
diff --git a/plugins/woocommerce/changelog/update-product_rest_config b/plugins/woocommerce/changelog/update-product_rest_config
deleted file mode 100644
index ee0d9c7fa68..00000000000
--- a/plugins/woocommerce/changelog/update-product_rest_config
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: add
-
-Update product post rest config when block editor feature is enabled.
diff --git a/plugins/woocommerce/changelog/update-refactor-currency-context b/plugins/woocommerce/changelog/update-refactor-currency-context
deleted file mode 100644
index 542b256874c..00000000000
--- a/plugins/woocommerce/changelog/update-refactor-currency-context
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Moving currencyContext to relevant package, and updating all references.
diff --git a/plugins/woocommerce/changelog/update-remove-cart2cart b/plugins/woocommerce/changelog/update-remove-cart2cart
deleted file mode 100644
index fe5b3f56305..00000000000
--- a/plugins/woocommerce/changelog/update-remove-cart2cart
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Remove Cart2Cart option from add product task
diff --git a/plugins/woocommerce/changelog/update-stable-tag b/plugins/woocommerce/changelog/update-stable-tag
deleted file mode 100644
index e5ee8f7e111..00000000000
--- a/plugins/woocommerce/changelog/update-stable-tag
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: dev
-Comment: This PR updates the stable tag. No changelog entry is required.
-
diff --git a/plugins/woocommerce/changelog/update-stable-tag-7-5-0 b/plugins/woocommerce/changelog/update-stable-tag-7-5-0
deleted file mode 100644
index 6828901deb3..00000000000
--- a/plugins/woocommerce/changelog/update-stable-tag-7-5-0
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: dev
-Comment: This PR updates the stable tag. No changelog entry required.
-
diff --git a/plugins/woocommerce/changelog/update-stable-tag-7-5-1 b/plugins/woocommerce/changelog/update-stable-tag-7-5-1
new file mode 100644
index 00000000000..993c5ee05ab
--- /dev/null
+++ b/plugins/woocommerce/changelog/update-stable-tag-7-5-1
@@ -0,0 +1,4 @@
+Significance: patch
+Type: dev
+Comment: This PR updates stable tag, no changelog entry is required.
+
diff --git a/plugins/woocommerce/changelog/update-use-theme-color-for-completed-task-strikethrough b/plugins/woocommerce/changelog/update-use-theme-color-for-completed-task-strikethrough
deleted file mode 100644
index 26d3972b2a4..00000000000
--- a/plugins/woocommerce/changelog/update-use-theme-color-for-completed-task-strikethrough
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Use the currently activated theme color for completed tasks strikethough
diff --git a/plugins/woocommerce/changelog/update-variations-form b/plugins/woocommerce/changelog/update-variations-form
deleted file mode 100644
index 15de2b48117..00000000000
--- a/plugins/woocommerce/changelog/update-variations-form
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Change Variations form shown in Variations tab when there are no variations created
diff --git a/plugins/woocommerce/changelog/update-woocommerce-blocks-9.8.0 b/plugins/woocommerce/changelog/update-woocommerce-blocks-9.8.0
deleted file mode 100644
index 6bcd9bc8231..00000000000
--- a/plugins/woocommerce/changelog/update-woocommerce-blocks-9.8.0
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: update
-
-Update WooCommerce BLocks to 9.8.0
diff --git a/plugins/woocommerce/changelog/update-woocommerce-blocks-9.8.1 b/plugins/woocommerce/changelog/update-woocommerce-blocks-9.8.1
deleted file mode 100644
index 9d8b1e6c9eb..00000000000
--- a/plugins/woocommerce/changelog/update-woocommerce-blocks-9.8.1
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: patch
-Type: update
-
-Update WooCommerce Blocks to 9.8.1
diff --git a/plugins/woocommerce/changelog/woocommerce-reduce-order-item-stock b/plugins/woocommerce/changelog/woocommerce-reduce-order-item-stock
deleted file mode 100644
index 5c46be6f864..00000000000
--- a/plugins/woocommerce/changelog/woocommerce-reduce-order-item-stock
+++ /dev/null
@@ -1,4 +0,0 @@
-Significance: minor
-Type: enhancement
-
-Added woocommerce_reduce_order_item_stock action hook
diff --git a/plugins/woocommerce/composer.json b/plugins/woocommerce/composer.json
index a45995f8cab..2ed1a3bd2a8 100644
--- a/plugins/woocommerce/composer.json
+++ b/plugins/woocommerce/composer.json
@@ -2,7 +2,7 @@
"name": "woocommerce/woocommerce",
"description": "An eCommerce toolkit that helps you sell anything. Beautifully.",
"homepage": "https://woocommerce.com/",
- "version": "7.6.0",
+ "version": "7.7.0",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
diff --git a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php
index 1e0b358ad7d..7b4c9674778 100644
--- a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php
+++ b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php
@@ -50,8 +50,8 @@ if ( ! defined( 'ABSPATH' ) ) {
woocommerce_wp_text_input(
array(
'id' => '_stock',
- 'value' => wc_stock_amount( $product_object->get_stock_quantity( 'edit' ) ),
- 'label' => __( 'Stock quantity', 'woocommerce' ),
+ 'value' => wc_stock_amount( $product_object->get_stock_quantity( 'edit' ) ?? 1 ),
+ 'label' => __( 'Quantity', 'woocommerce' ),
'desc_tip' => true,
'description' => __( 'Stock quantity. If this is a variable product this value will be used to control stock for all variations, unless you define stock at variation level.', 'woocommerce' ),
'type' => 'number',
@@ -64,17 +64,28 @@ if ( ! defined( 'ABSPATH' ) ) {
echo '';
- woocommerce_wp_select(
- array(
- 'id' => '_backorders',
- 'value' => $product_object->get_backorders( 'edit' ),
- 'label' => __( 'Allow backorders?', 'woocommerce' ),
- 'options' => wc_get_product_backorder_options(),
- 'desc_tip' => true,
- 'description' => __( 'If managing stock, this controls whether or not backorders are allowed. If enabled, stock quantity can go below 0.', 'woocommerce' ),
- )
+ $backorder_args = array(
+ 'id' => '_backorders',
+ 'value' => $product_object->get_backorders( 'edit' ),
+ 'label' => __( 'Allow backorders?', 'woocommerce' ),
+ 'options' => wc_get_product_backorder_options(),
+ 'desc_tip' => true,
+ 'description' => __( 'If managing stock, this controls whether or not backorders are allowed. If enabled, stock quantity can go below 0.', 'woocommerce' ),
);
+ /**
+ * Allow 3rd parties to control whether "Allow backorder?" option will use radio buttons or a select.
+ *
+ * @since 7.6.0
+ *
+ * @param bool If false, "Allow backorders?" will be shown as a select. Default: it will use radio buttons.
+ */
+ if ( apply_filters( 'woocommerce_product_allow_backorder_use_radio', true ) ) {
+ woocommerce_wp_radio( $backorder_args );
+ } else {
+ woocommerce_wp_select( $backorder_args );
+ }
+
woocommerce_wp_text_input(
array(
'id' => '_low_stock_amount',
@@ -115,14 +126,16 @@ if ( ! defined( 'ABSPATH' ) ) {
}
- $stock_status_options = wc_get_product_stock_status_options();
- $stock_status_count = count( $stock_status_options );
- $common_stock_status_args = array(
+ $stock_status_options = wc_get_product_stock_status_options();
+ $stock_status_count = count( $stock_status_options );
+ $stock_status_args = array(
'id' => '_stock_status',
'value' => $product_object->get_stock_status( 'edit' ),
'wrapper_class' => 'stock_status_field hide_if_variable hide_if_external hide_if_grouped',
'label' => __( 'Stock status', 'woocommerce' ),
'options' => $stock_status_options,
+ 'desc_tip' => true,
+ 'description' => __( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.', 'woocommerce' ),
);
/**
@@ -133,13 +146,9 @@ if ( ! defined( 'ABSPATH' ) ) {
* @param bool If false, the "Stock status" will be shown as a select. Default: it will use radio buttons.
*/
if ( apply_filters( 'woocommerce_product_stock_status_use_radio', $stock_status_count <= 3 && $stock_status_count >= 1 ) ) {
- woocommerce_wp_radio( $common_stock_status_args );
+ woocommerce_wp_radio( $stock_status_args );
} else {
- $select_input_args = array(
- 'desc_tip' => true,
- 'description' => __( 'Controls whether or not the product is listed as "in stock" or "out of stock" on the frontend.', 'woocommerce' ),
- );
- woocommerce_wp_select( array_merge( $common_stock_status_args, $select_input_args ) );
+ woocommerce_wp_select( $stock_status_args );
}
do_action( 'woocommerce_product_options_stock_status' );
diff --git a/plugins/woocommerce/includes/class-wc-post-types.php b/plugins/woocommerce/includes/class-wc-post-types.php
index c2072a9257a..5fcb68552a5 100644
--- a/plugins/woocommerce/includes/class-wc-post-types.php
+++ b/plugins/woocommerce/includes/class-wc-post-types.php
@@ -387,6 +387,9 @@ class WC_Post_Types {
'name' => 'Product name',
),
),
+ array(
+ 'woocommerce/product-summary',
+ ),
array(
'core/columns',
array(),
diff --git a/plugins/woocommerce/includes/class-woocommerce.php b/plugins/woocommerce/includes/class-woocommerce.php
index 5ae2b3aa4fd..1ed57dc4cea 100644
--- a/plugins/woocommerce/includes/class-woocommerce.php
+++ b/plugins/woocommerce/includes/class-woocommerce.php
@@ -32,7 +32,7 @@ final class WooCommerce {
*
* @var string
*/
- public $version = '7.6.0';
+ public $version = '7.7.0';
/**
* WooCommerce Schema version.
diff --git a/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php b/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php
index 4c332f2cc11..184e9888dbb 100644
--- a/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php
+++ b/plugins/woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-variations-controller.php
@@ -64,7 +64,8 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Product_Variations_V
* @return WP_REST_Response
*/
public function prepare_object_for_response( $object, $request ) {
- $data = array(
+ $context = ! empty( $request['context'] ) ? $request['context'] : 'view';
+ $data = array(
'id' => $object->get_id(),
'date_created' => wc_rest_prepare_date_response( $object->get_date_created(), false ),
'date_created_gmt' => wc_rest_prepare_date_response( $object->get_date_created() ),
@@ -105,13 +106,12 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Product_Variations_V
),
'shipping_class' => $object->get_shipping_class(),
'shipping_class_id' => $object->get_shipping_class_id(),
- 'image' => $this->get_image( $object ),
+ 'image' => $this->get_image( $object, $context ),
'attributes' => $this->get_attributes( $object ),
'menu_order' => $object->get_menu_order(),
'meta_data' => $object->get_meta_data(),
);
- $context = ! empty( $request['context'] ) ? $request['context'] : 'view';
$data = $this->add_additional_fields_to_object( $data, $request );
$data = $this->filter_response_by_context( $data, $context );
$response = rest_ensure_response( $data );
@@ -352,10 +352,11 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Product_Variations_V
* Get the image for a product variation.
*
* @param WC_Product_Variation $variation Variation data.
+ * @param string $context Context of the request: 'view' or 'edit'.
* @return array
*/
- protected function get_image( $variation ) {
- if ( ! $variation->get_image_id() ) {
+ protected function get_image( $variation, $context = 'view' ) {
+ if ( ! $variation->get_image_id( $context ) ) {
return;
}
diff --git a/plugins/woocommerce/package.json b/plugins/woocommerce/package.json
index 48fb5ce4db4..11639ea1bb9 100644
--- a/plugins/woocommerce/package.json
+++ b/plugins/woocommerce/package.json
@@ -1,7 +1,7 @@
{
"name": "woocommerce",
"title": "WooCommerce",
- "version": "7.6.0",
+ "version": "7.7.0",
"homepage": "https://woocommerce.com/",
"repository": {
"type": "git",
diff --git a/plugins/woocommerce/readme.txt b/plugins/woocommerce/readme.txt
index 7017475de7e..efff28109f1 100644
--- a/plugins/woocommerce/readme.txt
+++ b/plugins/woocommerce/readme.txt
@@ -4,7 +4,7 @@ Tags: online store, ecommerce, shop, shopping cart, sell online, storefront, che
Requires at least: 5.9
Tested up to: 6.1
Requires PHP: 7.2
-Stable tag: 7.5.0
+Stable tag: 7.5.1
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -163,6 +163,6 @@ WooCommerce comes with some sample data you can use to see how products look; im
== Changelog ==
-= 7.6.0 2023-XX-XX =
+= 7.7.0 2023-XX-XX =
[See changelog for all versions](https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/changelog.txt).
diff --git a/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php b/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php
index aa9c4aa4284..49476835478 100644
--- a/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php
+++ b/plugins/woocommerce/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php
@@ -40,23 +40,11 @@ class RemoteInboxNotificationsEngine {
// Hook into WCA updated. This is hooked up here rather than in
// on_admin_init because that runs too late to hook into the action.
- add_action(
+ WC()->queue()->schedule_single(
+ time(),
'woocommerce_updated',
- function() {
- $next_hook = WC()->queue()->get_next(
- 'woocommerce_run_on_woocommerce_admin_updated',
- array( __CLASS__, 'run_on_woocommerce_admin_updated' ),
- 'woocommerce-remote-inbox-engine'
- );
- if ( $next_hook === null ) {
- WC()->queue()->schedule_single(
- time(),
- 'woocommerce_run_on_woocommerce_admin_updated',
- array( __CLASS__, 'run_on_woocommerce_admin_updated' ),
- 'woocommerce-remote-inbox-engine'
- );
- }
- }
+ array( __CLASS__, 'run_on_woocommerce_admin_updated' ),
+ 'woocommerce-remote-inbox-engine'
);
add_filter( 'woocommerce_get_note_from_db', array( __CLASS__, 'get_note_from_db' ), 10, 1 );
diff --git a/plugins/woocommerce/src/Internal/Admin/Events.php b/plugins/woocommerce/src/Internal/Admin/Events.php
index edb5e13a7b7..e745fe7c86d 100644
--- a/plugins/woocommerce/src/Internal/Admin/Events.php
+++ b/plugins/woocommerce/src/Internal/Admin/Events.php
@@ -44,6 +44,8 @@ use Automattic\WooCommerce\Internal\Admin\Notes\WooCommerceSubscriptions;
use Automattic\WooCommerce\Internal\Admin\Notes\WooSubscriptionsNotes;
use Automattic\WooCommerce\Internal\Admin\Schedulers\MailchimpScheduler;
use Automattic\WooCommerce\Admin\Notes\Note;
+use Automattic\WooCommerce\Admin\Features\PaymentGatewaySuggestions\PaymentGatewaySuggestionsDataSourcePoller;
+use Automattic\WooCommerce\Internal\Admin\RemoteFreeExtensions\RemoteFreeExtensionsDataSourcePoller;
/**
* Events Class.
@@ -143,6 +145,7 @@ class Events {
$this->possibly_add_notes();
$this->possibly_delete_notes();
$this->possibly_update_notes();
+ $this->possibly_refresh_data_source_pollers();
if ( $this->is_remote_inbox_notifications_enabled() ) {
DataSourcePoller::get_instance()->read_specs_from_data_sources();
@@ -250,4 +253,21 @@ class Events {
// All checks have passed.
return true;
}
+
+ /**
+ * Refresh transient for the following DataSourcePollers on wc_admin_daily cron job.
+ * - PaymentGatewaySuggestionsDataSourcePoller
+ * - RemoteFreeExtensionsDataSourcePoller
+ */
+ protected function possibly_refresh_data_source_pollers() {
+ $completed_tasks = get_option( 'woocommerce_task_list_tracked_completed_tasks' );
+
+ if ( ! in_array( 'payments', $completed_tasks, true ) && ! in_array( 'woocommerce-payments', $completed_tasks, true ) ) {
+ PaymentGatewaySuggestionsDataSourcePoller::get_instance()->read_specs_from_data_sources();
+ }
+
+ if ( ! in_array( 'store_details', $completed_tasks, true ) && ! in_array( 'marketing', $completed_tasks, true ) ) {
+ RemoteFreeExtensionsDataSourcePoller::get_instance()->read_specs_from_data_sources();
+ }
+ }
}
diff --git a/plugins/woocommerce/src/Internal/Admin/Translations.php b/plugins/woocommerce/src/Internal/Admin/Translations.php
index cbbde4d5597..cbd6004f3a7 100644
--- a/plugins/woocommerce/src/Internal/Admin/Translations.php
+++ b/plugins/woocommerce/src/Internal/Admin/Translations.php
@@ -59,28 +59,16 @@ class Translations {
}
/**
- * Find and combine translation chunk files.
+ * Combines data from translation chunk files based on officially downloaded file format.
*
- * Only targets files that aren't represented by a registered script (e.g. not passed to wp_register_script()).
- *
- * @param string $lang_dir Path to language files.
- * @param string $domain Text domain.
- * @param string $locale Locale being retrieved.
+ * @param array $json_i18n_filenames List of JSON chunk files.
* @return array Combined translation chunk data.
*/
- private function get_translation_chunk_data( $lang_dir, $domain, $locale ) {
- // So long as this function is called during the 'upgrader_process_complete' action,
+ private function combine_official_translation_chunks( $json_i18n_filenames ) {
// the filesystem object should be hooked up.
global $wp_filesystem;
-
- // Grab all JSON files in the current language pack.
- $json_i18n_filenames = glob( $lang_dir . $domain . '-' . $locale . '-*.json' );
$combined_translation_data = array();
- if ( false === $json_i18n_filenames ) {
- return $combined_translation_data;
- }
-
foreach ( $json_i18n_filenames as $json_filename ) {
if ( ! $wp_filesystem->is_readable( $json_filename ) ) {
continue;
@@ -93,10 +81,6 @@ class Translations {
continue;
}
- if ( ! isset( $chunk_data['comment']['reference'] ) ) {
- continue;
- }
-
$reference_file = $chunk_data['comment']['reference'];
// Only combine "app" files (not scripts registered with WP).
@@ -121,10 +105,107 @@ class Translations {
// Remove inaccurate reference comment.
unset( $combined_translation_data['comment'] );
-
return $combined_translation_data;
}
+ /**
+ * Combines data from translation chunk files based on user-generated file formats,
+ * such as wp-cli tool or Loco Translate plugin.
+ *
+ * @param array $json_i18n_filenames List of JSON chunk files.
+ * @return array Combined translation chunk data.
+ */
+ private function combine_user_translation_chunks( $json_i18n_filenames ) {
+ // the filesystem object should be hooked up.
+ global $wp_filesystem;
+ $combined_translation_data = array();
+
+ foreach ( $json_i18n_filenames as $json_filename ) {
+ if ( ! $wp_filesystem->is_readable( $json_filename ) ) {
+ continue;
+ }
+
+ $file_contents = $wp_filesystem->get_contents( $json_filename );
+ $chunk_data = \json_decode( $file_contents, true );
+
+ if ( empty( $chunk_data ) ) {
+ continue;
+ }
+
+ $reference_file = $chunk_data['source'];
+
+ // Only combine "app" files (not scripts registered with WP).
+ if (
+ false === strpos( $reference_file, WC_ADMIN_DIST_JS_FOLDER . 'app/index.js' ) &&
+ false === strpos( $reference_file, WC_ADMIN_DIST_JS_FOLDER . 'chunks/' )
+ ) {
+ continue;
+ }
+
+ if ( empty( $combined_translation_data ) ) {
+ // Use the first translation file as the base structure.
+ $combined_translation_data = $chunk_data;
+ } else {
+ // Combine all messages from all chunk files.
+ $combined_translation_data['locale_data']['woocommerce'] = array_merge(
+ $combined_translation_data['locale_data']['woocommerce'],
+ $chunk_data['locale_data']['woocommerce']
+ );
+ }
+ }
+
+ // Remove inaccurate reference comment.
+ unset( $combined_translation_data['source'] );
+ return $combined_translation_data;
+ }
+
+ /**
+ * Find and combine translation chunk files.
+ *
+ * Only targets files that aren't represented by a registered script (e.g. not passed to wp_register_script()).
+ *
+ * @param string $lang_dir Path to language files.
+ * @param string $domain Text domain.
+ * @param string $locale Locale being retrieved.
+ * @return array Combined translation chunk data.
+ */
+ private function get_translation_chunk_data( $lang_dir, $domain, $locale ) {
+ // So long as this function is called during the 'upgrader_process_complete' action,
+ // the filesystem object should be hooked up.
+ global $wp_filesystem;
+
+ // Grab all JSON files in the current language pack.
+ $json_i18n_filenames = glob( $lang_dir . $domain . '-' . $locale . '-*.json' );
+ $combined_translation_data = array();
+
+ if ( false === $json_i18n_filenames ) {
+ return $combined_translation_data;
+ }
+
+ // Use first JSON file to determine file format. This check is required due to
+ // file format difference between official language files and user translated files.
+ $format_determine_file = reset( $json_i18n_filenames );
+
+ if ( ! $wp_filesystem->is_readable( $format_determine_file ) ) {
+ return $combined_translation_data;
+ }
+
+ $file_contents = $wp_filesystem->get_contents( $format_determine_file );
+ $format_determine_data = \json_decode( $file_contents, true );
+
+ if ( empty( $format_determine_data ) ) {
+ return $combined_translation_data;
+ }
+
+ if ( isset( $format_determine_data['comment'] ) ) {
+ return $this->combine_official_translation_chunks( $json_i18n_filenames );
+ } elseif ( isset( $format_determine_data['source'] ) ) {
+ return $this->combine_user_translation_chunks( $json_i18n_filenames );
+ } else {
+ return $combined_translation_data;
+ }
+ }
+
/**
* Combine and save translations for a specific locale.
*
diff --git a/plugins/woocommerce/tests/api-core-tests/tests/orders/order-search.test.js b/plugins/woocommerce/tests/api-core-tests/tests/orders/order-search.test.js
index 03ae15d9253..e7d1f400a58 100644
--- a/plugins/woocommerce/tests/api-core-tests/tests/orders/order-search.test.js
+++ b/plugins/woocommerce/tests/api-core-tests/tests/orders/order-search.test.js
@@ -2,6 +2,9 @@ const { test, expect } = require( '@playwright/test' );
const { getOrderExampleSearchTest } = require( '../../data/order' );
const { customerShippingSearchTest } = require( '../../data/shared/customer' );
+const {
+ simpleProduct,
+} = require('../../data/products-crud');
/**
* Order to be searched
@@ -55,6 +58,15 @@ const searchParams = [
*/
test.describe( 'Order Search API tests', () => {
test.beforeAll( async ( { request } ) => {
+ // Create a product to be associated with the order
+ const productResponse = await request.post('wp-json/wc/v3/products', {
+ data: simpleProduct,
+ });
+ const productResponseJSON = await productResponse.json();
+
+ // Save the created product id against the order line_items
+ order.line_items[0].product_id = productResponseJSON.id;
+
// Create an order and save its ID
const response = await request.post( '/wp-json/wc/v3/orders', {
data: order,
@@ -64,6 +76,10 @@ test.describe( 'Order Search API tests', () => {
} );
test.afterAll( async ( { request } ) => {
+ // Cleanup: Delete the product
+ await request.delete( `/wp-json/wc/v3/products/${ order.line_items[0].product_id }`, {
+ data: { force: true },
+ } );
// Cleanup: Delete the order
await request.delete( `/wp-json/wc/v3/orders/${ order.id }`, {
data: { force: true },
diff --git a/plugins/woocommerce/tests/api-core-tests/tests/payment-gateways/payment-gateways-crud.test.js b/plugins/woocommerce/tests/api-core-tests/tests/payment-gateways/payment-gateways-crud.test.js
index f1e83fe7dba..cdc7509c080 100644
--- a/plugins/woocommerce/tests/api-core-tests/tests/payment-gateways/payment-gateways-crud.test.js
+++ b/plugins/woocommerce/tests/api-core-tests/tests/payment-gateways/payment-gateways-crud.test.js
@@ -135,7 +135,7 @@ test.describe('Payment Gateways API tests', () => {
"default": "",
"tip": "If COD is only available for certain methods, set it up here. Leave blank to enable for all methods.",
"placeholder": "",
- "options": {
+ "options": expect.objectContaining({
"Flat rate": {
"flat_rate": "Any "Flat rate" method"
},
@@ -145,7 +145,7 @@ test.describe('Payment Gateways API tests', () => {
"Local pickup": {
"local_pickup": "Any "Local pickup" method"
}
- }
+ })
},
"enable_for_virtual": {
"id": "enable_for_virtual",
diff --git a/plugins/woocommerce/tests/api-core-tests/tests/shipping/shipping-method.test.js b/plugins/woocommerce/tests/api-core-tests/tests/shipping/shipping-method.test.js
index 51f52e70144..72ac2b705f7 100644
--- a/plugins/woocommerce/tests/api-core-tests/tests/shipping/shipping-method.test.js
+++ b/plugins/woocommerce/tests/api-core-tests/tests/shipping/shipping-method.test.js
@@ -66,7 +66,7 @@ test.describe('Shipping methods API tests', () => {
const responseJSON = await response.json();
expect(response.status()).toEqual(200);
expect(Array.isArray(responseJSON)).toBe(true);
- expect(responseJSON.length).toEqual(3);
+ expect(responseJSON.length).toBeGreaterThanOrEqual(3);
expect(responseJSON[0].id).toEqual("flat_rate");
expect(responseJSON[1].id).toEqual("free_shipping");
expect(responseJSON[2].id).toEqual("local_pickup");
diff --git a/plugins/woocommerce/tests/e2e-pw/test-data/data.js b/plugins/woocommerce/tests/e2e-pw/test-data/data.js
index c4423c86be4..4a2868141e0 100644
--- a/plugins/woocommerce/tests/e2e-pw/test-data/data.js
+++ b/plugins/woocommerce/tests/e2e-pw/test-data/data.js
@@ -95,6 +95,24 @@ const storeDetails = {
downloadable: 'Downloads',
},
},
+ liberia: {
+ store: {
+ address: 'addr1',
+ city: 'Kakata',
+ zip: 'Division 1',
+ email: admin.email,
+ country: 'Liberia — Margibi', // corresponding to the text value of the option,
+ countryCode: 'LR',
+ },
+ expectedIndustries: 8, // There are 8 checkboxes on the page (in Liberia), adjust this constant if we change that
+ industries: {
+ other: 'Other',
+ },
+ products: {
+ physical: 'Physical products',
+ downloadable: 'Downloads',
+ },
+ },
};
module.exports = {
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/activate-and-setup/complete-onboarding-wizard.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/activate-and-setup/complete-onboarding-wizard.spec.js
index 6fe61713ae1..a4ecc40164d 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/activate-and-setup/complete-onboarding-wizard.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/activate-and-setup/complete-onboarding-wizard.spec.js
@@ -145,23 +145,23 @@ test.describe( 'Store owner can complete onboarding wizard', () => {
} );
} );
-// !Changed from Japanese to Malta store, as Japanese Yen does not use decimals
+// !Changed from Japanese to Liberian store, as Japanese Yen does not use decimals
test.describe(
- 'A Malta store can complete the selective bundle install but does not include WCPay.',
+ 'A Liberian store can complete the selective bundle install but does not include WCPay.',
() => {
test.use( { storageState: process.env.ADMINSTATE } );
test.beforeEach( async () => {
// Complete "Store Details" step through the API to prevent flakiness when run on external sites.
- await api.update.storeDetails( storeDetails.malta.store );
+ await api.update.storeDetails( storeDetails.liberia.store );
} );
// eslint-disable-next-line jest/expect-expect
test( 'can choose the "Other" industry', async ( { page } ) => {
await onboarding.completeIndustrySection(
page,
- storeDetails.malta.industries,
- storeDetails.malta.expectedIndustries
+ storeDetails.liberia.industries,
+ storeDetails.liberia.expectedIndustries
);
await page.click( 'button >> text=Continue' );
} );
@@ -174,14 +174,14 @@ test.describe(
await onboarding.completeIndustrySection(
page,
- storeDetails.malta.industries,
- storeDetails.malta.expectedIndustries
+ storeDetails.liberia.industries,
+ storeDetails.liberia.expectedIndustries
);
await page.click( 'button >> text=Continue' );
await onboarding.completeProductTypesSection(
page,
- storeDetails.malta.products
+ storeDetails.liberia.products
);
// Make sure WC Payments is NOT present
await expect(
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/admin-analytics/analytics-overview.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/admin-analytics/analytics-overview.spec.js
index 9c1e273bcb3..1fc2dab43a5 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/admin-analytics/analytics-overview.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/admin-analytics/analytics-overview.spec.js
@@ -36,7 +36,13 @@ test.describe( 'Analytics pages', () => {
'//button[@title="Choose which analytics to display and the section name"]'
);
await page.click( 'text=Move up' );
- await page.waitForTimeout( 1000 );
+
+ // wait for the changes to be saved
+ await page.waitForResponse(
+ ( response ) =>
+ response.url().includes( '/users/' ) &&
+ response.status() === 200
+ );
}
} );
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js
index b2aab9e1247..f024ff663c6 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/create-variable-product.spec.js
@@ -66,7 +66,13 @@ test.describe.serial( 'Add New Variable Product Page', () => {
await page.click( 'text=Save attributes', { force: true } );
await page.waitForLoadState( 'networkidle' );
- await page.waitForTimeout( 1000 ); // Wait for 1 second
+ // wait for the attributes to be saved
+ await page.waitForResponse(
+ ( response ) =>
+ response.url().includes( '/post.php?post=' ) &&
+ response.status() === 200
+ );
+
// Save before going to the Variations tab to prevent variations from all attributes to be automatically created
await page.locator( '#save-post' ).click();
await expect(
@@ -204,24 +210,28 @@ test.describe.serial( 'Add New Variable Product Page', () => {
if ( i > 0 ) {
await page.click( 'button.add_attribute' );
}
- const input = `input[name="attribute_names[${ i }]"]`;
- await page.waitForSelector( input, { timeout: 1000 } ); // Wait for up to 1 seconds
- await page.fill( input, `attr #${ i + 1 }` );
- await page.fill(
- `textarea[name="attribute_values[${ i }]"]`,
- 'val1 | val2'
- );
+ await page
+ .locator(
+ `.woocommerce_attribute_data input[name="attribute_names[${ i }]"]`
+ )
+ .fill( `attr #${ i + 1 }` );
+ await page
+ .locator(
+ `.woocommerce_attribute_data textarea[name="attribute_values[${ i }]"]`
+ )
+ .fill( 'val1 | val2' );
await page.keyboard.press( 'ArrowUp' );
await page.click( 'text=Save attributes' );
- await expect(
- page
- .locator( '.woocommerce_attribute.closed' )
- .filter( { hasText: `attr #${ i + 1 }` } )
- ).toBeVisible();
}
- await page.waitForTimeout( 1000 ); // Wait for 1 second
+ // wait for the attributes to be saved
+ await page.waitForResponse(
+ ( response ) =>
+ response.url().includes( '/post.php?post=' ) &&
+ response.status() === 200
+ );
+
// Save before going to the Variations tab to prevent variations from all attributes to be automatically created
await page.locator( '#save-post' ).click();
await expect(
diff --git a/plugins/woocommerce/woocommerce.php b/plugins/woocommerce/woocommerce.php
index 5fb548b0296..5ad4922ff91 100644
--- a/plugins/woocommerce/woocommerce.php
+++ b/plugins/woocommerce/woocommerce.php
@@ -3,7 +3,7 @@
* Plugin Name: WooCommerce
* Plugin URI: https://woocommerce.com/
* Description: An eCommerce toolkit that helps you sell anything. Beautifully.
- * Version: 7.6.0-dev
+ * Version: 7.7.0-dev
* Author: Automattic
* Author URI: https://woocommerce.com
* Text Domain: woocommerce
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index efd192efeec..18ea03d060e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -150,7 +150,7 @@ importers:
webpack-cli: ^3.3.12
dependencies:
'@woocommerce/components': link:../components
- '@wordpress/components': 19.8.5_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.8.5_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/element': 4.4.1
devDependencies:
'@types/react': 17.0.50
@@ -166,7 +166,7 @@ importers:
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
sass-loader: 10.2.1_webpack@5.70.0
- ts-jest: 27.1.3_77oryishcckaigojnzbhxsiona
+ ts-jest: 27.1.3_hszvtzkxfg7axc55y33g3o6iwa
typescript: 4.8.4
webpack: 5.70.0_webpack-cli@3.3.12
webpack-cli: 3.3.12_webpack@5.70.0
@@ -201,7 +201,7 @@ importers:
axios-mock-adapter: 1.20.0_axios@0.24.0
eslint: 8.32.0
jest: 27.5.1
- ts-jest: 27.1.3_wfmhell6c5i72vvtgtvpmkkb6i
+ ts-jest: 27.1.3_n6jwe674nt3ravnkwja2moplpy
typescript: 4.8.4
packages/js/api-core-tests:
@@ -523,6 +523,7 @@ importers:
'@woocommerce/experimental': workspace:*
'@woocommerce/internal-style-build': workspace:*
'@woocommerce/navigation': workspace:*
+ '@woocommerce/tracks': workspace:*
'@wordpress/browserslist-config': wp-6.0
'@wordpress/components': wp-6.0
'@wordpress/compose': wp-6.0
@@ -573,6 +574,7 @@ importers:
'@woocommerce/eslint-plugin': link:../eslint-plugin
'@woocommerce/internal-style-build': link:../internal-style-build
'@woocommerce/navigation': link:../navigation
+ '@woocommerce/tracks': link:../tracks
'@wordpress/browserslist-config': 4.1.3
concurrently: 7.0.0
css-loader: 3.6.0_webpack@5.70.0
@@ -1363,9 +1365,16 @@ importers:
packages/js/product-editor:
specifiers:
'@automattic/interpolate-components': ^1.2.0
+ '@babel/core': ^7.21.3
+ '@babel/runtime': ^7.17.2
+ '@testing-library/jest-dom': ^5.16.2
'@testing-library/react': ^12.1.3
+ '@testing-library/react-hooks': ^8.0.1
+ '@testing-library/user-event': ^13.5.0
+ '@types/jest': ^27.4.1
'@types/lodash': ^4.14.179
'@types/react': ^17.0.2
+ '@types/testing-library__jest-dom': ^5.14.3
'@types/wordpress__block-editor': ^7.0.0
'@types/wordpress__block-library': ^2.6.1
'@types/wordpress__blocks': ^11.0.7
@@ -1429,18 +1438,18 @@ importers:
'@woocommerce/number': link:../number
'@woocommerce/settings': 1.0.0
'@woocommerce/tracks': link:../tracks
- '@wordpress/block-editor': 9.8.0_vcke6catv4iqpjdw24uwvlzyyi
+ '@wordpress/block-editor': 9.8.0_mtk4wljkd5jimhszw4p7nnxuzm
'@wordpress/blocks': 12.5.0_react@17.0.2
- '@wordpress/components': 19.8.5_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.8.5_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/compose': 5.4.1_react@17.0.2
'@wordpress/core-data': 4.4.5_react@17.0.2
'@wordpress/data': 6.6.1_react@17.0.2
- '@wordpress/editor': 12.5.10_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/editor': 12.5.10_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/element': 4.4.1
'@wordpress/html-entities': 3.6.1
'@wordpress/i18n': 4.6.1
'@wordpress/icons': 8.2.3
- '@wordpress/interface': 4.5.6_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/interface': 4.5.6_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/keyboard-shortcuts': 3.4.1_react@17.0.2
'@wordpress/media-utils': 3.4.1
'@wordpress/url': 3.7.1
@@ -1448,8 +1457,15 @@ importers:
lodash: 4.17.21
react-router-dom: 6.3.0_sfoxds7t5ydpegc3knd667wn6m
devDependencies:
+ '@babel/core': 7.21.3
+ '@babel/runtime': 7.19.0
+ '@testing-library/jest-dom': 5.16.2
'@testing-library/react': 12.1.4_sfoxds7t5ydpegc3knd667wn6m
+ '@testing-library/react-hooks': 8.0.1_hiunvzosbwliizyirxfy6hjyim
+ '@testing-library/user-event': 13.5.0_gzufz4q333be4gqfrvipwvqt6a
+ '@types/jest': 27.4.1
'@types/react': 17.0.50
+ '@types/testing-library__jest-dom': 5.14.3
'@types/wordpress__block-editor': 7.0.0_sfoxds7t5ydpegc3knd667wn6m
'@types/wordpress__block-library': 2.6.1
'@types/wordpress__components': 19.10.5_sfoxds7t5ydpegc3knd667wn6m
@@ -1472,7 +1488,7 @@ importers:
react-hooks^8.0.1: link:@testing-library/react-hooks^8.0.1
rimraf: 3.0.2
sass-loader: 10.2.1_webpack@5.70.0
- ts-jest: 27.1.3_77oryishcckaigojnzbhxsiona
+ ts-jest: 27.1.3_n6jwe674nt3ravnkwja2moplpy
typescript: 4.8.4
webpack: 5.70.0_webpack-cli@3.3.12
webpack-cli: 3.3.12_webpack@5.70.0
@@ -1984,12 +2000,12 @@ importers:
typescript: ^4.8.3
uglify-js: ^3.5.3
dependencies:
- '@emotion/react': 11.10.5_lvgioobbs7lf3pr6y4xfpughau
+ '@emotion/react': 11.10.5_zg7wlf5auq2m3ro2gp4uufjvme
'@types/prop-types': 15.7.4
'@woocommerce/components': link:../../packages/js/components
'@woocommerce/data': link:../../packages/js/data
'@wordpress/api-fetch': 6.3.1
- '@wordpress/components': 19.8.5_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.8.5_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/compose': 5.4.1_react@17.0.2
'@wordpress/data': 6.6.1_react@17.0.2
'@wordpress/data-controls': 2.6.1_react@17.0.2
@@ -2006,7 +2022,7 @@ importers:
'@woocommerce/eslint-plugin': link:../../packages/js/eslint-plugin
'@wordpress/env': 4.9.0
'@wordpress/prettier-config': 2.5.0_wp-prettier@2.6.2
- '@wordpress/scripts': 19.2.4_f7x7zdz3ccrnqxb4utvdtwqz4e
+ '@wordpress/scripts': 19.2.4_ew4zquq24ctm7afg5tumlrriou
eslint: 8.32.0
prettier: /wp-prettier/2.6.2
ts-loader: 9.4.1_27qmdvvfdw5s3nqwnln6yerdsa
@@ -2275,10 +2291,10 @@ importers:
typescript: ^4.8.3
webpack: ^5.70.0
dependencies:
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8
+ '@babel/preset-typescript': 7.16.7_@babel+core@7.21.3
devDependencies:
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/preset-env': 7.16.11_@babel+core@7.17.8
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/preset-env': 7.16.11_@babel+core@7.21.3
'@babel/runtime': 7.17.7
'@storybook/addon-a11y': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/addon-actions': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
@@ -2295,7 +2311,7 @@ importers:
'@storybook/components': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/core-events': 6.4.19
'@storybook/manager-webpack5': 6.4.19_3n4gsnmxucj3bywv6syggoiztm
- '@storybook/react': 6.4.19_a55upwwpdj22rf6pemjk4qxjbi
+ '@storybook/react': 6.4.19_eyy24cwvfyikqccjc6kc5n6u7q
'@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@woocommerce/eslint-plugin': link:../../packages/js/eslint-plugin
react: 17.0.2
@@ -2349,7 +2365,14 @@ packages:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
+
+ /@ampproject/remapping/2.2.0:
+ resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.1.1
+ '@jridgewell/trace-mapping': 0.3.17
/@automattic/calypso-color-schemes/2.1.1:
resolution: {integrity: sha512-X5gmQEDJVtw8N9NARgZGM/pmalfapV8ZyRzEn2o0sCLmTAXGYg6A28ucLCQdBIn1l9t2rghBDFkY71vyqjyyFQ==}
@@ -2652,6 +2675,28 @@ packages:
optionalDependencies:
'@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
chokidar: 3.5.3
+ dev: true
+
+ /@babel/cli/7.17.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-l4w608nsDNlxZhiJ5tE3DbNmr61fIKMZ6fTBo171VEFuFMIYuJ3mHRhTLEkKKyvx2Mizkkv/0a8OJOnZqkKYNA==}
+ engines: {node: '>=6.9.0'}
+ hasBin: true
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@jridgewell/trace-mapping': 0.3.16
+ commander: 4.1.1
+ convert-source-map: 1.8.0
+ fs-readdir-recursive: 1.1.0
+ glob: 7.2.0
+ make-dir: 2.1.0
+ slash: 2.0.0
+ source-map: 0.5.7
+ optionalDependencies:
+ '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3
+ chokidar: 3.5.3
+ dev: false
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
@@ -2678,11 +2723,16 @@ packages:
/@babel/compat-data/7.17.7:
resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==}
engines: {node: '>=6.9.0'}
+ dev: true
/@babel/compat-data/7.19.3:
resolution: {integrity: sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==}
engines: {node: '>=6.9.0'}
+ /@babel/compat-data/7.21.0:
+ resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==}
+ engines: {node: '>=6.9.0'}
+
/@babel/core/7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
@@ -2711,18 +2761,18 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.19.3
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.16.12
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helpers': 7.17.8
- '@babel/parser': 7.19.3
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/generator': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.16.12
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helpers': 7.21.0
+ '@babel/parser': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
convert-source-map: 1.8.0
debug: 4.3.4
gensync: 1.0.0-beta.2
- json5: 2.2.0
+ json5: 2.2.3
semver: 6.3.0
source-map: 0.5.7
transitivePeerDependencies:
@@ -2751,6 +2801,28 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/core/7.21.3:
+ resolution: {integrity: sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.2.0
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helpers': 7.21.0
+ '@babel/parser': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
+ convert-source-map: 1.8.0
+ debug: 4.3.4
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/eslint-parser/7.17.0_45t77ya3ofqya5ogk4q6xdzcpq:
resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
@@ -2779,14 +2851,14 @@ packages:
semver: 6.3.0
dev: true
- /@babel/eslint-parser/7.17.0_xujkgafwcpm5gwokncqwvv5ure:
+ /@babel/eslint-parser/7.17.0_xrfyhdkbwxl52yb52lr5ltkqvm:
resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==}
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.17.8
+ '@babel/core': 7.21.3
eslint: 7.32.0
eslint-scope: 5.1.1
eslint-visitor-keys: 2.1.0
@@ -2805,34 +2877,44 @@ packages:
resolution: {integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
'@jridgewell/gen-mapping': 0.3.2
jsesc: 2.5.2
+ /@babel/generator/7.21.3:
+ resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.21.3
+ '@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.17
+ jsesc: 2.5.2
+
/@babel/helper-annotate-as-pure/7.16.0:
resolution: {integrity: sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
+ dev: true
/@babel/helper-annotate-as-pure/7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-explode-assignable-expression': 7.18.6
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-compilation-targets/7.16.3_@babel+core@7.12.9:
resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
@@ -2846,117 +2928,84 @@ packages:
browserslist: 4.19.3
semver: 6.3.0
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.12.9:
+ /@babel/helper-compilation-targets/7.17.7_@babel+core@7.21.3:
resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.12.9
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
'@babel/helper-validator-option': 7.18.6
browserslist: 4.19.3
semver: 6.3.0
dev: true
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.16.12
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.19.3
- semver: 6.3.0
- dev: false
-
- /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.17.8
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.19.3
- semver: 6.3.0
- dev: true
-
- /@babel/helper-compilation-targets/7.19.3_@babel+core@7.12.9:
- resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.12.9
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.4
- semver: 6.3.0
-
- /@babel/helper-compilation-targets/7.19.3_@babel+core@7.16.12:
- resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.16.12
- '@babel/helper-validator-option': 7.18.6
- browserslist: 4.21.4
- semver: 6.3.0
- dev: false
-
/@babel/helper-compilation-targets/7.19.3_@babel+core@7.17.8:
resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
'@babel/helper-validator-option': 7.18.6
browserslist: 4.21.4
semver: 6.3.0
- /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.12.9:
- resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.12.9:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ lru-cache: 5.1.1
+ semver: 6.3.0
+
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.16.12:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.16.12
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ lru-cache: 5.1.1
+ semver: 6.3.0
+ dev: false
+
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.17.8:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.17.8
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ lru-cache: 5.1.1
+ semver: 6.3.0
dev: true
- /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.16.12:
- resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
+ /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.18.9
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: false
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ lru-cache: 5.1.1
+ semver: 6.3.0
/@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.8:
resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
@@ -2967,7 +3016,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.19.1
@@ -2975,6 +3024,24 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.12.9:
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
engines: {node: '>=6.9.0'}
@@ -2984,7 +3051,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.19.1
@@ -3001,7 +3068,7 @@ packages:
'@babel/core': 7.16.12
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-replace-supers': 7.19.1
@@ -3019,6 +3086,23 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
@@ -3057,6 +3141,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 5.2.1
+ dev: true
+
+ /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ regexpu-core: 5.2.1
/@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.17.8:
resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
@@ -3064,10 +3159,28 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
- '@babel/traverse': 7.19.3
+ '@babel/traverse': 7.21.3
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.21.3:
+ resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/traverse': 7.21.3
debug: 4.3.4
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -3082,7 +3195,7 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.12.9
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -3097,7 +3210,7 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.16.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.16.12
'@babel/helper-plugin-utils': 7.19.0
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -3113,7 +3226,23 @@ packages:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
+ '@babel/helper-plugin-utils': 7.19.0
+ debug: 4.3.4
+ lodash.debounce: 4.0.8
+ resolve: 1.22.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ peerDependencies:
+ '@babel/core': ^7.4.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.19.0
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -3130,44 +3259,52 @@ packages:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-function-name/7.19.0:
resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/types': 7.21.3
+
+ /@babel/helper-function-name/7.21.0:
+ resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.20.7
+ '@babel/types': 7.21.3
/@babel/helper-hoist-variables/7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-member-expression-to-functions/7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-module-imports/7.16.0:
resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
+ dev: true
/@babel/helper-module-imports/7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-module-transforms/7.17.7:
resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==}
@@ -3178,9 +3315,9 @@ packages:
'@babel/helper-simple-access': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3193,9 +3330,24 @@ packages:
'@babel/helper-simple-access': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
'@babel/helper-validator-identifier': 7.19.1
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helper-module-transforms/7.21.2:
+ resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-simple-access': 7.20.2
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3203,7 +3355,7 @@ packages:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-plugin-utils/7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
@@ -3227,7 +3379,7 @@ packages:
dependencies:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3237,9 +3389,10 @@ packages:
dependencies:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
+ dev: true
/@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.12.9:
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
@@ -3251,7 +3404,7 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3265,7 +3418,7 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -3280,7 +3433,22 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-wrap-function': 7.19.0
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-wrap-function': 7.19.0
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3291,8 +3459,8 @@ packages:
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-member-expression-to-functions': 7.18.9
'@babel/helper-optimise-call-expression': 7.18.6
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3300,24 +3468,34 @@ packages:
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
+
+ /@babel/helper-simple-access/7.20.2:
+ resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.21.3
/@babel/helper-skip-transparent-expression-wrappers/7.18.9:
resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-split-export-declaration/7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/helper-string-parser/7.18.10:
resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
engines: {node: '>=6.9.0'}
+ /@babel/helper-string-parser/7.19.4:
+ resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
+ engines: {node: '>=6.9.0'}
+
/@babel/helper-validator-identifier/7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
@@ -3338,10 +3516,10 @@ packages:
resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.19.0
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/helper-function-name': 7.21.0
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3349,9 +3527,19 @@ packages:
resolution: {integrity: sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/helpers/7.21.0:
+ resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
transitivePeerDependencies:
- supports-color
@@ -3375,11 +3563,28 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.12.9:
+ /@babel/parser/7.21.3:
+ resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.21.3
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
@@ -3387,8 +3592,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -3397,16 +3602,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
@@ -3415,10 +3610,32 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ dev: true
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.12.9:
+ resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
dependencies:
@@ -3428,8 +3645,8 @@ packages:
'@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.12.9
dev: true
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
@@ -3440,18 +3657,6 @@ packages:
'@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.16.12
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.13.0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
engines: {node: '>=6.9.0'}
@@ -3462,6 +3667,18 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
/@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.12.9:
resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
@@ -3476,44 +3693,16 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.12.9:
+ /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.21.3:
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.12.9
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.16.12:
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.16.12
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.12
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.8:
- resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.8
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -3532,6 +3721,21 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.16.12:
+ resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.12
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.17.8:
resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
engines: {node: '>=6.9.0'}
@@ -3545,6 +3749,21 @@ packages:
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.21.3:
+ resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==}
@@ -3558,32 +3777,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
engines: {node: '>=6.9.0'}
@@ -3596,6 +3789,19 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -3608,6 +3814,19 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -3619,10 +3838,37 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
+ dev: true
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.12.9:
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.21.3:
resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
@@ -3634,8 +3880,8 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.16.12:
- resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
@@ -3648,8 +3894,8 @@ packages:
- supports-color
dev: false
- /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.8:
- resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.17.8:
+ resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
@@ -3662,16 +3908,16 @@ packages:
- supports-color
dev: true
- /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.8
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
@@ -3689,6 +3935,20 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-proposal-decorators/7.16.4_@babel+core@7.21.3:
+ resolution: {integrity: sha512-RESBNX16eNqnBeEVR5sCJpnW0mHiNLNNvGA8PrRuK/4ZJ4TO+6bHleRUuGQYDERVySOKtOhSya/C4MIhwAMAgg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-decorators': 7.16.0_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==}
engines: {node: '>=6.9.0'}
@@ -3699,9 +3959,20 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ dev: true
+
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -3710,8 +3981,8 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.9
dev: true
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3721,17 +3992,6 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.12
dev: false
- /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
@@ -3741,6 +4001,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
/@babel/plugin-proposal-export-default-from/7.16.7_@babel+core@7.12.9:
resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==}
@@ -3761,6 +4032,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-export-default-from/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.21.3
/@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==}
@@ -3772,9 +4054,20 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
+ dev: true
+
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.12.9:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -3783,8 +4076,8 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.9
dev: true
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3794,17 +4087,6 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.12
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
@@ -3814,6 +4096,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
/@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==}
@@ -3825,9 +4118,20 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ dev: true
+
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -3836,8 +4140,8 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.9
dev: true
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3847,17 +4151,6 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.12
dev: false
- /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
@@ -3867,6 +4160,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
/@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==}
@@ -3878,9 +4182,20 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ dev: true
+
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.12.9:
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -3889,8 +4204,8 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.9
dev: true
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -3900,17 +4215,6 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.12
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
@@ -3920,6 +4224,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
/@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==}
@@ -3931,28 +4246,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.12
- dev: false
-
/@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
engines: {node: '>=6.9.0'}
@@ -3963,6 +4256,17 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ dev: true
+
/@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -3973,6 +4277,17 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.9
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.12
+ dev: false
+
/@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
@@ -3982,6 +4297,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
/@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==}
@@ -3993,9 +4319,20 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ dev: true
+
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -4004,8 +4341,8 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.9
dev: true
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -4015,17 +4352,6 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.12
dev: false
- /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.8
- dev: true
-
/@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
@@ -4035,6 +4361,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
/@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
@@ -4060,73 +4397,87 @@ packages:
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
'@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.12.9
- /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.12.9:
- resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.16.12:
- resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.12
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.16.12
- dev: false
-
/@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.8:
resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
'@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
dev: true
+ /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ dev: true
+
/@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.12.9:
resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.12.9
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
'@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9
+ /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.16.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.12
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.16.12
+ dev: false
+
/@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
'@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
/@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==}
@@ -4138,37 +4489,15 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.12
- dev: false
-
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
dev: true
/@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.12.9:
@@ -4181,6 +4510,17 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.9
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.12
+ dev: false
+
/@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
@@ -4190,6 +4530,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
/@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==}
@@ -4202,30 +4553,6 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.12
- dev: false
-
/@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
engines: {node: '>=6.9.0'}
@@ -4237,6 +4564,18 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
+ /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ dev: true
+
/@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.12.9:
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
@@ -4270,6 +4609,18 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
+ dev: true
+
+ /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
/@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==}
@@ -4283,32 +4634,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.12.9:
- resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.16.12:
- resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.18.9
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.8:
resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
engines: {node: '>=6.9.0'}
@@ -4322,6 +4647,45 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.21.3:
+ resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.12.9
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
@@ -4333,36 +4697,19 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
-
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9
- transitivePeerDependencies:
- - supports-color
dev: true
- /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.16.7
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.12
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
- dev: false
/@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
@@ -4379,6 +4726,51 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.16.7
+ '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.12.9
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.12.9
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.12
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
@@ -4392,6 +4784,21 @@ packages:
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==}
@@ -4403,36 +4810,14 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -4466,6 +4851,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.9:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -4491,6 +4887,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.3:
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
@@ -4508,6 +4913,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.12.9:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
@@ -4533,6 +4947,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.3:
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.12.9:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
@@ -4562,6 +4985,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.3:
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-decorators/7.16.0_@babel+core@7.17.8:
resolution: {integrity: sha512-nxnnngZClvlY13nHJAIDow0S7Qzhq64fQ/NlqS+VER3kjW/4F0jLhXjeL8jcwSwz6Ca3rotT5NJD2T9I7lcv7g==}
@@ -4573,6 +5006,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-syntax-decorators/7.16.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-nxnnngZClvlY13nHJAIDow0S7Qzhq64fQ/NlqS+VER3kjW/4F0jLhXjeL8jcwSwz6Ca3rotT5NJD2T9I7lcv7g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
@@ -4597,6 +5040,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.12.9:
resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==}
@@ -4615,6 +5067,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
@@ -4640,6 +5102,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-flow/7.16.7_@babel+core@7.12.9:
resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
@@ -4659,13 +5130,22 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
+ /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.9:
@@ -4684,6 +5164,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.21.3:
+ resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@@ -4709,6 +5198,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
@@ -4767,6 +5265,15 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.9:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -4791,6 +5298,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.3:
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -4817,6 +5333,14 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.9:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -4841,6 +5365,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.3:
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -4866,6 +5399,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -4891,6 +5433,15 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -4917,6 +5468,14 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.12.9:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -4945,6 +5504,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.3:
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.12.9:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
@@ -4973,6 +5542,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.3:
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.16.12:
resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
@@ -4993,6 +5572,15 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
/@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
@@ -5002,13 +5590,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.12.9:
@@ -5020,26 +5608,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
engines: {node: '>=6.9.0'}
@@ -5050,6 +5618,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
@@ -5059,6 +5637,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
engines: {node: '>=6.9.0'}
@@ -5067,6 +5655,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==}
@@ -5081,34 +5679,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.12.9:
- resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.16.8
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.16.12:
- resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-remap-async-to-generator': 7.16.8
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.8:
resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
engines: {node: '>=6.9.0'}
@@ -5123,6 +5693,20 @@ packages:
- supports-color
dev: true
+ /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.21.3:
+ resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.16.8
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
@@ -5136,6 +5720,20 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.16.12
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
engines: {node: '>=6.9.0'}
@@ -5148,6 +5746,20 @@ packages:
'@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==}
@@ -5158,33 +5770,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5197,6 +5789,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
@@ -5205,6 +5807,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
@@ -5215,26 +5827,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
engines: {node: '>=6.9.0'}
@@ -5245,6 +5837,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.12.9:
resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
engines: {node: '>=6.9.0'}
@@ -5254,6 +5856,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
engines: {node: '>=6.9.0'}
@@ -5262,6 +5874,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-classes/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==}
@@ -5280,44 +5902,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-classes/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-classes/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.18.6
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
engines: {node: '>=6.9.0'}
@@ -5327,7 +5911,26 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-classes/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-replace-supers': 7.19.1
@@ -5345,9 +5948,9 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.12.9
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-replace-supers': 7.19.1
@@ -5356,6 +5959,26 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-transform-classes/7.19.0_@babel+core@7.16.12:
+ resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.16.12
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-classes/7.19.0_@babel+core@7.17.8:
resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
engines: {node: '>=6.9.0'}
@@ -5364,9 +5987,29 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-classes/7.19.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-replace-supers': 7.19.1
@@ -5384,33 +6027,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5423,6 +6046,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
engines: {node: '>=6.9.0'}
@@ -5431,6 +6064,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
@@ -5441,26 +6084,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.8:
resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
engines: {node: '>=6.9.0'}
@@ -5471,6 +6094,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.12.9:
resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
engines: {node: '>=6.9.0'}
@@ -5480,6 +6113,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.16.12:
+ resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.17.8:
resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
engines: {node: '>=6.9.0'}
@@ -5488,6 +6131,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.21.3:
+ resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==}
@@ -5499,36 +6152,14 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5562,6 +6193,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
@@ -5572,9 +6214,19 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.12.9:
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -5582,8 +6234,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5592,8 +6244,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.17.8:
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -5602,13 +6254,13 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.17.8:
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.12.9:
@@ -5621,35 +6273,13 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5664,6 +6294,17 @@ packages:
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
@@ -5673,6 +6314,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.12.9:
resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
@@ -5694,6 +6346,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8
+ /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.21.3
+
/@babel/plugin-transform-for-of/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==}
engines: {node: '>=6.9.0'}
@@ -5703,26 +6365,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
engines: {node: '>=6.9.0'}
@@ -5733,6 +6375,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-for-of/7.18.8_@babel+core@7.12.9:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
@@ -5742,6 +6394,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.16.12:
+ resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-for-of/7.18.8_@babel+core@7.17.8:
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
engines: {node: '>=6.9.0'}
@@ -5750,6 +6412,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.21.3:
+ resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-function-name/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==}
@@ -5761,39 +6433,15 @@ packages:
'@babel/helper-function-name': 7.19.0
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.12.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.16.12
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
- '@babel/helper-function-name': 7.19.0
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5804,10 +6452,22 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.12.9
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.16.12
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-function-name/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
@@ -5815,8 +6475,20 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
- '@babel/helper-function-name': 7.19.0
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-literals/7.16.0_@babel+core@7.12.9:
@@ -5828,33 +6500,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-literals/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5867,6 +6519,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-literals/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
@@ -5875,6 +6537,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
@@ -5885,33 +6557,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -5924,6 +6576,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
@@ -5932,6 +6594,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
@@ -5940,54 +6612,54 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
+ /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
engines: {node: '>=6.9.0'}
@@ -5995,7 +6667,21 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
@@ -6008,43 +6694,13 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-simple-access': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-simple-access': 7.18.6
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-simple-access': 7.18.6
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: false
-
/@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.17.8:
resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
engines: {node: '>=6.9.0'}
@@ -6052,13 +6708,28 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-simple-access': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-simple-access': 7.18.6
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
engines: {node: '>=6.9.0'}
@@ -6066,13 +6737,28 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-simple-access': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-simple-access': 7.18.6
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
engines: {node: '>=6.9.0'}
@@ -6080,7 +6766,22 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-simple-access': 7.18.6
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-simple-access': 7.18.6
babel-plugin-dynamic-import-node: 2.3.3
@@ -6095,22 +6796,38 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-identifier': 7.19.1
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.12.9:
+ /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.21.3:
resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-identifier': 7.19.1
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.12.9:
+ resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-identifier': 7.19.1
babel-plugin-dynamic-import-node: 2.3.3
@@ -6118,15 +6835,15 @@ packages:
- supports-color
dev: true
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.16.12:
- resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
+ /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.16.12:
+ resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.16.12
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-identifier': 7.19.1
babel-plugin-dynamic-import-node: 2.3.3
@@ -6134,22 +6851,6 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.8:
- resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-validator-identifier': 7.19.1
- babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.17.8:
resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
engines: {node: '>=6.9.0'}
@@ -6158,7 +6859,23 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-identifier': 7.19.1
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-identifier': 7.19.1
babel-plugin-dynamic-import-node: 2.3.3
@@ -6172,50 +6889,50 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.16.12
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.19.0
- '@babel/helper-plugin-utils': 7.19.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
@@ -6223,7 +6940,20 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-transforms': 7.21.2
'@babel/helper-plugin-utils': 7.19.0
transitivePeerDependencies:
- supports-color
@@ -6237,34 +6967,14 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.12.9:
+ /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.21.3:
resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- dev: true
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.16.12:
- resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.16.12
- dev: false
-
- /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.8:
- resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
dev: true
/@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.12.9:
@@ -6277,6 +6987,17 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.16.12:
+ resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.17.8:
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
engines: {node: '>=6.9.0'}
@@ -6286,6 +7007,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.21.3:
+ resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-new-target/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==}
@@ -6296,9 +7028,19 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6306,8 +7048,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6316,8 +7058,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.17.8:
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6326,13 +7068,13 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-object-super/7.16.0_@babel+core@7.12.9:
@@ -6347,39 +7089,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-replace-supers': 7.19.1
- transitivePeerDependencies:
- - supports-color
- dev: false
-
- /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
@@ -6398,6 +7114,19 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-object-super/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
@@ -6409,6 +7138,19 @@ packages:
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-transform-parameters/7.16.3_@babel+core@7.12.9:
resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
@@ -6419,26 +7161,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
engines: {node: '>=6.9.0'}
@@ -6449,6 +7171,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-parameters/7.18.8_@babel+core@7.12.9:
resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
@@ -6476,6 +7208,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==}
@@ -6486,33 +7228,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -6525,6 +7247,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
@@ -6533,14 +7265,24 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
- /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.17.8:
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+
+ /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.21.3:
resolution: {integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -6561,6 +7303,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==}
@@ -6572,6 +7324,16 @@ packages:
'@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.17.8
dev: true
+ /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ dev: true
+
/@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
@@ -6581,13 +7343,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.12.9:
@@ -6599,13 +7361,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-transform-react-jsx-source/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-react-jsx/7.16.0_@babel+core@7.12.9:
@@ -6650,6 +7412,20 @@ packages:
'@babel/types': 7.17.0
dev: true
+ /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.16.7
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
+ '@babel/types': 7.21.3
+ dev: true
+
/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.12.9:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
@@ -6661,7 +7437,7 @@ packages:
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.12.9
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.17.8:
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
@@ -6674,7 +7450,21 @@ packages:
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.17.8
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
+ dev: true
+
+ /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
+ '@babel/types': 7.21.3
/@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==}
@@ -6687,6 +7477,17 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==}
engines: {node: '>=6.9.0'}
@@ -6696,36 +7497,38 @@ packages:
'@babel/core': 7.12.9
regenerator-transform: 0.14.5
- /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ regenerator-transform: 0.14.5
+ dev: true
+
+ /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- regenerator-transform: 0.14.5
+ '@babel/helper-plugin-utils': 7.19.0
+ regenerator-transform: 0.15.0
dev: true
- /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
+ /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.16.12
- regenerator-transform: 0.14.5
+ '@babel/helper-plugin-utils': 7.19.0
+ regenerator-transform: 0.15.0
dev: false
- /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- regenerator-transform: 0.14.5
- dev: true
-
/@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
@@ -6735,6 +7538,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
regenerator-transform: 0.15.0
+ dev: true
+
+ /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ regenerator-transform: 0.15.0
/@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==}
@@ -6745,9 +7559,19 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.12.9:
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6755,8 +7579,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6765,8 +7589,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.17.8:
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6775,13 +7599,13 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.17.8:
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-runtime/7.16.4_@babel+core@7.12.9:
@@ -6818,18 +7642,18 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-runtime/7.16.4_@babel+core@7.17.8:
+ /@babel/plugin-transform-runtime/7.16.4_@babel+core@7.21.3:
resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-module-imports': 7.16.0
'@babel/helper-plugin-utils': 7.14.5
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.17.8
- babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.17.8
- babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.21.3
+ babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.21.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -6851,18 +7675,18 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-runtime/7.19.1_@babel+core@7.17.8:
+ /@babel/plugin-transform-runtime/7.19.1_@babel+core@7.21.3:
resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.19.0
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.17.8
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.17.8
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.3
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -6876,26 +7700,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
engines: {node: '>=6.9.0'}
@@ -6906,6 +7710,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.12.9:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
@@ -6915,6 +7729,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
@@ -6923,6 +7747,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-spread/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==}
@@ -6934,28 +7768,6 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- /@babel/plugin-transform-spread/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- dev: true
-
- /@babel/plugin-transform-spread/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
- dev: false
-
/@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
engines: {node: '>=6.9.0'}
@@ -6967,6 +7779,17 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
dev: true
+ /@babel/plugin-transform-spread/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ dev: true
+
/@babel/plugin-transform-spread/7.19.0_@babel+core@7.12.9:
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
@@ -6977,6 +7800,17 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ /@babel/plugin-transform-spread/7.19.0_@babel+core@7.16.12:
+ resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ dev: false
+
/@babel/plugin-transform-spread/7.19.0_@babel+core@7.17.8:
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
engines: {node: '>=6.9.0'}
@@ -6986,6 +7820,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ dev: true
+
+ /@babel/plugin-transform-spread/7.19.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
/@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
@@ -6996,33 +7841,13 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -7035,6 +7860,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
@@ -7043,6 +7878,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
@@ -7053,26 +7898,6 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
/@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.8:
resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
engines: {node: '>=6.9.0'}
@@ -7083,6 +7908,16 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
+ /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
/@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.12.9:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
@@ -7092,6 +7927,16 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.17.8:
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
@@ -7100,6 +7945,16 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.12.9:
resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
@@ -7110,9 +7965,19 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.12.9:
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -7120,8 +7985,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.16.12:
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -7130,8 +7995,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.17.8:
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -7140,13 +8005,13 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.17.8:
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.3:
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-typescript/7.16.8_@babel+core@7.16.12:
@@ -7176,6 +8041,19 @@ packages:
transitivePeerDependencies:
- supports-color
+ /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.21.3:
+ resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
+
/@babel/plugin-transform-typescript/7.19.3_@babel+core@7.12.9:
resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==}
engines: {node: '>=6.9.0'}
@@ -7189,16 +8067,16 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.17.8:
+ /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.21.3:
resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.19.0
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
@@ -7211,9 +8089,19 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.12.9:
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -7221,8 +8109,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.16.12:
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -7231,8 +8119,8 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==}
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.17.8:
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -7241,13 +8129,13 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
dev: true
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.17.8:
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.3:
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
/@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.12.9:
@@ -7260,36 +8148,14 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.12.9:
+ /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.21.3:
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.19.0
- dev: true
-
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.16.12:
- resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.16.12
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.19.0
- dev: false
-
- /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.8:
- resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
'@babel/helper-plugin-utils': 7.19.0
dev: true
@@ -7303,6 +8169,17 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.12.9
'@babel/helper-plugin-utils': 7.19.0
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.16.12:
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.16.12
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.17.8:
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
@@ -7312,6 +8189,17 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
+ dev: true
+
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.3:
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
/@babel/polyfill/7.12.1:
resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==}
@@ -7402,28 +8290,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.12.9
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.12.9
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.12.9
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.12.9
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.12.9
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.12.9
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.12.9
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.12.9
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.12.9
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.9
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.12.9
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.12.9
@@ -7438,44 +8326,44 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.9
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.12.9
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.12.9
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.12.9
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.12.9
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.12.9
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.12.9
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.12.9
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.12.9
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.12.9
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.12.9
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.12.9
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.12.9
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.12.9
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.12.9
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.12.9
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.12.9
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.12.9
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.12.9
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.12.9
'@babel/preset-modules': 0.1.5_@babel+core@7.12.9
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.12.9
+ '@babel/types': 7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.12.9
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.12.9
babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.12.9
- core-js-compat: 3.21.1
+ core-js-compat: 3.25.5
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -7487,28 +8375,28 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.16.12
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.16.12
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.16.12
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.16.12
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.16.12
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.16.12
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.16.12
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.16.12
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.16.12
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.16.12
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.12
'@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.12
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.12
@@ -7523,44 +8411,44 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.12
'@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.12
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.12
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.16.12
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.16.12
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.16.12
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.16.12
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.16.12
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.16.12
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.16.12
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.16.12
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.16.12
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.16.12
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.16.12
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.16.12
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.16.12
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.16.12
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.16.12
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.16.12
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.16.12
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.16.12
'@babel/preset-modules': 0.1.5_@babel+core@7.16.12
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.12
+ '@babel/types': 7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.16.12
babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.16.12
babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.12
- core-js-compat: 3.21.1
+ core-js-compat: 3.25.5
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -7572,94 +8460,9 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.17.7
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.8
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.8
- '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.8
- '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.8
- '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.8
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.8
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.8
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.8
- '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8
- '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.8
- '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.8
- '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.8
- '@babel/preset-modules': 0.1.5_@babel+core@7.17.8
- '@babel/types': 7.17.0
- babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.17.8
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.8
- babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.17.8
- core-js-compat: 3.21.1
- semver: 6.3.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
- /@babel/preset-env/7.19.3_@babel+core@7.17.8:
- resolution: {integrity: sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.17.8
- '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.17.8
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-option': 7.18.6
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.17.8
@@ -7684,7 +8487,6 @@ packages:
'@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.8
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.17.8
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.8
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.8
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
@@ -7727,10 +8529,181 @@ packages:
'@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.17.8
'@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.17.8
'@babel/preset-modules': 0.1.5_@babel+core@7.17.8
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.17.8
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.17.8
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.8
+ babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.17.8
+ core-js-compat: 3.25.5
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/preset-env/7.16.11_@babel+core@7.21.3:
+ resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.17.7
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-validator-option': 7.16.7
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.21.3
+ '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.21.3
+ '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-modules': 0.1.5_@babel+core@7.21.3
+ '@babel/types': 7.17.0
+ babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.21.3
+ babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.21.3
+ core-js-compat: 3.21.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@babel/preset-env/7.19.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
+ '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.21.3
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.3
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/preset-modules': 0.1.5_@babel+core@7.21.3
+ '@babel/types': 7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.3
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.3
core-js-compat: 3.25.5
semver: 6.3.0
transitivePeerDependencies:
@@ -7747,6 +8720,18 @@ packages:
'@babel/helper-validator-option': 7.18.6
'@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8
+ /@babel/preset-flow/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.21.3
+ dev: true
+
/@babel/preset-modules/0.1.5_@babel+core@7.12.9:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
@@ -7756,7 +8741,7 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.12.9
'@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.12.9
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
esutils: 2.0.3
/@babel/preset-modules/0.1.5_@babel+core@7.16.12:
@@ -7768,7 +8753,7 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.16.12
'@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.16.12
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
esutils: 2.0.3
dev: false
@@ -7781,7 +8766,20 @@ packages:
'@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.17.8
'@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.17.8
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
+ esutils: 2.0.3
+ dev: true
+
+ /@babel/preset-modules/0.1.5_@babel+core@7.21.3:
+ resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/types': 7.21.3
esutils: 2.0.3
/@babel/preset-react/7.16.7_@babel+core@7.17.8:
@@ -7799,6 +8797,21 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.8
dev: true
+ /@babel/preset-react/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.21.3
+ dev: true
+
/@babel/preset-typescript/7.16.7_@babel+core@7.16.12:
resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
engines: {node: '>=6.9.0'}
@@ -7820,22 +8833,35 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.18.9
- '@babel/helper-validator-option': 7.16.7
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
'@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.8
transitivePeerDependencies:
- supports-color
- /@babel/preset-typescript/7.18.6_@babel+core@7.17.8:
+ /@babel/preset-typescript/7.16.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-plugin-utils': 7.18.9
+ '@babel/helper-validator-option': 7.16.7
+ '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/preset-typescript/7.18.6_@babel+core@7.21.3:
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.17.8
+ '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
@@ -7865,6 +8891,20 @@ packages:
pirates: 4.0.5
source-map-support: 0.5.20
+ /@babel/register/7.18.9_@babel+core@7.21.3:
+ resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ clone-deep: 4.0.1
+ find-cache-dir: 2.1.0
+ make-dir: 2.1.0
+ pirates: 4.0.5
+ source-map-support: 0.5.20
+ dev: true
+
/@babel/runtime-corejs2/7.5.5:
resolution: {integrity: sha512-FYATQVR00NSNi7mUfpPDp7E8RYMXDuO8gaix7u/w3GekfUinKgX1AcTxs7SoiEmoEW9mbpjrwqWSW6zCmw5h8A==}
dependencies:
@@ -7896,29 +8936,37 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
/@babel/template/7.18.10:
resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
+
+ /@babel/template/7.20.7:
+ resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
/@babel/traverse/7.17.3:
resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.19.3
+ '@babel/generator': 7.21.3
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -7929,13 +8977,30 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/generator': 7.19.3
+ '@babel/generator': 7.21.3
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.19.0
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-split-export-declaration': 7.18.6
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
+ debug: 4.3.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+
+ /@babel/traverse/7.21.3:
+ resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.21.3
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.21.0
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
@@ -7963,6 +9028,14 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
+ /@babel/types/7.21.3:
+ resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.19.4
+ '@babel/helper-validator-identifier': 7.19.1
+ to-fast-properties: 2.0.0
+
/@base2/pretty-print-object/1.0.1:
resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==}
dev: true
@@ -8023,6 +9096,26 @@ packages:
source-map: 0.5.7
stylis: 4.1.3
+ /@emotion/babel-plugin/11.10.5_@babel+core@7.21.3:
+ resolution: {integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
+ '@babel/runtime': 7.19.0
+ '@emotion/hash': 0.9.0
+ '@emotion/memoize': 0.8.0
+ '@emotion/serialize': 1.1.1
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.8.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.1.3
+ dev: false
+
/@emotion/cache/10.0.29:
resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==}
dependencies:
@@ -8088,6 +9181,22 @@ packages:
'@emotion/sheet': 1.2.1
'@emotion/utils': 1.2.0
+ /@emotion/css/11.7.1_@babel+core@7.21.3:
+ resolution: {integrity: sha512-RUUgPlMZunlc7SE5A6Hg+VWRzb2cU6O9xlV78KCFgcnl25s7Qz/20oQg71iKudpLqk7xj0vhbJlwcJJMT0BOZg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ dependencies:
+ '@babel/core': 7.21.3
+ '@emotion/babel-plugin': 11.10.5_@babel+core@7.21.3
+ '@emotion/cache': 11.10.5
+ '@emotion/serialize': 1.1.1
+ '@emotion/sheet': 1.2.1
+ '@emotion/utils': 1.2.0
+ dev: false
+
/@emotion/hash/0.8.0:
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
@@ -8162,6 +9271,31 @@ packages:
react: 17.0.2
dev: false
+ /@emotion/react/11.10.5_zg7wlf5auq2m3ro2gp4uufjvme:
+ resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/runtime': 7.19.0
+ '@emotion/babel-plugin': 11.10.5_@babel+core@7.21.3
+ '@emotion/cache': 11.10.5
+ '@emotion/serialize': 1.1.1
+ '@emotion/use-insertion-effect-with-fallbacks': 1.0.0_react@17.0.2
+ '@emotion/utils': 1.2.0
+ '@emotion/weak-memoize': 0.3.0
+ '@types/react': 17.0.50
+ hoist-non-react-statics: 3.3.2
+ react: 17.0.2
+ dev: false
+
/@emotion/serialize/0.11.16:
resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==}
dependencies:
@@ -8224,6 +9358,30 @@ packages:
react: 17.0.2
dev: true
+ /@emotion/styled/11.8.1_6t3indjc5ssefvr44gr3wo2uqu:
+ resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ '@emotion/react': ^11.0.0-rc.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/react':
+ optional: true
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/runtime': 7.19.0
+ '@emotion/babel-plugin': 11.10.5_@babel+core@7.21.3
+ '@emotion/is-prop-valid': 1.1.2
+ '@emotion/react': 11.10.5_zg7wlf5auq2m3ro2gp4uufjvme
+ '@emotion/serialize': 1.1.1
+ '@emotion/utils': 1.2.0
+ '@types/react': 17.0.50
+ react: 17.0.2
+ dev: false
+
/@emotion/styled/11.8.1_c2qm47vaialpqni522adyu6za4:
resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==}
peerDependencies:
@@ -9141,7 +10299,7 @@ packages:
resolution: {integrity: sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==}
engines: {node: '>= 6'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/types': 24.9.0
babel-plugin-istanbul: 5.2.0
chalk: 2.4.2
@@ -9165,7 +10323,7 @@ packages:
resolution: {integrity: sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/types': 25.5.0
babel-plugin-istanbul: 6.1.1
chalk: 3.0.0
@@ -9189,7 +10347,7 @@ packages:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/types': 26.6.2
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -9211,7 +10369,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.17.8
+ '@babel/core': 7.21.3
'@jest/types': 27.5.1
babel-plugin-istanbul: 6.1.1
chalk: 4.1.2
@@ -9268,13 +10426,20 @@ packages:
'@types/yargs': 16.0.4
chalk: 4.1.2
+ /@jridgewell/gen-mapping/0.1.1:
+ resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.14
+
/@jridgewell/gen-mapping/0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.2
'@jridgewell/sourcemap-codec': 1.4.14
- '@jridgewell/trace-mapping': 0.3.16
+ '@jridgewell/trace-mapping': 0.3.17
/@jridgewell/resolve-uri/3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
@@ -9293,6 +10458,12 @@ packages:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
+ /@jridgewell/trace-mapping/0.3.17:
+ resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.0
+ '@jridgewell/sourcemap-codec': 1.4.14
+
/@jridgewell/trace-mapping/0.3.9:
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
dependencies:
@@ -10665,7 +11836,7 @@ packages:
'@storybook/node-logger': 6.4.19
'@storybook/postinstall': 6.4.19
'@storybook/preview-web': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
- '@storybook/react': 6.4.19_a55upwwpdj22rf6pemjk4qxjbi
+ '@storybook/react': 6.4.19_eyy24cwvfyikqccjc6kc5n6u7q
'@storybook/source-loader': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/theming': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
@@ -11004,27 +12175,27 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/channel-postmessage': 6.4.19
@@ -11044,9 +12215,9 @@ packages:
'@types/node': 14.14.33
'@types/webpack': 4.41.32
autoprefixer: 9.8.6
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 2.8.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.25.5
css-loader: 3.6.0_webpack@4.46.0
@@ -11097,27 +12268,27 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/channel-postmessage': 6.4.19
@@ -11137,9 +12308,9 @@ packages:
'@types/node': 14.14.33
'@types/webpack': 4.41.32
autoprefixer: 9.8.6
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 2.8.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.25.5
css-loader: 3.6.0_webpack@4.46.0
@@ -11190,27 +12361,27 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/channel-postmessage': 6.4.19
@@ -11230,9 +12401,9 @@ packages:
'@types/node': 14.14.33
'@types/webpack': 4.41.32
autoprefixer: 9.8.6
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 2.8.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.25.5
css-loader: 3.6.0_webpack@4.46.0
@@ -11283,27 +12454,27 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/channel-postmessage': 6.4.19
@@ -11323,9 +12494,9 @@ packages:
'@types/node': 14.14.33
'@types/webpack': 4.41.32
autoprefixer: 9.8.6
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 2.8.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.25.5
css-loader: 3.6.0_webpack@4.46.0
@@ -11376,27 +12547,27 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/api': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/channel-postmessage': 6.4.19
@@ -11416,9 +12587,9 @@ packages:
'@types/node': 14.14.33
'@types/webpack': 4.41.32
autoprefixer: 9.8.6
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 2.8.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
case-sensitive-paths-webpack-plugin: 2.4.0
core-js: 3.25.5
css-loader: 3.6.0_webpack@4.46.0
@@ -11847,34 +13018,34 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8
- '@babel/register': 7.18.9_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.16.7_@babel+core@7.21.3
+ '@babel/register': 7.18.9_@babel+core@7.21.3
'@storybook/node-logger': 6.4.19
'@storybook/semver': 7.3.2
'@types/node': 14.14.33
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
chalk: 4.1.2
core-js: 3.21.1
express: 4.18.1
@@ -11885,7 +13056,7 @@ packages:
glob: 7.2.0
handlebars: 4.7.7
interpret: 2.2.0
- json5: 2.2.0
+ json5: 2.2.3
lazy-universal-dotenv: 3.0.1
picomatch: 2.3.0
pkg-dir: 5.0.0
@@ -11917,34 +13088,34 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8
- '@babel/register': 7.18.9_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-decorators': 7.16.4_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.16.7_@babel+core@7.21.3
+ '@babel/register': 7.18.9_@babel+core@7.21.3
'@storybook/node-logger': 6.4.19
'@storybook/semver': 7.3.2
'@types/node': 14.14.33
'@types/pretty-hrtime': 1.0.1
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
babel-plugin-macros: 3.1.0
- babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.8
+ babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.21.3
chalk: 4.1.2
core-js: 3.21.1
express: 4.18.1
@@ -11955,7 +13126,7 @@ packages:
glob: 7.2.0
handlebars: 4.7.7
interpret: 2.2.0
- json5: 2.2.0
+ json5: 2.2.3
lazy-universal-dotenv: 3.0.1
picomatch: 2.3.0
pkg-dir: 5.0.0
@@ -12542,13 +13713,13 @@ packages:
/@storybook/csf-tools/6.4.19:
resolution: {integrity: sha512-gf/zRhGoAVsFwSyV2tc+jeJfZQkxF6QsaZgbUSe24/IUvGFCT/PS/jZq1qy7dECAwrTOfykgu8juyBtj6WhWyw==}
dependencies:
- '@babel/core': 7.17.8
- '@babel/generator': 7.19.3
- '@babel/parser': 7.19.3
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
'@mdx-js/mdx': 1.6.22
'@storybook/csf': 0.0.2--canary.87bc651.0
core-js: 3.25.5
@@ -12579,9 +13750,9 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/core-client': 6.4.19_4khy3msxr4lnrhwh6cbg2lwt64
'@storybook/core-common': 6.4.19_mqzgkamhc7bbbitv65cxtf4gfa
@@ -12590,7 +13761,7 @@ packages:
'@storybook/ui': 6.4.19_hiunvzosbwliizyirxfy6hjyim
'@types/node': 14.14.33
'@types/webpack': 4.41.32
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.25.5
@@ -12640,9 +13811,9 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/core-client': 6.4.19_lb6j7tllhltqtas2n635xqdotu
'@storybook/core-common': 6.4.19_56jbash75ng5psbctf36wqywr4
@@ -12651,7 +13822,7 @@ packages:
'@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@types/node': 14.14.33
'@types/webpack': 4.41.32
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.25.5
@@ -12701,9 +13872,9 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/core-client': 6.4.19_lb6j7tllhltqtas2n635xqdotu
'@storybook/core-common': 6.4.19_56jbash75ng5psbctf36wqywr4
@@ -12712,7 +13883,7 @@ packages:
'@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@types/node': 14.14.33
'@types/webpack': 4.41.32
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.25.5
@@ -12762,9 +13933,9 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/core-client': 6.4.19_lb6j7tllhltqtas2n635xqdotu
'@storybook/core-common': 6.4.19_mqzgkamhc7bbbitv65cxtf4gfa
@@ -12773,7 +13944,7 @@ packages:
'@storybook/ui': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@types/node': 14.14.33
'@types/webpack': 4.41.32
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.25.5
@@ -12823,9 +13994,9 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
'@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
'@storybook/core-client': 6.4.19_4khy3msxr4lnrhwh6cbg2lwt64
'@storybook/core-common': 6.4.19_mqzgkamhc7bbbitv65cxtf4gfa
@@ -12834,7 +14005,7 @@ packages:
'@storybook/ui': 6.4.19_hiunvzosbwliizyirxfy6hjyim
'@types/node': 14.14.33
'@types/webpack': 4.41.32
- babel-loader: 8.2.3_w4x3pzrj2omidyjy5w3nzug7xy
+ babel-loader: 8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa
case-sensitive-paths-webpack-plugin: 2.4.0
chalk: 4.1.2
core-js: 3.25.5
@@ -12995,71 +14166,6 @@ packages:
- supports-color
dev: true
- /@storybook/react/6.4.19_a55upwwpdj22rf6pemjk4qxjbi:
- resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==}
- engines: {node: '>=10.13.0'}
- hasBin: true
- peerDependencies:
- '@babel/core': ^7.11.5
- react: ^16.8.0 || ^17.0.0
- react-dom: ^16.8.0 || ^17.0.0
- typescript: '*'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- typescript:
- optional: true
- dependencies:
- '@babel/core': 7.17.8
- '@babel/preset-flow': 7.16.7_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
- '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_a3gyllrqvxpec3fpybsrposvju
- '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
- '@storybook/core': 6.4.19_4cb7vxhorbasgfyagprjvpaxzu
- '@storybook/core-common': 6.4.19_56jbash75ng5psbctf36wqywr4
- '@storybook/csf': 0.0.2--canary.87bc651.0
- '@storybook/node-logger': 6.4.19
- '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_lasgyenclx45ngbljrbo537mpe
- '@storybook/semver': 7.3.2
- '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
- '@types/webpack-env': 1.16.3
- babel-plugin-add-react-displayname: 0.0.5
- babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.8
- babel-plugin-react-docgen: 4.2.1
- core-js: 3.21.1
- global: 4.4.0
- lodash: 4.17.21
- prop-types: 15.8.1
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-refresh: 0.11.0
- read-pkg-up: 7.0.1
- regenerator-runtime: 0.13.9
- ts-dedent: 2.2.0
- typescript: 4.8.4
- webpack: 4.46.0
- transitivePeerDependencies:
- - '@storybook/builder-webpack5'
- - '@storybook/manager-webpack5'
- - '@types/react'
- - '@types/webpack'
- - acorn
- - bluebird
- - bufferutil
- - encoding
- - eslint
- - sockjs-client
- - supports-color
- - type-fest
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- - webpack-command
- - webpack-dev-server
- - webpack-hot-middleware
- - webpack-plugin-serve
- dev: true
-
/@storybook/react/6.4.19_cqdgeqmmrux6joug3kc73q4l6m:
resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==}
engines: {node: '>=10.13.0'}
@@ -13125,6 +14231,71 @@ packages:
- webpack-plugin-serve
dev: true
+ /@storybook/react/6.4.19_eyy24cwvfyikqccjc6kc5n6u7q:
+ resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ '@babel/core': ^7.11.5
+ react: ^16.8.0 || ^17.0.0
+ react-dom: ^16.8.0 || ^17.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ typescript:
+ optional: true
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/preset-flow': 7.16.7_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
+ '@pmmmwh/react-refresh-webpack-plugin': 0.5.1_a3gyllrqvxpec3fpybsrposvju
+ '@storybook/addons': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
+ '@storybook/core': 6.4.19_4cb7vxhorbasgfyagprjvpaxzu
+ '@storybook/core-common': 6.4.19_56jbash75ng5psbctf36wqywr4
+ '@storybook/csf': 0.0.2--canary.87bc651.0
+ '@storybook/node-logger': 6.4.19
+ '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_lasgyenclx45ngbljrbo537mpe
+ '@storybook/semver': 7.3.2
+ '@storybook/store': 6.4.19_sfoxds7t5ydpegc3knd667wn6m
+ '@types/webpack-env': 1.16.3
+ babel-plugin-add-react-displayname: 0.0.5
+ babel-plugin-named-asset-import: 0.3.8_@babel+core@7.21.3
+ babel-plugin-react-docgen: 4.2.1
+ core-js: 3.21.1
+ global: 4.4.0
+ lodash: 4.17.21
+ prop-types: 15.8.1
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-refresh: 0.11.0
+ read-pkg-up: 7.0.1
+ regenerator-runtime: 0.13.9
+ ts-dedent: 2.2.0
+ typescript: 4.8.4
+ webpack: 4.46.0
+ transitivePeerDependencies:
+ - '@storybook/builder-webpack5'
+ - '@storybook/manager-webpack5'
+ - '@types/react'
+ - '@types/webpack'
+ - acorn
+ - bluebird
+ - bufferutil
+ - encoding
+ - eslint
+ - sockjs-client
+ - supports-color
+ - type-fest
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ - webpack-command
+ - webpack-dev-server
+ - webpack-hot-middleware
+ - webpack-plugin-serve
+ dev: true
+
/@storybook/react/6.4.19_pjugpuchrb7ea5kuxwnxihy6zq:
resolution: {integrity: sha512-5b3i8jkVrjQGmcxxxXwCduHPIh+cluWkfeweKeQOe+lW4BR8fuUICo3AMLrYPAtB/UcaJyYkIYmTvF2mkfepFA==}
engines: {node: '>=10.13.0'}
@@ -13373,7 +14544,7 @@ packages:
postcss: '>=7.0.0'
postcss-syntax: '>=0.36.2'
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
postcss: 7.0.39
postcss-syntax: 0.36.2_postcss@7.0.39
transitivePeerDependencies:
@@ -13464,14 +14635,14 @@ packages:
resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
dev: true
/@svgr/plugin-jsx/5.5.0:
resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@svgr/babel-preset': 5.5.0
'@svgr/hast-util-to-babel-ast': 5.5.0
svg-parser: 2.0.4
@@ -13492,10 +14663,10 @@ packages:
resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-react': 7.16.7_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-react': 7.16.7_@babel+core@7.21.3
'@svgr/core': 5.5.0
'@svgr/plugin-jsx': 5.5.0
'@svgr/plugin-svgo': 5.5.0
@@ -13661,8 +14832,8 @@ packages:
/@types/babel__core/7.1.16:
resolution: {integrity: sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==}
dependencies:
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
'@types/babel__generator': 7.6.3
'@types/babel__template': 7.4.1
'@types/babel__traverse': 7.14.2
@@ -13670,18 +14841,18 @@ packages:
/@types/babel__generator/7.6.3:
resolution: {integrity: sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@types/babel__template/7.4.1:
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
dependencies:
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
/@types/babel__traverse/7.14.2:
resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
/@types/body-parser/1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
@@ -15200,13 +16371,13 @@ packages:
'@babel/runtime': 7.17.7
dev: true
- /@wordpress/babel-plugin-import-jsx-pragma/2.7.0_@babel+core@7.17.8:
+ /@wordpress/babel-plugin-import-jsx-pragma/2.7.0_@babel+core@7.21.3:
resolution: {integrity: sha512-yR+rSyfHKfevW84vKBOERpjEslD/o00CaYMftywVYOjsOQ8GLS6xv/VgDcpQ8JomJ9eRRInLRpeGKTM3lOa4xQ==}
engines: {node: '>=8'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
dev: true
/@wordpress/babel-plugin-import-jsx-pragma/3.1.0_@babel+core@7.12.9:
@@ -15227,31 +16398,31 @@ packages:
'@babel/core': 7.16.12
dev: false
- /@wordpress/babel-plugin-import-jsx-pragma/3.1.2_@babel+core@7.17.8:
+ /@wordpress/babel-plugin-import-jsx-pragma/3.1.2_@babel+core@7.21.3:
resolution: {integrity: sha512-oMJnM3cJlu1hQMO4XmTFDhNPclj0cLRIeV5Y6uIF/9oNhhSfaMFu+ty0B4zBYodqwes/vbndwRg4j2q2bhG/Dg==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.12.9
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
dev: true
- /@wordpress/babel-plugin-import-jsx-pragma/3.2.0_@babel+core@7.17.8:
+ /@wordpress/babel-plugin-import-jsx-pragma/3.2.0_@babel+core@7.21.3:
resolution: {integrity: sha512-XK3Sdpi9MWoy5qPHnRroY/ypX0VtT5yI5809u5As1P/3k4vlXNw8USH4lJ+rkurAOVqqN5mFlf2XAL9AkpfXyg==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.12.9
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
dev: true
- /@wordpress/babel-plugin-import-jsx-pragma/4.11.0_@babel+core@7.17.8:
+ /@wordpress/babel-plugin-import-jsx-pragma/4.11.0_@babel+core@7.21.3:
resolution: {integrity: sha512-yOK+vnuL9vm5GFwKyQ4SnMfcNBPHN21HeSPEFA7bB+pLT4xwgvdN7CVEYfvoRZbtZna/fMJgBqhhdEKXjlxViw==}
engines: {node: '>=14'}
peerDependencies:
'@babel/core': ^7.12.9
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
dev: false
/@wordpress/babel-preset-default/3.0.2_@babel+core@7.12.9:
@@ -15277,12 +16448,12 @@ packages:
resolution: {integrity: sha512-VKPoC5We2GNxon5umOeZ7NIP4CfP7X5gqslSnNrLW4kD1XgmbVaCs2ISFF8+mObVVb6KAzbaUjI6OWljcUb5UA==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8
- '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.21.3
+ '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
'@babel/runtime': 7.19.0
- '@wordpress/babel-plugin-import-jsx-pragma': 2.7.0_@babel+core@7.17.8
+ '@wordpress/babel-plugin-import-jsx-pragma': 2.7.0_@babel+core@7.21.3
'@wordpress/browserslist-config': 2.7.0
'@wordpress/element': 2.20.3
'@wordpress/warning': 1.4.2
@@ -15295,13 +16466,13 @@ packages:
resolution: {integrity: sha512-mBB1KHWT2vN+maKIPYLQSxhhAzW6CNwYiJNRSNaNBALie9TULe7etrnwoZ1eqPVsuYvBlXB4XKcPaSm3/FW+qQ==}
engines: {node: '>=12'}
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@babel/runtime': 7.19.0
- '@wordpress/babel-plugin-import-jsx-pragma': 3.2.0_@babel+core@7.17.8
+ '@wordpress/babel-plugin-import-jsx-pragma': 3.2.0_@babel+core@7.21.3
'@wordpress/browserslist-config': 4.1.3
'@wordpress/element': 4.20.0
'@wordpress/warning': 2.28.0
@@ -15335,13 +16506,13 @@ packages:
resolution: {integrity: sha512-eqw6u6ndjbseWOQju9TpnXho6eimtGMlfRwPv1kO3yHV7EXDRw0p5MRMmoN29+lSG1b3MtSj6k9XwYNW0YF/qw==}
engines: {node: '>=12'}
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.8
- '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.17.8
- '@babel/preset-env': 7.16.11_@babel+core@7.17.8
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.8
- '@babel/runtime': 7.17.7
- '@wordpress/babel-plugin-import-jsx-pragma': 3.1.2_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.21.3
+ '@babel/plugin-transform-runtime': 7.16.4_@babel+core@7.21.3
+ '@babel/preset-env': 7.16.11_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.16.7_@babel+core@7.21.3
+ '@babel/runtime': 7.19.0
+ '@wordpress/babel-plugin-import-jsx-pragma': 3.1.2_@babel+core@7.21.3
'@wordpress/browserslist-config': 4.1.3
'@wordpress/element': 4.4.1
'@wordpress/warning': 2.6.1
@@ -15355,13 +16526,13 @@ packages:
resolution: {integrity: sha512-nMTVxJAfNTT8fOJfmcFgM1424wyzj/B00J1ulQG3QGYCLCqmXFmfevYepoElEDQrafFNTgvWfUYZs6oTVMrAZQ==}
engines: {node: '>=14'}
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
- '@babel/preset-typescript': 7.18.6_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.21.3
'@babel/runtime': 7.19.0
- '@wordpress/babel-plugin-import-jsx-pragma': 4.11.0_@babel+core@7.17.8
+ '@wordpress/babel-plugin-import-jsx-pragma': 4.11.0_@babel+core@7.21.3
'@wordpress/browserslist-config': 5.11.0
'@wordpress/element': 5.5.0
'@wordpress/warning': 2.28.0
@@ -15394,6 +16565,64 @@ packages:
dependencies:
'@babel/runtime': 7.19.0
+ /@wordpress/block-editor/10.2.0_mtk4wljkd5jimhszw4p7nnxuzm:
+ resolution: {integrity: sha512-9Bxq9hY3WEqodn/K/WSE+PoIwv6jKkKBP0pxXFJTWV1yc8/Np9QHV/7wG7qjztxxgu00FrYF7u8OZyvjPrSNYw==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@react-spring/web': 9.5.5_sfoxds7t5ydpegc3knd667wn6m
+ '@wordpress/a11y': 3.28.0
+ '@wordpress/api-fetch': 6.25.0
+ '@wordpress/blob': 3.28.0
+ '@wordpress/blocks': 11.18.0_react@17.0.2
+ '@wordpress/components': 21.2.0_mtk4wljkd5jimhszw4p7nnxuzm
+ '@wordpress/compose': 5.17.0_react@17.0.2
+ '@wordpress/data': 7.3.0_react@17.0.2
+ '@wordpress/date': 4.28.0
+ '@wordpress/deprecated': 3.28.0
+ '@wordpress/dom': 3.28.0
+ '@wordpress/element': 4.20.0
+ '@wordpress/hooks': 3.28.0
+ '@wordpress/html-entities': 3.28.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/icons': 9.19.0
+ '@wordpress/is-shallow-equal': 4.28.0
+ '@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
+ '@wordpress/keycodes': 3.28.0
+ '@wordpress/notices': 3.28.0_react@17.0.2
+ '@wordpress/rich-text': 5.17.0_react@17.0.2
+ '@wordpress/shortcode': 3.28.0
+ '@wordpress/style-engine': 1.2.0
+ '@wordpress/token-list': 2.28.0
+ '@wordpress/url': 3.29.0
+ '@wordpress/warning': 2.28.0
+ '@wordpress/wordcount': 3.28.0
+ classnames: 2.3.1
+ colord: 2.9.2
+ diff: 4.0.2
+ dom-scroll-into-view: 1.2.1
+ inherits: 2.0.4
+ lodash: 4.17.21
+ react: 17.0.2
+ react-autosize-textarea: 7.1.0_sfoxds7t5ydpegc3knd667wn6m
+ react-dom: 17.0.2_react@17.0.2
+ react-easy-crop: 4.5.1_sfoxds7t5ydpegc3knd667wn6m
+ rememo: 4.0.0
+ remove-accents: 0.4.2
+ traverse: 0.6.6
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/helper-module-imports'
+ - '@babel/types'
+ - '@types/react'
+ - aslemammad-vite-plugin-macro
+ - babel-plugin-macros
+ - vite
+ dev: false
+
/@wordpress/block-editor/10.2.0_vcke6catv4iqpjdw24uwvlzyyi:
resolution: {integrity: sha512-9Bxq9hY3WEqodn/K/WSE+PoIwv6jKkKBP0pxXFJTWV1yc8/Np9QHV/7wG7qjztxxgu00FrYF7u8OZyvjPrSNYw==}
engines: {node: '>=12'}
@@ -15452,7 +16681,7 @@ packages:
- vite
dev: false
- /@wordpress/block-editor/8.6.0_tufdcic6wklrwyy3rhbsbktylu:
+ /@wordpress/block-editor/8.6.0_eqi5qhcxfphl6j3pngzexvnehi:
resolution: {integrity: sha512-Low88BcV7pUSULNytPbO8KWrrMnQA7FnbYW1UOj+GJt+zsYqIleYZccjI5DoFTsXAAKn8RYPytX0i6F6jDM6XQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -15465,7 +16694,7 @@ packages:
'@wordpress/api-fetch': 6.25.0
'@wordpress/blob': 3.28.0
'@wordpress/blocks': 11.18.0_react@17.0.2
- '@wordpress/components': 19.12.0_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.12.0_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/compose': 5.17.0_react@17.0.2
'@wordpress/data': 6.15.0_react@17.0.2
'@wordpress/date': 4.28.0
@@ -15505,6 +16734,60 @@ packages:
- react-with-direction
dev: false
+ /@wordpress/block-editor/9.8.0_mtk4wljkd5jimhszw4p7nnxuzm:
+ resolution: {integrity: sha512-zIPqEysaLFJMnVKU/yCoCEBT3Co9xsa4Ow91T/LI94ll3LeWG/pyiX4PSSQNTx74AqbcNO2p79LVON4FLdu+mQ==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@react-spring/web': 9.5.5_sfoxds7t5ydpegc3knd667wn6m
+ '@wordpress/a11y': 3.28.0
+ '@wordpress/api-fetch': 6.25.0
+ '@wordpress/blob': 3.19.0
+ '@wordpress/blocks': 11.18.0_react@17.0.2
+ '@wordpress/components': 20.0.0_mtk4wljkd5jimhszw4p7nnxuzm
+ '@wordpress/compose': 5.17.0_react@17.0.2
+ '@wordpress/data': 7.3.0_react@17.0.2
+ '@wordpress/date': 4.28.0
+ '@wordpress/deprecated': 3.28.0
+ '@wordpress/dom': 3.28.0
+ '@wordpress/element': 4.20.0
+ '@wordpress/hooks': 3.28.0
+ '@wordpress/html-entities': 3.28.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/icons': 9.19.0
+ '@wordpress/is-shallow-equal': 4.19.0
+ '@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
+ '@wordpress/keycodes': 3.28.0
+ '@wordpress/notices': 3.28.0_react@17.0.2
+ '@wordpress/rich-text': 5.17.0_react@17.0.2
+ '@wordpress/shortcode': 3.19.0
+ '@wordpress/style-engine': 0.15.0
+ '@wordpress/token-list': 2.19.0
+ '@wordpress/url': 3.29.0
+ '@wordpress/warning': 2.28.0
+ '@wordpress/wordcount': 3.19.0
+ change-case: 4.1.2
+ classnames: 2.3.1
+ colord: 2.9.2
+ diff: 4.0.2
+ dom-scroll-into-view: 1.2.1
+ inherits: 2.0.4
+ lodash: 4.17.21
+ react: 17.0.2
+ react-autosize-textarea: 7.1.0_sfoxds7t5ydpegc3knd667wn6m
+ react-dom: 17.0.2_react@17.0.2
+ react-easy-crop: 3.5.3_sfoxds7t5ydpegc3knd667wn6m
+ rememo: 4.0.0
+ remove-accents: 0.4.2
+ traverse: 0.6.6
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@types/react'
+ dev: false
+
/@wordpress/block-editor/9.8.0_vcke6catv4iqpjdw24uwvlzyyi:
resolution: {integrity: sha512-zIPqEysaLFJMnVKU/yCoCEBT3Co9xsa4Ow91T/LI94ll3LeWG/pyiX4PSSQNTx74AqbcNO2p79LVON4FLdu+mQ==}
engines: {node: '>=12'}
@@ -15532,7 +16815,7 @@ packages:
'@wordpress/is-shallow-equal': 4.19.0
'@wordpress/keyboard-shortcuts': 3.17.0_react@17.0.2
'@wordpress/keycodes': 3.28.0
- '@wordpress/notices': 3.19.0_react@17.0.2
+ '@wordpress/notices': 3.28.0_react@17.0.2
'@wordpress/rich-text': 5.17.0_react@17.0.2
'@wordpress/shortcode': 3.19.0
'@wordpress/style-engine': 0.15.0
@@ -15585,7 +16868,7 @@ packages:
'@wordpress/i18n': 4.28.0
'@wordpress/icons': 9.19.0
'@wordpress/keycodes': 3.28.0
- '@wordpress/notices': 3.19.0_react@17.0.2
+ '@wordpress/notices': 3.28.0_react@17.0.2
'@wordpress/primitives': 3.17.0
'@wordpress/reusable-blocks': 3.17.0_vcke6catv4iqpjdw24uwvlzyyi
'@wordpress/rich-text': 5.17.0_react@17.0.2
@@ -15701,6 +16984,60 @@ packages:
engines: {node: '>=14'}
dev: false
+ /@wordpress/components/19.12.0_eqi5qhcxfphl6j3pngzexvnehi:
+ resolution: {integrity: sha512-Ac1+aIMM7NDgN3G7i5kcaETSvZfeqB4U6PubApPmM6FdBF5VfkYUZeqNcC7cuJdveyokRrqHg11/l+DcJGA7/g==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@emotion/cache': 11.10.5
+ '@emotion/css': 11.7.1_@babel+core@7.21.3
+ '@emotion/react': 11.10.5_zg7wlf5auq2m3ro2gp4uufjvme
+ '@emotion/serialize': 1.1.1
+ '@emotion/styled': 11.8.1_6t3indjc5ssefvr44gr3wo2uqu
+ '@emotion/utils': 1.0.0
+ '@floating-ui/react-dom': 0.6.3_hiunvzosbwliizyirxfy6hjyim
+ '@use-gesture/react': 10.2.10_react@17.0.2
+ '@wordpress/a11y': 3.28.0
+ '@wordpress/compose': 5.17.0_react@17.0.2
+ '@wordpress/date': 4.28.0
+ '@wordpress/deprecated': 3.28.0
+ '@wordpress/dom': 3.28.0
+ '@wordpress/element': 4.20.0
+ '@wordpress/escape-html': 2.28.0
+ '@wordpress/hooks': 3.28.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/icons': 9.19.0
+ '@wordpress/is-shallow-equal': 4.28.0
+ '@wordpress/keycodes': 3.28.0
+ '@wordpress/primitives': 3.26.0
+ '@wordpress/rich-text': 5.17.0_react@17.0.2
+ '@wordpress/warning': 2.28.0
+ classnames: 2.3.1
+ colord: 2.9.2
+ dom-scroll-into-view: 1.2.1
+ downshift: 6.1.12_react@17.0.2
+ framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m
+ gradient-parser: 0.1.5
+ highlight-words-core: 1.2.2
+ lodash: 4.17.21
+ memize: 1.1.0
+ moment: 2.29.4
+ re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m
+ react-dates: 21.8.0_nquzpvbbca3w4vywjbffgfreli
+ react-dom: 17.0.2_react@17.0.2
+ reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@types/react'
+ - react-with-direction
+ dev: false
+
/@wordpress/components/19.12.0_tufdcic6wklrwyy3rhbsbktylu:
resolution: {integrity: sha512-Ac1+aIMM7NDgN3G7i5kcaETSvZfeqB4U6PubApPmM6FdBF5VfkYUZeqNcC7cuJdveyokRrqHg11/l+DcJGA7/g==}
engines: {node: '>=12'}
@@ -15809,6 +17146,60 @@ packages:
- react-with-direction
dev: false
+ /@wordpress/components/19.8.5_eqi5qhcxfphl6j3pngzexvnehi:
+ resolution: {integrity: sha512-36d8fSk/nWfNv2nEZrC2gLx1rN9rGWFt425yXoH6JiakDvdXacN/04xcxZGBRkS+JDz6v22uyPMEol9TzwXOLg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@emotion/cache': 11.10.5
+ '@emotion/css': 11.7.1_@babel+core@7.21.3
+ '@emotion/react': 11.10.5_zg7wlf5auq2m3ro2gp4uufjvme
+ '@emotion/serialize': 1.1.1
+ '@emotion/styled': 11.8.1_6t3indjc5ssefvr44gr3wo2uqu
+ '@emotion/utils': 1.0.0
+ '@use-gesture/react': 10.2.10_react@17.0.2
+ '@wordpress/a11y': 3.6.1
+ '@wordpress/compose': 5.4.1_react@17.0.2
+ '@wordpress/date': 4.6.1
+ '@wordpress/deprecated': 3.6.1
+ '@wordpress/dom': 3.6.1
+ '@wordpress/element': 4.4.1
+ '@wordpress/escape-html': 2.28.0
+ '@wordpress/hooks': 3.6.1
+ '@wordpress/i18n': 4.6.1
+ '@wordpress/icons': 8.2.3
+ '@wordpress/is-shallow-equal': 4.28.0
+ '@wordpress/keycodes': 3.6.1
+ '@wordpress/primitives': 3.4.1
+ '@wordpress/rich-text': 5.4.2_react@17.0.2
+ '@wordpress/warning': 2.6.1
+ classnames: 2.3.1
+ colord: 2.9.2
+ dom-scroll-into-view: 1.2.1
+ downshift: 6.1.12_react@17.0.2
+ framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m
+ gradient-parser: 0.1.5
+ highlight-words-core: 1.2.2
+ lodash: 4.17.21
+ memize: 1.1.0
+ moment: 2.29.4
+ re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m
+ react-dates: 17.2.0_mbqv3i57zshgl3mhyvv367ttdu
+ react-dom: 17.0.2_react@17.0.2
+ react-resize-aware: 3.1.1_react@17.0.2
+ reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@types/react'
+ - react-with-direction
+ dev: false
+
/@wordpress/components/19.8.5_ivjkhzvx5dt6opkkf6frl2zoam:
resolution: {integrity: sha512-36d8fSk/nWfNv2nEZrC2gLx1rN9rGWFt425yXoH6JiakDvdXacN/04xcxZGBRkS+JDz6v22uyPMEol9TzwXOLg==}
engines: {node: '>=12'}
@@ -15971,6 +17362,61 @@ packages:
- react-with-direction
dev: false
+ /@wordpress/components/20.0.0_mtk4wljkd5jimhszw4p7nnxuzm:
+ resolution: {integrity: sha512-RBPjtGLSoiV5YKhrBYh+/X8LbzbA99BJaB4Q+P0e1rVOwGzeBF3M7YEjmg1PrrzWaItqJZTvDoyZo+ql7c0KfA==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@emotion/cache': 11.10.5
+ '@emotion/css': 11.7.1_@babel+core@7.21.3
+ '@emotion/react': 11.10.5_zg7wlf5auq2m3ro2gp4uufjvme
+ '@emotion/serialize': 1.1.1
+ '@emotion/styled': 11.8.1_6t3indjc5ssefvr44gr3wo2uqu
+ '@emotion/utils': 1.2.0
+ '@floating-ui/react-dom': 1.0.0_sfoxds7t5ydpegc3knd667wn6m
+ '@use-gesture/react': 10.2.10_react@17.0.2
+ '@wordpress/a11y': 3.28.0
+ '@wordpress/compose': 5.17.0_react@17.0.2
+ '@wordpress/date': 4.28.0
+ '@wordpress/deprecated': 3.28.0
+ '@wordpress/dom': 3.28.0
+ '@wordpress/element': 4.20.0
+ '@wordpress/escape-html': 2.28.0
+ '@wordpress/hooks': 3.28.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/icons': 9.19.0
+ '@wordpress/is-shallow-equal': 4.28.0
+ '@wordpress/keycodes': 3.28.0
+ '@wordpress/primitives': 3.26.0
+ '@wordpress/rich-text': 5.17.0_react@17.0.2
+ '@wordpress/warning': 2.28.0
+ change-case: 4.1.2
+ classnames: 2.3.1
+ colord: 2.9.2
+ date-fns: 2.29.3
+ dom-scroll-into-view: 1.2.1
+ downshift: 6.1.12_react@17.0.2
+ framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m
+ gradient-parser: 0.1.5
+ highlight-words-core: 1.2.2
+ lodash: 4.17.21
+ memize: 1.1.0
+ re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m
+ react-dom: 17.0.2_react@17.0.2
+ reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m
+ remove-accents: 0.4.2
+ use-lilius: 2.0.3_sfoxds7t5ydpegc3knd667wn6m
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@types/react'
+ dev: false
+
/@wordpress/components/20.0.0_vcke6catv4iqpjdw24uwvlzyyi:
resolution: {integrity: sha512-RBPjtGLSoiV5YKhrBYh+/X8LbzbA99BJaB4Q+P0e1rVOwGzeBF3M7YEjmg1PrrzWaItqJZTvDoyZo+ql7c0KfA==}
engines: {node: '>=12'}
@@ -16025,6 +17471,67 @@ packages:
- '@babel/core'
- '@types/react'
+ /@wordpress/components/21.2.0_mtk4wljkd5jimhszw4p7nnxuzm:
+ resolution: {integrity: sha512-pYz+EY+Tv/O2JuDBXpaFH/zv9Evty/e6NOGjOzddSeaShZ/mCq2DpUSWPuTFBEAjtv6h9HnpkakbNnEeio5yNA==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@emotion/cache': 11.10.5
+ '@emotion/css': 11.7.1_@babel+core@7.21.3
+ '@emotion/react': 11.10.5_zg7wlf5auq2m3ro2gp4uufjvme
+ '@emotion/serialize': 1.1.1
+ '@emotion/styled': 11.8.1_6t3indjc5ssefvr44gr3wo2uqu
+ '@emotion/utils': 1.2.0
+ '@floating-ui/react-dom': 1.0.0_sfoxds7t5ydpegc3knd667wn6m
+ '@use-gesture/react': 10.2.10_react@17.0.2
+ '@wordpress/a11y': 3.28.0
+ '@wordpress/compose': 5.17.0_react@17.0.2
+ '@wordpress/date': 4.28.0
+ '@wordpress/deprecated': 3.28.0
+ '@wordpress/dom': 3.28.0
+ '@wordpress/element': 4.20.0
+ '@wordpress/escape-html': 2.28.0
+ '@wordpress/hooks': 3.28.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/icons': 9.19.0
+ '@wordpress/is-shallow-equal': 4.28.0
+ '@wordpress/keycodes': 3.28.0
+ '@wordpress/primitives': 3.26.0
+ '@wordpress/rich-text': 5.17.0_react@17.0.2
+ '@wordpress/warning': 2.28.0
+ change-case: 4.1.2
+ classnames: 2.3.1
+ colord: 2.9.2
+ date-fns: 2.29.3
+ dom-scroll-into-view: 1.2.1
+ downshift: 6.1.12_react@17.0.2
+ framer-motion: 6.2.8_sfoxds7t5ydpegc3knd667wn6m
+ gradient-parser: 0.1.5
+ highlight-words-core: 1.2.2
+ lodash: 4.17.21
+ memize: 1.1.0
+ re-resizable: 6.9.5_sfoxds7t5ydpegc3knd667wn6m
+ react: 17.0.2
+ react-colorful: 5.5.1_sfoxds7t5ydpegc3knd667wn6m
+ react-dom: 17.0.2_react@17.0.2
+ reakit: 1.3.11_sfoxds7t5ydpegc3knd667wn6m
+ remove-accents: 0.4.2
+ use-lilius: 2.0.3_sfoxds7t5ydpegc3knd667wn6m
+ uuid: 8.3.2
+ valtio: 1.7.2_react@17.0.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/helper-module-imports'
+ - '@babel/types'
+ - '@types/react'
+ - aslemammad-vite-plugin-macro
+ - babel-plugin-macros
+ - vite
+ dev: false
+
/@wordpress/components/21.2.0_vcke6catv4iqpjdw24uwvlzyyi:
resolution: {integrity: sha512-pYz+EY+Tv/O2JuDBXpaFH/zv9Evty/e6NOGjOzddSeaShZ/mCq2DpUSWPuTFBEAjtv6h9HnpkakbNnEeio5yNA==}
engines: {node: '>=12'}
@@ -16166,7 +17673,6 @@ packages:
mousetrap: 1.6.5
react: 17.0.2
use-memo-one: 1.1.2_react@17.0.2
- dev: false
/@wordpress/core-data/4.4.5_react@17.0.2:
resolution: {integrity: sha512-vhMbz/Q3xEMWTSFMs0D6n93qFSOhUZr/EgtRhLGRHdjskfgegFTlx13HrhDZ+U3xzkv1b8mH1klk4aZX+f0B8Q==}
@@ -16375,7 +17881,6 @@ packages:
redux: 4.2.0
turbo-combine-reducers: 1.0.2
use-memo-one: 1.1.2_react@17.0.2
- dev: false
/@wordpress/date/4.28.0:
resolution: {integrity: sha512-NtKVryepjrYIKS1gRubCtJhcT++3KtiHuf9w1nNWnbY0Onk0pMQUXkZyVL2Bk1EZ3ylUx6S6k/TLOv0QVPxgzA==}
@@ -16525,7 +18030,7 @@ packages:
- encoding
dev: false
- /@wordpress/editor/12.5.10_tufdcic6wklrwyy3rhbsbktylu:
+ /@wordpress/editor/12.5.10_eqi5qhcxfphl6j3pngzexvnehi:
resolution: {integrity: sha512-FEgNLDRAtOjGrXXNUXWucf3zMfM1rWCgc/eQrJFwj0atWGJmqQERvmF4H4jeUO6gqetOHmnko38fLVAnE7QWYw==}
engines: {node: '>=12'}
peerDependencies:
@@ -16535,9 +18040,9 @@ packages:
'@babel/runtime': 7.19.0
'@wordpress/a11y': 3.6.1
'@wordpress/api-fetch': 6.3.1
- '@wordpress/block-editor': 8.6.0_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/block-editor': 8.6.0_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/blocks': 11.18.0_react@17.0.2
- '@wordpress/components': 19.8.5_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.8.5_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/compose': 5.4.1_react@17.0.2
'@wordpress/core-data': 4.4.5_react@17.0.2
'@wordpress/data': 6.6.1_react@17.0.2
@@ -16552,10 +18057,10 @@ packages:
'@wordpress/keycodes': 3.6.1
'@wordpress/media-utils': 3.4.1
'@wordpress/notices': 3.6.1_react@17.0.2
- '@wordpress/preferences': 1.3.0_tufdcic6wklrwyy3rhbsbktylu
- '@wordpress/reusable-blocks': 3.17.0_vcke6catv4iqpjdw24uwvlzyyi
+ '@wordpress/preferences': 1.3.0_eqi5qhcxfphl6j3pngzexvnehi
+ '@wordpress/reusable-blocks': 3.17.0_mtk4wljkd5jimhszw4p7nnxuzm
'@wordpress/rich-text': 5.4.2_react@17.0.2
- '@wordpress/server-side-render': 3.17.0_vcke6catv4iqpjdw24uwvlzyyi
+ '@wordpress/server-side-render': 3.17.0_mtk4wljkd5jimhszw4p7nnxuzm
'@wordpress/url': 3.7.1
'@wordpress/wordcount': 3.28.0
classnames: 2.3.1
@@ -16804,7 +18309,7 @@ packages:
- typescript
dev: true
- /@wordpress/eslint-plugin/9.3.0_gvdiv7jt74qfcmw4bmvrh4kane:
+ /@wordpress/eslint-plugin/9.3.0_3xe5tjvuvwwvrozjb6pk7ussfi:
resolution: {integrity: sha512-9F7B60gHAjiTIi9vBw5ZoH0MZW3UnmbuKols4kWpJVdgsvG4X1Wj6XXTLmQKrzh/Em7mD1CCIbCSyWknEzIOLw==}
engines: {node: '>=12', npm: '>=6.9'}
peerDependencies:
@@ -16814,7 +18319,7 @@ packages:
typescript:
optional: true
dependencies:
- '@babel/eslint-parser': 7.17.0_xujkgafwcpm5gwokncqwvv5ure
+ '@babel/eslint-parser': 7.17.0_xrfyhdkbwxl52yb52lr5ltkqvm
'@typescript-eslint/eslint-plugin': 4.33.0_k4l66av2tbo6kxzw52jzgbfzii
'@typescript-eslint/parser': 4.33.0_yygwinqv3a2io74xmwofqb7uka
'@wordpress/prettier-config': 1.1.3
@@ -16955,7 +18460,7 @@ packages:
'@wordpress/element': 5.5.0
'@wordpress/primitives': 3.26.0
- /@wordpress/interface/4.5.6_tufdcic6wklrwyy3rhbsbktylu:
+ /@wordpress/interface/4.5.6_eqi5qhcxfphl6j3pngzexvnehi:
resolution: {integrity: sha512-Sige1gYGJOvD7UvKIUA4VCezFOxr157NCSQXn8/x2krjKybJzemI07ZJcTApawEYW0gutZbBizoUzaR8YLiiVA==}
engines: {node: '>=12'}
peerDependencies:
@@ -16964,7 +18469,7 @@ packages:
dependencies:
'@babel/runtime': 7.19.0
'@wordpress/a11y': 3.6.1
- '@wordpress/components': 19.8.5_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.8.5_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/compose': 5.4.1_react@17.0.2
'@wordpress/data': 6.6.1_react@17.0.2
'@wordpress/deprecated': 3.6.1
@@ -16972,7 +18477,7 @@ packages:
'@wordpress/i18n': 4.6.1
'@wordpress/icons': 8.2.3
'@wordpress/plugins': 4.4.3_react@17.0.2
- '@wordpress/preferences': 1.3.0_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/preferences': 1.3.0_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/viewport': 4.4.1_react@17.0.2
classnames: 2.3.1
lodash: 4.17.21
@@ -17075,7 +18580,7 @@ packages:
- supports-color
dev: true
- /@wordpress/jest-preset-default/7.1.3_3kt4xu3sgkhoqdvxwcvxppk7nm:
+ /@wordpress/jest-preset-default/7.1.3_32bilwwi7li3aoepmefcbmhmcy:
resolution: {integrity: sha512-rz9V/YRr3TjLdZJQu7DAZHo848PpZ4N5ThtP4Lujy1O/UtcvtKF0r34SZTNDlFQO/G1USZQX/WL6HRhgl57iHA==}
engines: {node: '>=12'}
peerDependencies:
@@ -17083,7 +18588,7 @@ packages:
dependencies:
'@wojtekmaj/enzyme-adapter-react-17': 0.6.6_7ltvq4e2railvf5uya4ffxpe2a
'@wordpress/jest-console': 4.1.1_jest@26.6.3
- babel-jest: 26.6.3_@babel+core@7.17.8
+ babel-jest: 26.6.3_@babel+core@7.21.3
enzyme: 3.11.0
enzyme-to-json: 3.6.2_enzyme@3.11.0
jest: 26.6.3
@@ -17207,17 +18712,6 @@ packages:
lodash: 4.17.21
dev: false
- /@wordpress/notices/3.19.0_react@17.0.2:
- resolution: {integrity: sha512-NXL5fpfUHPYd1AA9mq0e5xubBzRg1KblR0hXpzV7GBWf2ohM/417HJkBfbzC3HLONMkmuoWR0T9WexYP26qQqw==}
- engines: {node: '>=12'}
- peerDependencies:
- react: ^17.0.0
- dependencies:
- '@babel/runtime': 7.19.0
- '@wordpress/a11y': 3.28.0
- '@wordpress/data': 7.3.0_react@17.0.2
- react: 17.0.2
-
/@wordpress/notices/3.28.0_react@17.0.2:
resolution: {integrity: sha512-XftApWHyLlf2vq6FLYiqACoG4CxDsRqc6zQSjOA5UHQooVPbSsbYXl4eadloPtMnJohlzjzvb0SEIafjMyxjCA==}
engines: {node: '>=12'}
@@ -17227,7 +18721,6 @@ packages:
'@wordpress/data': 8.5.0_react@17.0.2
transitivePeerDependencies:
- react
- dev: false
/@wordpress/notices/3.6.1_react@17.0.2:
resolution: {integrity: sha512-S+hOO+4NJJzaqcqm+XPa6uuvt/pkYjRz20HK3xt8Srb+HjO87D3X5feYGQMxEx5ueJl72+5/uOZwmXKJR4pzog==}
@@ -17311,7 +18804,7 @@ packages:
/@wordpress/postcss-themes/1.0.5:
resolution: {integrity: sha512-Oig71+VQG3UxLadd98oWMQfIqWrVY+G375/yKCHRklwEIZhKtAeK7qZlL1dEjdGPGvPXFeggB7KG5SGyrmdOZA==}
dependencies:
- '@babel/runtime': 7.17.7
+ '@babel/runtime': 7.19.0
autoprefixer: 8.6.5
postcss: 6.0.23
postcss-color-function: 4.1.0
@@ -17326,7 +18819,7 @@ packages:
postcss: 7.0.39
dev: true
- /@wordpress/preferences/1.3.0_tufdcic6wklrwyy3rhbsbktylu:
+ /@wordpress/preferences/1.3.0_eqi5qhcxfphl6j3pngzexvnehi:
resolution: {integrity: sha512-2ACfz6LkQY2oAcEgTVpkfpasywo/nSmN5jbpT2gNoF/W/RCFBso+VDyuLsfpJ1INbbq+6pPKLccLBWYAvwuFdA==}
engines: {node: '>=12'}
peerDependencies:
@@ -17335,7 +18828,7 @@ packages:
dependencies:
'@babel/runtime': 7.19.0
'@wordpress/a11y': 3.28.0
- '@wordpress/components': 19.12.0_tufdcic6wklrwyy3rhbsbktylu
+ '@wordpress/components': 19.12.0_eqi5qhcxfphl6j3pngzexvnehi
'@wordpress/data': 6.15.0_react@17.0.2
'@wordpress/i18n': 4.28.0
'@wordpress/icons': 8.4.0
@@ -17433,7 +18926,6 @@ packages:
engines: {node: '>=12'}
dependencies:
'@babel/runtime': 7.19.0
- dev: false
/@wordpress/react-i18n/3.8.0:
resolution: {integrity: sha512-5jg7DY05jCWfzCZRt+VCT4cKn6mCZwQhQlJIApcuzUGT51tlLk/BwyxBMfnn5ZT5IVSp9YxedExycohNPXEPjg==}
@@ -17466,6 +18958,35 @@ packages:
redux: 4.2.0
rungen: 0.3.2
+ /@wordpress/reusable-blocks/3.17.0_mtk4wljkd5jimhszw4p7nnxuzm:
+ resolution: {integrity: sha512-7ZfhtpWGvtT7xWqY/mCwC93zFHTVPQf8SZRjy2jAhcl7RNY6KZpW82rMRKNROEKJ4cYbTOMMf7WL2ulYi6cNFw==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@wordpress/block-editor': 10.2.0_mtk4wljkd5jimhszw4p7nnxuzm
+ '@wordpress/blocks': 11.18.0_react@17.0.2
+ '@wordpress/components': 21.2.0_mtk4wljkd5jimhszw4p7nnxuzm
+ '@wordpress/core-data': 5.2.0_react@17.0.2
+ '@wordpress/data': 7.3.0_react@17.0.2
+ '@wordpress/element': 4.20.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/icons': 9.19.0
+ '@wordpress/notices': 3.28.0_react@17.0.2
+ '@wordpress/url': 3.29.0
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/helper-module-imports'
+ - '@babel/types'
+ - '@types/react'
+ - aslemammad-vite-plugin-macro
+ - babel-plugin-macros
+ - vite
+ dev: false
+
/@wordpress/reusable-blocks/3.17.0_vcke6catv4iqpjdw24uwvlzyyi:
resolution: {integrity: sha512-7ZfhtpWGvtT7xWqY/mCwC93zFHTVPQf8SZRjy2jAhcl7RNY6KZpW82rMRKNROEKJ4cYbTOMMf7WL2ulYi6cNFw==}
engines: {node: '>=12'}
@@ -17600,7 +19121,7 @@ packages:
- webpack-command
dev: true
- /@wordpress/scripts/19.2.4_f7x7zdz3ccrnqxb4utvdtwqz4e:
+ /@wordpress/scripts/19.2.4_ew4zquq24ctm7afg5tumlrriou:
resolution: {integrity: sha512-klkfjBOPfr/RT/3Tvmx+gLbZ+dxq5L0dJQHCHxEURMRW/A8SfJJPtmC29L9sE1KhO3zUMWxrkn2L6HhSzbvQbA==}
engines: {node: '>=12.13', npm: '>=6.9'}
hasBin: true
@@ -17609,14 +19130,14 @@ packages:
'@wordpress/babel-preset-default': 6.6.1
'@wordpress/browserslist-config': 4.1.3
'@wordpress/dependency-extraction-webpack-plugin': 3.4.1_webpack@5.70.0
- '@wordpress/eslint-plugin': 9.3.0_gvdiv7jt74qfcmw4bmvrh4kane
- '@wordpress/jest-preset-default': 7.1.3_3kt4xu3sgkhoqdvxwcvxppk7nm
+ '@wordpress/eslint-plugin': 9.3.0_3xe5tjvuvwwvrozjb6pk7ussfi
+ '@wordpress/jest-preset-default': 7.1.3_32bilwwi7li3aoepmefcbmhmcy
'@wordpress/npm-package-json-lint-config': 4.2.0_ngbyqqcq5j4itme2ewj5k5pf2y
'@wordpress/postcss-plugins-preset': 3.10.0_postcss@8.4.12
'@wordpress/prettier-config': 1.1.3
'@wordpress/stylelint-config': 19.1.0_stylelint@13.13.1
- babel-jest: 26.6.3_@babel+core@7.17.8
- babel-loader: 8.2.3_7kihywspc3gmje7ccze4zrmvoq
+ babel-jest: 26.6.3_@babel+core@7.21.3
+ babel-loader: 8.2.3_wxlqalhv5b6426466bgbroq3uq
browserslist: 4.20.4
chalk: 4.1.2
check-node-version: 4.2.1
@@ -17684,6 +19205,36 @@ packages:
- webpack-dev-server
dev: true
+ /@wordpress/server-side-render/3.17.0_mtk4wljkd5jimhszw4p7nnxuzm:
+ resolution: {integrity: sha512-yJBM1hLl6n9w9X17deSsUc2Fbt/eBKDw2pzwbiPalKUGjP5RSKflzVb1uOwSr+KDUPo4vHj1hwkqO+RHssHHRg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ react: ^17.0.0
+ react-dom: ^17.0.0
+ dependencies:
+ '@babel/runtime': 7.19.0
+ '@wordpress/api-fetch': 6.25.0
+ '@wordpress/blocks': 11.18.0_react@17.0.2
+ '@wordpress/components': 21.2.0_mtk4wljkd5jimhszw4p7nnxuzm
+ '@wordpress/compose': 5.17.0_react@17.0.2
+ '@wordpress/data': 7.3.0_react@17.0.2
+ '@wordpress/deprecated': 3.28.0
+ '@wordpress/element': 4.20.0
+ '@wordpress/i18n': 4.28.0
+ '@wordpress/url': 3.29.0
+ lodash: 4.17.21
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/helper-module-imports'
+ - '@babel/types'
+ - '@types/react'
+ - aslemammad-vite-plugin-macro
+ - babel-plugin-macros
+ - vite
+ dev: false
+
/@wordpress/server-side-render/3.17.0_vcke6catv4iqpjdw24uwvlzyyi:
resolution: {integrity: sha512-yJBM1hLl6n9w9X17deSsUc2Fbt/eBKDw2pzwbiPalKUGjP5RSKflzVb1uOwSr+KDUPo4vHj1hwkqO+RHssHHRg==}
engines: {node: '>=12'}
@@ -18740,9 +20291,9 @@ packages:
eslint: '>= 4.12.1'
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/parser': 7.19.3
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/parser': 7.21.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
eslint: 7.32.0
eslint-visitor-keys: 1.3.0
resolve: 1.22.1
@@ -18800,18 +20351,18 @@ packages:
babel-types: 6.26.0
dev: true
- /babel-jest/24.9.0_@babel+core@7.17.8:
+ /babel-jest/24.9.0_@babel+core@7.21.3:
resolution: {integrity: sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==}
engines: {node: '>= 6'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/transform': 24.9.0
'@jest/types': 24.9.0
'@types/babel__core': 7.1.16
babel-plugin-istanbul: 5.2.0
- babel-preset-jest: 24.9.0_@babel+core@7.17.8
+ babel-preset-jest: 24.9.0_@babel+core@7.21.3
chalk: 2.4.2
slash: 2.0.0
transitivePeerDependencies:
@@ -18837,6 +20388,25 @@ packages:
- supports-color
dev: true
+ /babel-jest/25.5.1_@babel+core@7.21.3:
+ resolution: {integrity: sha512-9dA9+GmMjIzgPnYtkhBg73gOo/RHqPmLruP3BaGL4KEX3Dwz6pI8auSN8G8+iuEG90+GSswyKvslN+JYSaacaQ==}
+ engines: {node: '>= 8.3'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@jest/transform': 25.5.1
+ '@jest/types': 25.5.0
+ '@types/babel__core': 7.1.16
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 25.5.0_@babel+core@7.21.3
+ chalk: 3.0.0
+ graceful-fs: 4.2.9
+ 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'}
@@ -18856,18 +20426,18 @@ packages:
- supports-color
dev: false
- /babel-jest/26.6.3_@babel+core@7.17.8:
+ /babel-jest/26.6.3_@babel+core@7.21.3:
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.17.8
+ '@babel/core': 7.21.3
'@jest/transform': 26.6.2
'@jest/types': 26.6.2
'@types/babel__core': 7.1.16
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 26.6.2_@babel+core@7.17.8
+ babel-preset-jest: 26.6.2_@babel+core@7.21.3
chalk: 4.1.2
graceful-fs: 4.2.9
slash: 3.0.0
@@ -18892,6 +20462,25 @@ packages:
slash: 3.0.0
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /babel-jest/27.5.1_@babel+core@7.21.3:
+ 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.21.3
+ '@jest/transform': 27.5.1
+ '@jest/types': 27.5.1
+ '@types/babel__core': 7.1.16
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 27.5.1_@babel+core@7.21.3
+ chalk: 4.1.2
+ graceful-fs: 4.2.9
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
/babel-loader/8.2.3_2p3p4wasefxeg63hu27rmsqfnq:
resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
@@ -18938,6 +20527,36 @@ packages:
webpack: 4.46.0_webpack-cli@3.3.12
dev: true
+ /babel-loader/8.2.3_wxlqalhv5b6426466bgbroq3uq:
+ resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
+ engines: {node: '>= 8.9'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ dependencies:
+ '@babel/core': 7.21.3
+ find-cache-dir: 3.3.2
+ loader-utils: 1.4.0
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 5.70.0_bgqcrdgdviybk52kjcpjat65sa
+ dev: true
+
+ /babel-loader/8.2.3_y3c3uzyfhmxjbwhc6k6hyxg3aa:
+ resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
+ engines: {node: '>= 8.9'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ webpack: '>=2'
+ dependencies:
+ '@babel/core': 7.21.3
+ find-cache-dir: 3.3.2
+ loader-utils: 1.4.0
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 4.46.0
+ dev: true
+
/babel-messages/6.23.0:
resolution: {integrity: sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=}
dependencies:
@@ -19019,8 +20638,8 @@ packages:
resolution: {integrity: sha512-u+/W+WAjMlvoocYGTwthAiQSxDcJAyHpQ6oWlHdFZaaN+Rlk8Q7iiwDPg2lN/FyJtAYnKjFxbn7xus4HCFkg5g==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/types': 7.21.3
'@types/babel__traverse': 7.14.2
dev: true
@@ -19028,8 +20647,8 @@ packages:
resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/types': 7.21.3
'@types/babel__core': 7.1.16
'@types/babel__traverse': 7.14.2
@@ -19037,8 +20656,8 @@ packages:
resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
dependencies:
- '@babel/template': 7.18.10
- '@babel/types': 7.19.3
+ '@babel/template': 7.20.7
+ '@babel/types': 7.21.3
'@types/babel__core': 7.1.16
'@types/babel__traverse': 7.14.2
@@ -19066,12 +20685,20 @@ packages:
'@babel/core': 7.17.8
dev: true
+ /babel-plugin-named-asset-import/0.3.8_@babel+core@7.21.3:
+ resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==}
+ peerDependencies:
+ '@babel/core': ^7.1.0
+ dependencies:
+ '@babel/core': 7.21.3
+ dev: true
+
/babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.12.9:
resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.12.9
semver: 6.3.0
@@ -19084,7 +20711,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.16.12
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.16.12
semver: 6.3.0
@@ -19092,14 +20719,14 @@ packages:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.17.8:
+ /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.21.3:
resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
- '@babel/core': 7.17.8
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.8
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -19110,24 +20737,50 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.12.9
semver: 6.3.0
transitivePeerDependencies:
- supports-color
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.16.12:
+ resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.16.12
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.16.12
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.17.8:
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/compat-data': 7.19.3
+ '@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
'@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.8
semver: 6.3.0
transitivePeerDependencies:
- supports-color
+ dev: true
+
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.3:
+ resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.21.0
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
/babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.17.8:
resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
@@ -19141,6 +20794,18 @@ packages:
- supports-color
dev: true
+ /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.21.3:
+ resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.21.3
+ core-js-compat: 3.25.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.12.9:
resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==}
peerDependencies:
@@ -19165,13 +20830,13 @@ packages:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.17.8:
+ /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.21.3:
resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
core-js-compat: 3.25.5
transitivePeerDependencies:
- supports-color
@@ -19213,6 +20878,18 @@ packages:
- supports-color
dev: true
+ /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.21.3:
+ resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ core-js-compat: 3.25.5
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.12.9:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
@@ -19224,13 +20901,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.17.8:
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.3:
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
core-js-compat: 3.25.5
transitivePeerDependencies:
- supports-color
@@ -19268,6 +20945,17 @@ packages:
- supports-color
dev: true
+ /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
/babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.12.9:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
@@ -19278,13 +20966,13 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.17.8:
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.3:
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
transitivePeerDependencies:
- supports-color
@@ -19345,6 +21033,25 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
dev: true
+ /babel-preset-current-node-syntax/0.1.4_@babel+core@7.21.3:
+ resolution: {integrity: sha512-5/INNCYhUGqw7VbVjT/hb3ucjgkVHKXY7lX3ZjlN4gm565VyFmJUrJ/h+h16ECVB38R/9SF6aACydpKMLZ/c9w==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ dev: true
+
/babel-preset-current-node-syntax/1.0.1_@babel+core@7.12.9:
resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
peerDependencies:
@@ -19383,6 +21090,26 @@ packages:
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.8
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
'@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.8
+ dev: true
+
+ /babel-preset-current-node-syntax/1.0.1_@babel+core@7.21.3:
+ resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
+ '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.3
/babel-preset-fbjs/3.4.0_@babel+core@7.12.9:
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
@@ -19420,50 +21147,50 @@ packages:
transitivePeerDependencies:
- supports-color
- /babel-preset-fbjs/3.4.0_@babel+core@7.17.8:
+ /babel-preset-fbjs/3.4.0_@babel+core@7.21.3:
resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.8
- '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
+ '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0
transitivePeerDependencies:
- supports-color
- /babel-preset-jest/24.9.0_@babel+core@7.17.8:
+ /babel-preset-jest/24.9.0_@babel+core@7.21.3:
resolution: {integrity: sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==}
engines: {node: '>= 6'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
babel-plugin-jest-hoist: 24.9.0
dev: false
@@ -19478,6 +21205,17 @@ packages:
babel-preset-current-node-syntax: 0.1.4_@babel+core@7.17.8
dev: true
+ /babel-preset-jest/25.5.0_@babel+core@7.21.3:
+ resolution: {integrity: sha512-8ZczygctQkBU+63DtSOKGh7tFL0CeCuz+1ieud9lJ1WPQ9O6A1a/r+LGn6Y705PA6whHQ3T1XuB/PmpfNYf8Fw==}
+ engines: {node: '>= 8.3'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.21.3
+ babel-plugin-jest-hoist: 25.5.0
+ babel-preset-current-node-syntax: 0.1.4_@babel+core@7.21.3
+ dev: true
+
/babel-preset-jest/26.6.2_@babel+core@7.12.9:
resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==}
engines: {node: '>= 10.14.2'}
@@ -19489,15 +21227,15 @@ 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.17.8:
+ /babel-preset-jest/26.6.2_@babel+core@7.21.3:
resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==}
engines: {node: '>= 10.14.2'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
babel-plugin-jest-hoist: 26.6.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.8
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
dev: true
/babel-preset-jest/27.5.1_@babel+core@7.17.8:
@@ -19509,6 +21247,17 @@ packages:
'@babel/core': 7.17.8
babel-plugin-jest-hoist: 27.5.1
babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.8
+ dev: true
+
+ /babel-preset-jest/27.5.1_@babel+core@7.21.3:
+ 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.21.3
+ babel-plugin-jest-hoist: 27.5.1
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
/babel-runtime/6.26.0:
resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=}
@@ -21138,7 +22887,7 @@ packages:
resolution: {integrity: sha512-T3RmZQEAji5KYqUQpziWtyGJFli6Khz7h0rpxDwYNjSkr5ynyTWwO7WpfjHzTXclNCDfSWQRcwMb+NwxJesCKw==}
engines: {node: '>= 6.0.0'}
dependencies:
- json5: 2.2.0
+ json5: 2.2.3
dev: false
/config/3.3.7:
@@ -21291,6 +23040,7 @@ packages:
dependencies:
browserslist: 4.19.3
semver: 7.0.0
+ dev: true
/core-js-compat/3.25.5:
resolution: {integrity: sha512-ovcyhs2DEBUIE0MGEKHP4olCUW/XYte3Vroyxuh38rD1wAO4dHohsovUC4eAOuzFxE6b+RXvBU3UZ9o0YhUTkA==}
@@ -21300,7 +23050,6 @@ packages:
/core-js-pure/3.29.1:
resolution: {integrity: sha512-4En6zYVi0i0XlXHVz/bi6l1XDjCqkKRq765NXuX+SnaIatlE96Odt5lMLjdxUiNI1v9OXI5DSLWYPlmTfkTktg==}
requiresBuild: true
- dev: true
/core-js/1.2.7:
resolution: {integrity: sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==}
@@ -21666,7 +23415,7 @@ packages:
engines: {node: '>= 6'}
/css.escape/1.5.1:
- resolution: {integrity: sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=}
+ resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
/css/3.0.0:
resolution: {integrity: sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==}
@@ -23271,7 +25020,7 @@ packages:
has: 1.0.3
is-core-module: 2.8.0
is-glob: 4.0.3
- minimatch: 3.1.2
+ minimatch: 3.0.4
object.values: 1.1.5
resolve: 1.20.0
tsconfig-paths: 3.14.0
@@ -23302,7 +25051,7 @@ packages:
has: 1.0.3
is-core-module: 2.8.0
is-glob: 4.0.3
- minimatch: 3.1.2
+ minimatch: 3.0.4
object.values: 1.1.5
resolve: 1.20.0
tsconfig-paths: 3.14.0
@@ -24062,8 +25811,8 @@ packages:
resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==}
engines: {node: '>=8.3.0'}
dependencies:
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
c8: 7.11.0
transitivePeerDependencies:
- supports-color
@@ -25060,10 +26809,10 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
- deepmerge: 4.3.0
+ deepmerge: 4.2.2
fs-extra: 9.1.0
glob: 7.2.0
- memfs: 3.4.13
+ memfs: 3.3.0
minimatch: 3.1.2
schema-utils: 2.7.0
semver: 7.3.8
@@ -25123,11 +26872,11 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
- deepmerge: 4.3.0
+ deepmerge: 4.2.2
eslint: 8.32.0
fs-extra: 9.1.0
glob: 7.2.0
- memfs: 3.4.13
+ memfs: 3.3.0
minimatch: 3.1.2
schema-utils: 2.7.0
semver: 7.3.8
@@ -25155,10 +26904,10 @@ packages:
chalk: 4.1.2
chokidar: 3.5.3
cosmiconfig: 6.0.0
- deepmerge: 4.3.0
+ deepmerge: 4.2.2
fs-extra: 9.1.0
glob: 7.2.0
- memfs: 3.4.13
+ memfs: 3.3.0
minimatch: 3.1.2
schema-utils: 2.7.0
semver: 7.3.8
@@ -27093,7 +28842,7 @@ packages:
mute-stream: 0.0.8
ora: 5.4.1
run-async: 2.4.1
- rxjs: 7.5.5
+ rxjs: 7.8.0
string-width: 4.2.3
strip-ansi: 6.0.1
through: 2.3.8
@@ -27814,11 +29563,11 @@ packages:
resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==}
engines: {node: '>=6'}
dependencies:
- '@babel/generator': 7.19.3
- '@babel/parser': 7.19.3
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
istanbul-lib-coverage: 2.0.5
semver: 6.3.0
transitivePeerDependencies:
@@ -27829,7 +29578,7 @@ packages:
resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -27841,8 +29590,8 @@ packages:
resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==}
engines: {node: '>=8'}
dependencies:
- '@babel/core': 7.17.8
- '@babel/parser': 7.19.3
+ '@babel/core': 7.21.3
+ '@babel/parser': 7.21.3
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.0
semver: 6.3.0
@@ -28017,7 +29766,7 @@ packages:
resolution: {integrity: sha512-ACrpWZGcQMpbv13XbzRzpytEJlilP/Su0JtNCi5r/xLpOUhnaIJr8leYYpLEMgPFURZISEHrnnpmB54Q/UziPw==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/traverse': 7.19.3
+ '@babel/traverse': 7.21.3
'@jest/environment': 26.6.2
'@jest/test-result': 26.6.2
'@jest/types': 26.6.2
@@ -28211,10 +29960,10 @@ packages:
resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==}
engines: {node: '>= 6'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/test-sequencer': 24.9.0
'@jest/types': 24.9.0
- babel-jest: 24.9.0_@babel+core@7.17.8
+ babel-jest: 24.9.0_@babel+core@7.21.3
chalk: 2.4.2
glob: 7.2.0
jest-environment-jsdom: 24.9.0
@@ -28238,10 +29987,10 @@ packages:
resolution: {integrity: sha512-SZwR91SwcdK6bz7Gco8qL7YY2sx8tFJYzvg216DLihTWf+LKY/DoJXpM9nTzYakSyfblbqeU48p/p7Jzy05Atg==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/test-sequencer': 25.5.4
'@jest/types': 25.5.0
- babel-jest: 25.5.1_@babel+core@7.17.8
+ babel-jest: 25.5.1_@babel+core@7.21.3
chalk: 3.0.0
deepmerge: 4.3.0
glob: 7.2.0
@@ -28273,10 +30022,10 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/test-sequencer': 26.6.3
'@jest/types': 26.6.2
- babel-jest: 26.6.3_@babel+core@7.17.8
+ babel-jest: 26.6.3_@babel+core@7.21.3
chalk: 4.1.2
deepmerge: 4.3.0
glob: 7.2.0
@@ -28307,10 +30056,10 @@ packages:
ts-node:
optional: true
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
'@jest/test-sequencer': 27.5.1
'@jest/types': 27.5.1
- babel-jest: 27.5.1_@babel+core@7.17.8
+ babel-jest: 27.5.1_@babel+core@7.21.3
chalk: 4.1.2
ci-info: 3.2.0
deepmerge: 4.3.0
@@ -28720,7 +30469,7 @@ packages:
resolution: {integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==}
engines: {node: '>= 6'}
dependencies:
- '@babel/traverse': 7.19.3
+ '@babel/traverse': 7.21.3
'@jest/environment': 24.9.0
'@jest/test-result': 24.9.0
'@jest/types': 24.9.0
@@ -28744,7 +30493,7 @@ packages:
resolution: {integrity: sha512-9acbWEfbmS8UpdcfqnDO+uBUgKa/9hcRh983IHdM+pKmJPL77G0sWAAK0V0kr5LK3a8cSBfkFSoncXwQlRZfkQ==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/traverse': 7.19.3
+ '@babel/traverse': 7.21.3
'@jest/environment': 25.5.0
'@jest/source-map': 25.5.0
'@jest/test-result': 25.5.0
@@ -28772,7 +30521,7 @@ packages:
resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/traverse': 7.19.3
+ '@babel/traverse': 7.21.3
'@jest/environment': 26.6.2
'@jest/source-map': 26.6.2
'@jest/test-result': 26.6.2
@@ -29480,7 +31229,7 @@ packages:
resolution: {integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==}
engines: {node: '>= 6'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
'@jest/types': 24.9.0
chalk: 2.4.2
expect: 24.9.0
@@ -29501,7 +31250,7 @@ packages:
resolution: {integrity: sha512-C02JE1TUe64p2v1auUJ2ze5vcuv32tkv9PyhEb318e8XOKF7MOyXdJ7kdjbvrp3ChPLU2usI7Rjxs97Dj5P0uQ==}
engines: {node: '>= 8.3'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
'@jest/types': 25.5.0
'@types/prettier': 1.19.1
chalk: 3.0.0
@@ -29522,7 +31271,7 @@ packages:
resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==}
engines: {node: '>= 10.14.2'}
dependencies:
- '@babel/types': 7.19.3
+ '@babel/types': 7.21.3
'@jest/types': 26.6.2
'@types/babel__traverse': 7.14.2
'@types/prettier': 2.4.2
@@ -29546,16 +31295,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.17.8
- '@babel/generator': 7.19.3
- '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.17.8
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.21.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
'@jest/transform': 27.5.1
'@jest/types': 27.5.1
'@types/babel__traverse': 7.14.2
'@types/prettier': 2.4.2
- babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.8
+ babel-preset-current-node-syntax: 1.0.1_@babel+core@7.21.3
chalk: 4.1.2
expect: 27.5.1
graceful-fs: 4.2.9
@@ -29957,7 +31706,7 @@ packages:
'@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.8
'@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.8
'@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
'@babel/preset-flow': 7.16.7_@babel+core@7.17.8
'@babel/preset-typescript': 7.16.7_@babel+core@7.17.8
'@babel/register': 7.18.9_@babel+core@7.17.8
@@ -30180,6 +31929,11 @@ packages:
dependencies:
minimist: 1.2.5
+ /json5/2.2.3:
+ resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
+ engines: {node: '>=6'}
+ hasBin: true
+
/jsonc-parser/2.2.1:
resolution: {integrity: sha512-o6/yDBYccGvTz1+QFevz6l6OBZ2+fMVu2JZ9CIhzsYRX4mjaK5IyX9eldUdCmga16zlgQxyrj5pt9kzuj2C02w==}
dev: true
@@ -30534,7 +32288,7 @@ packages:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 2.2.0
+ json5: 2.2.3
dev: true
/loader-utils/2.0.2:
@@ -30543,7 +32297,7 @@ packages:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 2.2.0
+ json5: 2.2.3
/loader-utils/2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
@@ -30551,7 +32305,7 @@ packages:
dependencies:
big.js: 5.2.2
emojis-list: 3.0.0
- json5: 2.2.0
+ json5: 2.2.3
dev: true
/locate-path/2.0.0:
@@ -30805,7 +32559,6 @@ packages:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
- dev: true
/lru-cache/6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
@@ -31329,7 +33082,7 @@ packages:
/metro-babel-transformer/0.72.1:
resolution: {integrity: sha512-VK7A9gepnhrKC0DMoxtPjYYHjkkfNwzLMYJgeL6Il6IaX/K/VHTILSEqgpxfNDos2jrXazuR5+rXDLE/RCzqmw==}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
hermes-parser: 0.8.0
metro-source-map: 0.72.1
nullthrows: 1.1.1
@@ -31339,7 +33092,7 @@ packages:
/metro-babel-transformer/0.72.2:
resolution: {integrity: sha512-3Bxk/MoXHn/ysmsH7ov6inDHrSWz5eowYRGzilOSSXe9y3DJ/ceTHfT+DWsPr9IgTJLQfKVN/F0pZ+1Ndqh52A==}
dependencies:
- '@babel/core': 7.17.8
+ '@babel/core': 7.21.3
hermes-parser: 0.8.0
metro-source-map: 0.72.2
nullthrows: 1.1.1
@@ -31459,54 +33212,54 @@ packages:
'@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.12.9
'@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.12.9
'@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.12.9
- '@babel/template': 7.18.10
+ '@babel/template': 7.20.7
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
- /metro-react-native-babel-preset/0.72.2_@babel+core@7.17.8:
+ /metro-react-native-babel-preset/0.72.2_@babel+core@7.21.3:
resolution: {integrity: sha512-OMp77TUUZAoiuUv5uKNc08AnJNQxD28k92eQvo8tPcA8Wx6OZlEUvL7M7SFkef2mEYJ0vnrRjOamSnbBuq/+1w==}
peerDependencies:
'@babel/core': '*'
dependencies:
- '@babel/core': 7.17.8
- '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.17.8
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.8
- '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.17.8
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.17.8
- '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.17.8
- '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.8
- '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.17.8
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.17.8
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.17.8
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.17.8
- '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.17.8
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.17.8
- '@babel/template': 7.18.10
+ '@babel/core': 7.21.3
+ '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.21.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.21.3
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.21.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.21.3
+ '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx-source': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.21.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.21.3
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
+ '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.21.3
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/template': 7.20.7
react-refresh: 0.4.3
transitivePeerDependencies:
- supports-color
@@ -31546,8 +33299,8 @@ packages:
/metro-source-map/0.72.1:
resolution: {integrity: sha512-77TZuf10Ru+USo97HwDT8UceSzOGBZB8EYTObOsR0n1sjQHjvKsMflLA9Pco13o9NsIYAG6c6P/0vIpiHKqaKA==}
dependencies:
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
invariant: 2.2.4
metro-symbolicate: 0.72.1
nullthrows: 1.1.1
@@ -31560,8 +33313,8 @@ packages:
/metro-source-map/0.72.2:
resolution: {integrity: sha512-dqYK8DZ4NzGkhik0IkKRBLuPplXqF6GoKrFQ/XMw0FYGy3+dFJ9nIDxsCyg3GcjCt6Mg8FEqGrXlpMG7MrtC9Q==}
dependencies:
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
invariant: 2.2.4
metro-symbolicate: 0.72.2
nullthrows: 1.1.1
@@ -31602,10 +33355,10 @@ packages:
/metro-transform-plugins/0.72.2:
resolution: {integrity: sha512-f2Zt6ti156TWFrnCRg7vxBIHBJcERBX8nwKmRKGFCbU+rk4YOxwONY4Y0Gn9Kocfu313P1xNqWYH5rCqvEWMaQ==}
dependencies:
- '@babel/core': 7.17.8
- '@babel/generator': 7.19.3
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
@@ -31613,11 +33366,11 @@ packages:
/metro-transform-worker/0.72.2:
resolution: {integrity: sha512-z5OOnEO3NV6PgI8ORIBvJ5m+u9THFpy+6WIg/MUjP9k1oqasWaP1Rfhv7K/a+MD6uho1rgXj6nwWDqybsqHY/w==}
dependencies:
- '@babel/core': 7.17.8
- '@babel/generator': 7.19.3
- '@babel/parser': 7.19.3
- '@babel/types': 7.19.3
- babel-preset-fbjs: 3.4.0_@babel+core@7.17.8
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/types': 7.21.3
+ babel-preset-fbjs: 3.4.0_@babel+core@7.21.3
metro: 0.72.2
metro-babel-transformer: 0.72.2
metro-cache: 0.72.2
@@ -31637,12 +33390,12 @@ packages:
hasBin: true
dependencies:
'@babel/code-frame': 7.18.6
- '@babel/core': 7.17.8
- '@babel/generator': 7.19.3
- '@babel/parser': 7.19.3
- '@babel/template': 7.18.10
- '@babel/traverse': 7.19.3
- '@babel/types': 7.19.3
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
+ '@babel/parser': 7.21.3
+ '@babel/template': 7.20.7
+ '@babel/traverse': 7.21.3
+ '@babel/types': 7.21.3
absolute-path: 0.0.0
accepts: 1.3.8
async: 3.2.4
@@ -31668,7 +33421,7 @@ packages:
metro-hermes-compiler: 0.72.2
metro-inspector-proxy: 0.72.2
metro-minify-uglify: 0.72.2
- metro-react-native-babel-preset: 0.72.2_@babel+core@7.17.8
+ metro-react-native-babel-preset: 0.72.2_@babel+core@7.21.3
metro-resolver: 0.72.2
metro-runtime: 0.72.2
metro-source-map: 0.72.2
@@ -31872,7 +33625,6 @@ packages:
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
dependencies:
brace-expansion: 1.1.11
- dev: true
/minimatch/3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -33822,7 +35574,7 @@ packages:
dependencies:
cosmiconfig: 7.0.1
klona: 2.0.5
- loader-utils: 2.0.4
+ loader-utils: 2.0.2
postcss: 7.0.39
schema-utils: 3.1.1
semver: 7.3.8
@@ -35294,8 +37046,8 @@ packages:
engines: {node: '>=8.10.0'}
hasBin: true
dependencies:
- '@babel/core': 7.17.8
- '@babel/generator': 7.19.3
+ '@babel/core': 7.21.3
+ '@babel/generator': 7.21.3
'@babel/runtime': 7.19.0
ast-types: 0.14.2
commander: 2.20.3
@@ -35477,7 +37229,7 @@ packages:
/react-native-codegen/0.70.4_@babel+preset-env@7.12.7:
resolution: {integrity: sha512-bPyd5jm840omfx24VRyMP+KPzAefpRDwE18w5ywMWHCWZBSqLn1qI9WgBPnavlIrjTEuzxznWQNcaA26lw8AMQ==}
dependencies:
- '@babel/parser': 7.19.3
+ '@babel/parser': 7.21.3
flow-parser: 0.121.0
jscodeshift: 0.13.1_@babel+preset-env@7.12.7
nullthrows: 1.1.1
@@ -36819,12 +38571,6 @@ packages:
dependencies:
tslib: 1.14.1
- /rxjs/7.5.5:
- resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==}
- dependencies:
- tslib: 2.5.0
- dev: true
-
/rxjs/7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
@@ -39242,6 +40988,75 @@ packages:
yargs-parser: 20.2.9
dev: true
+ /ts-jest/27.1.3_hszvtzkxfg7axc55y33g3o6iwa:
+ resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ hasBin: true
+ peerDependencies:
+ '@babel/core': '>=7.0.0-beta.0 <8'
+ '@types/jest': ^27.0.0
+ babel-jest: '>=27.0.0 <28'
+ esbuild: ~0.14.0
+ jest: ^27.0.0
+ typescript: '>=3.8 <5.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/jest':
+ optional: true
+ babel-jest:
+ optional: true
+ esbuild:
+ optional: true
+ dependencies:
+ '@babel/core': 7.21.3
+ bs-logger: 0.2.6
+ fast-json-stable-stringify: 2.1.0
+ jest: 27.5.1
+ jest-util: 27.5.1
+ json5: 2.2.0
+ lodash.memoize: 4.1.2
+ make-error: 1.3.6
+ semver: 7.3.7
+ typescript: 4.8.4
+ yargs-parser: 20.2.9
+ dev: true
+
+ /ts-jest/27.1.3_n6jwe674nt3ravnkwja2moplpy:
+ resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==}
+ engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
+ hasBin: true
+ peerDependencies:
+ '@babel/core': '>=7.0.0-beta.0 <8'
+ '@types/jest': ^27.0.0
+ babel-jest: '>=27.0.0 <28'
+ esbuild: ~0.14.0
+ jest: ^27.0.0
+ typescript: '>=3.8 <5.0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@types/jest':
+ optional: true
+ babel-jest:
+ optional: true
+ esbuild:
+ optional: true
+ dependencies:
+ '@babel/core': 7.21.3
+ '@types/jest': 27.4.1
+ bs-logger: 0.2.6
+ fast-json-stable-stringify: 2.1.0
+ jest: 27.5.1
+ jest-util: 27.5.1
+ json5: 2.2.0
+ lodash.memoize: 4.1.2
+ make-error: 1.3.6
+ semver: 7.3.7
+ typescript: 4.8.4
+ yargs-parser: 20.2.9
+ dev: true
+
/ts-jest/27.1.3_wfmhell6c5i72vvtgtvpmkkb6i:
resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
@@ -41000,7 +42815,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.8.1
acorn-import-assertions: 1.8.0_acorn@8.8.1
- browserslist: 4.19.3
+ browserslist: 4.21.4
chrome-trace-event: 1.0.3
enhanced-resolve: 5.9.2
es-module-lexer: 0.9.3
@@ -41039,7 +42854,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.8.1
acorn-import-assertions: 1.8.0_acorn@8.8.1
- browserslist: 4.19.3
+ browserslist: 4.21.4
chrome-trace-event: 1.0.3
enhanced-resolve: 5.9.2
es-module-lexer: 0.9.3
@@ -41120,7 +42935,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.8.1
acorn-import-assertions: 1.8.0_acorn@8.8.1
- browserslist: 4.19.3
+ browserslist: 4.21.4
chrome-trace-event: 1.0.3
enhanced-resolve: 5.9.2
es-module-lexer: 0.9.3
@@ -41590,7 +43405,6 @@ packages:
/yallist/3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- dev: true
/yallist/4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
@@ -41865,9 +43679,9 @@ packages:
version: 0.0.1
requiresBuild: true
dependencies:
- '@babel/cli': 7.17.6_@babel+core@7.17.8
- '@babel/core': 7.17.8
- '@babel/preset-env': 7.19.3_@babel+core@7.17.8
+ '@babel/cli': 7.17.6_@babel+core@7.21.3
+ '@babel/core': 7.21.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.21.3
'@slack/web-api': 5.15.0
'@wordpress/e2e-test-utils': 3.0.0_ddjhsfu4aotkh3cuzmpsln6ywq
config: 3.3.7
diff --git a/tools/code-analyzer/README.md b/tools/code-analyzer/README.md
index cb07a057b0a..6d81997288e 100644
--- a/tools/code-analyzer/README.md
+++ b/tools/code-analyzer/README.md
@@ -6,7 +6,7 @@
## Commands
-Currently there are just 2 commands:
+Currently there are 3 commands:
1. `lint`. Analyzer is used as a linter for PRs to check if hook/template/db changes were introduced. It produces output either directly on CI or via setting output variables in GH actions.
@@ -29,3 +29,11 @@ writing the main file in this particular branch reports `6.8.1` so the output of
This command is particularly useful combined with the analyzer, allowing you to determine the last major/minor.0 version of a branch or ref before passing that as the
version argument to `analyzer`.
+
+3. `scan`. Scan is like `lint` but lets you scan for a specific change type. e.g. you can scan just for hook changes if you wish.
+
+Here is an example of the `scan` command run to look for hook changes:
+
+`pnpm analyzer scan hooks "release/6.8" "release/6.7" --since "6.8.0"`
+\
+In this command we compare the `release/6.7` and `release/6.8` branches to find hook changes, and we're looking for changes introduced since `6.8.0` (using the `@since` tag).
diff --git a/tools/code-analyzer/src/commands/analyzer/analyzer-scan.ts b/tools/code-analyzer/src/commands/analyzer/analyzer-scan.ts
new file mode 100644
index 00000000000..2bca09a3844
--- /dev/null
+++ b/tools/code-analyzer/src/commands/analyzer/analyzer-scan.ts
@@ -0,0 +1,155 @@
+/**
+ * External dependencies
+ */
+import { Command } from '@commander-js/extra-typings';
+import { Logger } from 'cli-core/src/logger';
+import { join } from 'path';
+
+/**
+ * Internal dependencies
+ */
+import {
+ scanChangesForDB,
+ scanChangesForHooks,
+ scanChangesForSchema,
+ scanChangesForTemplates,
+ ScanType,
+} from '../../lib/scan-changes';
+import {
+ printDatabaseUpdates,
+ printHookResults,
+ printSchemaChange,
+ printTemplateResults,
+} from '../../print';
+
+const printEmptyNotice = ( scanType: ScanType ) => {
+ Logger.notice( `\n\n## ${ scanType.toUpperCase() } CHANGES` );
+ Logger.notice( '---------------------------------------------------' );
+ Logger.notice( `No ${ scanType } changes found.` );
+ Logger.notice( '---------------------------------------------------' );
+};
+
+const program = new Command()
+ .command( 'scan' )
+ .argument(
+ '',
+ 'Type of change to scan for. Options: templates, hooks, database, schema.'
+ )
+ .argument(
+ '',
+ 'GitHub branch/tag/commit hash to compare against the base branch/tag/commit hash.'
+ )
+ .argument(
+ '[base]',
+ 'Base branch to compare against. Defaults to trunk.',
+ 'trunk'
+ )
+ .option(
+ '-s, --since ',
+ 'Specify the version used to determine which changes are included (version listed in @since code doc). Only needed for hook, template, schema changes.'
+ )
+ .option(
+ '-src, --source