diff --git a/changelog/39948-patch-4 b/changelog/39948-patch-4
new file mode 100644
index 00000000000..2b48d2bf62e
--- /dev/null
+++ b/changelog/39948-patch-4
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Do not remove sale date from when the sale is still active
diff --git a/docs/localization-translation/README.md b/docs/localization-translation/README.md
new file mode 100644
index 00000000000..fd298fa5f85
--- /dev/null
+++ b/docs/localization-translation/README.md
@@ -0,0 +1,160 @@
+# Translating WooCommerce
+
+WooCommerce is already translated into several languages and is translation-ready right out of the box. All that’s needed is a translation file for your language.
+
+There are several methods to create a translation, most of which are outlined in the WordPress Codex. In most cases you can contribute to the project on [https://translate.wordpress.org/projects/wp-plugins/woocommerce/](https://translate.wordpress.org/projects/wp-plugins/woocommerce/).
+
+To create custom translations you can consider using [Poedit](https://poedit.net/).
+
+## Set up WordPress in your language
+
+To set your WordPress site's language:
+
+1. Go to `WP Admin » Settings » General` and adjust the `Site Language`.
+2. Go to `WP Admin » Dashboard » Updates` and click the `Update Translations` button.
+
+Once this has been done, the shop displays in your locale if the language file exists. Otherwise, you need to create the language files (process explained below).
+
+## Contributing your localization to core
+
+We encourage contributions to our translations. If you want to add translated strings or start a new translation, simply register at WordPress.org and submit your translations to [https://translate.wordpress.org/projects/wp-plugins/woocommerce/](https://translate.wordpress.org/projects/wp-plugins/woocommerce/) for approval.
+
+## Translating WooCommerce into your language
+
+Both stable and development versions of WooCommerce are available for translation. When you install or update WooCommerce, WordPress will automatically fetch a 100% complete translation for your language. If such a translation isn't available, you can either download it manually or contribute to complete the translation, benefiting all users.
+
+If you’re new to translating, check out the [translators handbook](https://make.wordpress.org/polyglots/handbook/tools/glotpress-translate-wordpress-org/) to get started.
+
+### Downloading translations from translate.wordpress.org manually
+
+1. Go to [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/woocommerce) and look for your language in the list.
+2. Click the title to be taken to the section for that language.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/2016-02-17-at-09.57.png)
+
+3. Click the heading under `Set/Sub Project` to view and download a Stable version.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/2016-02-17-at-09.59.png)
+
+4. Scroll to the bottom for export options. Export a `.mo` file for use on your site.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/2016-02-17-at-10.00.png)
+
+5. Rename this file to `woocommerce-YOURLANG.mo` (e.g., Great Britain English should be `en_GB`). The corresponding language code can be found by going to [https://translate.wordpress.org/projects/wp-plugins/woocommerce/](https://translate.wordpress.org/projects/wp-plugins/woocommerce/) and opening the desired language. The language code is visible in the upper-right corner.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2023/10/Screenshot-2023-10-17-at-09.44.53.png)
+
+6. Upload to your site under `wp-content/languages/woocommerce/`. Once uploaded, this translation file may be used.
+
+## Creating custom translations
+
+WooCommerce includes a language file (`.pot` file) that contains all of the English text. You can find this language file inside the plugin folder in `woocommerce/i18n/languages/`.
+
+## Creating custom translations with PoEdit
+
+WooCommerce comes with a `.pot` file that can be imported into PoEdit to translate.
+
+To get started:
+
+1. Open PoEdit and select `Create new translation from POT template`.
+2. Choose `woocommerce.pot` and PoEdit will show the catalog properties window.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/Screen-Shot-2013-05-09-at-10.16.46.png)
+
+3. Enter your name and details, so other translators know who you are, and click `OK`.
+4. Save your `.po` file. Name it based on what you are translating to, i.e., a GB translation is saved as `woocommerce-en_GB.po`. Now the strings are listed.
+
+ ![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/Screen-Shot-2013-05-09-at-10.20.58.png)
+
+5. Save after translating strings. The `.mo` file is generated automatically.
+6. Update your `.po` file by opening it and then go to `Catalog » Update from POT file`.
+7. Choose the file and it will be updated accordingly.
+
+## Making your translation upgrade safe
+
+> **Note:** We are unable to provide support for customizations under our [Support Policy](http://www.woocommerce.com/support-policy/). If you need to further customize a snippet, or extend its functionality, we highly recommend [Codeable](https://codeable.io/?ref=z4Hnp), or a [Certified WooExpert](https://woocommerce.com/experts/).
+
+WooCommerce keeps translations in `wp-content/languages/plugins`, like all other plugins. But if you wish to include a custom translation, you can use the directory `wp-content/languages/woocommerce`, or you can use a snippet to load a custom translation stored elsewhere:
+
+```php
+// Code to be placed in functions.php of your theme or a custom plugin file.
+add_filter( 'load_textdomain_mofile', 'load_custom_plugin_translation_file', 10, 2 );
+
+/**
+ * Replace 'textdomain' with your plugin's textdomain. e.g. 'woocommerce'.
+ * File to be named, for example, yourtranslationfile-en_GB.mo
+ * File to be placed, for example, wp-content/languages/textdomain/yourtranslationfile-en_GB.mo
+ */
+function load_custom_plugin_translation_file( $mofile, $domain ) {
+ if ( 'textdomain' === $domain ) {
+ $mofile = WP_LANG_DIR . '/textdomain/yourtranslationfile-' . get_locale() . '.mo';
+ }
+
+ return $mofile;
+}
+```
+
+## Other tools
+
+There are some other third-party tools that can help with translations. The following list shows a few of them.
+
+### Loco Translate
+
+[Loco Translate](https://wordpress.org/plugins/loco-translate/) provides in-browser editing of WordPress translation files and integration with automatic translation services.
+
+### Say what?
+
+[Say what?](https://wordpress.org/plugins/say-what/) allows to effortlessly translate or modify specific words without delving into a WordPress theme's `.po` file.
+
+### String locator
+
+[String Locator](https://wordpress.org/plugins/string-locator/) enables quick searches within themes, plugins, or the WordPress core, displaying a list of files with the matching text and its line number.
+
+## FAQ
+
+### Why some strings on the Checkout page are not being translated?
+
+You may see that some of the strings are not being translated on the Checkout page. For example, in the screenshot below, `Local pickup` shipping method, `Cash on delivery` payment method and a message related to Privacy Policy are not being translated to Russian while the rest of the form is indeed translated:
+
+![screenshot](https://woocommerce.com/wp-content/uploads/2012/01/not_translated.jpg)
+
+This usually happens when you first install WooCommerce and select default site language (English) and later change the site language to another one. In WooCommerce, the strings that have not been translated in the screenshot, are stored in the database after the initial WooCommerce installation. Therefore, if the site language is changed to another one, there is no way for WooCommerce to detect a translatable string since these are database entries.
+
+In order to fix it, navigate to WooCommerce settings corresponding to the string you need to change and update the translation there directly. For example, to fix the strings in our case above, you would need to do the following:
+
+**Local pickup**:
+
+1. Go to `WooCommerce » Settings » Shipping » Shipping Zones`.
+2. Select the shipping zone where "Local pickup" is listed.
+3. Open "Local pickup" settings.
+4. Rename the method using your translation.
+5. Save the setting.
+
+**Cash on delivery**:
+
+1. Go to `WooCommerce » Settings » Payments`.
+2. Select the "Cash on delivery" payment method.
+3. Open its settings.
+4. Rename the method title, description, and instructions using your translation.
+5. Save the setting.
+
+**Privacy policy message**:
+
+1. Go to `WooCommerce » Settings » Accounts & Privacy`.
+2. Scroll to the "Privacy policy" section.
+3. Edit both the `Registration privacy policy` and `Checkout privacy policy` fields with your translation.
+4. Save the settings.
+
+Navigate back to the Checkout page – translations should be reflected there.
+
+### I have translated the strings I needed, but some of them don’t show up translated on the front end. Why?
+
+If some of your translated strings don’t show up as expected on your WooCommerce site, the first thing to check is if these strings have both a Single and Plural form in the Source text section. To do so, open the corresponding translation on [https://translate.wordpress.org/projects/wp-plugins/woocommerce/](https://translate.wordpress.org/projects/wp-plugins/woocommerce/), e.g. [the translation for Product and Products](https://translate.wordpress.org/projects/wp-plugins/woocommerce/stable/de/default/?filters%5Bstatus%5D=either&filters%5Boriginal_id%5D=577764&filters%5Btranslation_id%5D=24210880).
+
+This screenshot shows that the Singular translation is available:
+
+![screenshot](https://woocommerce.com/wp-content/uploads/2023/10/Screenshot-2023-10-17-at-10.10.06.png)
+
+While this screenshot shows that the Plural translation is not available:
+
+![screenshot](https://woocommerce.com/wp-content/uploads/2023/10/Screenshot-2023-10-17-at-10.10.21.png)
diff --git a/packages/js/block-templates/changelog/add-block-templates-dependencies b/packages/js/block-templates/changelog/add-block-templates-dependencies
new file mode 100644
index 00000000000..75721f405c7
--- /dev/null
+++ b/packages/js/block-templates/changelog/add-block-templates-dependencies
@@ -0,0 +1,5 @@
+Significance: patch
+Type: dev
+Comment: Just updating dependencies in prep for a future PR (to figure out why these are breaking the build).
+
+
diff --git a/packages/js/block-templates/package.json b/packages/js/block-templates/package.json
index db48c18cee1..fb8f13a1d11 100644
--- a/packages/js/block-templates/package.json
+++ b/packages/js/block-templates/package.json
@@ -28,8 +28,11 @@
"access": "public"
},
"dependencies": {
+ "@woocommerce/expression-evaluation": "workspace:*",
"@wordpress/block-editor": "^9.8.0",
- "@wordpress/blocks": "^12.3.0"
+ "@wordpress/blocks": "^12.3.0",
+ "@wordpress/data": "wp-6.0",
+ "@wordpress/element": "wp-6.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
@@ -37,6 +40,7 @@
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react-hooks": "^8.0.1",
"@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__blocks": "^11.0.7",
@@ -51,6 +55,8 @@
"jest-cli": "^27.5.1",
"postcss": "^8.4.7",
"postcss-loader": "^4.3.0",
+ "react": "^17.0.2",
+ "react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass-loader": "^10.2.1",
"ts-jest": "^27.1.3",
@@ -73,5 +79,10 @@
"start": "concurrently \"tsc --project tsconfig.json --watch\" \"tsc --project tsconfig-cjs.json --watch\" \"webpack --watch\"",
"prepack": "pnpm run clean && pnpm run build",
"lint:fix": "eslint src --fix"
+ },
+ "peerDependencies": {
+ "@types/react": "^17.0.2",
+ "react": "^17.0.2",
+ "react-dom": "^17.0.2"
}
}
diff --git a/packages/js/onboarding/changelog/add-loader-component-shouldloop-prop b/packages/js/onboarding/changelog/add-loader-component-shouldloop-prop
new file mode 100644
index 00000000000..68b45e0b8c7
--- /dev/null
+++ b/packages/js/onboarding/changelog/add-loader-component-shouldloop-prop
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Added shouldLoop prop for the Loader component to determine if looping should happen
diff --git a/packages/js/onboarding/src/components/Loader/Loader.tsx b/packages/js/onboarding/src/components/Loader/Loader.tsx
index 62237f1b105..a76298ee9ec 100644
--- a/packages/js/onboarding/src/components/Loader/Loader.tsx
+++ b/packages/js/onboarding/src/components/Loader/Loader.tsx
@@ -118,19 +118,30 @@ Loader.Subtext = ( {
const LoaderSequence = ( {
interval,
+ shouldLoop = true,
children,
-}: { interval: number } & withReactChildren ) => {
+}: { interval: number; shouldLoop?: boolean } & withReactChildren ) => {
const [ index, setIndex ] = useState( 0 );
+ const childCount = Children.count( children );
useEffect( () => {
const rotateInterval = setInterval( () => {
- setIndex(
- ( prevIndex ) => ( prevIndex + 1 ) % Children.count( children )
- );
+ setIndex( ( prevIndex ) => {
+ const nextIndex = prevIndex + 1;
+
+ if ( shouldLoop ) {
+ return nextIndex % childCount;
+ }
+ if ( nextIndex < childCount ) {
+ return nextIndex;
+ }
+ clearInterval( rotateInterval );
+ return prevIndex;
+ } );
}, interval );
return () => clearInterval( rotateInterval );
- }, [ interval, children ] );
+ }, [ interval, children, shouldLoop, childCount ] );
const childToDisplay = Children.toArray( children )[ index ];
return <>{ childToDisplay }>;
diff --git a/packages/js/onboarding/src/components/Loader/stories/index.tsx b/packages/js/onboarding/src/components/Loader/stories/index.tsx
index 1e480f15ed8..c5972edbe14 100644
--- a/packages/js/onboarding/src/components/Loader/stories/index.tsx
+++ b/packages/js/onboarding/src/components/Loader/stories/index.tsx
@@ -29,8 +29,28 @@ export const ExampleSimpleLoader = () => (
);
+export const ExampleNonLoopingLoader = () => (
+
+
+
+
+
+ Very Impressive Title
+
+
+ Message 1
+ Message 2
+ Message 3
+
+
+
+);
+
/** component story with controls */
-const Template = ( { progress, title, messages } ) => (
+const Template = ( { progress, title, messages, shouldLoop } ) => (
@@ -41,7 +61,7 @@ const Template = ( { progress, title, messages } ) => (
{ title }
-
+
{ messages.map( ( message, index ) => (
{ message }
) ) }
@@ -54,6 +74,7 @@ export const ExampleLoaderWithControls = Template.bind( {} );
ExampleLoaderWithControls.args = {
title: 'Very Impressive Title',
progress: 30,
+ shouldLoop: true,
messages: [ 'Message 1', 'Message 2', 'Message 3' ],
};
@@ -71,6 +92,9 @@ export default {
max: 100,
},
},
+ shouldLoop: {
+ control: 'boolean',
+ },
messages: {
control: 'object',
},
diff --git a/packages/js/product-editor/changelog/add-35144 b/packages/js/product-editor/changelog/add-35144
new file mode 100644
index 00000000000..48e4884a0b3
--- /dev/null
+++ b/packages/js/product-editor/changelog/add-35144
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Create ManageDownloadLimitsModal component
diff --git a/packages/js/product-editor/changelog/add-40805 b/packages/js/product-editor/changelog/add-40805
new file mode 100644
index 00000000000..04d3bba218c
--- /dev/null
+++ b/packages/js/product-editor/changelog/add-40805
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Let the toogle block to use inverted value to be checked
diff --git a/packages/js/product-editor/changelog/fix-40842_hide_header b/packages/js/product-editor/changelog/fix-40842_hide_header
new file mode 100644
index 00000000000..a9e32e6b5ed
--- /dev/null
+++ b/packages/js/product-editor/changelog/fix-40842_hide_header
@@ -0,0 +1,4 @@
+Significance: minor
+Type: fix
+
+Remove use of :has() css selector as it is not compatible with FireFox.
diff --git a/packages/js/product-editor/changelog/fix-40844 b/packages/js/product-editor/changelog/fix-40844
new file mode 100644
index 00000000000..e9b6230b0b6
--- /dev/null
+++ b/packages/js/product-editor/changelog/fix-40844
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Remove empty values from the shipping class request so slug can be generated server side
diff --git a/packages/js/product-editor/src/blocks/generic/toggle/block.json b/packages/js/product-editor/src/blocks/generic/toggle/block.json
index 7db3610b691..7011b23bf67 100644
--- a/packages/js/product-editor/src/blocks/generic/toggle/block.json
+++ b/packages/js/product-editor/src/blocks/generic/toggle/block.json
@@ -22,6 +22,12 @@
"disabledCopy": {
"type": "string",
"__experimentalRole": "content"
+ },
+ "checkedValue": {
+ "type": "object"
+ },
+ "uncheckedValue": {
+ "type": "object"
}
},
"supports": {
diff --git a/packages/js/product-editor/src/blocks/generic/toggle/edit.tsx b/packages/js/product-editor/src/blocks/generic/toggle/edit.tsx
index 6a1e735ea05..e7d3c4e206a 100644
--- a/packages/js/product-editor/src/blocks/generic/toggle/edit.tsx
+++ b/packages/js/product-editor/src/blocks/generic/toggle/edit.tsx
@@ -18,19 +18,41 @@ export function Edit( {
context: { postType },
}: ProductEditorBlockEditProps< ToggleBlockAttributes > ) {
const blockProps = useWooBlockProps( attributes );
- const { label, property, disabled, disabledCopy } = attributes;
+ const {
+ label,
+ property,
+ disabled,
+ disabledCopy,
+ checkedValue,
+ uncheckedValue,
+ } = attributes;
const [ value, setValue ] = useProductEntityProp< boolean >( property, {
postType,
fallbackValue: false,
} );
+ function isChecked() {
+ if ( checkedValue !== undefined ) {
+ return checkedValue === value;
+ }
+ return value as boolean;
+ }
+
+ function handleChange( checked: boolean ) {
+ if ( checked ) {
+ setValue( checkedValue !== undefined ? checkedValue : checked );
+ } else {
+ setValue( uncheckedValue !== undefined ? uncheckedValue : checked );
+ }
+ }
+
return (
{ disabled && (
( 'postType', 'product', 'download_limit' );
+ const [ downloadExpiry, setDownloadExpiry ] = useEntityProp<
+ Product[ 'download_expiry' ]
+ >( 'postType', 'product', 'download_expiry' );
const { allowedMimeTypes } = useSelect( ( select ) => {
const { getEditorSettings } = select( 'core/editor' );
@@ -67,6 +78,25 @@ export function Edit( {
const { createErrorNotice } = useDispatch( 'core/notices' );
+ const [ showManageDownloadLimitsModal, setShowManageDownloadLimitsModal ] =
+ useState( false );
+
+ function handleManageLimitsClick() {
+ setShowManageDownloadLimitsModal( true );
+ }
+
+ function handleManageDownloadLimitsModalClose() {
+ setShowManageDownloadLimitsModal( false );
+ }
+
+ function handleManageDownloadLimitsModalSubmit(
+ value: ManageDownloadLimitsModalProps[ 'initialValue' ]
+ ) {
+ setDownloadLimit( value.downloadLimit as number );
+ setDownloadExpiry( value.downloadExpiry as number );
+ setShowManageDownloadLimitsModal( false );
+ }
+
function handleFileUpload( files: MediaItem | MediaItem[] ) {
if ( ! Array.isArray( files ) ) return;
@@ -140,6 +170,15 @@ export function Edit( {
return (
+ { Boolean( downloads.length ) && (
+
+ { __( 'Manage limits', 'woocommerce' ) }
+
+ ) }
+
) }
+
+ { showManageDownloadLimitsModal && (
+
+ ) }
);
}
diff --git a/packages/js/product-editor/src/blocks/product-fields/downloads/editor.scss b/packages/js/product-editor/src/blocks/product-fields/downloads/editor.scss
index 74275f12a22..9b5faaa854c 100644
--- a/packages/js/product-editor/src/blocks/product-fields/downloads/editor.scss
+++ b/packages/js/product-editor/src/blocks/product-fields/downloads/editor.scss
@@ -9,6 +9,7 @@ $fixed-section-height: 224px;
display: flex;
justify-content: flex-end;
margin-bottom: $grid-unit-30;
+ gap: $grid-unit;
}
&__body {
diff --git a/packages/js/product-editor/src/blocks/product-fields/shipping-class/edit.tsx b/packages/js/product-editor/src/blocks/product-fields/shipping-class/edit.tsx
index 9d29d26644f..eaaa5b409c2 100644
--- a/packages/js/product-editor/src/blocks/product-fields/shipping-class/edit.tsx
+++ b/packages/js/product-editor/src/blocks/product-fields/shipping-class/edit.tsx
@@ -86,7 +86,7 @@ export function Edit( {
const [ categories ] = useEntityProp< PartialProduct[ 'categories' ] >(
'postType',
- 'product',
+ context.postType,
'categories'
);
const [ shippingClass, setShippingClass ] = useEntityProp< string >(
diff --git a/packages/js/product-editor/src/components/add-new-shipping-class-modal/add-new-shipping-class-modal.tsx b/packages/js/product-editor/src/components/add-new-shipping-class-modal/add-new-shipping-class-modal.tsx
index bf78c21407f..caac352bf60 100644
--- a/packages/js/product-editor/src/components/add-new-shipping-class-modal/add-new-shipping-class-modal.tsx
+++ b/packages/js/product-editor/src/components/add-new-shipping-class-modal/add-new-shipping-class-modal.tsx
@@ -111,6 +111,21 @@ export function AddNewShippingClassModal( {
onAdd,
onCancel,
}: AddNewShippingClassModalProps ) {
+ function handleSubmit( values: Partial< ProductShippingClass > ) {
+ return onAdd(
+ Object.entries( values ).reduce( function removeEmptyValue(
+ current,
+ [ name, value ]
+ ) {
+ return {
+ ...current,
+ [ name ]: value === '' ? undefined : value,
+ };
+ },
+ {} )
+ );
+ }
+
return (
{ ( childrenProps: {
handleSubmit: () => Promise< ProductShippingClass >;
diff --git a/packages/js/product-editor/src/components/block-editor/style.scss b/packages/js/product-editor/src/components/block-editor/style.scss
index 6f71d979631..9d2f49019cb 100644
--- a/packages/js/product-editor/src/components/block-editor/style.scss
+++ b/packages/js/product-editor/src/components/block-editor/style.scss
@@ -145,15 +145,6 @@
}
}
-.woocommerce-layout:has(.woocommerce-product-block-editor) {
- .woocommerce-layout__primary {
- margin-top: calc($gap-largest + $gap-smaller);
- }
- .woocommerce-layout__header {
- display: none;
- }
-}
-
.wp-admin.woocommerce-feature-enabled-product-block-editor {
.components-modal {
&__frame {
diff --git a/packages/js/product-editor/src/components/index.ts b/packages/js/product-editor/src/components/index.ts
index ff03b23135c..5a9478397e1 100644
--- a/packages/js/product-editor/src/components/index.ts
+++ b/packages/js/product-editor/src/components/index.ts
@@ -34,3 +34,8 @@ export * from './add-new-shipping-class-modal';
export { VariationSwitcherFooter as __experimentalVariationSwitcherFooter } from './variation-switcher-footer';
export * from './remove-confirmation-modal';
+
+export {
+ ManageDownloadLimitsModal as __experimentalManageDownloadLimitsModal,
+ ManageDownloadLimitsModalProps,
+} from './manage-download-limits-modal';
diff --git a/packages/js/product-editor/src/components/manage-download-limits-modal/index.ts b/packages/js/product-editor/src/components/manage-download-limits-modal/index.ts
new file mode 100644
index 00000000000..e9492234518
--- /dev/null
+++ b/packages/js/product-editor/src/components/manage-download-limits-modal/index.ts
@@ -0,0 +1,2 @@
+export * from './manage-download-limits-modal';
+export * from './types';
diff --git a/packages/js/product-editor/src/components/manage-download-limits-modal/manage-download-limits-modal.tsx b/packages/js/product-editor/src/components/manage-download-limits-modal/manage-download-limits-modal.tsx
new file mode 100644
index 00000000000..de24e41c0b5
--- /dev/null
+++ b/packages/js/product-editor/src/components/manage-download-limits-modal/manage-download-limits-modal.tsx
@@ -0,0 +1,241 @@
+/**
+ * External dependencies
+ */
+import { FormEvent } from 'react';
+import classNames from 'classnames';
+import { useInstanceId } from '@wordpress/compose';
+import { createElement, useState } from '@wordpress/element';
+import { __, sprintf } from '@wordpress/i18n';
+import {
+ BaseControl,
+ Button,
+ Modal,
+ // @ts-expect-error `__experimentalInputControl` does exist.
+ __experimentalInputControl as InputControl,
+} from '@wordpress/components';
+
+/**
+ * Internal dependencies
+ */
+import { ManageDownloadLimitsModalProps } from './types';
+import { useNumberInputProps } from '../../hooks/use-number-input-props';
+
+const DOWNLOAD_LIMIT_MIN = 0;
+const DOWNLOAD_EXPIRY_MIN = 0;
+
+/**
+ * Download limit and download expiry currently support
+ * `-1`, `0`/`null` and a positive integer.
+ * When the value is `-1` downloads can be unlimited.
+ * When the value is `0` or `null` downloads are unabled.
+ * When the value is greater then `0` downloads are fixed
+ * to the amount set as value.
+ *
+ * @param value The amount of downloads
+ * @return A valid number as string or empty
+ */
+function getInitialValue( value: number | null ): string {
+ if ( value === null ) {
+ return '0';
+ }
+ if ( value === -1 ) {
+ return '';
+ }
+ return String( value );
+}
+
+export function ManageDownloadLimitsModal( {
+ initialValue,
+ onSubmit,
+ onClose,
+}: ManageDownloadLimitsModalProps ) {
+ const [ downloadLimit, setDownloadLimit ] = useState< string >(
+ getInitialValue( initialValue.downloadLimit )
+ );
+ const [ downloadExpiry, setDownloadExpiry ] = useState< string >(
+ getInitialValue( initialValue.downloadExpiry )
+ );
+ const [ errors, setErrors ] = useState< Record< string, string > >( {} );
+
+ function validateDownloadLimit() {
+ if ( downloadLimit && ! Number.isInteger( Number( downloadLimit ) ) ) {
+ setErrors( ( current ) => ( {
+ ...current,
+ downloadLimit: __(
+ 'Download limit must be an integer number',
+ 'woocommerce'
+ ),
+ } ) );
+ return false;
+ }
+
+ if ( Number.parseInt( downloadLimit, 10 ) < DOWNLOAD_LIMIT_MIN ) {
+ setErrors( ( current ) => ( {
+ ...current,
+ downloadLimit: sprintf(
+ __(
+ // translators: %d is the minimum value of the number input.
+ 'Download limit must be greater than or equal to %d',
+ 'woocommerce'
+ ),
+ DOWNLOAD_LIMIT_MIN
+ ),
+ } ) );
+ return false;
+ }
+
+ setErrors( ( { downloadLimit: _, ...current } ) => current );
+ return true;
+ }
+
+ function validateDownloadExpiry() {
+ if (
+ downloadExpiry &&
+ ! Number.isInteger( Number( downloadExpiry ) )
+ ) {
+ setErrors( ( current ) => ( {
+ ...current,
+ downloadExpiry: __(
+ 'Expiry period must be an integer number',
+ 'woocommerce'
+ ),
+ } ) );
+ return false;
+ }
+
+ if ( Number.parseInt( downloadExpiry, 10 ) < DOWNLOAD_EXPIRY_MIN ) {
+ setErrors( ( current ) => ( {
+ ...current,
+ downloadExpiry: sprintf(
+ __(
+ // translators: %d is the minimum value of the number input.
+ 'Expiry period must be greater than or equal to %d',
+ 'woocommerce'
+ ),
+ DOWNLOAD_EXPIRY_MIN
+ ),
+ } ) );
+ return false;
+ }
+
+ setErrors( ( { downloadExpiry: _, ...current } ) => current );
+ return true;
+ }
+
+ const downloadLimitProps = {
+ ...useNumberInputProps( {
+ value: downloadLimit,
+ onChange: setDownloadLimit,
+ } ),
+ id: useInstanceId(
+ BaseControl,
+ 'product_download_limit_field'
+ ) as string,
+ type: 'number',
+ min: DOWNLOAD_LIMIT_MIN,
+ className: classNames( {
+ 'has-error': errors.downloadLimit,
+ } ),
+ label: __( 'Download limit', 'woocommerce' ),
+ help:
+ errors.downloadLimit ||
+ __(
+ 'Decide how many times customers can download files after purchasing the product. Leave blank for unlimited re-downloads.',
+ 'woocommerce'
+ ),
+ placeholder: __( 'Unlimited', 'woocommerce' ),
+ suffix: (
+
+ { __( 'times', 'woocommerce' ) }
+
+ ),
+ onBlur() {
+ validateDownloadLimit();
+ },
+ };
+
+ const downloadExpiryProps = {
+ ...useNumberInputProps( {
+ value: downloadExpiry,
+ onChange: setDownloadExpiry,
+ } ),
+ id: useInstanceId(
+ BaseControl,
+ 'product_download_expiry_field'
+ ) as string,
+ type: 'number',
+ min: DOWNLOAD_EXPIRY_MIN,
+ className: classNames( {
+ 'has-error': errors.downloadExpiry,
+ } ),
+ label: __( 'Expiry period', 'woocommerce' ),
+ help:
+ errors.downloadExpiry ||
+ __(
+ 'Decide how long customers can access the files after purchasing the product. Leave blank for unlimited access.',
+ 'woocommerce'
+ ),
+ placeholder: __( 'Unlimited', 'woocommerce' ),
+ suffix: (
+
+ { __( 'days', 'woocommerce' ) }
+
+ ),
+ onBlur() {
+ validateDownloadExpiry();
+ },
+ };
+
+ function handleSubmit( event: FormEvent< HTMLFormElement > ) {
+ event.preventDefault();
+
+ const isDownloadLimitValid = validateDownloadLimit();
+ const isDownloadExpiryValid = validateDownloadExpiry();
+
+ if ( isDownloadLimitValid && isDownloadExpiryValid ) {
+ onSubmit( {
+ downloadLimit:
+ downloadLimit === ''
+ ? -1
+ : Number.parseInt( downloadLimit, 10 ),
+ downloadExpiry:
+ downloadExpiry === ''
+ ? -1
+ : Number.parseInt( downloadExpiry, 10 ),
+ } );
+ }
+ }
+
+ function handleCancelClick() {
+ onClose();
+ }
+
+ return (
+
+
+
+ );
+}
diff --git a/packages/js/product-editor/src/components/manage-download-limits-modal/style.scss b/packages/js/product-editor/src/components/manage-download-limits-modal/style.scss
new file mode 100644
index 00000000000..c22152842ee
--- /dev/null
+++ b/packages/js/product-editor/src/components/manage-download-limits-modal/style.scss
@@ -0,0 +1,45 @@
+.woocommerce-manage-download-limits-modal {
+ @include breakpoint(">600px") {
+ width: calc(100% - 32px);
+ }
+
+ @include breakpoint(">782px") {
+ width: 640px;
+
+ .components-input-control__container {
+ width: 50%;
+ }
+ }
+
+ &__input-suffix {
+ margin-right: $grid-unit-15;
+ }
+
+ &__content {
+ .components-base-control {
+ .components-input-control__container {
+ .components-input-control__input {
+ min-height: 36px;
+ }
+ }
+ }
+
+ .components-base-control.has-error {
+ .components-input-control__backdrop {
+ border-color: $studio-red-50;
+ }
+
+ .components-base-control__help {
+ color: $studio-red-50;
+ }
+ }
+ }
+
+ &__actions {
+ margin-top: $grid-unit-30;
+ display: flex;
+ flex-direction: row;
+ gap: 8px;
+ justify-content: flex-end;
+ }
+}
diff --git a/packages/js/product-editor/src/components/manage-download-limits-modal/types.ts b/packages/js/product-editor/src/components/manage-download-limits-modal/types.ts
new file mode 100644
index 00000000000..5c6375862fb
--- /dev/null
+++ b/packages/js/product-editor/src/components/manage-download-limits-modal/types.ts
@@ -0,0 +1,10 @@
+export type PartialEntity = {
+ downloadLimit: number | null;
+ downloadExpiry: number | null;
+};
+
+export type ManageDownloadLimitsModalProps = {
+ initialValue: PartialEntity;
+ onSubmit( value: PartialEntity ): void;
+ onClose(): void;
+};
diff --git a/packages/js/product-editor/src/style.scss b/packages/js/product-editor/src/style.scss
index 08e007e626d..019c4364d7d 100644
--- a/packages/js/product-editor/src/style.scss
+++ b/packages/js/product-editor/src/style.scss
@@ -32,6 +32,7 @@
@import "components/tags-field/style.scss";
@import "components/variation-switcher-footer/variation-switcher-footer.scss";
@import "components/remove-confirmation-modal/style.scss";
+@import "components/manage-download-limits-modal/style.scss";
/* Field Blocks */
diff --git a/plugins/woocommerce-admin/client/customize-store/design-with-ai/pages/ApiCallLoader.tsx b/plugins/woocommerce-admin/client/customize-store/design-with-ai/pages/ApiCallLoader.tsx
index 32dfb15b1cd..89095f36d6b 100644
--- a/plugins/woocommerce-admin/client/customize-store/design-with-ai/pages/ApiCallLoader.tsx
+++ b/plugins/woocommerce-admin/client/customize-store/design-with-ai/pages/ApiCallLoader.tsx
@@ -91,7 +91,7 @@ export const ApiCallLoader = () => {
return (
-
+
{ loaderSteps.map( ( step, index ) => (
diff --git a/plugins/woocommerce-admin/client/customize-store/intro/services.ts b/plugins/woocommerce-admin/client/customize-store/intro/services.ts
index fdff4fd569b..d0176aefab3 100644
--- a/plugins/woocommerce-admin/client/customize-store/intro/services.ts
+++ b/plugins/woocommerce-admin/client/customize-store/intro/services.ts
@@ -18,15 +18,53 @@ export const fetchThemeCards = async () => {
};
export const fetchIntroData = async () => {
- let currentThemeIsAiGenerated = false;
- const currentTemplate = await resolveSelect(
- coreStore
+ const currentTemplatePromise =
// @ts-expect-error No types for this exist yet.
- ).__experimentalGetTemplateForLink( '/' );
- const maybePreviousTemplate = await resolveSelect(
+ resolveSelect( coreStore ).__experimentalGetTemplateForLink( '/' );
+
+ const maybePreviousTemplatePromise = resolveSelect(
OPTIONS_STORE_NAME
).getOption( 'woocommerce_admin_customize_store_completed_theme_id' );
+ const styleRevsPromise =
+ // @ts-expect-error No types for this exist yet.
+ resolveSelect( coreStore ).getCurrentThemeGlobalStylesRevisions();
+
+ // @ts-expect-error No types for this exist yet.
+ const hasModifiedPagesPromise = resolveSelect( coreStore ).getEntityRecords(
+ 'postType',
+ 'page',
+ {
+ per_page: 100,
+ _fields: [ 'id', '_links.version-history' ],
+ orderby: 'menu_order',
+ order: 'asc',
+ }
+ );
+
+ const getTaskPromise = resolveSelect( ONBOARDING_STORE_NAME ).getTask(
+ 'customize-store'
+ );
+
+ const themeDataPromise = fetchThemeCards();
+
+ const [
+ currentTemplate,
+ maybePreviousTemplate,
+ styleRevs,
+ rawPages,
+ task,
+ themeData,
+ ] = await Promise.all( [
+ currentTemplatePromise,
+ maybePreviousTemplatePromise,
+ styleRevsPromise,
+ hasModifiedPagesPromise,
+ getTaskPromise,
+ themeDataPromise,
+ ] );
+
+ let currentThemeIsAiGenerated = false;
if (
maybePreviousTemplate &&
currentTemplate?.id === maybePreviousTemplate
@@ -34,33 +72,18 @@ export const fetchIntroData = async () => {
currentThemeIsAiGenerated = true;
}
- const styleRevs = await resolveSelect(
- coreStore
- // @ts-expect-error No types for this exist yet.
- ).getCurrentThemeGlobalStylesRevisions();
-
- const hasModifiedPages = (
- await resolveSelect( coreStore )
- // @ts-expect-error No types for this exist yet.
- .getEntityRecords( 'postType', 'page', {
- per_page: 100,
- _fields: [ 'id', '_links.version-history' ],
- orderby: 'menu_order',
- order: 'asc',
- } )
- )?.some( ( page: { _links: { [ key: string ]: string[] } } ) => {
- return page._links?.[ 'version-history' ]?.length > 1;
- } );
-
- const { getTask } = resolveSelect( ONBOARDING_STORE_NAME );
+ const hasModifiedPages = rawPages?.some(
+ ( page: { _links: { [ key: string ]: string[] } } ) => {
+ return page._links?.[ 'version-history' ]?.length > 1;
+ }
+ );
const activeThemeHasMods =
!! currentTemplate?.modified ||
styleRevs?.length > 0 ||
hasModifiedPages;
- const customizeStoreTaskCompleted = ( await getTask( 'customize-store' ) )
- ?.isComplete;
- const themeData = await fetchThemeCards();
+
+ const customizeStoreTaskCompleted = task?.isComplete;
return {
activeThemeHasMods,
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppInstallationInfo.tsx b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppInstallationInfo.tsx
index a21e2c115fc..f3476099097 100644
--- a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppInstallationInfo.tsx
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppInstallationInfo.tsx
@@ -1,7 +1,6 @@
/**
* External dependencies
*/
-import { __ } from '@wordpress/i18n';
import { QRCodeSVG } from 'qrcode.react';
export const MobileAppInstallationInfo = () => {
@@ -13,12 +12,6 @@ export const MobileAppInstallationInfo = () => {
}
size={ 140 }
/>
-
- { __(
- 'Scan the code above to download the WooCommerce mobile app, or visit woocommerce.com/mobile from your mobile device.',
- 'woocommerce'
- ) }
-
);
};
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginInfo.tsx b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginInfo.tsx
new file mode 100644
index 00000000000..c4a5c0d8829
--- /dev/null
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginInfo.tsx
@@ -0,0 +1,54 @@
+/**
+ * External dependencies
+ */
+import { QRCodeSVG } from 'qrcode.react';
+import React from '@wordpress/element';
+import interpolateComponents from '@automattic/interpolate-components';
+import { __ } from '@wordpress/i18n';
+import { recordEvent } from '@woocommerce/tracks';
+import { Link } from '@woocommerce/components';
+
+export const MobileAppLoginInfo = ( {
+ loginUrl,
+}: {
+ loginUrl: string | undefined;
+} ) => {
+ return (
+
+ { loginUrl && (
+
+
+
+ { __(
+ 'The app version needs to be 15.7 or above to sign in with this link.',
+ 'woocommerce'
+ ) }
+
+
+ ) }
+
+ { interpolateComponents( {
+ mixedString: __(
+ 'Any troubles signing in? Check out the {{link}}FAQ{{/link}}.',
+ 'woocommerce'
+ ),
+ components: {
+ link: (
+ {
+ recordEvent(
+ 'onboarding_app_login_faq_click'
+ );
+ } }
+ />
+ ),
+ strong: ,
+ },
+ } ) }
+
+
+ );
+};
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginStepper.tsx b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginStepper.tsx
new file mode 100644
index 00000000000..b0a83a2a27d
--- /dev/null
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/components/MobileAppLoginStepper.tsx
@@ -0,0 +1,154 @@
+/**
+ * External dependencies
+ */
+import React, { useState, useEffect } from '@wordpress/element';
+import { Button } from '@wordpress/components';
+import { sprintf, __ } from '@wordpress/i18n';
+import { Stepper, StepperProps } from '@woocommerce/components';
+
+/**
+ * Internal dependencies
+ */
+import { SendMagicLinkButton, SendMagicLinkStates } from './';
+import { getAdminSetting } from '~/utils/admin-settings';
+import { MobileAppInstallationInfo } from '../components/MobileAppInstallationInfo';
+import { MobileAppLoginInfo } from '../components/MobileAppLoginInfo';
+
+export const MobileAppLoginStepper = ( {
+ step,
+ isJetpackPluginInstalled,
+ wordpressAccountEmailAddress,
+ completeInstallationStepHandler,
+ sendMagicLinkHandler,
+ sendMagicLinkStatus,
+}: {
+ step: 'first' | 'second';
+ isJetpackPluginInstalled: boolean;
+ wordpressAccountEmailAddress: string | undefined;
+ completeInstallationStepHandler: () => void;
+ sendMagicLinkHandler: () => void;
+ sendMagicLinkStatus: SendMagicLinkStates;
+} ) => {
+ const [ stepsToDisplay, setStepsToDisplay ] = useState<
+ StepperProps[ 'steps' ] | undefined
+ >( undefined );
+ // we need to generate one set of steps for the first step, and another set for the second step
+ // because the texts are different after progressing from the first step to the second step
+ useEffect( () => {
+ if ( step === 'first' ) {
+ setStepsToDisplay( [
+ {
+ key: 'first',
+ label: __( 'Install the mobile app', 'woocommerce' ),
+ description: __(
+ 'Scan the code below to download or upgrade the app, or visit woocommerce.com/mobile from your mobile device.',
+ 'woocommerce'
+ ),
+ content: (
+ <>
+
+ {
+ completeInstallationStepHandler();
+ } }
+ >
+ { __( 'App is installed', 'woocommerce' ) }
+
+ >
+ ),
+ },
+ {
+ key: 'second',
+ label: __( 'Sign into the app', 'woocommerce' ),
+ description: '',
+ content: <>>,
+ },
+ ] );
+ } else if ( step === 'second' ) {
+ if (
+ isJetpackPluginInstalled &&
+ wordpressAccountEmailAddress !== undefined
+ ) {
+ setStepsToDisplay( [
+ {
+ key: 'first',
+ label: __( 'App installed', 'woocommerce' ),
+ description: '',
+ content: <>>,
+ },
+ {
+ key: 'second',
+ label: 'Sign into the app',
+ description: sprintf(
+ /* translators: Reflecting to the user that the magic link has been sent to their WordPress account email address */
+ __(
+ 'We’ll send a magic link to %s. Open it on your smartphone or tablet to sign into your store instantly.',
+ 'woocommerce'
+ ),
+ wordpressAccountEmailAddress
+ ),
+ content: (
+
+ ),
+ },
+ ] );
+ } else {
+ const siteUrl: string = getAdminSetting( 'siteUrl' );
+ const username = getAdminSetting( 'currentUserData' ).username;
+ const loginUrl = `woocommerce://app-login?siteUrl=${ encodeURIComponent(
+ siteUrl
+ ) }&username=${ encodeURIComponent( username ) }`;
+ const description = loginUrl
+ ? __(
+ 'Scan the QR code below and enter the wp-admin password in the app.',
+ 'woocommerce'
+ )
+ : __(
+ 'Follow the instructions in the app to sign in.',
+ 'woocommerce'
+ );
+ setStepsToDisplay( [
+ {
+ key: 'first',
+ label: __( 'App installed', 'woocommerce' ),
+ description: '',
+ content: <>>,
+ },
+ {
+ key: 'second',
+ label: 'Sign into the app',
+ description,
+ content: ,
+ },
+ ] );
+ }
+ }
+ }, [
+ step,
+ isJetpackPluginInstalled,
+ wordpressAccountEmailAddress,
+ completeInstallationStepHandler,
+ sendMagicLinkHandler,
+ sendMagicLinkStatus,
+ ] );
+
+ return (
+
+ { stepsToDisplay && (
+
+ ) }
+
+ );
+};
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/index.tsx b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/index.tsx
index 271527f7db8..18f3f4ce85d 100644
--- a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/index.tsx
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/index.tsx
@@ -23,11 +23,7 @@ import {
useSendMagicLink,
SendMagicLinkStates,
} from './components';
-import {
- EmailSentPage,
- MobileAppInstallPage,
- JetpackAlreadyInstalledPage,
-} from './pages';
+import { EmailSentPage, MobileAppLoginStepperPage } from './pages';
import './style.scss';
import { SETUP_TASK_HELP_ITEMS_FILTER } from '../../activity-panel/panels/help';
@@ -54,6 +50,7 @@ export const MobileAppModal = () => {
}
}, [ searchParams ] );
+ const [ appInstalledClicked, setAppInstalledClicked ] = useState( false );
const [ hasSentEmail, setHasSentEmail ] = useState( false );
const [ isRetryingMagicLinkSend, setIsRetryingMagicLinkSend ] =
useState( false );
@@ -61,6 +58,11 @@ export const MobileAppModal = () => {
const { requestState: magicLinkRequestStatus, fetchMagicLinkApiCall } =
useSendMagicLink();
+ const completeAppInstallationStep = useCallback( () => {
+ setAppInstalledClicked( true );
+ recordEvent( 'onboarding_app_install_click' );
+ }, [] );
+
const sendMagicLink = useCallback( () => {
fetchMagicLinkApiCall();
recordEvent( 'magic_prompt_send_signin_link_click' );
@@ -83,28 +85,29 @@ export const MobileAppModal = () => {
} }
/>
);
- } else if (
- state === JetpackPluginStates.FULL_CONNECTION &&
- jetpackConnectionData?.currentUser?.wpcomUser?.email &&
- ! hasSentEmail
- ) {
+ } else {
+ const isJetpackPluginInstalled =
+ ( state === JetpackPluginStates.FULL_CONNECTION &&
+ jetpackConnectionData?.currentUser?.wpcomUser?.email !==
+ undefined ) ??
+ false;
const wordpressAccountEmailAddress =
- jetpackConnectionData?.currentUser.wpcomUser.email;
+ jetpackConnectionData?.currentUser?.wpcomUser?.email;
setPageContent(
-
);
- } else {
- // Shows the installation page by default.
- setPageContent( );
}
}, [
+ appInstalledClicked,
sendMagicLink,
hasSentEmail,
isReturningFromWordpressConnection,
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/MobileAppLoginStepperPage.tsx b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/MobileAppLoginStepperPage.tsx
new file mode 100644
index 00000000000..78c4de948b1
--- /dev/null
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/MobileAppLoginStepperPage.tsx
@@ -0,0 +1,50 @@
+/**
+ * External dependencies
+ */
+import { __ } from '@wordpress/i18n';
+
+/**
+ * Internal dependencies
+ */
+import { ModalContentLayoutWithTitle } from '../layouts/ModalContentLayoutWithTitle';
+import { SendMagicLinkStates } from '../components';
+import { MobileAppLoginStepper } from '../components/MobileAppLoginStepper';
+
+interface MobileAppLoginStepperPageProps {
+ appInstalledClicked: boolean;
+ isJetpackPluginInstalled: boolean;
+ wordpressAccountEmailAddress: string | undefined;
+ completeInstallationHandler: () => void;
+ sendMagicLinkHandler: () => void;
+ sendMagicLinkStatus: SendMagicLinkStates;
+}
+
+export const MobileAppLoginStepperPage: React.FC<
+ MobileAppLoginStepperPageProps
+> = ( {
+ appInstalledClicked,
+ isJetpackPluginInstalled,
+ wordpressAccountEmailAddress,
+ completeInstallationHandler,
+ sendMagicLinkHandler,
+ sendMagicLinkStatus,
+} ) => (
+
+
+
+ { __(
+ 'Run your store from anywhere in two easy steps.',
+ 'woocommerce'
+ ) }
+
+
+
+
+);
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/index.tsx b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/index.tsx
index 1c1bf6dc889..93408c21622 100644
--- a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/index.tsx
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/pages/index.tsx
@@ -1,4 +1,4 @@
export { EmailSentPage } from './EmailSentPage';
export { JetpackAlreadyInstalledPage } from './JetpackAlreadyInstalledPage';
export { JetpackInstallStepperPage } from './JetpackInstallStepperPage';
-export { MobileAppInstallPage } from './MobileAppInstallPage';
+export { MobileAppLoginStepperPage } from './MobileAppLoginStepperPage';
diff --git a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/style.scss b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/style.scss
index e71c4e8266c..63991ab52c2 100644
--- a/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/style.scss
+++ b/plugins/woocommerce-admin/client/homescreen/mobile-app-modal/style.scss
@@ -14,7 +14,7 @@
max-width: 964px;
min-width: 534px;
// Overrides the default modal max-height.
- max-height: 663px;
+ max-height: unset;
.components-modal__header {
height: 0;
@@ -154,7 +154,14 @@
}
}
-.woocommerce-stepper.is-vertical .woocommerce-stepper__step.is-complete {
+.login-stepper-wrapper {
+ button.install-app-button {
+ position: relative;
+ margin-top: 1em;
+ }
+}
+
+.woocommerce-stepper.is-vertical .woocommerce-stepper__step {
// default vertical step distance is 36px which is too much and doesn't match the design
padding-bottom: 16px;
}
diff --git a/plugins/woocommerce-admin/client/layout/controller.js b/plugins/woocommerce-admin/client/layout/controller.js
index 738f62d8ec0..4cf901c895b 100644
--- a/plugins/woocommerce-admin/client/layout/controller.js
+++ b/plugins/woocommerce-admin/client/layout/controller.js
@@ -280,6 +280,9 @@ export const getPages = () => {
navArgs: {
id: 'woocommerce-edit-product',
},
+ layout: {
+ header: false,
+ },
wpOpenMenu: 'menu-posts-product',
capability: 'edit_products',
} );
diff --git a/plugins/woocommerce/changelog/39948-patch-4 b/plugins/woocommerce/changelog/39948-patch-4
new file mode 100644
index 00000000000..2b48d2bf62e
--- /dev/null
+++ b/plugins/woocommerce/changelog/39948-patch-4
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Do not remove sale date from when the sale is still active
diff --git a/plugins/woocommerce/changelog/add-40794-active-theme-label b/plugins/woocommerce/changelog/add-40794-active-theme-label
new file mode 100644
index 00000000000..f4a962b357c
--- /dev/null
+++ b/plugins/woocommerce/changelog/add-40794-active-theme-label
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Add active theme label for CYS intro screen
diff --git a/plugins/woocommerce/changelog/add-40805 b/plugins/woocommerce/changelog/add-40805
new file mode 100644
index 00000000000..7d3cba7e17f
--- /dev/null
+++ b/plugins/woocommerce/changelog/add-40805
@@ -0,0 +1,4 @@
+Significance: minor
+Type: add
+
+Add virtual section to the product variation template
diff --git a/plugins/woocommerce/changelog/add-script-strategy b/plugins/woocommerce/changelog/add-script-strategy
new file mode 100644
index 00000000000..7ee37500dc3
--- /dev/null
+++ b/plugins/woocommerce/changelog/add-script-strategy
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Use the Script API strategy feature to defer front-end scripts in WordPress 6.3+
\ No newline at end of file
diff --git a/plugins/woocommerce/changelog/breadcrumb-accessibility b/plugins/woocommerce/changelog/breadcrumb-accessibility
new file mode 100644
index 00000000000..9a0ef664c07
--- /dev/null
+++ b/plugins/woocommerce/changelog/breadcrumb-accessibility
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Added aria-label to breadcrumb element
diff --git a/plugins/woocommerce/changelog/e2e-add-order-notes b/plugins/woocommerce/changelog/e2e-add-order-notes
new file mode 100644
index 00000000000..f9ce55740a9
--- /dev/null
+++ b/plugins/woocommerce/changelog/e2e-add-order-notes
@@ -0,0 +1,4 @@
+Significance: patch
+Type: dev
+
+Add e2e test for order notes
diff --git a/plugins/woocommerce/changelog/e2e-bulk-update-order-status b/plugins/woocommerce/changelog/e2e-bulk-update-order-status
new file mode 100644
index 00000000000..be7672d0b57
--- /dev/null
+++ b/plugins/woocommerce/changelog/e2e-bulk-update-order-status
@@ -0,0 +1,4 @@
+Significance: patch
+Type: dev
+
+Add e2e test to bulk update order statuses
diff --git a/plugins/woocommerce/changelog/e2e-update-order-to-cancelled b/plugins/woocommerce/changelog/e2e-update-order-to-cancelled
new file mode 100644
index 00000000000..d3fc2f1f67c
--- /dev/null
+++ b/plugins/woocommerce/changelog/e2e-update-order-to-cancelled
@@ -0,0 +1,4 @@
+Significance: patch
+Type: dev
+
+Update order status to cancelled
diff --git a/plugins/woocommerce/changelog/fix-40319 b/plugins/woocommerce/changelog/fix-40319
new file mode 100644
index 00000000000..6ca2909685e
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-40319
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+fix - Fatal error in class-wc-helper-updater.php when transient parameter is null
diff --git a/plugins/woocommerce/changelog/fix-40842_hide_header b/plugins/woocommerce/changelog/fix-40842_hide_header
new file mode 100644
index 00000000000..c27e0d0126a
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-40842_hide_header
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+Disable the rendering of the header on the variation edit page, as it has its own header.
diff --git a/plugins/woocommerce/changelog/fix-40852 b/plugins/woocommerce/changelog/fix-40852
new file mode 100644
index 00000000000..7701b1aea43
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-40852
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Fix duplicate description when editing the product summary
diff --git a/plugins/woocommerce/changelog/fix-cys-design-with-ai-loader-loop b/plugins/woocommerce/changelog/fix-cys-design-with-ai-loader-loop
new file mode 100644
index 00000000000..ca73c914700
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-cys-design-with-ai-loader-loop
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Fix cys loading screep should not be looping
diff --git a/plugins/woocommerce/changelog/fix-cys-intro-parallelise-network-calls b/plugins/woocommerce/changelog/fix-cys-intro-parallelise-network-calls
new file mode 100644
index 00000000000..867ab80b68e
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-cys-intro-parallelise-network-calls
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Parallelised the independent network calls on the intro screen so that they become much faster
diff --git a/plugins/woocommerce/changelog/wcios-mobile-onboarding-task-iteration-2 b/plugins/woocommerce/changelog/wcios-mobile-onboarding-task-iteration-2
new file mode 100644
index 00000000000..a1a58f99b98
--- /dev/null
+++ b/plugins/woocommerce/changelog/wcios-mobile-onboarding-task-iteration-2
@@ -0,0 +1,4 @@
+Significance: minor
+Type: update
+
+two steps app onboarding
diff --git a/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php b/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php
index 972ce762537..7cde44d1c7d 100644
--- a/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php
+++ b/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php
@@ -68,17 +68,21 @@ class WC_Helper_Updater {
$item['package'] = 'woocommerce-com-expired-' . $plugin['_product_id'];
}
- if ( version_compare( $plugin['Version'], $data['version'], '<' ) ) {
- $transient->response[ $filename ] = (object) $item;
- unset( $transient->no_update[ $filename ] );
- } else {
- $transient->no_update[ $filename ] = (object) $item;
- unset( $transient->response[ $filename ] );
+ if ( $transient instanceof stdClass ) {
+ if ( version_compare( $plugin['Version'], $data['version'], '<' ) ) {
+ $transient->response[ $filename ] = (object) $item;
+ unset( $transient->no_update[ $filename ] );
+ } else {
+ $transient->no_update[ $filename ] = (object) $item;
+ unset( $transient->response[ $filename ] );
+ }
}
}
- $translations = self::get_translations_update_data();
- $transient->translations = array_merge( isset( $transient->translations ) ? $transient->translations : array(), $translations );
+ if ( $transient instanceof stdClass ) {
+ $translations = self::get_translations_update_data();
+ $transient->translations = array_merge( isset( $transient->translations ) ? $transient->translations : array(), $translations );
+ }
return $transient;
}
diff --git a/plugins/woocommerce/includes/class-wc-frontend-scripts.php b/plugins/woocommerce/includes/class-wc-frontend-scripts.php
index 5eb6d1e5b3a..dff3ad22ee6 100644
--- a/plugins/woocommerce/includes/class-wc-frontend-scripts.php
+++ b/plugins/woocommerce/includes/class-wc-frontend-scripts.php
@@ -120,7 +120,7 @@ class WC_Frontend_Scripts {
* @param string $version String specifying script version number, if it has one, which is added to the URL as a query string for cache busting purposes. If version is set to false, a version number is automatically added equal to current installed WordPress version. If set to null, no version is added.
* @param boolean $in_footer Whether to enqueue the script before instead of in the
. Default 'false'.
*/
- private static function register_script( $handle, $path, $deps = array( 'jquery' ), $version = WC_VERSION, $in_footer = true ) {
+ private static function register_script( $handle, $path, $deps = array( 'jquery' ), $version = WC_VERSION, $in_footer = array( 'strategy' => 'defer' ) ) {
self::$scripts[] = $handle;
wp_register_script( $handle, $path, $deps, $version, $in_footer );
}
@@ -135,7 +135,7 @@ class WC_Frontend_Scripts {
* @param string $version String specifying script version number, if it has one, which is added to the URL as a query string for cache busting purposes. If version is set to false, a version number is automatically added equal to current installed WordPress version. If set to null, no version is added.
* @param boolean $in_footer Whether to enqueue the script before instead of in the
. Default 'false'.
*/
- private static function enqueue_script( $handle, $path = '', $deps = array( 'jquery' ), $version = WC_VERSION, $in_footer = true ) {
+ private static function enqueue_script( $handle, $path = '', $deps = array( 'jquery' ), $version = WC_VERSION, $in_footer = array( 'strategy' => 'defer' ) ) {
if ( ! in_array( $handle, self::$scripts, true ) && $path ) {
self::register_script( $handle, $path, $deps, $version, $in_footer );
}
diff --git a/plugins/woocommerce/includes/wc-product-functions.php b/plugins/woocommerce/includes/wc-product-functions.php
index da041dbb0ea..aa4825986d1 100644
--- a/plugins/woocommerce/includes/wc-product-functions.php
+++ b/plugins/woocommerce/includes/wc-product-functions.php
@@ -448,7 +448,6 @@ function wc_scheduled_sales() {
if ( $sale_price ) {
$product->set_price( $sale_price );
- $product->set_date_on_sale_from( '' );
} else {
$product->set_date_on_sale_to( '' );
$product->set_date_on_sale_from( '' );
diff --git a/plugins/woocommerce/includes/wc-template-functions.php b/plugins/woocommerce/includes/wc-template-functions.php
index 678cd1ac361..f42087b22c2 100644
--- a/plugins/woocommerce/includes/wc-template-functions.php
+++ b/plugins/woocommerce/includes/wc-template-functions.php
@@ -2338,7 +2338,7 @@ if ( ! function_exists( 'woocommerce_breadcrumb' ) ) {
'woocommerce_breadcrumb_defaults',
array(
'delimiter' => ' / ',
- 'wrap_before' => '',
+ 'wrap_before' => '',
'wrap_after' => ' ',
'before' => '',
'after' => '',
diff --git a/plugins/woocommerce/src/Admin/API/OnboardingThemes.php b/plugins/woocommerce/src/Admin/API/OnboardingThemes.php
index 05676f5d67d..97fbf490b2a 100644
--- a/plugins/woocommerce/src/Admin/API/OnboardingThemes.php
+++ b/plugins/woocommerce/src/Admin/API/OnboardingThemes.php
@@ -249,6 +249,8 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
);
}
+ $current_theme_slug = wp_get_theme()->get_stylesheet();
+
// To be implemented: 1. Fetch themes from the marketplace API. 2. Convert prices to the requested currency.
// These are Dotcom themes.
$themes = array(
@@ -258,7 +260,7 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
'color_palettes' => array(),
'total_palettes' => 0,
'slug' => 'tsubaki',
- 'is_active' => false,
+ 'is_active' => 'tsubaki' === $current_theme_slug,
'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tsubaki/screenshot.png',
'link_url' => 'https://wordpress.com/theme/tsubaki/',
),
@@ -268,7 +270,7 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
'color_palettes' => array(),
'total_palettes' => 0,
'slug' => 'tazza',
- 'is_active' => false,
+ 'is_active' => 'tazza' === $current_theme_slug,
'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tazza/screenshot.png',
'link_url' => 'https://wordpress.com/theme/tazza/',
'total_palettes' => 0,
@@ -300,7 +302,7 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
),
'total_palettes' => 5,
'slug' => 'amulet',
- 'is_active' => false,
+ 'is_active' => 'amulet' === $current_theme_slug,
'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/amulet/screenshot.png',
'link_url' => 'https://wordpress.com/theme/amulet/',
),
@@ -331,7 +333,7 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
),
'total_palettes' => 11,
'slug' => 'zaino',
- 'is_active' => false,
+ 'is_active' => 'zaino' === $current_theme_slug,
'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/zaino/screenshot.png',
'link_url' => 'https://wordpress.com/theme/zaino/',
),
diff --git a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php
index c1bb3e60f59..958cb25ef08 100644
--- a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php
+++ b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/ProductVariationTemplate.php
@@ -137,7 +137,7 @@ class ProductVariationTemplate extends AbstractProductFormTemplate implements Pr
'attributes' => [
'property' => 'description',
'label' => __( 'Note ', 'woocommerce' ),
- 'helpText' => '',
+ 'helpText' => 'Enter an optional note displayed on the product page when customers select this variation.',
],
]
);
@@ -475,11 +475,30 @@ class ProductVariationTemplate extends AbstractProductFormTemplate implements Pr
],
]
);
+ // Virtual section.
+ $shipping_group->add_section(
+ [
+ 'id' => 'product-variation-virtual-section',
+ 'order' => 20,
+ ]
+ )->add_block(
+ [
+ 'id' => 'product-variation-virtual',
+ 'blockName' => 'woocommerce/product-toggle-field',
+ 'order' => 10,
+ 'attributes' => [
+ 'property' => 'virtual',
+ 'checkedValue' => false,
+ 'uncheckedValue' => true,
+ 'label' => __( 'This variation requires shipping or pickup', 'woocommerce' ),
+ ],
+ ]
+ );
// Product Shipping Section.
$product_fee_and_dimensions_section = $shipping_group->add_section(
[
'id' => 'product-variation-fee-and-dimensions-section',
- 'order' => 20,
+ 'order' => 30,
'attributes' => [
'title' => __( 'Fees & dimensions', 'woocommerce' ),
'description' => sprintf(
diff --git a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php
index 72270f9e421..2f93d459609 100644
--- a/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php
+++ b/plugins/woocommerce/src/Admin/Features/ProductBlockEditor/ProductTemplates/SimpleProductTemplate.php
@@ -152,7 +152,7 @@ class SimpleProductTemplate extends AbstractProductFormTemplate implements Produ
'blockName' => 'woocommerce/product-summary-field',
'order' => 20,
'attributes' => [
- 'property' => 'description',
+ 'property' => 'short_description',
],
]
);
@@ -776,8 +776,10 @@ class SimpleProductTemplate extends AbstractProductFormTemplate implements Produ
'blockName' => 'woocommerce/product-toggle-field',
'order' => 10,
'attributes' => [
- 'property' => 'virtual',
- 'label' => __( 'This product requires shipping or pickup', 'woocommerce' ),
+ 'property' => 'virtual',
+ 'checkedValue' => false,
+ 'uncheckedValue' => true,
+ 'label' => __( 'This product requires shipping or pickup', 'woocommerce' ),
],
]
);
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-bulk-edit.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-bulk-edit.spec.js
new file mode 100644
index 00000000000..0a0619827d9
--- /dev/null
+++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-bulk-edit.spec.js
@@ -0,0 +1,89 @@
+const { test, expect } = require( '@playwright/test' );
+const wcApi = require( '@woocommerce/woocommerce-rest-api' ).default;
+
+test.describe( 'Bulk edit orders', () => {
+ test.use( { storageState: process.env.ADMINSTATE } );
+
+ let orderId1, orderId2, orderId3, orderId4, orderId5;
+
+ test.beforeAll( async ( { baseURL } ) => {
+ const api = new wcApi( {
+ url: baseURL,
+ consumerKey: process.env.CONSUMER_KEY,
+ consumerSecret: process.env.CONSUMER_SECRET,
+ version: 'wc/v3',
+ } );
+ await api
+ .post( 'orders', {
+ status: 'processing',
+ } )
+ .then( ( response ) => {
+ orderId1 = response.data.id;
+ } );
+ await api
+ .post( 'orders', {
+ status: 'processing',
+ } )
+ .then( ( response ) => {
+ orderId2 = response.data.id;
+ } );
+ await api
+ .post( 'orders', {
+ status: 'processing',
+ } )
+ .then( ( response ) => {
+ orderId3 = response.data.id;
+ } );
+ await api
+ .post( 'orders', {
+ status: 'processing',
+ } )
+ .then( ( response ) => {
+ orderId4 = response.data.id;
+ } );
+ await api
+ .post( 'orders', {
+ status: 'processing',
+ } )
+ .then( ( response ) => {
+ orderId5 = response.data.id;
+ } );
+ } );
+
+ test.afterAll( async ( { baseURL } ) => {
+ const api = new wcApi( {
+ url: baseURL,
+ consumerKey: process.env.CONSUMER_KEY,
+ consumerSecret: process.env.CONSUMER_SECRET,
+ version: 'wc/v3',
+ } );
+ await api.delete( `orders/${ orderId1 }`, { force: true } );
+ await api.delete( `orders/${ orderId2 }`, { force: true } );
+ await api.delete( `orders/${ orderId3 }`, { force: true } );
+ await api.delete( `orders/${ orderId4 }`, { force: true } );
+ await api.delete( `orders/${ orderId5 }`, { force: true } );
+ } );
+
+ test( 'can bulk update order status', async ( { page } ) => {
+ await page.goto( 'wp-admin/admin.php?page=wc-orders' );
+
+ // expect order status 'processing' to show
+ await expect( page.locator( `#order-${ orderId1 }`).getByText( 'Processing') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId2 }`).getByText( 'Processing') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId3 }`).getByText( 'Processing') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId4 }`).getByText( 'Processing') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId5 }`).getByText( 'Processing') ).toBeVisible();
+
+ await page.locator( '#cb-select-all-1' ).click();
+ await page.locator( '#bulk-action-selector-top' ).selectOption( 'Change status to completed' );
+ await page.locator('#doaction').click();
+
+ // expect order status 'completed' to show
+ await expect( page.locator( `#order-${ orderId1 }`).getByText( 'Completed') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId2 }`).getByText( 'Completed') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId3 }`).getByText( 'Completed') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId4 }`).getByText( 'Completed') ).toBeVisible();
+ await expect( page.locator( `#order-${ orderId5 }`).getByText( 'Completed') ).toBeVisible();
+ } );
+
+} );
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-edit.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-edit.spec.js
index 270f93ba851..444ed14c393 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-edit.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/merchant/order-edit.spec.js
@@ -5,7 +5,7 @@ const uuid = require( 'uuid' );
test.describe( 'Edit order', () => {
test.use( { storageState: process.env.ADMINSTATE } );
- let orderId;
+ let orderId, orderToCancel;
test.beforeAll( async ( { baseURL } ) => {
const api = new wcApi( {
@@ -21,6 +21,13 @@ test.describe( 'Edit order', () => {
.then( ( response ) => {
orderId = response.data.id;
} );
+ await api
+ .post( 'orders', {
+ status: 'processing',
+ } )
+ .then( ( response ) => {
+ orderToCancel = response.data.id;
+ } );
} );
test.afterAll( async ( { baseURL } ) => {
@@ -31,6 +38,7 @@ test.describe( 'Edit order', () => {
version: 'wc/v3',
} );
await api.delete( `orders/${ orderId }`, { force: true } );
+ await api.delete( `orders/${ orderToCancel }`, { force: true } );
} );
test( 'can view single order', async ( { page } ) => {
@@ -66,6 +74,31 @@ test.describe( 'Edit order', () => {
await expect(
page.locator( '#woocommerce-order-notes .note_content >> nth=0' )
).toContainText( 'Order status changed from Processing to Completed.' );
+
+ // load the orders listing and confirm order is completed
+ await page.goto( 'wp-admin/admin.php?page=wc-orders' );
+
+ await expect( page.locator( `#order-${ orderId }` ).getByRole( 'cell', { name: 'Completed' }) ).toBeVisible();
+ } );
+
+ test( 'can update order status to cancelled', async ( { page } ) => {
+ // open order we created
+ await page.goto( `wp-admin/post.php?post=${ orderToCancel }&action=edit` );
+
+ // update order status to Completed
+ await page.locator( '#order_status' ).selectOption( 'Cancelled' );
+ await page.locator( 'button.save_order' ).click();
+
+ // verify order status changed and note added
+ await expect( page.locator( '#order_status' ) ).toHaveValue(
+ 'wc-cancelled'
+ );
+ await expect( page.getByText( 'Order status changed from Processing to Cancelled.' ) ).toBeVisible();
+
+ // load the orders listing and confirm order is cancelled
+ await page.goto( 'wp-admin/admin.php?page=wc-orders' );
+
+ await expect( page.locator( `#order-${ orderToCancel }` ).getByRole( 'cell', { name: 'Cancelled' }) ).toBeVisible();
} );
test( 'can update order details', async ( { page } ) => {
@@ -87,6 +120,40 @@ test.describe( 'Edit order', () => {
);
} );
+ test( 'can add and delete order notes', async ( { page } ) => {
+ // open order we created
+ await page.goto( `wp-admin/post.php?post=${ orderId }&action=edit` );
+ await page.on( 'dialog', dialog => dialog.accept() );
+
+ // add an order note
+ await page.getByLabel( 'Add note' ).fill( 'This order is a test order. It is only a test. This note is a private note.' );
+ await page.getByRole( 'button', { name: 'Add', exact: true } ).click();
+
+ // verify the note saved
+ await expect( page.getByText( 'This order is a test order. It is only a test. This note is a private note.' ) ).toBeVisible();
+
+ // delete the note
+ await page.getByRole( 'button', { name: 'Delete note' } ).first().click();
+
+ // verify the note is gone
+ await expect( page.getByText( 'This order is a test order. It is only a test. This note is a private note.' ) ).not.toBeVisible();
+
+ // add note to customer
+ // add an order note
+ await page.getByLabel( 'Add note' ).fill( 'This order is a test order. It is only a test. This note is a note to the customer.' );
+ await page.getByLabel('Note type').selectOption( 'Note to customer' );
+ await page.getByRole( 'button', { name: 'Add', exact: true } ).click();
+
+ // verify the note saved
+ await expect( page.getByText( 'This order is a test order. It is only a test. This note is a note to the customer.' ) ).toBeVisible();
+
+ // delete the note
+ await page.getByRole( 'button', { name: 'Delete note' } ).first().click();
+
+ // verify the note is gone
+ await expect( page.getByText( 'This order is a test order. It is only a test. This note is a private note.' ) ).not.toBeVisible();
+ } );
+
test( 'can load billing details', async ( { page, baseURL } ) => {
let customerId = 0;
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2592df5ab18..7fe492e834e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -462,12 +462,21 @@ importers:
packages/js/block-templates:
dependencies:
+ '@woocommerce/expression-evaluation':
+ specifier: workspace:*
+ version: link:../expression-evaluation
'@wordpress/block-editor':
specifier: ^9.8.0
- version: 9.8.0(@babel/core@7.21.3)(react@17.0.2)
+ version: 9.8.0(@babel/core@7.21.3)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
'@wordpress/blocks':
specifier: ^12.3.0
version: 12.5.0(react@17.0.2)
+ '@wordpress/data':
+ specifier: wp-6.0
+ version: 6.6.1(react@17.0.2)
+ '@wordpress/element':
+ specifier: wp-6.0
+ version: 4.4.1
devDependencies:
'@babel/core':
specifier: ^7.21.3
@@ -484,15 +493,18 @@ importers:
'@types/jest':
specifier: ^27.4.1
version: 27.4.1
+ '@types/react':
+ specifier: ^17.0.2
+ version: 17.0.50
'@types/testing-library__jest-dom':
specifier: ^5.14.3
version: 5.14.3
'@types/wordpress__block-editor':
specifier: ^7.0.0
- version: 7.0.0(react@17.0.2)
+ version: 7.0.0(react-dom@17.0.2)(react@17.0.2)
'@types/wordpress__blocks':
specifier: ^11.0.7
- version: 11.0.7(react@17.0.2)
+ version: 11.0.7(react-dom@17.0.2)(react@17.0.2)
'@woocommerce/eslint-plugin':
specifier: workspace:*
version: link:../eslint-plugin
@@ -526,6 +538,12 @@ importers:
postcss-loader:
specifier: ^4.3.0
version: 4.3.0(postcss@8.4.12)(webpack@5.76.3)
+ react:
+ specifier: ^17.0.2
+ version: 17.0.2
+ react-dom:
+ specifier: ^17.0.2
+ version: 17.0.2(react@17.0.2)
rimraf:
specifier: ^3.0.2
version: 3.0.2
@@ -3928,7 +3946,7 @@ importers:
version: 8.32.0
jest:
specifier: ^29.5.0
- version: 29.5.0(@types/node@16.18.21)
+ version: 29.5.0(@types/node@16.18.21)(ts-node@10.9.1)
ts-jest:
specifier: ^29.1.0
version: 29.1.0(@babel/core@7.21.3)(jest@29.5.0)(typescript@5.1.6)
@@ -4153,7 +4171,7 @@ packages:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==}
engines: {node: '>=6.0.0'}
dependencies:
- '@jridgewell/trace-mapping': 0.3.17
+ '@jridgewell/trace-mapping': 0.3.19
/@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
@@ -4169,7 +4187,7 @@ packages:
/@ariakit/react-core@0.2.17(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-y8pHUR2lMcYHUontd33lpnenOBIT8E72IhbMQq/aROQHAevNxLr0JtSkQ+G439N9DfCpKxDaErikss6zqCEGGQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
dependencies:
'@ariakit/core': 0.2.9
@@ -4182,7 +4200,7 @@ packages:
/@ariakit/react@0.2.17(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-fJG0JBoACasyIVb+K9rW1Vyo7gI5Iseu1sP3WvIMnt5VdWjC/63NLpBHdnwQLhSx4z83pBPY6zKfPmEJa9fYug==}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0 || ^18.0.0
react-dom: ^17.0.0 || ^18.0.0
dependencies:
'@ariakit/react-core': 0.2.17(react-dom@17.0.2)(react@17.0.2)
@@ -4243,7 +4261,7 @@ packages:
resolution: {integrity: sha512-tUuWSb5iIzZpHpqCSeXw89+lX6Gpkz/Puh+FWrMyWe4ohgK/WrrAnMqEsA5O/UpEzHNtkuqVmo8haCJKL27mwg==}
peerDependencies:
'@wordpress/data': ^4
- react: ^17.0.2
+ react: ^16.8
dependencies:
'@automattic/format-currency': 1.0.0-alpha.0
'@wordpress/api-fetch': 3.23.1(react-native@0.70.0)
@@ -4365,8 +4383,8 @@ packages:
/@automattic/interpolate-components@1.2.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-YNQtJsrs9KQ3lkBdtLyDheVRijoBA3y/PuHdgJ0eB4AX9JyjkDX7jd79Inh79+01CGNLbMQGrEJby2zvbJr17A==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '>=16.14.23'
+ react: '>=16.2.0'
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4466,7 +4484,7 @@ packages:
/@automattic/viewport-react@1.0.0(react@17.0.2):
resolution: {integrity: sha512-+6+l4jj14GXeoc5Jpic5E5eVvNL88Ezz8cMLmKAw0fpPDsz4gJv7o0hgShu0hjGjKTtBeUkBGfFWMCdRjZaVcA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.0.0
dependencies:
'@automattic/viewport': 1.1.0
'@wordpress/compose': 3.25.3(react@17.0.2)
@@ -4782,7 +4800,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-validator-option': 7.21.0
browserslist: 4.19.3
- semver: 6.3.0
+ semver: 6.3.1
dev: true
/@babel/helper-compilation-targets@7.17.7(@babel/core@7.17.8):
@@ -4795,7 +4813,7 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-validator-option': 7.21.0
browserslist: 4.19.3
- semver: 6.3.0
+ semver: 6.3.1
dev: true
/@babel/helper-compilation-targets@7.17.7(@babel/core@7.21.3):
@@ -4808,7 +4826,7 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-validator-option': 7.21.0
browserslist: 4.19.3
- semver: 6.3.0
+ semver: 6.3.1
dev: true
/@babel/helper-compilation-targets@7.19.3(@babel/core@7.17.8):
@@ -4819,7 +4837,7 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
- '@babel/helper-validator-option': 7.21.0
+ '@babel/helper-validator-option': 7.22.15
browserslist: 4.21.4
semver: 6.3.1
@@ -4870,13 +4888,15 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
+ '@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.21.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.12.9)
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-split-export-declaration': 7.18.6
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/helper-create-class-features-plugin@7.17.6(@babel/core@7.17.8):
@@ -4904,13 +4924,15 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
+ '@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.21.0
- '@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.22.9(@babel/core@7.21.3)
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.20.7
+ '@babel/helper-split-export-declaration': 7.18.6
+ transitivePeerDependencies:
+ - supports-color
/@babel/helper-create-class-features-plugin@7.19.0(@babel/core@7.12.9):
resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
@@ -5019,7 +5041,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.2.1
/@babel/helper-create-regexp-features-plugin@7.19.0(@babel/core@7.17.8):
@@ -5029,7 +5051,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.2.1
dev: true
@@ -5040,7 +5062,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
regexpu-core: 5.2.1
/@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.21.3):
@@ -5083,7 +5105,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@9.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -5099,7 +5121,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
debug: 4.3.4(supports-color@9.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.1
@@ -5225,11 +5247,11 @@ packages:
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.21.4
- '@babel/helper-simple-access': 7.20.2
- '@babel/helper-split-export-declaration': 7.18.6
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-validator-identifier': 7.22.15
'@babel/template': 7.22.15
'@babel/traverse': 7.21.3
'@babel/types': 7.22.15
@@ -5299,7 +5321,6 @@ packages:
/@babel/helper-plugin-utils@7.18.9:
resolution: {integrity: sha512-aBXPT3bmtLryXaoJLyYPXPlSD4p1ld9aYeR+sJNOZjJJGiOpb+fKfh3NkcCu7J54nUJwCERPBExCCpyCOHnu/w==}
engines: {node: '>=6.9.0'}
- dev: true
/@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
@@ -5341,8 +5362,8 @@ packages:
'@babel/core': ^7.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-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.19.0
'@babel/types': 7.22.15
transitivePeerDependencies:
@@ -5355,8 +5376,8 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.19.0
'@babel/types': 7.22.15
transitivePeerDependencies:
@@ -5370,8 +5391,8 @@ packages:
'@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-annotate-as-pure': 7.22.5
+ '@babel/helper-environment-visitor': 7.22.5
'@babel/helper-wrap-function': 7.19.0
'@babel/types': 7.22.15
transitivePeerDependencies:
@@ -5381,9 +5402,9 @@ packages:
resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-member-expression-to-functions': 7.21.0
- '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-member-expression-to-functions': 7.22.15
+ '@babel/helper-optimise-call-expression': 7.22.5
'@babel/traverse': 7.21.3
'@babel/types': 7.22.15
transitivePeerDependencies:
@@ -5394,7 +5415,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-member-expression-to-functions': 7.21.0
+ '@babel/helper-member-expression-to-functions': 7.22.15
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/template': 7.22.15
'@babel/traverse': 7.21.3
@@ -5523,7 +5544,7 @@ packages:
resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-function-name': 7.21.0
+ '@babel/helper-function-name': 7.22.5
'@babel/template': 7.22.15
'@babel/traverse': 7.21.3
'@babel/types': 7.22.15
@@ -5554,7 +5575,7 @@ packages:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.15
chalk: 2.4.2
js-tokens: 4.0.0
@@ -5631,7 +5652,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.17.8):
@@ -5641,7 +5662,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.3):
@@ -5651,7 +5672,7 @@ packages:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
@@ -5696,8 +5717,8 @@ packages:
'@babel/core': ^7.13.0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.12.9)
dev: true
@@ -5782,12 +5803,13 @@ packages:
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.12.9):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
'@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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:
@@ -5796,12 +5818,13 @@ packages:
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.8)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.17.8)
transitivePeerDependencies:
@@ -5811,12 +5834,13 @@ packages:
/@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
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.21.5
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
transitivePeerDependencies:
@@ -5840,7 +5864,9 @@ packages:
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.22.5
+ '@babel/helper-plugin-utils': 7.18.9
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-proposal-class-properties@7.16.7(@babel/core@7.17.8):
@@ -5864,7 +5890,9 @@ packages:
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.22.5
+ '@babel/helper-plugin-utils': 7.18.9
+ transitivePeerDependencies:
+ - supports-color
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.12.9):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -5874,7 +5902,7 @@ packages:
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.20.2
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -5884,7 +5912,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3):
@@ -5940,36 +5968,39 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
peerDependencies:
'@babel/core': ^7.12.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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.12.9)
dev: true
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
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/helper-plugin-utils': 7.21.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.17.8)
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.17.8)
dev: true
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
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.21.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.21.3)
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
/@babel/plugin-proposal-decorators@7.16.4(@babel/core@7.21.3):
@@ -5979,7 +6010,7 @@ packages:
'@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-create-class-features-plugin': 7.22.15(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-decorators': 7.16.0(@babel/core@7.21.3)
dev: true
@@ -6030,33 +6061,36 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.12.9)
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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -6125,33 +6159,36 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.12.9)
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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -6200,33 +6237,36 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.12.9)
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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -6275,33 +6315,36 @@ packages:
/@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.12.9):
resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.12.9)
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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -6349,16 +6392,18 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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.17.8):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6370,6 +6415,7 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6423,33 +6469,36 @@ packages:
/@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.12.9):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.12.9)
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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -6514,7 +6563,7 @@ packages:
'@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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
'@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
dev: true
@@ -6522,19 +6571,21 @@ packages:
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.12.9):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.12.9
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
'@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.17.8):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6549,6 +6600,7 @@ packages:
/@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6605,32 +6657,35 @@ packages:
/@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.12.9):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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.17.8):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -6682,35 +6737,38 @@ packages:
/@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.12.9)
/@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@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):
@@ -6732,6 +6790,8 @@ packages:
'@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.17.8):
@@ -6756,38 +6816,43 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.18.9
+ 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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.17.8)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.19.0(@babel/core@7.21.3)
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-proposal-private-property-in-object@7.16.7(@babel/core@7.12.9):
@@ -6801,6 +6866,8 @@ packages:
'@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9)
+ transitivePeerDependencies:
+ - supports-color
dev: true
/@babel/plugin-proposal-private-property-in-object@7.16.7(@babel/core@7.17.8):
@@ -6829,24 +6896,28 @@ packages:
'@babel/helper-create-class-features-plugin': 7.17.6(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.22.5
'@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'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.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.21.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.12.9)
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.12.9)
dev: true
/@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6860,6 +6931,7 @@ packages:
/@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
engines: {node: '>=6.9.0'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
@@ -6887,7 +6959,7 @@ packages:
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.22.5
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
/@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.17.8):
@@ -6898,7 +6970,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-plugin-utils': 7.21.5
dev: true
/@babel/plugin-proposal-unicode-property-regex@7.16.7(@babel/core@7.21.3):
@@ -6915,33 +6987,36 @@ packages:
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.12.9):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
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/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
+ deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.12.9):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -6949,7 +7024,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.17.8):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
@@ -6957,7 +7032,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
@@ -6966,7 +7041,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
@@ -7008,7 +7083,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3):
@@ -7017,7 +7092,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.12.9):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
@@ -7026,7 +7101,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.17.8):
@@ -7036,7 +7111,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.3):
@@ -7046,7 +7121,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-decorators@7.16.0(@babel/core@7.21.3):
resolution: {integrity: sha512-nxnnngZClvlY13nHJAIDow0S7Qzhq64fQ/NlqS+VER3kjW/4F0jLhXjeL8jcwSwz6Ca3rotT5NJD2T9I7lcv7g==}
@@ -7107,7 +7182,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
@@ -7115,7 +7190,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.3):
@@ -7124,7 +7199,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-flow@7.16.7(@babel/core@7.12.9):
resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==}
@@ -7161,7 +7236,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.17.8):
@@ -7171,7 +7246,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.3):
@@ -7181,7 +7256,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.12.9):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
@@ -7215,7 +7290,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
@@ -7223,7 +7298,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.3):
@@ -7232,7 +7307,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
@@ -7260,7 +7335,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-jsx@7.16.7(@babel/core@7.21.3):
@@ -7270,25 +7345,6 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
- dev: true
-
- /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.12.9):
- resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.22.5
-
- /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.17.8):
- resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
dev: true
@@ -7299,7 +7355,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.12.9):
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
@@ -7334,7 +7390,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.17.8):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
@@ -7342,7 +7398,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.3):
@@ -7351,7 +7407,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -7359,7 +7415,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
@@ -7367,7 +7423,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3):
@@ -7376,7 +7432,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.12.9):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
@@ -7384,7 +7440,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.17.8):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
@@ -7392,7 +7448,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.3):
@@ -7401,7 +7457,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -7409,7 +7465,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
@@ -7417,7 +7473,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
@@ -7426,7 +7482,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -7434,7 +7490,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
@@ -7442,7 +7498,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3):
@@ -7451,7 +7507,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -7459,7 +7515,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.17.8):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
@@ -7467,7 +7523,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3):
@@ -7476,7 +7532,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.12.9):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
@@ -7485,7 +7541,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.17.8):
@@ -7495,7 +7551,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.3):
@@ -7505,7 +7561,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.12.9):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
@@ -7523,7 +7579,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.3):
@@ -7533,7 +7589,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.20.2
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-typescript@7.16.7(@babel/core@7.17.8):
resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
@@ -7542,7 +7598,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-syntax-typescript@7.16.7(@babel/core@7.21.3):
@@ -7552,7 +7608,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
@@ -7628,7 +7684,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
@@ -7724,8 +7780,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.17.8)
transitivePeerDependencies:
- supports-color
@@ -7738,8 +7794,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-module-imports': 7.22.15
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
@@ -7790,7 +7846,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
@@ -7799,7 +7855,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3):
@@ -7809,7 +7865,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-block-scoping@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==}
@@ -7857,7 +7913,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.17.8):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
@@ -7903,12 +7959,12 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
+ '@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.22.5
+ '@babel/helper-plugin-utils': 7.21.5
'@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -7922,12 +7978,12 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
+ '@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.22.5
+ '@babel/helper-plugin-utils': 7.21.5
'@babel/helper-replace-supers': 7.19.1
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-split-export-declaration': 7.18.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -7959,17 +8015,15 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.12.9)
- '@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.21.5
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/helper-environment-visitor': 7.22.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-replace-supers': 7.22.9(@babel/core@7.12.9)
+ '@babel/helper-split-export-declaration': 7.22.6
globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
/@babel/plugin-transform-classes@7.21.0(@babel/core@7.17.8):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
@@ -8052,7 +8106,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
@@ -8061,7 +8115,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.21.3):
@@ -8071,7 +8125,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-destructuring@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==}
@@ -8119,7 +8173,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.17.8):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
@@ -8180,7 +8234,7 @@ packages:
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.12.9):
@@ -8191,7 +8245,7 @@ packages:
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
@@ -8201,7 +8255,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-create-regexp-features-plugin': 7.19.0(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.3):
@@ -8212,7 +8266,7 @@ packages:
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-duplicate-keys@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==}
@@ -8260,7 +8314,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.17.8):
@@ -8270,7 +8324,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.3):
@@ -8280,7 +8334,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-exponentiation-operator@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==}
@@ -8333,7 +8387,7 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
@@ -8363,7 +8417,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.12.9)
/@babel/plugin-transform-flow-strip-types@7.16.7(@babel/core@7.17.8):
@@ -8373,7 +8427,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/plugin-syntax-flow': 7.16.7(@babel/core@7.17.8)
dev: true
@@ -8384,7 +8438,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@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):
@@ -8433,7 +8487,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-for-of@7.18.8(@babel/core@7.17.8):
resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
@@ -8519,8 +8573,8 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8)
- '@babel/helper-function-name': 7.21.0
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3):
@@ -8531,8 +8585,8 @@ packages:
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.21.5
+ '@babel/helper-function-name': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-literals@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==}
@@ -8580,7 +8634,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
@@ -8589,7 +8643,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3):
@@ -8599,7 +8653,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-member-expression-literals@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==}
@@ -8647,7 +8701,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
@@ -8656,7 +8710,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3):
@@ -8666,7 +8720,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-modules-amd@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==}
@@ -8688,11 +8742,9 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.21.5
babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-transform-modules-amd@7.16.7(@babel/core@7.17.8):
@@ -8702,11 +8754,9 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.21.5
babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-transform-modules-amd@7.16.7(@babel/core@7.21.3):
@@ -8716,11 +8766,9 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.21.5
babel-plugin-dynamic-import-node: 2.3.3
- transitivePeerDependencies:
- - supports-color
dev: true
/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.12.9):
@@ -8742,7 +8790,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.3):
@@ -8753,7 +8801,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-modules-commonjs@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==}
@@ -8776,10 +8824,12 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.20.2
+ '@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.17.8):
@@ -8789,10 +8839,12 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
+ '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-plugin-utils': 7.20.2
+ '@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.21.3):
@@ -8821,29 +8873,6 @@ packages:
'@babel/helper-simple-access': 7.20.2
dev: true
- /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.17.8):
- resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.17.8
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
- dev: true
-
- /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3):
- resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-simple-access': 7.22.5
-
/@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.12.9):
resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
engines: {node: '>=6.9.0'}
@@ -8855,6 +8884,18 @@ packages:
'@babel/helper-plugin-utils': 7.22.5
'@babel/helper-simple-access': 7.22.5
+ /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.17.8):
+ resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.8
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-simple-access': 7.22.5
+ dev: true
+
/@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.21.3):
resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==}
engines: {node: '>=6.9.0'}
@@ -8889,12 +8930,10 @@ packages:
dependencies:
'@babel/core': 7.12.9
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.9)
'@babel/helper-plugin-utils': 7.21.5
'@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.17.8(@babel/core@7.17.8):
@@ -8905,12 +8944,10 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
'@babel/helper-plugin-utils': 7.21.5
'@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.17.8(@babel/core@7.21.3):
@@ -8921,12 +8958,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-hoist-variables': 7.18.6
- '@babel/helper-module-transforms': 7.21.2
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.21.5
'@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.20.11(@babel/core@7.12.9):
@@ -8938,7 +8973,7 @@ packages:
'@babel/core': 7.12.9
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.12.9)
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-validator-identifier': 7.19.1
dev: true
@@ -8951,8 +8986,8 @@ packages:
'@babel/core': 7.17.8
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.15
dev: true
/@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.3):
@@ -8964,8 +8999,8 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-hoist-variables': 7.18.6
'@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-identifier': 7.22.15
/@babel/plugin-transform-modules-umd@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==}
@@ -9008,10 +9043,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-module-transforms': 7.21.2
- '@babel/helper-plugin-utils': 7.21.5
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-module-transforms': 7.22.15(@babel/core@7.21.3)
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.12.9):
@@ -9093,7 +9126,7 @@ packages:
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-named-capturing-groups-regex@7.19.1(@babel/core@7.17.8):
resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
@@ -9162,7 +9195,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-new-target@7.18.6(@babel/core@7.17.8):
@@ -9172,7 +9205,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3):
@@ -9182,7 +9215,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-object-super@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==}
@@ -9229,7 +9262,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.19.1
transitivePeerDependencies:
- supports-color
@@ -9242,7 +9275,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -9254,7 +9287,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -9267,7 +9300,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
'@babel/helper-replace-supers': 7.20.7
transitivePeerDependencies:
- supports-color
@@ -9385,7 +9418,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
@@ -9394,7 +9427,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3):
@@ -9404,7 +9437,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-constant-elements@7.22.3(@babel/core@7.21.3):
resolution: {integrity: sha512-b5J6muxQYp4H7loAQv/c7GO5cPuRA6H5hx4gO+/Hn+Cu9MRQU0PNiUoWq1L//8sq6kFSNxGXFb2XTaUfa9y+Pg==}
@@ -9423,7 +9456,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
@@ -9432,7 +9465,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.3):
@@ -9442,7 +9475,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
@@ -9562,10 +9595,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.12.9)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.12.9)
'@babel/types': 7.22.15
/@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.17.8):
@@ -9575,10 +9608,10 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.21.4
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.17.8)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.17.8)
'@babel/types': 7.22.15
dev: true
@@ -9589,10 +9622,10 @@ packages:
'@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.21.4
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-module-imports': 7.22.15
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.3)
'@babel/types': 7.22.15
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.17.8):
@@ -9602,8 +9635,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.3):
@@ -9613,8 +9646,8 @@ packages:
'@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.21.5
+ '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-regenerator@7.16.0(@babel/core@7.12.9):
@@ -9663,7 +9696,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
regenerator-transform: 0.15.0
dev: true
@@ -9734,7 +9767,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.17.8):
@@ -9744,7 +9777,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.3):
@@ -9754,7 +9787,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-runtime@7.16.4(@babel/core@7.12.9):
resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==}
@@ -9785,7 +9818,7 @@ packages:
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.1
+ semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: true
@@ -9868,7 +9901,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
@@ -9939,8 +9972,8 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.17.8):
resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
@@ -9950,7 +9983,7 @@ packages:
dependencies:
'@babel/core': 7.17.8
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
dev: true
/@babel/plugin-transform-spread@7.19.0(@babel/core@7.21.3):
@@ -9961,7 +9994,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.22.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
/@babel/plugin-transform-sticky-regex@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==}
@@ -10009,7 +10042,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
@@ -10018,7 +10051,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3):
@@ -10028,7 +10061,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-template-literals@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==}
@@ -10076,7 +10109,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.17.8):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
@@ -10085,7 +10118,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3):
@@ -10095,7 +10128,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-typeof-symbol@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==}
@@ -10143,7 +10176,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.17.8):
@@ -10153,7 +10186,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.3):
@@ -10163,7 +10196,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-typescript@7.16.8(@babel/core@7.17.8):
resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
@@ -10271,7 +10304,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.17.8):
@@ -10281,7 +10314,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.8
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.3):
@@ -10291,7 +10324,7 @@ packages:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-plugin-utils': 7.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-unicode-regex@7.16.0(@babel/core@7.12.9):
resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==}
@@ -10333,7 +10366,7 @@ packages:
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
dev: true
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.12.9):
@@ -10344,7 +10377,7 @@ packages:
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.21.5
+ '@babel/helper-plugin-utils': 7.22.5
/@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.17.8):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
@@ -10800,8 +10833,8 @@ packages:
'@babel/compat-data': 7.21.0
'@babel/core': 7.17.8
'@babel/helper-compilation-targets': 7.20.7(@babel/core@7.17.8)
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-option': 7.21.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.17.8)
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.17.8)
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.17.8)
@@ -10849,7 +10882,7 @@ packages:
'@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-amd': 7.20.11(@babel/core@7.17.8)
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.17.8)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.17.8)
'@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.17.8)
'@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.17.8)
'@babel/plugin-transform-named-capturing-groups-regex': 7.19.1(@babel/core@7.17.8)
@@ -10886,8 +10919,8 @@ packages:
'@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.21.5
- '@babel/helper-validator-option': 7.21.0
+ '@babel/helper-plugin-utils': 7.22.5
+ '@babel/helper-validator-option': 7.22.15
'@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.20.7(@babel/core@7.21.3)
@@ -10935,7 +10968,7 @@ packages:
'@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.20.11(@babel/core@7.21.3)
- '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.21.3)
'@babel/plugin-transform-modules-systemjs': 7.20.11(@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)
@@ -11300,7 +11333,7 @@ packages:
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': 7.21.5
- '@babel/helper-validator-identifier': 7.19.1
+ '@babel/helper-validator-identifier': 7.22.15
to-fast-properties: 2.0.0
/@base2/pretty-print-object@1.0.1:
@@ -11468,7 +11501,7 @@ packages:
/@emotion/core@10.3.1(react@17.0.2):
resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.3.0'
dependencies:
'@babel/runtime': 7.21.0
'@emotion/cache': 10.0.29
@@ -11550,7 +11583,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
'@types/react': '*'
- react: ^17.0.2
+ react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -11574,7 +11607,7 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
'@types/react': '*'
- react: ^17.0.2
+ react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -11636,7 +11669,7 @@ packages:
'@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
- react: ^17.0.2
+ react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -11659,7 +11692,7 @@ packages:
'@babel/core': ^7.0.0
'@emotion/react': ^11.0.0-rc.0
'@types/react': '*'
- react: ^17.0.2
+ react: '>=16.8.0'
peerDependenciesMeta:
'@babel/core':
optional: true
@@ -11690,7 +11723,7 @@ packages:
/@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@17.0.2):
resolution: {integrity: sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
dependencies:
react: 17.0.2
@@ -11813,7 +11846,7 @@ packages:
/@floating-ui/react-dom@0.6.3(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-hC+pS5D6AgS2wWjbmSQ6UR6Kpy+drvWGJIri6e1EDGADTPsCaa4KzCgmCczHrQeInx9tqs81EyDmbKJYY2swKg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@floating-ui/dom': 0.4.5
@@ -11827,7 +11860,7 @@ packages:
/@floating-ui/react-dom@0.7.2(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@floating-ui/dom': 0.5.4
@@ -11841,7 +11874,7 @@ packages:
/@floating-ui/react-dom@1.0.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-uiOalFKPG937UCLm42RxjESTWUVpbbatvlphQAU6bsv+ence6IoVG8JOUZcy8eW81NkU+Idiwvx10WFLmR4MIg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@floating-ui/dom': 1.5.1
@@ -11851,7 +11884,7 @@ packages:
/@floating-ui/react-dom@2.0.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
'@floating-ui/dom': 1.5.1
@@ -12191,7 +12224,7 @@ packages:
- ts-node
- utf-8-validate
- /@jest/core@29.5.0:
+ /@jest/core@29.5.0(ts-node@10.9.1):
resolution: {integrity: sha512-28UzQc7ulUrOQw1IsN/kv1QES3q2kkbl/wGslyhAclqZ/8cMdB5M68BffkIdSJgKBUt50d3hbwJ92XESlE7LiQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -12212,7 +12245,7 @@ packages:
exit: 0.1.2
graceful-fs: 4.2.9
jest-changed-files: 29.5.0
- jest-config: 29.5.0(@types/node@16.18.21)
+ jest-config: 29.5.0(@types/node@16.18.21)(ts-node@10.9.1)
jest-haste-map: 29.5.0
jest-message-util: 29.5.0
jest-regex-util: 29.4.3
@@ -12233,49 +12266,6 @@ packages:
- ts-node
dev: true
- /@jest/core@29.6.2:
- resolution: {integrity: sha512-Oj+5B+sDMiMWLhPFF+4/DvHOf+U10rgvCLGPHP8Xlsy/7QxS51aU/eBngudHlJXnaWD5EohAgJ4js+T6pa+zOg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/console': 29.6.2
- '@jest/reporters': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/transform': 29.6.2
- '@jest/types': 29.6.1
- '@types/node': 16.18.21
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- ci-info: 3.2.0
- exit: 0.1.2
- graceful-fs: 4.2.9
- jest-changed-files: 29.5.0
- jest-config: 29.6.2(@types/node@16.18.21)
- jest-haste-map: 29.6.2
- jest-message-util: 29.6.2
- jest-regex-util: 29.4.3
- jest-resolve: 29.6.2
- jest-resolve-dependencies: 29.6.2
- jest-runner: 29.6.2
- jest-runtime: 29.6.2
- jest-snapshot: 29.6.2
- jest-util: 29.6.2
- jest-validate: 29.6.2
- jest-watcher: 29.6.2
- micromatch: 4.0.5
- pretty-format: 29.6.2
- slash: 3.0.0
- strip-ansi: 6.0.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: false
-
/@jest/core@29.6.2(ts-node@10.9.1):
resolution: {integrity: sha512-Oj+5B+sDMiMWLhPFF+4/DvHOf+U10rgvCLGPHP8Xlsy/7QxS51aU/eBngudHlJXnaWD5EohAgJ4js+T6pa+zOg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -12317,7 +12307,6 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
/@jest/create-cache-key-function@27.5.1:
resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==}
@@ -13153,12 +13142,6 @@ 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.19:
resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==}
dependencies:
@@ -13217,7 +13200,7 @@ packages:
/@mdx-js/react@1.6.22(react@17.0.2):
resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.13.1 || ^17.0.0
dependencies:
react: 17.0.2
dev: true
@@ -13559,7 +13542,7 @@ packages:
fs-extra: 9.1.0
http-call: 5.3.0
lodash: 4.17.21
- semver: 7.5.0
+ semver: 7.5.3
transitivePeerDependencies:
- supports-color
dev: true
@@ -14176,7 +14159,7 @@ packages:
/@radix-ui/react-arrow@1.0.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-fqYwhhI9IarZ0ll2cUSfKuXHlJK0qE4AfnRrPBbRwEH/4mGQn04/QFGomLi8TXWIdv9WJk//KgGm+aDxVIr1wA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14188,9 +14171,9 @@ packages:
/@radix-ui/react-arrow@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14208,7 +14191,7 @@ packages:
/@radix-ui/react-collection@1.0.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-s8WdQQ6wNXpaxdZ308KSr8fEWGrg4un8i4r/w7fhiS4ElRNjk5rRcl0/C6TANG2LvLOGIxtzo/jAg6Qf73TEBw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14223,9 +14206,9 @@ packages:
/@radix-ui/react-collection@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14246,7 +14229,7 @@ packages:
/@radix-ui/react-compose-refs@1.0.0(react@17.0.2):
resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -14255,8 +14238,8 @@ packages:
/@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14269,7 +14252,7 @@ packages:
/@radix-ui/react-context@1.0.0(react@17.0.2):
resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -14278,8 +14261,8 @@ packages:
/@radix-ui/react-context@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14292,7 +14275,7 @@ packages:
/@radix-ui/react-dialog@1.0.0(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14319,7 +14302,7 @@ packages:
/@radix-ui/react-direction@1.0.0(react@17.0.2):
resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -14328,8 +14311,8 @@ packages:
/@radix-ui/react-direction@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14342,7 +14325,7 @@ packages:
/@radix-ui/react-dismissable-layer@1.0.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-n7kDRfx+LB1zLueRDvZ1Pd0bxdJWDUZNQ/GWoxDn2prnuJKRdxsjulejX/ePkOsLi2tTm6P24mDqlMSgQpsT6g==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14358,7 +14341,7 @@ packages:
/@radix-ui/react-dismissable-layer@1.0.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-nXZOvFjOuHS1ovumntGV7NNoLaEp9JEvTht3MBjP44NSW5hUKj/8OnfN3+8WmB+CEhN44XaGhpHoSsUIEl5P7Q==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14374,9 +14357,9 @@ packages:
/@radix-ui/react-dismissable-layer@1.0.4(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14398,7 +14381,7 @@ packages:
/@radix-ui/react-dropdown-menu@2.0.4(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-y6AT9+MydyXcByivdK1+QpjWoKaC7MLjkS/cH1Q3keEyMvDkiY85m8o2Bi6+Z1PPUlCsMULopxagQOSfN0wahg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14418,7 +14401,7 @@ packages:
/@radix-ui/react-focus-guards@1.0.0(react@17.0.2):
resolution: {integrity: sha512-UagjDk4ijOAnGu4WMUPj9ahi7/zJJqNZ9ZAiGPp7waUWJO0O1aWXi/udPphI0IUjvrhBsZJGSN66dR2dsueLWQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -14427,8 +14410,8 @@ packages:
/@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14441,7 +14424,7 @@ packages:
/@radix-ui/react-focus-scope@1.0.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-C4SWtsULLGf/2L4oGeIHlvWQx7Rf+7cX/vKOAD2dXW0A1b5QXwi3wWeaEgW+wn+SEVrraMUk05vLU9fZZz5HbQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14455,7 +14438,7 @@ packages:
/@radix-ui/react-focus-scope@1.0.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-spwXlNTfeIprt+kaEWE/qYuYT3ZAqJiAGjN/JgdvgVDTu8yc+HuX+WOWXrKliKnLnwck0F6JDkqIERncnih+4A==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14469,9 +14452,9 @@ packages:
/@radix-ui/react-focus-scope@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14491,7 +14474,7 @@ packages:
/@radix-ui/react-id@1.0.0(react@17.0.2):
resolution: {integrity: sha512-Q6iAB/U7Tq3NTolBBQbHTgclPmGWE3OlktGGqrClPozSw4vkQ1DfQAOtzgRPecKsMdJINE05iaoDUG8tRzCBjw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2)
@@ -14501,8 +14484,8 @@ packages:
/@radix-ui/react-id@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14516,7 +14499,7 @@ packages:
/@radix-ui/react-menu@2.0.4(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-mzKR47tZ1t193trEqlQoJvzY4u9vYfVH16ryBrVrCAGZzkgyWnMQYEZdUkM7y8ak9mrkKtJiqB47TlEnubeOFQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14547,7 +14530,7 @@ packages:
/@radix-ui/react-popper@1.1.1(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-keYDcdMPNMjSC8zTsZ8wezUMiWM9Yj14wtF3s0PTIs9srnEPC9Kt2Gny1T3T81mmSeyDjZxsD9N5WCwNNb712w==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14570,9 +14553,9 @@ packages:
/@radix-ui/react-popper@1.1.2(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14599,7 +14582,7 @@ packages:
/@radix-ui/react-portal@1.0.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-a8qyFO/Xb99d8wQdu4o7qnigNjTPG123uADNecz0eX4usnQEj7o+cG4ZX4zkqq98NYekT7UoEQIjxBNWIFuqTA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14611,7 +14594,7 @@ packages:
/@radix-ui/react-portal@1.0.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-swu32idoCW7KA2VEiUZGBSu9nB6qwGdV6k6HYhUoOo3M1FFpD+VgLzUqtt3mwL1ssz7r2x8MggpLSQach2Xy/Q==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14623,9 +14606,9 @@ packages:
/@radix-ui/react-portal@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14643,7 +14626,7 @@ packages:
/@radix-ui/react-presence@1.0.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14656,7 +14639,7 @@ packages:
/@radix-ui/react-primitive@1.0.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14668,7 +14651,7 @@ packages:
/@radix-ui/react-primitive@1.0.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-zY6G5Qq4R8diFPNwtyoLRZBxzu1Z+SXMlfYpChN7Dv8gvmx9X3qhDqiLWvKseKVJMuedFeU/Sa0Sy/Ia+t06Dw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14680,9 +14663,9 @@ packages:
/@radix-ui/react-primitive@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14700,7 +14683,7 @@ packages:
/@radix-ui/react-roving-focus@1.0.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-stjCkIoMe6h+1fWtXlA6cRfikdBzCLp3SnVk7c48cv/uy3DTGoXhN76YaOYUJuy3aEDvDIKwKR5KSmvrtPvQPQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
@@ -14720,9 +14703,9 @@ packages:
/@radix-ui/react-roving-focus@1.0.4(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14748,9 +14731,9 @@ packages:
/@radix-ui/react-select@1.2.2(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14788,9 +14771,9 @@ packages:
/@radix-ui/react-separator@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14808,7 +14791,7 @@ packages:
/@radix-ui/react-slot@1.0.0(react@17.0.2):
resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-compose-refs': 1.0.0(react@17.0.2)
@@ -14818,7 +14801,7 @@ packages:
/@radix-ui/react-slot@1.0.1(react@17.0.2):
resolution: {integrity: sha512-avutXAFL1ehGvAXtPquu0YK5oz6ctS474iM3vNGQIkswrVhdrS52e3uoMQBzZhNRAIE0jBnUyXWNmSjGHhCFcw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-compose-refs': 1.0.0(react@17.0.2)
@@ -14828,8 +14811,8 @@ packages:
/@radix-ui/react-slot@1.0.2(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14843,9 +14826,9 @@ packages:
/@radix-ui/react-toggle-group@1.0.4(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14869,9 +14852,9 @@ packages:
/@radix-ui/react-toggle@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14891,9 +14874,9 @@ packages:
/@radix-ui/react-toolbar@1.0.4(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -14917,7 +14900,7 @@ packages:
/@radix-ui/react-use-callback-ref@1.0.0(react@17.0.2):
resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -14926,8 +14909,8 @@ packages:
/@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14940,7 +14923,7 @@ packages:
/@radix-ui/react-use-controllable-state@1.0.0(react@17.0.2):
resolution: {integrity: sha512-FohDoZvk3mEXh9AWAVyRTYR4Sq7/gavuofglmiXB2g1aKyboUD4YtgWxKj8O5n+Uak52gXQ4wKz5IFST4vtJHg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2)
@@ -14950,8 +14933,8 @@ packages:
/@radix-ui/react-use-controllable-state@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -14965,7 +14948,7 @@ packages:
/@radix-ui/react-use-escape-keydown@1.0.0(react@17.0.2):
resolution: {integrity: sha512-JwfBCUIfhXRxKExgIqGa4CQsiMemo1Xt0W/B4ei3fpzpvPENKpMKQ8mZSB6Acj3ebrAEgi2xiQvcI1PAAodvyg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2)
@@ -14975,7 +14958,7 @@ packages:
/@radix-ui/react-use-escape-keydown@1.0.2(react@17.0.2):
resolution: {integrity: sha512-DXGim3x74WgUv+iMNCF+cAo8xUHHeqvjx8zs7trKf+FkQKPQXLk2sX7Gx1ysH7Q76xCpZuxIJE7HLPxRE+Q+GA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2)
@@ -14985,8 +14968,8 @@ packages:
/@radix-ui/react-use-escape-keydown@1.0.3(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -15000,7 +14983,7 @@ packages:
/@radix-ui/react-use-layout-effect@1.0.0(react@17.0.2):
resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -15009,8 +14992,8 @@ packages:
/@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -15023,8 +15006,8 @@ packages:
/@radix-ui/react-use-previous@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -15037,7 +15020,7 @@ packages:
/@radix-ui/react-use-rect@1.0.0(react@17.0.2):
resolution: {integrity: sha512-TB7pID8NRMEHxb/qQJpvSt3hQU4sqNPM1VCTjTRjEOa7cEop/QMuq8S6fb/5Tsz64kqSvB9WnwsDHtjnrM9qew==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/rect': 1.0.0
@@ -15047,8 +15030,8 @@ packages:
/@radix-ui/react-use-rect@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -15062,7 +15045,7 @@ packages:
/@radix-ui/react-use-size@1.0.0(react@17.0.2):
resolution: {integrity: sha512-imZ3aYcoYCKhhgNpkNDh/aTiU05qw9hX+HHI1QDBTyIlcFjgeFlKKySNGMwTp7nYFLQg/j0VA2FmCY4WPDDHMg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
dependencies:
'@babel/runtime': 7.21.0
'@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2)
@@ -15072,8 +15055,8 @@ packages:
/@radix-ui/react-use-size@1.0.1(@types/react@17.0.50)(react@17.0.2):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -15087,9 +15070,9 @@ packages:
/@radix-ui/react-visually-hidden@1.0.3(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
- '@types/react': ^17.0.2
+ '@types/react': '*'
'@types/react-dom': '*'
- react: ^17.0.2
+ react: ^16.8 || ^17.0 || ^18.0
react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
@@ -15300,7 +15283,7 @@ packages:
/@react-spring/animated@9.4.4(react@17.0.2):
resolution: {integrity: sha512-e9xnuBaUTD+NolKikUmrGWjX8AVCPyj1GcEgjgq9E+0sXKv46UY7cm2EmB6mUDTxWIDVKebARY++xT4nGDraBQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
dependencies:
'@react-spring/shared': 9.4.4(react@17.0.2)
'@react-spring/types': 9.4.4
@@ -15310,7 +15293,7 @@ packages:
/@react-spring/animated@9.5.5(react@17.0.2):
resolution: {integrity: sha512-glzViz7syQ3CE6BQOwAyr75cgh0qsihm5lkaf24I0DfU63cMm/3+br299UEYkuaHNmfDfM414uktiPlZCNJbQA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@react-spring/shared': 9.5.5(react@17.0.2)
'@react-spring/types': 9.5.5
@@ -15319,7 +15302,7 @@ packages:
/@react-spring/core@9.4.4(react@17.0.2):
resolution: {integrity: sha512-llgb0ljFyjMB0JhWsaFHOi9XFT8n1jBMVs1IFY2ipIBerWIRWrgUmIpakLPHTa4c4jwqTaDSwX90s2a0iN7dxQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
dependencies:
'@react-spring/animated': 9.4.4(react@17.0.2)
'@react-spring/rafz': 9.4.4
@@ -15331,7 +15314,7 @@ packages:
/@react-spring/core@9.5.5(react@17.0.2):
resolution: {integrity: sha512-shaJYb3iX18Au6gkk8ahaF0qx0LpS0Yd+ajb4asBaAQf6WPGuEdJsbsNSgei1/O13JyEATsJl20lkjeslJPMYA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@react-spring/animated': 9.5.5(react@17.0.2)
'@react-spring/rafz': 9.5.5
@@ -15349,7 +15332,7 @@ packages:
/@react-spring/shared@9.4.4(react@17.0.2):
resolution: {integrity: sha512-ySVgScDZlhm/+Iy2smY9i/DDrShArY0j6zjTS/Re1lasKnhq8qigoGiAxe8xMPJNlCaj3uczCqHy3TY9bKRtfQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
dependencies:
'@react-spring/rafz': 9.4.4
'@react-spring/types': 9.4.4
@@ -15359,7 +15342,7 @@ packages:
/@react-spring/shared@9.5.5(react@17.0.2):
resolution: {integrity: sha512-YwW70Pa/YXPOwTutExHZmMQSHcNC90kJOnNR4G4mCDNV99hE98jWkIPDOsgqbYx3amIglcFPiYKMaQuGdr8dyQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@react-spring/rafz': 9.5.5
'@react-spring/types': 9.5.5
@@ -15375,7 +15358,7 @@ packages:
/@react-spring/web@9.4.4(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-iJmOLdhcuizriUlu/xqBc5y8KaFts+UI+iC+GxyTwBtzxA9czKiSAZW2ESuhG8stafa3jncwjfTQQp84KN36cw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@react-spring/animated': 9.4.4(react@17.0.2)
@@ -15389,7 +15372,7 @@ packages:
/@react-spring/web@9.5.5(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-+moT8aDX/ho/XAhU+HRY9m0LVV9y9CK6NjSRaI+30Re150pB3iEip6QfnF4qnhSCQ5drpMF0XRXHgOTY/xbtFw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@react-spring/animated': 9.5.5(react@17.0.2)
@@ -15541,7 +15524,7 @@ packages:
/@storybook/addon-a11y@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ZjYxGpuN7/euPscmgQys6QJ+ASVxrFHh28HPd8SqH+j1UmTiGnwPFYmUTm8sY8fMwormdy/H/phQ8FX6xNZ31Q==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15572,7 +15555,7 @@ packages:
/@storybook/addon-actions@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-prz8for4B0fSaoJbd4Qbif4K5GeVJg1pmgR93Z9R59vq42qIMLzFkLSB0n2oM+WiLNRPwiw5F+L9GANo/r7dBA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15615,7 +15598,7 @@ packages:
/@storybook/addon-controls@6.5.17-alpha.0(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@3.3.12):
resolution: {integrity: sha512-HUlXBKjaAN/01+vF9Nr9tszHL06T+CCGHSo50yshCzc4Jt2ezZikyMrRJCWAVRFLx4C/dkY6qk57IiJbFLbBww==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15650,7 +15633,7 @@ packages:
resolution: {integrity: sha512-WpWNIAIW/NG3/OCwCH8GvowGDBvExsZw2gcyonMx1GH4TxdWYye7BwpIEpSEIqGtchzu43bk15kK5ViYOXF9RQ==}
peerDependencies:
'@storybook/mdx2-csf': ^0.0.3
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@storybook/mdx2-csf':
@@ -15705,7 +15688,7 @@ packages:
resolution: {integrity: sha512-WpWNIAIW/NG3/OCwCH8GvowGDBvExsZw2gcyonMx1GH4TxdWYye7BwpIEpSEIqGtchzu43bk15kK5ViYOXF9RQ==}
peerDependencies:
'@storybook/mdx2-csf': ^0.0.3
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@storybook/mdx2-csf':
@@ -15765,7 +15748,7 @@ packages:
'@storybook/components': ^6.4.0
'@storybook/core-events': ^6.4.0
'@storybook/theming': ^6.4.0
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
peerDependenciesMeta:
react:
@@ -15801,7 +15784,7 @@ packages:
'@storybook/components': ^7.0.0
'@storybook/core-events': ^7.0.0
'@storybook/theming': ^7.0.0
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15835,7 +15818,7 @@ packages:
/@storybook/addon-links@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-PHJughP/Tur0QpRmHdmvYSSvUosBGiDdN2i1Xa5zxRLIrlO2vmiagwj0NMb1dfR74SpJbtMZbQM3xVhlDo3SlA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15862,7 +15845,7 @@ packages:
/@storybook/addon-storysource@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-F82EUe5mM1tuB4wSEZ+3EJRlRji8Zip2vmd//4yPIlil1QZ7bXMnen9ECHEAEMHRfEC464Fyt6vgzNqXN99v3A==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15890,7 +15873,7 @@ packages:
/@storybook/addon-viewport@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-oadVlhI0rKI2g4IBVHXvQs0GDn71HLOmrxgrAQ1STQ63uzUaPjoozIko+xv09mYWWZMVsVRyek3+QqUGb036mg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15916,7 +15899,7 @@ packages:
/@storybook/addons@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-iv2EF2XBzZwTp5xo1kBQeW1mi+dvLLDYIVBay4m9FDWQGAPj4rzPrAavuGrkc+XMvXkbeWpJ1kadPoC/W6YtHw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/api': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
@@ -15937,7 +15920,7 @@ packages:
/@storybook/addons@7.3.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-NebVJI/E2Lw7XP0deazSpN9B5HUtgVgIo2wbdyzJsOzKYAHO7IY1gkgvRyJ84Xn9iVoszEOPIw/P/t0WUqX6dg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/manager-api': 7.3.1(react-dom@16.14.0)(react@17.0.2)
@@ -15950,7 +15933,7 @@ packages:
/@storybook/api@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-sj5XQXyTTxKDSqNVBlOO1h2+v8NO4EB7/7kBLOD8jpU4r4UUCLrf6G9b54j7R9/dIyi2XvrKVlp95q3yRE3zmg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/channels': 6.5.17-alpha.0
@@ -15977,7 +15960,7 @@ packages:
/@storybook/api@7.3.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-QYXX9NWV+Ud1nWVX3Tfjkmxb1Vi1bRxmSXlfIo3HYqhPm4rOwDlpN6nso21Kz3QyON4Hm9XqgQA5qUIZU19bVg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
react:
@@ -15994,7 +15977,7 @@ packages:
/@storybook/builder-webpack4@6.5.17-alpha.0(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@3.3.12):
resolution: {integrity: sha512-WMZ2obdoAo0TIxQIknR6NzQhCsthom9mfy/eExUqPSksVF/ifgCNeyhOaZt3hYOv+DAFTyK4uZYVk7kyG90rMw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16064,7 +16047,7 @@ packages:
/@storybook/builder-webpack5@6.5.17-alpha.0(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6):
resolution: {integrity: sha512-j5DxqOSd7MAzi1vTTMEt7WEmAXvGGH4RGliprOCyjL0Yn4+9g0rydPG+dHut0gVoo5bF7aktyODquv6seAJGYQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16168,7 +16151,7 @@ packages:
/@storybook/client-api@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-YLnKb3ieDkt1Qq0GiPoYyH4+Laa0DhnvsRBqDRhqS0y3orAt4xLpbucCIJzZFxs0jBXva0MNh1j6NpGDn6a0gA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
@@ -16211,7 +16194,7 @@ packages:
/@storybook/components@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-RTeRq0bPdphq3XO3zTCyLKX/AI4IJ+xEt79k3eGnY7m56gAlwEcNAq6oUw1UuXZYQos78/G+tjS+MxaDMB/y4w==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/client-logger': 6.5.17-alpha.0
@@ -16229,7 +16212,7 @@ packages:
/@storybook/components@7.3.1(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-8dk3WutobHvjxweVzA9Vqrp564vWOTQaV38JSi84ME8wzOdl20Xne9LoeMnqPHXFhnVZdm/Gkosfv4tqkDy4aw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@radix-ui/react-select': 1.2.2(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2)
@@ -16253,7 +16236,7 @@ packages:
/@storybook/core-client@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack@4.46.0):
resolution: {integrity: sha512-j4UqRv16EwavjFUbFnB1CTdkJf70/yzAZNs78OZuTeMHAbTD8AuKpVZ/MBniymll11AIYV0ue7Hr1cwxYuTWDA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
webpack: '*'
@@ -16290,7 +16273,7 @@ packages:
/@storybook/core-client@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack@5.76.3):
resolution: {integrity: sha512-j4UqRv16EwavjFUbFnB1CTdkJf70/yzAZNs78OZuTeMHAbTD8AuKpVZ/MBniymll11AIYV0ue7Hr1cwxYuTWDA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
webpack: '*'
@@ -16327,7 +16310,7 @@ packages:
/@storybook/core-common@6.5.17-alpha.0(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@3.3.12):
resolution: {integrity: sha512-fXhM3kwvs8VVg1SsxE6uhfsnA5lZRX6scFS5m+O9I3Q4fDhe6/hf58sBKydxz+82rm4D1Z1NDAryeg1tEEaN2Q==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16410,7 +16393,7 @@ packages:
peerDependencies:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack5': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16490,7 +16473,7 @@ packages:
peerDependencies:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack5': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16568,7 +16551,7 @@ packages:
peerDependencies:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack5': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
webpack: '*'
@@ -16607,7 +16590,7 @@ packages:
peerDependencies:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack5': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
webpack: '*'
@@ -16701,7 +16684,7 @@ packages:
resolution: {integrity: sha512-co5gDCYPojRAc5lRMnWxbjrR1V37/rTmAo9Vok4a1hDpHZIwkGTWesdzvYivSQXYFxZTpxdM1b5K3W87brnahw==}
engines: {node: '>=14.0.0'}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
react: 17.0.2
@@ -16711,7 +16694,7 @@ packages:
/@storybook/manager-api@7.3.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-jFH0EfWasdwHW8X5DUzTbH5mpdCZBHU7lIEUj6lVMBcBxbTniqBiG7mkwbW9VLocqEbBZimLCb/2RtTpK1Ue3Q==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/channels': 7.3.1
@@ -16736,7 +16719,7 @@ packages:
/@storybook/manager-webpack4@6.5.17-alpha.0(acorn@7.4.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@3.3.12):
resolution: {integrity: sha512-1sOZEFe073hVuZnNmvYj1pSUL2anLYSm7PuPewxBzVtvORk0vy+Mk0ZO/ToqV1KWYGZAHiFrfniQZXsamAfuMg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16795,7 +16778,7 @@ packages:
/@storybook/manager-webpack5@6.5.17-alpha.0(acorn@8.8.1)(eslint@8.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6):
resolution: {integrity: sha512-Z/Ct16aYWUusg+744MkxWs4eQveIivSMqDfROvfiGEsVnC/QuzLIcLPW1evozCoBAparwAoIUwbkeRkMDx8bJQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
typescript: '*'
peerDependenciesMeta:
@@ -16926,7 +16909,7 @@ packages:
/@storybook/preview-web@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-aPGBojLY683+JxZmYNATT2eQ7eCxLDU61AN640MrsCN8Vsmi1fEvlh1lAcXK24rdDeQtC+ROjiSa/fl62wjT7A==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
@@ -16978,7 +16961,7 @@ packages:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack4': '*'
'@storybook/manager-webpack5': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
require-from-string: ^2.0.2
typescript: '*'
@@ -17068,7 +17051,7 @@ packages:
'@storybook/builder-webpack5': '*'
'@storybook/manager-webpack4': '*'
'@storybook/manager-webpack5': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
require-from-string: ^2.0.2
typescript: '*'
@@ -17153,7 +17136,7 @@ packages:
/@storybook/router@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ogByZddCvA7VrDbD+0OA9cx5Rf6tAihffI/hIu1YjhysdBYzXz/C7cZDo1XduzasFb7EEDbHFC0pquDAdJz+Qw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/client-logger': 6.5.17-alpha.0
@@ -17168,7 +17151,7 @@ packages:
/@storybook/router@7.3.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-KY+Mo0oF2xcRUDCXPJjAB5xy7d8Hi2dh8VqLahGa14ZHwhsZ/RxqE2bypwLXXkRpEiyOpfMbSsG73+1ml3fIUg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/client-logger': 7.3.1
@@ -17190,7 +17173,7 @@ packages:
/@storybook/source-loader@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-/fTcfFeDY/AkToybJkcGZijGXvyzU9wSOCHWq2ViAPn5s9MDU9k0Se2oJDFawB9pw9ROe1LaUsSCLPrLLP2Efw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
@@ -17210,7 +17193,7 @@ packages:
/@storybook/store@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-1rwSvU+8vjsdWMYzCz01WQ2ZA7S1qakRil9ACLN9qCC89rvfW2vee/pbUHQQvF1wjeYmx/hQTIXXk70K81X8Dw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
@@ -17262,7 +17245,7 @@ packages:
/@storybook/theming@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-+hC5hhbG3xW0O/wYVIAVkVFoFThC7t/AEDAKn/3kf3gPAJ657jJVNnm4rCaYVtZc5soLGF78yNrLFmwU4UsvAg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/client-logger': 6.5.17-alpha.0
@@ -17276,7 +17259,7 @@ packages:
/@storybook/theming@7.3.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-1CF6bT8o8pZcd/ptl1q4CiTGY4oLV19tE8Wnhd/TO934fdMp4fUx1FF4pFL6an98lxVeZT0JQ4uvkuaTvHJFRQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2)
@@ -17299,7 +17282,7 @@ packages:
/@storybook/ui@6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-L188HSal+Jq6MNZuy3HUN/QlEE75B7okNBYj/ZR3/s6LIs2zceOZuxp2lk92CEh0dggoJ4HTRqPmKqMHNsXA8g==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@storybook/addons': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
@@ -17313,7 +17296,7 @@ packages:
'@storybook/theming': 6.5.17-alpha.0(react-dom@17.0.2)(react@17.0.2)
core-js: 3.29.1
memoizerific: 1.11.3
- qs: 6.10.3
+ qs: 6.11.2
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
regenerator-runtime: 0.13.11
@@ -17802,7 +17785,7 @@ packages:
resolution: {integrity: sha512-dYxpz8u9m4q1TuzfcUApqi8iFfR6R0FaMbr2hjZJy1uC8z+bO/K4v8Gs9eogGKYQop7QsrBTFkv/BCF7MzD2Cg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.9.0'
react-dom: '>=16.9.0'
react-test-renderer: '>=16.9.0'
peerDependenciesMeta:
@@ -17824,8 +17807,8 @@ packages:
resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==}
engines: {node: '>=12'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.9.0 || ^17.0.0
+ react: ^16.9.0 || ^17.0.0
react-dom: ^16.9.0 || ^17.0.0
react-test-renderer: ^16.9.0 || ^17.0.0
peerDependenciesMeta:
@@ -17847,7 +17830,7 @@ packages:
resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: '*'
react-dom: '*'
dependencies:
'@babel/runtime': 7.21.0
@@ -17861,7 +17844,7 @@ packages:
resolution: {integrity: sha512-jiPKOm7vyUw311Hn/HlNQ9P8/lHNtArAx0PisXyFixDDvfl8DbD6EUdbshK5eqauvBSvzZd19itqQ9j3nferJA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: '*'
react-dom: '*'
dependencies:
'@babel/runtime': 7.21.0
@@ -18495,21 +18478,6 @@ packages:
- react
- react-dom
- /@types/wordpress__block-editor@7.0.0(react@17.0.2):
- resolution: {integrity: sha512-JERpxKAQ7J07C2wtKxr+5ZE9NETIcpu0EiXuXka6Qmrq74oOypdy9jYdhMIYBDMOx4ptR3ne7edaFb2+1SBcqA==}
- dependencies:
- '@types/react': 17.0.50
- '@types/wordpress__blocks': 11.0.7(react@17.0.2)
- '@types/wordpress__components': 19.10.5(react-dom@16.14.0)(react@17.0.2)
- '@types/wordpress__data': 6.0.2
- '@types/wordpress__keycodes': 2.3.1
- '@wordpress/element': 4.4.1
- react-autosize-textarea: 7.1.0(react-dom@17.0.2)(react@17.0.2)
- transitivePeerDependencies:
- - react
- - react-dom
- dev: true
-
/@types/wordpress__block-library@2.6.1:
resolution: {integrity: sha512-x+V2iqNZiCbNHwMLxszv0qHZ0ooYXZYisKxUIGTOhlrQDrYIiSIZG2+6UgS65UFnwGQve3EGP/RlMYIpQT6TyQ==}
@@ -18523,17 +18491,6 @@ packages:
- react
- react-dom
- /@types/wordpress__blocks@11.0.7(react@17.0.2):
- resolution: {integrity: sha512-8BcT3CUxHt73CepaLtQHAhA7uBhDOK9x5HJOAxzV+Bl37W04u4jSNulXxwX/6tI7t7Knux5lnN9bvKf/1sg+Rw==}
- dependencies:
- '@types/react': 17.0.50
- '@types/wordpress__components': 19.10.5(react-dom@16.14.0)(react@17.0.2)
- '@wordpress/element': 4.4.1
- transitivePeerDependencies:
- - react
- - react-dom
- dev: true
-
/@types/wordpress__components@19.10.5(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-0BfLFVB9IxrYH1llVM3LltalJiHn7jyS3k6FEC0wQMoIzs+kXI9w5rSI06faodBcwp9YQDjhK+Bkr49dqx+3dQ==}
dependencies:
@@ -19006,7 +18963,7 @@ packages:
/@use-gesture/react@10.2.10(react@17.0.2):
resolution: {integrity: sha512-znChnKVAMMGXD9J7fCKN686BJNBlUJaRtCu92IQXVWdcxg4MqS0SgsBslGnTWXTlsHVkg5zcGjKYf7qYkOf0Rg==}
peerDependencies:
- react: ^17.0.2
+ react: '>= 16.8.0'
dependencies:
'@use-gesture/core': 10.2.10
react: 17.0.2
@@ -19015,7 +18972,7 @@ packages:
/@use-gesture/react@10.2.27(react@17.0.2):
resolution: {integrity: sha512-7E5vnWCxeslWlxwZ8uKIcnUZVMTRMZ8cvSnLLKF1NkyNb3PnNiAzoXM4G1vTKJKRhgOTeI6wK1YsEpwo9ABV5w==}
peerDependencies:
- react: ^17.0.2
+ react: '>= 16.8.0'
dependencies:
'@use-gesture/core': 10.2.27
react: 17.0.2
@@ -19293,7 +19250,7 @@ packages:
resolution: {integrity: sha512-gSfhg8CiL0Vwc2UgUblGVZIy7M0KyXaZsd8+QwzV8TSVRLkGyzdLtYEcs9wRWyQTsdmOd+oRGqbVgUX7AVJxug==}
peerDependencies:
enzyme: ^3.0.0
- react: ^17.0.2
+ react: ^17.0.0-0
react-dom: ^17.0.0-0
dependencies:
'@wojtekmaj/enzyme-adapter-utils': 0.1.2(react@17.0.2)
@@ -19309,7 +19266,7 @@ packages:
/@wojtekmaj/enzyme-adapter-utils@0.1.2(react@17.0.2):
resolution: {integrity: sha512-MM/DqDqvxNVlWLqSVQiUbRN9MuDLJfefmPbJ8ZKdmdf5ID8G+i42XhFpoQh5bAZUCdwzRae3+WSZl2lXcFOrhw==}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0-0
dependencies:
function.prototype.name: 1.1.5
has: 1.0.3
@@ -19603,7 +19560,7 @@ packages:
resolution: {integrity: sha512-9Bxq9hY3WEqodn/K/WSE+PoIwv6jKkKBP0pxXFJTWV1yc8/Np9QHV/7wG7qjztxxgu00FrYF7u8OZyvjPrSNYw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -19661,7 +19618,7 @@ packages:
resolution: {integrity: sha512-9Bxq9hY3WEqodn/K/WSE+PoIwv6jKkKBP0pxXFJTWV1yc8/Np9QHV/7wG7qjztxxgu00FrYF7u8OZyvjPrSNYw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -19719,7 +19676,7 @@ packages:
resolution: {integrity: sha512-WQSWBAYM6iLN2+rAfZmQm4WMLPCe9woBcPybs0tKgOeXGZZBRgZ6FS01jzVmtWhttWXYZ3uH1PGPaKLJJc/Qyg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -19785,7 +19742,7 @@ packages:
resolution: {integrity: sha512-Low88BcV7pUSULNytPbO8KWrrMnQA7FnbYW1UOj+GJt+zsYqIleYZccjI5DoFTsXAAKn8RYPytX0i6F6jDM6XQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -19838,7 +19795,7 @@ packages:
resolution: {integrity: sha512-zIPqEysaLFJMnVKU/yCoCEBT3Co9xsa4Ow91T/LI94ll3LeWG/pyiX4PSSQNTx74AqbcNO2p79LVON4FLdu+mQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -19891,7 +19848,7 @@ packages:
resolution: {integrity: sha512-zIPqEysaLFJMnVKU/yCoCEBT3Co9xsa4Ow91T/LI94ll3LeWG/pyiX4PSSQNTx74AqbcNO2p79LVON4FLdu+mQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -19941,64 +19898,11 @@ packages:
- '@types/react'
dev: false
- /@wordpress/block-editor@9.8.0(@babel/core@7.21.3)(react@17.0.2):
- resolution: {integrity: sha512-zIPqEysaLFJMnVKU/yCoCEBT3Co9xsa4Ow91T/LI94ll3LeWG/pyiX4PSSQNTx74AqbcNO2p79LVON4FLdu+mQ==}
- engines: {node: '>=12'}
- peerDependencies:
- react: ^17.0.2
- react-dom: ^17.0.0
- dependencies:
- '@babel/runtime': 7.21.0
- '@react-spring/web': 9.5.5(react-dom@17.0.2)(react@17.0.2)
- '@wordpress/a11y': 3.40.0
- '@wordpress/api-fetch': 6.37.0
- '@wordpress/blob': 3.40.0
- '@wordpress/blocks': 11.18.0(react@17.0.2)
- '@wordpress/components': 20.0.0(@babel/core@7.21.3)(react@17.0.2)
- '@wordpress/compose': 5.17.0(react@17.0.2)
- '@wordpress/data': 7.3.0(react@17.0.2)
- '@wordpress/date': 4.40.0
- '@wordpress/deprecated': 3.40.0
- '@wordpress/dom': 3.40.0
- '@wordpress/element': 4.20.0
- '@wordpress/hooks': 3.40.0
- '@wordpress/html-entities': 3.40.0
- '@wordpress/i18n': 4.40.0
- '@wordpress/icons': 9.31.0
- '@wordpress/is-shallow-equal': 4.40.0
- '@wordpress/keyboard-shortcuts': 3.17.0(react@17.0.2)
- '@wordpress/keycodes': 3.40.0
- '@wordpress/notices': 3.28.0(react@17.0.2)
- '@wordpress/rich-text': 5.17.0(react@17.0.2)
- '@wordpress/shortcode': 3.40.0
- '@wordpress/style-engine': 0.15.0
- '@wordpress/token-list': 2.40.0
- '@wordpress/url': 3.41.0
- '@wordpress/warning': 2.40.0
- '@wordpress/wordcount': 3.40.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(react-dom@17.0.2)(react@17.0.2)
- react-easy-crop: 3.5.3(react-dom@17.0.2)(react@17.0.2)
- rememo: 4.0.2
- remove-accents: 0.4.2
- traverse: 0.6.6
- transitivePeerDependencies:
- - '@babel/core'
- - '@types/react'
- dev: false
-
/@wordpress/block-library@7.16.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-iuFqo2Ms08z0s1t1MM4mI7Gt+oBmj7KW6hRPEdQst+8jaG6hpQX6TgOzBt2Nw+0P0w8QRdyJjoQsB1cipGcNgQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20052,7 +19956,7 @@ packages:
resolution: {integrity: sha512-KfB4gVnqUGZfksFXukeFNXZ1WnkMpLQaVEbBCg09PtJQVA8ZkquzDySFpouA3Q0cTeS830NOc2Mri+MO/zlooQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20123,7 +20027,7 @@ packages:
resolution: {integrity: sha512-6YHyDQNa6UrAzF3oKFOyu/1F32u7h5q/gpsE1439KDGVLsrc8rSxx3rE6G6TXbJ5YC8MqDrOItMwbw14TGKPAQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/autop': 3.40.0
@@ -20156,7 +20060,7 @@ packages:
resolution: {integrity: sha512-TVUk0WGVe4/Qzm4/i1KCHOBvbB581AJnYuCAi35nhgu9V//vqbKh9JRg2d49ZduFl0SakVmN6/xSTPPEYjmuYQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/autop': 3.40.0
@@ -20192,7 +20096,7 @@ packages:
resolution: {integrity: sha512-vAEC0UqmzWe+X5p+xADMgpEVT8JnyHDyW6p49XXF7PGHJDAOplVZk/LGcjwwTV3V/jHuqMcTytQwj2XYqMpqCw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/autop': 3.40.0
@@ -20241,7 +20145,7 @@ packages:
resolution: {integrity: sha512-M1sfM9yhEAjUZPJcgvFqoRDafxyrIOnTb3mRA+NeFMEKexrmCJ/h/MrzPSugYYRMSzbZVe1FsabWZp+Zz8HsNA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20271,7 +20175,7 @@ packages:
resolution: {integrity: sha512-6g8l9Eedo8Wh6D41q8BFZB94KOoubHm1Egp2BVQeHKqClZr/f7CCasDiHse1zakYqnc1rX8FNawI82mM2Lragw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/components': 25.6.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
@@ -20299,7 +20203,7 @@ packages:
resolution: {integrity: sha512-Ac1+aIMM7NDgN3G7i5kcaETSvZfeqB4U6PubApPmM6FdBF5VfkYUZeqNcC7cuJdveyokRrqHg11/l+DcJGA7/g==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20353,7 +20257,7 @@ packages:
resolution: {integrity: sha512-Ac1+aIMM7NDgN3G7i5kcaETSvZfeqB4U6PubApPmM6FdBF5VfkYUZeqNcC7cuJdveyokRrqHg11/l+DcJGA7/g==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20407,7 +20311,7 @@ packages:
resolution: {integrity: sha512-O6hnJm9tfxkPnKknnJInpMy6qUS29CfRYtX5p5HdQMR2QFaOYvmwy7of3s5zBh7mubx3NeSzMy+ytZEWJ9ETJw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20461,7 +20365,7 @@ packages:
resolution: {integrity: sha512-36d8fSk/nWfNv2nEZrC2gLx1rN9rGWFt425yXoH6JiakDvdXacN/04xcxZGBRkS+JDz6v22uyPMEol9TzwXOLg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20515,7 +20419,7 @@ packages:
resolution: {integrity: sha512-36d8fSk/nWfNv2nEZrC2gLx1rN9rGWFt425yXoH6JiakDvdXacN/04xcxZGBRkS+JDz6v22uyPMEol9TzwXOLg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20569,7 +20473,7 @@ packages:
resolution: {integrity: sha512-36d8fSk/nWfNv2nEZrC2gLx1rN9rGWFt425yXoH6JiakDvdXacN/04xcxZGBRkS+JDz6v22uyPMEol9TzwXOLg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20623,7 +20527,7 @@ packages:
resolution: {integrity: sha512-RBPjtGLSoiV5YKhrBYh+/X8LbzbA99BJaB4Q+P0e1rVOwGzeBF3M7YEjmg1PrrzWaItqJZTvDoyZo+ql7c0KfA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20677,7 +20581,7 @@ packages:
resolution: {integrity: sha512-RBPjtGLSoiV5YKhrBYh+/X8LbzbA99BJaB4Q+P0e1rVOwGzeBF3M7YEjmg1PrrzWaItqJZTvDoyZo+ql7c0KfA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20728,65 +20632,11 @@ packages:
- '@types/react'
dev: false
- /@wordpress/components@20.0.0(@babel/core@7.21.3)(react@17.0.2):
- resolution: {integrity: sha512-RBPjtGLSoiV5YKhrBYh+/X8LbzbA99BJaB4Q+P0e1rVOwGzeBF3M7YEjmg1PrrzWaItqJZTvDoyZo+ql7c0KfA==}
- engines: {node: '>=12'}
- peerDependencies:
- react: ^17.0.2
- react-dom: ^17.0.0
- dependencies:
- '@babel/runtime': 7.21.0
- '@emotion/cache': 11.10.5
- '@emotion/css': 11.7.1(@babel/core@7.21.3)
- '@emotion/react': 11.10.5(@babel/core@7.21.3)(@types/react@17.0.50)(react@17.0.2)
- '@emotion/serialize': 1.1.1
- '@emotion/styled': 11.8.1(@babel/core@7.21.3)(@emotion/react@11.10.5)(@types/react@17.0.50)(react@17.0.2)
- '@emotion/utils': 1.2.0
- '@floating-ui/react-dom': 1.0.0(react-dom@17.0.2)(react@17.0.2)
- '@use-gesture/react': 10.2.27(react@17.0.2)
- '@wordpress/a11y': 3.40.0
- '@wordpress/compose': 5.17.0(react@17.0.2)
- '@wordpress/date': 4.40.0
- '@wordpress/deprecated': 3.40.0
- '@wordpress/dom': 3.40.0
- '@wordpress/element': 4.20.0
- '@wordpress/escape-html': 2.40.0
- '@wordpress/hooks': 3.40.0
- '@wordpress/i18n': 4.40.0
- '@wordpress/icons': 9.31.0
- '@wordpress/is-shallow-equal': 4.40.0
- '@wordpress/keycodes': 3.40.0
- '@wordpress/primitives': 3.38.0
- '@wordpress/rich-text': 5.17.0(react@17.0.2)
- '@wordpress/warning': 2.40.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(react-dom@16.14.0)(react@17.0.2)
- gradient-parser: 0.1.5
- highlight-words-core: 1.2.2
- lodash: 4.17.21
- memize: 1.1.0
- re-resizable: 6.9.5(react-dom@16.14.0)(react@17.0.2)
- react: 17.0.2
- react-colorful: 5.6.1(react-dom@16.14.0)(react@17.0.2)
- reakit: 1.3.11(react-dom@16.14.0)(react@17.0.2)
- remove-accents: 0.4.2
- use-lilius: 2.0.3(react-dom@17.0.2)(react@17.0.2)
- uuid: 8.3.2
- transitivePeerDependencies:
- - '@babel/core'
- - '@types/react'
- dev: false
-
/@wordpress/components@21.2.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-pYz+EY+Tv/O2JuDBXpaFH/zv9Evty/e6NOGjOzddSeaShZ/mCq2DpUSWPuTFBEAjtv6h9HnpkakbNnEeio5yNA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20847,7 +20697,7 @@ packages:
resolution: {integrity: sha512-pYz+EY+Tv/O2JuDBXpaFH/zv9Evty/e6NOGjOzddSeaShZ/mCq2DpUSWPuTFBEAjtv6h9HnpkakbNnEeio5yNA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -20908,7 +20758,7 @@ packages:
resolution: {integrity: sha512-VLzGS76MrgS6g5GMjk5q3+glSg1IYSzZAa/c5gZKy16c1a8rFWkc/IMhjw6w8Oyp3vvhB748J0itxsqCmTj5hw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@ariakit/react': 0.2.17(react-dom@17.0.2)(react@17.0.2)
@@ -20995,7 +20845,7 @@ packages:
resolution: {integrity: sha512-ydtXLWdOC2roZmn4PLFGvd09uCbqp//e5rHi8KOYU6C+KsUYyrOBzb4oEMUusptZVDNwRe0txPBieB5bmFNxFg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@types/mousetrap': 1.6.9
@@ -21015,7 +20865,7 @@ packages:
resolution: {integrity: sha512-kGv3bI7H1UUAjYowIPvIKs/08gfM1+UIpwR43VFpuqmjFbtcLQXUSgg32Owc7Ig063NjhMDz7oWcFx+BKZ5+EQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@types/lodash': 4.14.184
@@ -21037,7 +20887,7 @@ packages:
resolution: {integrity: sha512-G2IhRJma2lm+vNKduWofMy4jHliJGN83fTkyCQmtvREKz6uVcxcuNCgwGNSnh9JtuVSPlz9YpBQHmH6WsulMBA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@types/mousetrap': 1.6.9
@@ -21057,7 +20907,7 @@ packages:
resolution: {integrity: sha512-kMfyANcDUmA2+4EfEZuDVNFOWKEOJe7oEaZtC6tFRR1wYAlPYOzaQJxbtQMBzqhvHlQMORaxDQNhaoJ8+ac8MQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/commands': 0.9.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
@@ -21088,7 +20938,7 @@ packages:
resolution: {integrity: sha512-vhMbz/Q3xEMWTSFMs0D6n93qFSOhUZr/EgtRhLGRHdjskfgegFTlx13HrhDZ+U3xzkv1b8mH1klk4aZX+f0B8Q==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/api-fetch': 6.3.1
@@ -21112,7 +20962,7 @@ packages:
resolution: {integrity: sha512-xuqJQkdTwZn1GwHBEjIAWh5aO+wHf4zqYmPRQvoNqSULxYPfpCC0q0hOM9jJgTOCCkfWF2yWiduAOPMMGG+Vng==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/api-fetch': 6.37.0
@@ -21138,7 +20988,7 @@ packages:
resolution: {integrity: sha512-Jb7w6SOM9DyoknIOSnOs33Gp85/vbftDrtj9XUTFrQfmML8Ps4RnbX9us/XHvsAD79VgAGaBZrC5tSgZAkCYzQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -21222,7 +21072,7 @@ packages:
resolution: {integrity: sha512-QbRLuEfwLyy/GVDHl7mzf/W6/hKMzCruggeR197JDOP7U3+HZXnbaZo7wb9YcdLKIyRNNwi4aNrFrgBgJAB72g==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/api-fetch': 6.37.0
@@ -21235,7 +21085,7 @@ packages:
resolution: {integrity: sha512-Tj0VPcnEOvr05wuXV7ds9Uz7BAJzKraItiqBu8M/JVftPkm6mS/g/5EWFj6Zvy1SmRb4K/qik8RuGXbV2FD0Ug==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/api-fetch': 6.3.1
@@ -21269,7 +21119,7 @@ packages:
resolution: {integrity: sha512-EReq6QQ3ASWPcB60q18GLfDBhQQrf2Ru9Vvkid/tk7tn4ttqy/axn09/ck/GQ1uwi9BoSRyydPOnQCsluPAgNA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.17.0(react@17.0.2)
@@ -21292,7 +21142,7 @@ packages:
resolution: {integrity: sha512-QvXE8LoLqSTgkZub4A7EcfcPqAQQAXw1my9DRcxuCUYjYyxWdVM3I6JcQ+A5osy76Poh8b0Al6Kd7hUxg4SEoQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.4.1(react@17.0.2)
@@ -21313,7 +21163,7 @@ packages:
resolution: {integrity: sha512-tEnkYzobo1X889XZFbStcFnd9miqvaRhwdonfbhG1KgCPveTPU8Wb4cGav4obFwIJabvGPhlj9eNs5M4eBtbaQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.17.0(react@17.0.2)
@@ -21335,7 +21185,7 @@ packages:
resolution: {integrity: sha512-1CWz0/v8Qprnj95SFNQoYxu0WW6tfnW1VE2D47MnUWxGNZytuXT1pKeL2iV8PV+XoTLhA6UmoE6+LlzvLeZ3jg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 6.17.0(react@17.0.2)
@@ -21358,7 +21208,7 @@ packages:
resolution: {integrity: sha512-jvg1ei+h9K94ckTaDHoHFtlsrkOMlRCaC/fjt2fWfTkQafrpFEEgFYIZEhT8nTQ3DD6Yuvyz4MmypSLnQ81M7A==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 6.17.0(react@17.0.2)
@@ -21539,7 +21389,7 @@ packages:
'@babel/runtime': 7.21.0
'@wordpress/keycodes': 2.19.3
'@wordpress/url': 2.22.2(react-native@0.70.0)
- jest: 29.6.2(@types/node@16.18.21)
+ jest: 29.6.2(@types/node@16.18.21)(ts-node@10.9.1)
lodash: 4.17.21
node-fetch: 2.6.7
puppeteer: 2.1.1
@@ -21560,7 +21410,7 @@ packages:
'@wordpress/keycodes': 3.6.1
'@wordpress/url': 3.7.1
form-data: 4.0.0
- jest: 29.6.2(@types/node@16.18.21)
+ jest: 29.6.2(@types/node@16.18.21)(ts-node@10.9.1)
lodash: 4.17.21
node-fetch: 2.6.7
puppeteer-core: 19.7.3(typescript@5.1.6)
@@ -21572,7 +21422,7 @@ packages:
resolution: {integrity: sha512-EJh9yv7HpQCCEIxSvHyzWAksXx75bRr3ftIhyAT+y7XjyIONJ9uD7UH2vOFXfFRxU4RwZTxL/VTdo0W2BB2Nig==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -21645,7 +21495,7 @@ packages:
resolution: {integrity: sha512-FEgNLDRAtOjGrXXNUXWucf3zMfM1rWCgc/eQrJFwj0atWGJmqQERvmF4H4jeUO6gqetOHmnko38fLVAnE7QWYw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -21696,7 +21546,7 @@ packages:
resolution: {integrity: sha512-dDDy+wejeEWRL8mL/kaSWohb8mplXn3kVD/LdRpybY14G3UM7MQdAOFWXmq9MGwaTqBBqywtBG0lZlbJGsJadQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22185,7 +22035,7 @@ packages:
resolution: {integrity: sha512-Sige1gYGJOvD7UvKIUA4VCezFOxr157NCSQXn8/x2krjKybJzemI07ZJcTApawEYW0gutZbBizoUzaR8YLiiVA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22214,7 +22064,7 @@ packages:
resolution: {integrity: sha512-l+s5vgAuDZmrQreW39o3+B18WN6etl56jMuCHM9A1vum9QxbxOgYbFWI7u71osv1vG224gv+c1+W+vKpeGCkZg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22397,7 +22247,7 @@ packages:
peerDependencies:
'@babel/core': '>=7'
jest: '>=27'
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/core': 7.17.8
@@ -22417,7 +22267,7 @@ packages:
resolution: {integrity: sha512-rdajs6bBsrYCwM6eTs5TC6kv3LmVv3PO7FAaIDnUiRwyqUQ2ddUp3cg6cOw7ZK7VXRRBVu1WQNTyVV4+ibTu3w==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/data': 7.3.0(react@17.0.2)
@@ -22430,7 +22280,7 @@ packages:
resolution: {integrity: sha512-nzggUnSucc1kTtr+ZwSPNwyn5Bf5QFUPjjAwCeXa1ThfZxlOoYCODIkj6CdUAlPuaPwg92v8rl4JC71H6sswhw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/data': 6.6.1(react@17.0.2)
@@ -22445,7 +22295,7 @@ packages:
resolution: {integrity: sha512-460xcjMzuBen6y8yOiWdpFpQ3PFjd+sE3L4cWa7uOALXOBAr5u37t3e7mBQFECKwX9k+6kWVlz1ThgobI3pERQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/data': 9.10.0(react@17.0.2)
@@ -22533,7 +22383,7 @@ packages:
resolution: {integrity: sha512-S+hOO+4NJJzaqcqm+XPa6uuvt/pkYjRz20HK3xt8Srb+HjO87D3X5feYGQMxEx5ueJl72+5/uOZwmXKJR4pzog==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/a11y': 3.6.1
@@ -22546,7 +22396,7 @@ packages:
resolution: {integrity: sha512-VGPAbt6BC4+E17XbmgZRM3KVVbhQIIu2pBapCOk6pvsvbCy5ewvcl9dy/Wlf6YRrFSmT4nrVPayldea5OVIC6Q==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/a11y': 3.40.0
@@ -22576,7 +22426,7 @@ packages:
resolution: {integrity: sha512-6y+UkYpMH+s+E+AO9k5HdlKL/0yaSF6kxdc/OirN1TFh0BzxoZZH0Qb7c6rShddk9W5m/5OJKwa1n4K3ER294A==}
engines: {node: '>=16.0.0', npm: '>=8 <9'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@wordpress/block-editor': 12.8.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
@@ -22610,7 +22460,7 @@ packages:
resolution: {integrity: sha512-/rUkBpHRc/5hXu4qNKjF0PfKqslMz3ZME2VhX1kfF6BVZmnMwkDNLjvS4vRpeQ9hG8FKqWQBZvmsqs2LKbFd9A==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.4.1(react@17.0.2)
@@ -22626,7 +22476,7 @@ packages:
resolution: {integrity: sha512-CgkRjPNvmuQkLZ5IDpZzFESqEheBL7cpaYHyFRIhIGfe6RgsJ58i5AOKUbvZ2lssqyangjYpJ2RfpNn+SVblHA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22702,7 +22552,7 @@ packages:
resolution: {integrity: sha512-/AyotisluO81NI1weWBDSsU2Nfc+BzGB/Hrzp6u7cQiWH/HZjouAdjG7RvKMlicCu5R/v6FTCQcjmimRfaYhEA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22724,7 +22574,7 @@ packages:
resolution: {integrity: sha512-57G0HrEy0Ym2zkT8/pI3ihXZot2tUnwQOFdO2GlhCaxxKgmVYkyQ44VneMcN2JbtFfjHzGueG09QeFt3rFyywQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22853,7 +22703,7 @@ packages:
resolution: {integrity: sha512-7ZfhtpWGvtT7xWqY/mCwC93zFHTVPQf8SZRjy2jAhcl7RNY6KZpW82rMRKNROEKJ4cYbTOMMf7WL2ulYi6cNFw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@wordpress/block-editor': 10.2.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
@@ -22882,7 +22732,7 @@ packages:
resolution: {integrity: sha512-7ZfhtpWGvtT7xWqY/mCwC93zFHTVPQf8SZRjy2jAhcl7RNY6KZpW82rMRKNROEKJ4cYbTOMMf7WL2ulYi6cNFw==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@wordpress/block-editor': 10.2.0(@babel/core@7.21.3)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
@@ -22911,7 +22761,7 @@ packages:
resolution: {integrity: sha512-Wpoc5kEhgTc2crGIGq2TRxl/8skc4R6yDaq3SczdYCMwLN2CmBnIb1fBZNzDFwmV/HLP39DesaWsbACTgsZhrA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -22945,7 +22795,7 @@ packages:
resolution: {integrity: sha512-Ql1o5PzShr7PQtdpwu9CAIpAhU7DCRHaXW3uViwJcA5koi4bMOr+8CNJIslp0LcQy8/UzLTPNfQYKswipFkq1Q==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/a11y': 3.40.0
@@ -22964,7 +22814,7 @@ packages:
resolution: {integrity: sha512-UCjrV8D4JhTOcqWCo5ngEOXDYMCLjCdVAvYkXbE9TkfiZj+tQ6LS5NCuBV6d+5Dtk4dpw48m3Q95myMVCnjx7A==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/a11y': 3.6.1
@@ -22984,7 +22834,7 @@ packages:
resolution: {integrity: sha512-jFduYBaKVc4AeTHjH/PU+hfOdxgBXBdvjvSICIyBObtcANL3chzikNJjPzJP4Z6O22Q9LwHoTktCtr3oyYE8RQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/a11y': 3.40.0
@@ -23004,7 +22854,7 @@ packages:
resolution: {integrity: sha512-dOMbN8v6g9z8q6yDaAGS/7ZldVFVk0HvF/AvcMw2VFZ9QLOsP6VYRwuXgq8dAD2n8Rh42j1IfaMDTNznKScQpA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/element': 5.17.0
@@ -23169,7 +23019,7 @@ packages:
engines: {node: '>=14', npm: '>=6.14.4'}
hasBin: true
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/core': 7.21.3
@@ -23237,7 +23087,6 @@ packages:
- '@webpack-cli/generators'
- '@webpack-cli/migrate'
- acorn
- - babel-plugin-macros
- bufferutil
- canvas
- debug
@@ -23265,7 +23114,7 @@ packages:
resolution: {integrity: sha512-yJBM1hLl6n9w9X17deSsUc2Fbt/eBKDw2pzwbiPalKUGjP5RSKflzVb1uOwSr+KDUPo4vHj1hwkqO+RHssHHRg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -23295,7 +23144,7 @@ packages:
resolution: {integrity: sha512-yJBM1hLl6n9w9X17deSsUc2Fbt/eBKDw2pzwbiPalKUGjP5RSKflzVb1uOwSr+KDUPo4vHj1hwkqO+RHssHHRg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
react-dom: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -23325,7 +23174,7 @@ packages:
resolution: {integrity: sha512-XbWacQHXteacql0d8d2/qYqHqD3HwBPKSg/TP/0RZghcAQZcwlk+xOD+httkfIR5Iux1dBcSVSl/zyhp6yxqFA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -23478,7 +23327,7 @@ packages:
resolution: {integrity: sha512-5FZCqXjsZjONoyCfjalRgdme//j4XJYHRXYh7ynoJW/qULq3YqZhyLtjFsEM4V+uuuURFSYnGnOD7V+K9wooPA==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.17.0(react@17.0.2)
@@ -23491,7 +23340,7 @@ packages:
resolution: {integrity: sha512-khCqUED/fXT3RlbWiCcE4gilcB0iZ5Y6d+VjwkJcoAtPLJn6HBiOS9qypNj8NmMYhkIGP1SMSnnp4u2jiHsqcg==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.4.1(react@17.0.2)
@@ -23504,7 +23353,7 @@ packages:
resolution: {integrity: sha512-R2gpbdHyguzVMc/G9xXIusZmXKus246s0uxCIFX8nWJuvGd7tCkknnf3EthTaW7Pw4CbVsXrFuUUkfYE8ikNJQ==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 5.4.1(react@17.0.2)
@@ -23517,7 +23366,7 @@ packages:
resolution: {integrity: sha512-w0C18oYRrFRGdk33Dp5KSOmU1NoJ0SABxOCtzRn8rPJ2ZssThAR/jGhoGd/As+/qHLtiXBQoW5UOzZAYPIWq6A==}
engines: {node: '>=12'}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
'@wordpress/compose': 6.17.0(react@17.0.2)
@@ -23541,7 +23390,7 @@ packages:
/@wordpress/widgets@3.17.0(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-mT9QDbkP+xbR1rYaCg4qSdTzVM4wWNtLqwk5c478SpFyv8kaHisM6733A0Dylsz2RlMmJOwHvuBtVONSQSTd4w==}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -23605,7 +23454,7 @@ packages:
resolution: {integrity: sha512-L/mqYRxyBWVdIdSaXBHacfvS8NKn3sTKbPb31aRADbE9spsJ1p+tXil0GVQHPlzrmjGeozquLrxuYGiXsFNU7g==}
peerDependencies:
'@xstate/fsm': ^2.0.0
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
xstate: ^4.36.0
peerDependenciesMeta:
'@xstate/fsm':
@@ -23821,7 +23670,7 @@ packages:
/airbnb-prop-types@2.16.0(react@17.0.2):
resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14 || ^15.0.0 || ^16.0.0-alpha
dependencies:
array.prototype.find: 2.1.2
function.prototype.name: 1.1.5
@@ -24378,8 +24227,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.20.2
- caniuse-lite: 1.0.30001352
+ browserslist: 4.21.4
+ caniuse-lite: 1.0.30001418
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -24538,7 +24387,7 @@ packages:
'@babel/types': 7.22.15
eslint: 7.32.0
eslint-visitor-keys: 1.3.0
- resolve: 1.20.0
+ resolve: 1.22.1
transitivePeerDependencies:
- supports-color
dev: true
@@ -25978,6 +25827,7 @@ packages:
escalade: 3.1.1
node-releases: 2.0.6
picocolors: 1.0.0
+ dev: true
/browserslist@4.20.4:
resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==}
@@ -26897,7 +26747,7 @@ packages:
/cmdk@0.2.0(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
dependencies:
'@radix-ui/react-dialog': 1.0.0(@types/react@17.0.50)(react-dom@17.0.2)(react@17.0.2)
@@ -28872,7 +28722,7 @@ packages:
/downshift@6.1.12(react@17.0.2):
resolution: {integrity: sha512-7XB/iaSJVS4T8wGFT3WRXmSF1UlBHAA40DshZtkrIscIN+VC+Lh363skLxFTvJwtNgHxAMDGEHT4xsyQFWL+UA==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.12.0'
dependencies:
'@babel/runtime': 7.21.0
compute-scroll-into-view: 1.0.17
@@ -28884,7 +28734,7 @@ packages:
/downshift@6.1.7(react@17.0.2):
resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.12.0'
dependencies:
'@babel/runtime': 7.21.0
compute-scroll-into-view: 1.0.17
@@ -29115,7 +28965,7 @@ packages:
resolution: {integrity: sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==}
peerDependencies:
enzyme: ^3.0.0
- react: ^17.0.2
+ react: ^16.0.0-0
react-dom: ^16.0.0-0
dependencies:
enzyme: 3.11.0
@@ -29135,7 +28985,7 @@ packages:
/enzyme-adapter-utils@1.14.0(react@17.0.2):
resolution: {integrity: sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==}
peerDependencies:
- react: ^17.0.2
+ react: 0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0
dependencies:
airbnb-prop-types: 2.16.0(react@17.0.2)
function.prototype.name: 1.1.5
@@ -30034,7 +29884,7 @@ packages:
engines: {node: ^6.14.0 || ^8.10.0 || >=9.10.0}
hasBin: true
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.22.13
ajv: 6.12.6
chalk: 2.4.2
cross-spawn: 6.0.5
@@ -31249,7 +31099,7 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.22.13
'@types/json-schema': 7.0.9
chalk: 4.1.2
chokidar: 3.5.3
@@ -31281,7 +31131,7 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.18.6
+ '@babel/code-frame': 7.22.13
'@types/json-schema': 7.0.9
chalk: 4.1.2
chokidar: 3.5.3
@@ -31385,7 +31235,7 @@ packages:
/framer-motion@10.16.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-K6TXr5mZtitC/dxQCBdg7xzdN0d5IAIrlaqCPKtIQVdzVPGC0qBuJKXggHX1vjnP5gPOFwB1KbCCTWcnFc3kWg==}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
react-dom: ^18.0.0
peerDependenciesMeta:
react:
@@ -31403,7 +31253,7 @@ packages:
/framer-motion@6.2.8(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8 || ^17.0.0 || ^18.0.0'
react-dom: '>=16.8 || ^17.0.0 || ^18.0.0'
dependencies:
framesync: 6.0.1
@@ -31420,7 +31270,7 @@ packages:
/framer-motion@6.2.8(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-4PtBWFJ6NqR350zYVt9AsFDtISTqsdqna79FvSYPfYDXuuqFmiKtZdkTnYPslnsOMedTW0pEvaQ7eqjD+sA+HA==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8 || ^17.0.0 || ^18.0.0'
react-dom: '>=16.8 || ^17.0.0 || ^18.0.0'
dependencies:
framesync: 6.0.1
@@ -32179,7 +32029,7 @@ packages:
/gridicons@3.4.0(react@17.0.2):
resolution: {integrity: sha512-GikyCOcfhwHSN8tfsZvcWwWSaRLebVZCvDzfFg0X50E+dIAnG2phfFUTNa06dXA09kqRYCdnu8sPO8pSYO3UVA==}
peerDependencies:
- react: ^17.0.2
+ react: 15 - 17
dependencies:
prop-types: 15.8.1
react: 17.0.2
@@ -33067,7 +32917,7 @@ packages:
/i18n-calypso@5.0.0(react@17.0.2):
resolution: {integrity: sha512-YgqLgshNiBOiifWxr4s33ODWQ4JIaHoBPWtgFyqcRy0+WGMX2CmTDbXaeZHkHxuIjzsGP+YrVTPNp7lfbiot4g==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8
dependencies:
'@babel/runtime': 7.21.0
'@tannin/sprintf': 1.2.0
@@ -34520,7 +34370,7 @@ packages:
- ts-node
- utf-8-validate
- /jest-cli@29.5.0(@types/node@16.18.21):
+ /jest-cli@29.5.0(@types/node@16.18.21)(ts-node@10.9.1):
resolution: {integrity: sha512-L1KcP1l4HtfwdxXNFCL5bmUbLQiKrakMUriBEcc1Vfz6gx31ORKdreuWvmQVBit+1ss9NNR3yxjwfwzZNdQXJw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -34530,14 +34380,14 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.5.0
+ '@jest/core': 29.5.0(ts-node@10.9.1)
'@jest/test-result': 29.5.0
'@jest/types': 29.5.0
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.9
import-local: 3.0.3
- jest-config: 29.5.0(@types/node@16.18.21)
+ jest-config: 29.5.0(@types/node@16.18.21)(ts-node@10.9.1)
jest-util: 29.5.0
jest-validate: 29.5.0
prompts: 2.4.2
@@ -34548,35 +34398,6 @@ packages:
- ts-node
dev: true
- /jest-cli@29.6.2(@types/node@16.18.21):
- resolution: {integrity: sha512-TT6O247v6dCEX2UGHGyflMpxhnrL0DNqP2fRTKYm3nJJpCTfXX3GCMQPGFjXDoj0i5/Blp3jriKXFgdfmbYB6Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.6.2
- '@jest/test-result': 29.6.2
- '@jest/types': 29.6.1
- chalk: 4.1.2
- exit: 0.1.2
- graceful-fs: 4.2.9
- import-local: 3.0.3
- jest-config: 29.6.2(@types/node@16.18.21)
- jest-util: 29.6.2
- jest-validate: 29.6.2
- prompts: 2.4.2
- yargs: 17.5.1
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: false
-
/jest-cli@29.6.2(@types/node@16.18.21)(ts-node@10.9.1):
resolution: {integrity: sha512-TT6O247v6dCEX2UGHGyflMpxhnrL0DNqP2fRTKYm3nJJpCTfXX3GCMQPGFjXDoj0i5/Blp3jriKXFgdfmbYB6Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -34604,7 +34425,6 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
/jest-config@24.9.0:
resolution: {integrity: sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==}
@@ -34736,7 +34556,7 @@ packages:
- supports-color
- utf-8-validate
- /jest-config@29.5.0(@types/node@16.18.21):
+ /jest-config@29.5.0(@types/node@16.18.21)(ts-node@10.9.1):
resolution: {integrity: sha512-kvDUKBnNJPNBmFFOhDbm59iu1Fii1Q6SxyhXfvylq3UTHbg6o7j/g8k2dZyXWLvfdKB1vAPxNZnMgtKJcmu3kA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -34771,50 +34591,11 @@ packages:
pretty-format: 29.6.2
slash: 3.0.0
strip-json-comments: 3.1.1
+ ts-node: 10.9.1(@types/node@16.18.21)(typescript@5.1.6)
transitivePeerDependencies:
- supports-color
dev: true
- /jest-config@29.6.2(@types/node@16.18.21):
- resolution: {integrity: sha512-VxwFOC8gkiJbuodG9CPtMRjBUNZEHxwfQXmIudSTzFWxaci3Qub1ddTRbFNQlD/zUeaifLndh/eDccFX4wCMQw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- peerDependencies:
- '@types/node': '*'
- ts-node: '>=9.0.0'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- ts-node:
- optional: true
- dependencies:
- '@babel/core': 7.21.3
- '@jest/test-sequencer': 29.6.2
- '@jest/types': 29.6.1
- '@types/node': 16.18.21
- babel-jest: 29.6.2(@babel/core@7.21.3)
- chalk: 4.1.2
- ci-info: 3.2.0
- deepmerge: 4.3.1
- glob: 7.2.3
- graceful-fs: 4.2.9
- jest-circus: 29.6.2
- jest-environment-node: 29.6.2
- jest-get-type: 29.4.3
- jest-regex-util: 29.4.3
- jest-resolve: 29.6.2
- jest-runner: 29.6.2
- jest-util: 29.6.2
- jest-validate: 29.6.2
- micromatch: 4.0.5
- parse-json: 5.2.0
- pretty-format: 29.6.2
- slash: 3.0.0
- strip-json-comments: 3.1.1
- transitivePeerDependencies:
- - babel-plugin-macros
- - supports-color
- dev: false
-
/jest-config@29.6.2(@types/node@16.18.21)(ts-node@10.9.1):
resolution: {integrity: sha512-VxwFOC8gkiJbuodG9CPtMRjBUNZEHxwfQXmIudSTzFWxaci3Qub1ddTRbFNQlD/zUeaifLndh/eDccFX4wCMQw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -34854,7 +34635,6 @@ packages:
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
- dev: true
/jest-dev-server@4.4.0:
resolution: {integrity: sha512-STEHJ3iPSC8HbrQ3TME0ozGX2KT28lbT4XopPxUm2WimsX3fcB3YOptRh12YphQisMhfqNSNTZUmWyT3HEXS2A==}
@@ -35499,14 +35279,6 @@ packages:
jest-get-type: 27.5.1
pretty-format: 27.5.1
- /jest-leak-detector@29.5.0:
- resolution: {integrity: sha512-u9YdeeVnghBUtpN5mVxjID7KbkKE1QU4f6uUwuxiY0vYRi9BUCLKlPEZfDGR67ofdFmDz9oPAy2G92Ujrntmow==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- dependencies:
- jest-get-type: 29.4.3
- pretty-format: 29.6.2
- dev: true
-
/jest-leak-detector@29.6.2:
resolution: {integrity: sha512-aNqYhfp5uYEO3tdWMb2bfWv6f0b4I0LOxVRpnRLAeque2uqOVVMLh6khnTcE2qJ5wAKop0HcreM1btoysD6bPQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -36116,7 +35888,7 @@ packages:
jest-docblock: 29.4.3
jest-environment-node: 29.6.2
jest-haste-map: 29.6.2
- jest-leak-detector: 29.5.0
+ jest-leak-detector: 29.6.2
jest-message-util: 29.6.2
jest-resolve: 29.6.2
jest-runtime: 29.6.2
@@ -36484,7 +36256,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/generator': 7.21.3
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.21.3)
'@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.21.3)
'@babel/traverse': 7.21.3
'@babel/types': 7.22.15
@@ -36865,26 +36637,6 @@ packages:
- ts-node
- utf-8-validate
- /jest@29.5.0(@types/node@16.18.21):
- resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.5.0
- '@jest/types': 29.5.0
- import-local: 3.0.3
- jest-cli: 29.5.0(@types/node@16.18.21)
- transitivePeerDependencies:
- - '@types/node'
- - supports-color
- - ts-node
- dev: true
-
/jest@29.5.0(@types/node@16.18.21)(ts-node@10.9.1):
resolution: {integrity: sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -36895,38 +36647,16 @@ packages:
node-notifier:
optional: true
dependencies:
- '@jest/core': 29.6.2(ts-node@10.9.1)
- '@jest/types': 29.6.1
+ '@jest/core': 29.5.0(ts-node@10.9.1)
+ '@jest/types': 29.5.0
import-local: 3.0.3
- jest-cli: 29.6.2(@types/node@16.18.21)(ts-node@10.9.1)
+ jest-cli: 29.5.0(@types/node@16.18.21)(ts-node@10.9.1)
transitivePeerDependencies:
- '@types/node'
- - babel-plugin-macros
- supports-color
- ts-node
dev: true
- /jest@29.6.2(@types/node@16.18.21):
- resolution: {integrity: sha512-8eQg2mqFbaP7CwfsTpCxQ+sHzw1WuNWL5UUvjnWP4hx2riGz9fPSzYOaU5q8/GqWn1TfgZIVTqYJygbGbWAANg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- hasBin: true
- peerDependencies:
- node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
- peerDependenciesMeta:
- node-notifier:
- optional: true
- dependencies:
- '@jest/core': 29.6.2
- '@jest/types': 29.6.1
- import-local: 3.0.3
- jest-cli: 29.6.2(@types/node@16.18.21)
- transitivePeerDependencies:
- - '@types/node'
- - babel-plugin-macros
- - supports-color
- - ts-node
- dev: false
-
/jest@29.6.2(@types/node@16.18.21)(ts-node@10.9.1):
resolution: {integrity: sha512-8eQg2mqFbaP7CwfsTpCxQ+sHzw1WuNWL5UUvjnWP4hx2riGz9fPSzYOaU5q8/GqWn1TfgZIVTqYJygbGbWAANg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -36946,7 +36676,6 @@ packages:
- babel-plugin-macros
- supports-color
- ts-node
- dev: true
/jmespath@0.16.0:
resolution: {integrity: sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw==}
@@ -38141,7 +37870,7 @@ packages:
dev: true
/map-values@1.0.1:
- resolution: {integrity: sha1-douOecAJvytk/ugG4ip7HEGQyZA=}
+ resolution: {integrity: sha512-BbShUnr5OartXJe1GeccAWtfro11hhgNJg6G9/UtWKjVGvV5U4C09cg5nk8JUevhXODaXY+hQ3xxMUKSs62ONQ==}
/map-visit@1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
@@ -39760,7 +39489,7 @@ packages:
dependencies:
hosted-git-info: 4.0.2
is-core-module: 2.8.0
- semver: 7.5.0
+ semver: 7.5.3
validate-npm-package-license: 3.0.4
dev: true
@@ -39979,7 +39708,7 @@ packages:
kind-of: 3.2.2
/object-filter@1.0.2:
- resolution: {integrity: sha1-rwt5f/6+r4pSxmN87b6IFs/sG8g=}
+ resolution: {integrity: sha512-NahvP2vZcy1ZiiYah30CEPw0FpDcSkSePJBMpzl5EQgCmISijiGuJm3SPYp7U+Lf2TljyaIw3E5EgkEx/TNEVA==}
/object-inspect@1.12.2:
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
@@ -42546,7 +42275,7 @@ packages:
/re-resizable@6.9.5(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.13.1 || ^17.0.0
react-dom: ^16.13.1 || ^17.0.0
dependencies:
fast-memoize: 2.5.2
@@ -42556,7 +42285,7 @@ packages:
/re-resizable@6.9.5(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-Q4+K8gOPbUBmbJCa0qfoVXBGnCwkAJrZ9KUca4GDn5FmxyV2HtLrBz7u43uUOb0y7xKbwcfuftweiOCIDEiCQA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.13.1 || ^17.0.0
react-dom: ^16.13.1 || ^17.0.0
dependencies:
fast-memoize: 2.5.2
@@ -42580,7 +42309,7 @@ packages:
/react-autosize-textarea@7.1.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-BHpjCDkuOlllZn3nLazY2F8oYO1tS2jHnWhcjTWQdcKiiMU6gHLNt/fzmqMSyerR0eTdKtfSIqtSeTtghNwS+g==}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14.0 || ^15.0.0 || ^16.0.0
react-dom: ^0.14.0 || ^15.0.0 || ^16.0.0
dependencies:
autosize: 4.0.4
@@ -42592,7 +42321,7 @@ packages:
/react-colorful@5.5.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
react: 17.0.2
@@ -42601,7 +42330,7 @@ packages:
/react-colorful@5.6.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
react: 17.0.2
@@ -42610,7 +42339,7 @@ packages:
/react-colorful@5.6.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
react: 17.0.2
@@ -42620,7 +42349,7 @@ packages:
resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==}
peerDependencies:
moment: ^2.18.1
- react: ^17.0.2
+ react: ^0.14 || ^15.5.4 || ^16.1.1
react-dom: ^0.14 || ^15.5.4 || ^16.1.1
dependencies:
airbnb-prop-types: 2.16.0(react@17.0.2)
@@ -42647,7 +42376,7 @@ packages:
resolution: {integrity: sha512-RDlerU8DdRRrlYS0MQ7Z9igPWABGLDwz6+ykBNff67RM3Sset2TDqeuOr+R5o00Ggn5U47GeLsGcSDxlZd9cHw==}
peerDependencies:
moment: ^2.18.1
- react: ^17.0.2
+ react: ^0.14 || ^15.5.4 || ^16.1.1
react-dom: ^0.14 || ^15.5.4 || ^16.1.1
dependencies:
airbnb-prop-types: 2.16.0(react@17.0.2)
@@ -42675,7 +42404,7 @@ packages:
peerDependencies:
'@babel/runtime': ^7.0.0
moment: ^2.18.1
- react: ^17.0.2
+ react: ^0.14 || ^15.5.4 || ^16.1.1
react-dom: ^0.14 || ^15.5.4 || ^16.1.1
react-with-direction: ^1.3.1
dependencies:
@@ -42705,7 +42434,7 @@ packages:
peerDependencies:
'@babel/runtime': ^7.0.0
moment: ^2.18.1
- react: ^17.0.2
+ react: ^0.14 || ^15.5.4 || ^16.1.1
react-dom: ^0.14 || ^15.5.4 || ^16.1.1
react-with-direction: ^1.3.1
dependencies:
@@ -42769,7 +42498,7 @@ packages:
/react-dom@16.14.0(react@17.0.2):
resolution: {integrity: sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.14.0
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
@@ -42780,7 +42509,7 @@ packages:
/react-dom@17.0.2(react@17.0.2):
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
- react: ^17.0.2
+ react: 17.0.2
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
@@ -42790,7 +42519,7 @@ packages:
/react-dom@18.2.0(react@17.0.2):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies:
- react: ^17.0.2
+ react: ^18.2.0
dependencies:
loose-envify: 1.4.0
react: 17.0.2
@@ -42799,7 +42528,7 @@ packages:
/react-easy-crop@3.5.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ApTbh+lzKAvKqYW81ihd5J6ZTNN3vPDwi6ncFuUrHPI4bko2DlYOESkRm+0NYoW0H8YLaD7bxox+Z3EvIzAbUA==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.4.0'
react-dom: '>=16.4.0'
dependencies:
normalize-wheel: 1.0.1
@@ -42810,7 +42539,7 @@ packages:
/react-easy-crop@4.5.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-MVzCWmKXTwZTK0iYqlF/gPLdLqvUGrLGX7SQ4g+DO3b/lCiVAwxZKLeZ1wjDfG+r/yEWUoL7At5a0kkDJeU+rQ==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.4.0'
react-dom: '>=16.4.0'
dependencies:
normalize-wheel: 1.0.1
@@ -42822,7 +42551,7 @@ packages:
/react-element-to-jsx-string@14.3.4(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1
react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1
dependencies:
'@base2/pretty-print-object': 1.0.1
@@ -42836,7 +42565,7 @@ packages:
resolution: {integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==}
engines: {node: '>=10', npm: '>=6'}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.13.1'
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
@@ -42849,7 +42578,7 @@ packages:
/react-input-autosize@3.0.0(react@17.0.2):
resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.3.0 || ^17.0.0
dependencies:
prop-types: 15.8.1
react: 17.0.2
@@ -42858,7 +42587,7 @@ packages:
/react-inspector@5.1.1(react@17.0.2):
resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.4 || ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
is-dom: 1.1.0
@@ -42882,7 +42611,7 @@ packages:
resolution: {integrity: sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==}
engines: {node: '>=8'}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18
react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18
dependencies:
exenv: 1.2.2
@@ -42928,15 +42657,15 @@ packages:
peerDependencies:
react-native: '*'
dependencies:
- react-native: 0.70.0(@babel/core@7.12.9)(@babel/preset-env@7.12.7)(react@17.0.2)
+ react-native: 0.70.0(@babel/core@7.12.9)(@babel/preset-env@7.12.7)(react@18.1.0)
whatwg-url-without-unicode: 8.0.0-3
- /react-native@0.70.0(@babel/core@7.12.9)(@babel/preset-env@7.12.7)(react@17.0.2):
+ /react-native@0.70.0(@babel/core@7.12.9)(@babel/preset-env@7.12.7)(react@18.1.0):
resolution: {integrity: sha512-QjXLbrK9f+/B2eCzn6kAvglLV/8nwPuFGaFv7ggPpAzFRyx5bVN1dwQLHL3MrP7iXR/M7Jc6Nnid7tmRSic6vA==}
engines: {node: '>=14'}
hasBin: true
peerDependencies:
- react: ^17.0.2
+ react: 18.1.0
dependencies:
'@jest/create-cache-key-function': 27.5.1
'@react-native-community/cli': 9.1.1(@babel/core@7.12.9)
@@ -42959,16 +42688,16 @@ packages:
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.2.0
- react: 17.0.2
+ react: 18.1.0
react-devtools-core: 4.24.0
react-native-codegen: 0.70.4(@babel/preset-env@7.12.7)
react-native-gradle-plugin: 0.70.2
react-refresh: 0.4.3
- react-shallow-renderer: 16.15.0(react@17.0.2)
+ react-shallow-renderer: 16.15.0(react@18.1.0)
regenerator-runtime: 0.13.11
scheduler: 0.22.0
stacktrace-parser: 0.1.10
- use-sync-external-store: 1.2.0(react@17.0.2)
+ use-sync-external-store: 1.2.0(react@18.1.0)
whatwg-fetch: 3.6.2
ws: 6.2.2
transitivePeerDependencies:
@@ -42982,7 +42711,7 @@ packages:
/react-outside-click-handler@1.3.0(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14 || >=15
react-dom: ^0.14 || >=15
dependencies:
airbnb-prop-types: 2.16.0(react@17.0.2)
@@ -42997,7 +42726,7 @@ packages:
/react-outside-click-handler@1.3.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14 || >=15
react-dom: ^0.14 || >=15
dependencies:
airbnb-prop-types: 2.16.0(react@17.0.2)
@@ -43013,7 +42742,7 @@ packages:
resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==}
peerDependencies:
'@popperjs/core': ^2.0.0
- react: ^17.0.2
+ react: ^16.8.0 || ^17
dependencies:
'@popperjs/core': 2.11.4
react: 17.0.2
@@ -43024,7 +42753,7 @@ packages:
/react-portal@4.2.1(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
dependencies:
prop-types: 15.8.1
@@ -43035,7 +42764,7 @@ packages:
/react-portal@4.2.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-fE9kOBagwmTXZ3YGRYb4gcMy+kSA+yLO0xnPankjRlfBv4uCpFXqKPfkpsGQQR15wkZ9EssnvTOl1yMzbkxhPQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
react-dom: ^15.0.0-0 || ^16.0.0-0 || ^17.0.0-0
dependencies:
prop-types: 15.8.1
@@ -43046,7 +42775,7 @@ packages:
/react-query@3.39.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: '*'
react-native: '*'
peerDependenciesMeta:
@@ -43085,8 +42814,8 @@ packages:
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -43100,8 +42829,8 @@ packages:
resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -43119,8 +42848,8 @@ packages:
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -43136,14 +42865,14 @@ packages:
/react-resize-aware@3.1.1(react@17.0.2):
resolution: {integrity: sha512-M8IyVLBN8D6tEUss+bxQlWte3ZYtNEGhg7rBxtCVG8yEBjUlZwUo5EFLq6tnvTZXcgAbCLjsQn+NCoTJKumRYg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || 17.x
dependencies:
react: 17.0.2
/react-router-dom@6.3.0(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8'
react-dom: '>=16.8'
dependencies:
history: 5.3.0
@@ -43155,7 +42884,7 @@ packages:
/react-router-dom@6.3.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8'
react-dom: '>=16.8'
dependencies:
history: 5.3.0
@@ -43167,7 +42896,7 @@ packages:
/react-router@6.3.0(react@17.0.2):
resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8'
dependencies:
history: 5.3.0
react: 17.0.2
@@ -43176,7 +42905,7 @@ packages:
/react-select@3.2.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -43194,7 +42923,7 @@ packages:
/react-select@5.7.4(@babel/core@7.17.8)(@types/react@17.0.50)(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-NhuE56X+p9QDFh4BgeygHFIvJJszO1i1KSkg/JPcIJrbovyRtI+GuOEa4XzFCEpZRAEoEI8u/cAHK+jG/PgUzQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@babel/runtime': 7.21.0
@@ -43216,19 +42945,19 @@ packages:
/react-shallow-renderer@16.14.1(react@17.0.2):
resolution: {integrity: sha512-rkIMcQi01/+kxiTE9D3fdS959U1g7gs+/rborw++42m1O9FAQiNI/UNRZExVUoAOprn4umcXf+pFRou8i4zuBg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.0.0 || ^17.0.0
dependencies:
object-assign: 4.1.1
react: 17.0.2
react-is: 17.0.2
- /react-shallow-renderer@16.15.0(react@17.0.2):
+ /react-shallow-renderer@16.15.0(react@18.1.0):
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
object-assign: 4.1.1
- react: 17.0.2
+ react: 18.1.0
react-is: 18.2.0
/react-sizeme@3.0.2:
@@ -43244,8 +42973,8 @@ packages:
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -43259,7 +42988,7 @@ packages:
/react-syntax-highlighter@15.5.0(react@17.0.2):
resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==}
peerDependencies:
- react: ^17.0.2
+ react: '>= 0.14.0'
dependencies:
'@babel/runtime': 7.21.0
highlight.js: 10.7.3
@@ -43272,7 +43001,7 @@ packages:
/react-test-renderer@16.14.0(react@17.0.2):
resolution: {integrity: sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.14.0
dependencies:
object-assign: 4.1.1
prop-types: 15.8.1
@@ -43284,7 +43013,7 @@ packages:
/react-test-renderer@17.0.2(react@17.0.2):
resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==}
peerDependencies:
- react: ^17.0.2
+ react: 17.0.2
dependencies:
object-assign: 4.1.1
react: 17.0.2
@@ -43295,7 +43024,7 @@ packages:
/react-transition-group@4.4.2(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
'@babel/runtime': 7.21.0
@@ -43309,7 +43038,7 @@ packages:
/react-transition-group@4.4.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.6.0'
react-dom: '>=16.6.0'
dependencies:
'@babel/runtime': 7.21.0
@@ -43322,7 +43051,7 @@ packages:
/react-visibility-sensor@5.1.1(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-cTUHqIK+zDYpeK19rzW6zF9YfT4486TIgizZW53wEZ+/GPBbK7cNS0EHyJVyHYacwFEvvHLEKfgJndbemWhB/w==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.0.0'
react-dom: '>=16.0.0'
dependencies:
prop-types: 15.8.1
@@ -43333,7 +43062,7 @@ packages:
/react-with-direction@1.4.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-ybHNPiAmaJpoWwugwqry9Hd1Irl2hnNXlo/2SXQBwbLn/jGMauMS2y9jw+ydyX5V9ICryCqObNSthNt5R94xpg==}
peerDependencies:
- react: ^17.0.2
+ react: ^0.14 || ^15 || ^16
react-dom: ^0.14 || ^15 || ^16
dependencies:
airbnb-prop-types: 2.16.0(react@17.0.2)
@@ -43385,7 +43114,7 @@ packages:
/react-with-styles@3.2.3(react-with-direction@1.4.0)(react@17.0.2):
resolution: {integrity: sha512-MTI1UOvMHABRLj5M4WpODfwnveHaip6X7QUMI2x6zovinJiBXxzhA9AJP7MZNaKqg1JRFtHPXZdroUC8KcXwlQ==}
peerDependencies:
- react: ^17.0.2
+ react: '>=0.14'
react-with-direction: ^1.1.0
dependencies:
hoist-non-react-statics: 3.3.2
@@ -43399,7 +43128,7 @@ packages:
resolution: {integrity: sha512-tZCTY27KriRNhwHIbg1NkSdTTOSfXDg6Z7s+Q37mtz0Ym7Sc7IOr3PzVt4qJhJMW6Nkvfi3g34FuhtiGAJCBQA==}
peerDependencies:
'@babel/runtime': ^7.0.0
- react: ^17.0.2
+ react: '>=0.14'
react-with-direction: ^1.3.1
dependencies:
'@babel/runtime': 7.17.7
@@ -43415,7 +43144,7 @@ packages:
resolution: {integrity: sha512-tZCTY27KriRNhwHIbg1NkSdTTOSfXDg6Z7s+Q37mtz0Ym7Sc7IOr3PzVt4qJhJMW6Nkvfi3g34FuhtiGAJCBQA==}
peerDependencies:
'@babel/runtime': ^7.0.0
- react: ^17.0.2
+ react: '>=0.14'
react-with-direction: ^1.3.1
dependencies:
'@babel/runtime': 7.21.0
@@ -43434,6 +43163,12 @@ packages:
loose-envify: 1.4.0
object-assign: 4.1.1
+ /react@18.1.0:
+ resolution: {integrity: sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==}
+ engines: {node: '>=0.10.0'}
+ dependencies:
+ loose-envify: 1.4.0
+
/read-cmd-shim@3.0.1:
resolution: {integrity: sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
@@ -43579,7 +43314,7 @@ packages:
/reakit-system@0.15.2(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
@@ -43590,7 +43325,7 @@ packages:
/reakit-system@0.15.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-TvRthEz0DmD0rcJkGamMYx+bATwnGNWJpe/lc8UV2Js8nnPvkaxrHk5fX9cVASFrWbaIyegZHCWUBfxr30bmmA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
@@ -43600,7 +43335,7 @@ packages:
/reakit-utils@0.15.2(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
@@ -43610,7 +43345,7 @@ packages:
/reakit-utils@0.15.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-i/RYkq+W6hvfFmXw5QW7zvfJJT/K8a4qZ0hjA79T61JAFPGt23DsfxwyBbyK91GZrJ9HMrXFVXWMovsKBc1qEQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
@@ -43619,7 +43354,7 @@ packages:
/reakit-warning@0.6.2(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
reakit-utils: 0.15.2(react-dom@16.14.0)(react@17.0.2)
@@ -43630,7 +43365,7 @@ packages:
/reakit-warning@0.6.2(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-z/3fvuc46DJyD3nJAUOto6inz2EbSQTjvI/KBQDqxwB0y02HDyeP8IWOJxvkuAUGkWpeSx+H3QWQFSNiPcHtmw==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
reakit-utils: 0.15.2(react-dom@17.0.2)(react@17.0.2)
@@ -43640,7 +43375,7 @@ packages:
/reakit@1.3.11(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@popperjs/core': 2.11.4
@@ -43655,7 +43390,7 @@ packages:
/reakit@1.3.11(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-mYxw2z0fsJNOQKAEn5FJCPTU3rcrY33YZ/HzoWqZX0G7FwySp1wkCYW79WhuYMNIUFQ8s3Baob1RtsEywmZSig==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
react-dom: ^16.8.0 || ^17.0.0
dependencies:
'@popperjs/core': 2.11.4
@@ -44509,7 +44244,7 @@ packages:
sass: 1.60.0
schema-utils: 3.1.1
semver: 7.5.0
- webpack: 5.76.3(webpack-cli@4.9.2)
+ webpack: 5.76.3(webpack-cli@3.3.12)
dev: true
/sass-loader@12.6.0(sass@1.60.0)(webpack@5.76.3):
@@ -47071,7 +46806,7 @@ packages:
'@babel/core': 7.21.3
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
- jest: 29.5.0(@types/node@16.18.21)
+ jest: 29.5.0(@types/node@16.18.21)(ts-node@10.9.1)
jest-util: 29.5.0
json5: 2.2.3
lodash.memoize: 4.1.2
@@ -47918,8 +47653,8 @@ packages:
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -47931,7 +47666,7 @@ packages:
/use-debounce@3.4.3(react@17.0.2):
resolution: {integrity: sha512-nxy+opOxDccWfhMl36J5BSCTpvcj89iaQk2OZWLAtBJQj7ISCtx1gh+rFbdjGfMl6vtCZf6gke/kYvrkVfHMoA==}
peerDependencies:
- react: ^17.0.2
+ react: '>=16.8.0'
dependencies:
react: 17.0.2
dev: false
@@ -47940,7 +47675,7 @@ packages:
resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==}
peerDependencies:
'@types/react': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -47953,7 +47688,7 @@ packages:
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -47964,7 +47699,7 @@ packages:
/use-lilius@2.0.3(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-+Q7nspdv+QGnyHGVMd6yAdLrqv5EGB4n3ix4GJH0JEE27weKCLCLmZSuAr5Nw+yPBCZn/iZ+KjL5+UykLCWXrw==}
peerDependencies:
- react: ^17.0.2
+ react: '*'
react-dom: '*'
dependencies:
date-fns: 2.29.3
@@ -47974,14 +47709,14 @@ packages:
/use-memo-one@1.1.2(react@17.0.2):
resolution: {integrity: sha512-u2qFKtxLsia/r8qG0ZKkbytbztzRb317XCkT7yP8wxL0tZ/CzK2G+WWie5vWvpyeP7+YoPIwbJoIHJ4Ba4k0oQ==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0
dependencies:
react: 17.0.2
/use-resize-observer@9.1.0(react-dom@16.14.0)(react@17.0.2):
resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==}
peerDependencies:
- react: ^17.0.2
+ react: 16.8.0 - 18
react-dom: 16.8.0 - 18
dependencies:
'@juggle/resize-observer': 3.4.0
@@ -47993,8 +47728,8 @@ packages:
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': ^17.0.2
- react: ^17.0.2
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
@@ -48007,16 +47742,24 @@ packages:
/use-subscription@1.6.0(react@17.0.2):
resolution: {integrity: sha512-0Y/cTLlZfw547tJhJMoRA16OUbVqRm6DmvGpiGbmLST6BIA5KU5cKlvlz8DVMrACnWpyEjCkgmhLatthP4jUbA==}
peerDependencies:
- react: ^17.0.2
+ react: ^18.0.0
dependencies:
react: 17.0.2
/use-sync-external-store@1.2.0(react@17.0.2):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
- react: ^17.0.2
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
react: 17.0.2
+ dev: false
+
+ /use-sync-external-store@1.2.0(react@18.1.0):
+ resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ dependencies:
+ react: 18.1.0
/use@3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
@@ -48176,7 +47919,7 @@ packages:
'@babel/types': '>=7.13'
aslemammad-vite-plugin-macro: '>=1.0.0-alpha.1'
babel-plugin-macros: '>=3.0'
- react: ^17.0.2
+ react: '>=16.8'
vite: '>=2.8.6'
peerDependenciesMeta:
'@babel/helper-module-imports':
@@ -48205,7 +47948,7 @@ packages:
'@babel/types': '>=7.13'
aslemammad-vite-plugin-macro: '>=1.0.0-alpha.1'
babel-plugin-macros: '>=3.0'
- react: ^17.0.2
+ react: '>=16.8'
vite: '>=2.8.6'
peerDependenciesMeta:
'@babel/helper-module-imports':
@@ -49918,7 +49661,7 @@ packages:
pacote: 12.0.3
preferred-pm: 3.0.3
pretty-bytes: 5.6.0
- semver: 7.5.0
+ semver: 7.5.3
slash: 3.0.0
strip-ansi: 6.0.1
text-table: 0.2.0
@@ -49947,7 +49690,7 @@ packages:
minimist: 1.2.8
read-pkg-up: 7.0.1
run-async: 2.4.1
- semver: 7.5.0
+ semver: 7.5.3
shelljs: 0.8.5
sort-keys: 4.2.0
text-table: 0.2.0